intel-xe.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4] drm/xe/hwmon: Fix xe_hwmon_power_max_write
@ 2025-06-17 12:00 Karthik Poosa
  2025-06-17 12:03 ` Nilawar, Badal
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Karthik Poosa @ 2025-06-17 12:00 UTC (permalink / raw)
  To: intel-xe; +Cc: anshuman.gupta, badal.nilawar, riana.tauro, Karthik Poosa

Prevent other bits of mailbox power limit from being overwritten with 0.
This issue was due to a missing read and modify of current power limit,
before setting a requested mailbox power limit, which is added in this
patch.

v2:
 - Improve commit message. (Anshuman)

v3:
 - Rebase.
 - Rephrase commit message. (Riana)
 - Add read-modify-write variant of xe_hwmon_pcode_write_power_limit()
   i.e. xe_hwmon_pcode_rmw_power_limit(). (Badal)
 - Use xe_hwmon_pcode_rmw_power_limit() to set mailbox power limits.
 - Remove xe_hwmon_pcode_write_power_limit() as all mailbox power limits
   writes use xe_hwmon_pcode_rmw_power_limit() only.

v4:
 - Use PWR_LIM in place of (PWR_LIM_EN | PWR_LIM_VAL) wherever
   applicable. (Riana)

Fixes: 7596d839f6228 ("drm/xe/hwmon: Add support to manage power limits though mailbox")
Reviewed-by: Riana Tauro <riana.tauro@intel.com>
Signed-off-by: Karthik Poosa <karthik.poosa@intel.com>
---
 drivers/gpu/drm/xe/regs/xe_mchbar_regs.h |  1 +
 drivers/gpu/drm/xe/xe_hwmon.c            | 50 +++++++++++-------------
 2 files changed, 24 insertions(+), 27 deletions(-)

diff --git a/drivers/gpu/drm/xe/regs/xe_mchbar_regs.h b/drivers/gpu/drm/xe/regs/xe_mchbar_regs.h
index 5394a1373a6b..ef2bf984723f 100644
--- a/drivers/gpu/drm/xe/regs/xe_mchbar_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_mchbar_regs.h
@@ -40,6 +40,7 @@
 #define PCU_CR_PACKAGE_RAPL_LIMIT		XE_REG(MCHBAR_MIRROR_BASE_SNB + 0x59a0)
 #define   PWR_LIM_VAL				REG_GENMASK(14, 0)
 #define   PWR_LIM_EN				REG_BIT(15)
+#define   PWR_LIM				REG_GENMASK(15, 0)
 #define   PWR_LIM_TIME				REG_GENMASK(23, 17)
 #define   PWR_LIM_TIME_X			REG_GENMASK(23, 22)
 #define   PWR_LIM_TIME_Y			REG_GENMASK(21, 17)
diff --git a/drivers/gpu/drm/xe/xe_hwmon.c b/drivers/gpu/drm/xe/xe_hwmon.c
index 0d32e977537c..f08fc4377d25 100644
--- a/drivers/gpu/drm/xe/xe_hwmon.c
+++ b/drivers/gpu/drm/xe/xe_hwmon.c
@@ -175,8 +175,8 @@ static int xe_hwmon_pcode_read_power_limit(const struct xe_hwmon *hwmon, u32 att
 	return ret;
 }
 
-static int xe_hwmon_pcode_write_power_limit(const struct xe_hwmon *hwmon, u32 attr, u8 channel,
-					    u32 uval)
+static int xe_hwmon_pcode_rmw_power_limit(const struct xe_hwmon *hwmon, u32 attr, u8 channel,
+					  u32 clr, u32 set)
 {
 	struct xe_tile *root_tile = xe_device_get_root_tile(hwmon->xe);
 	u32 val0, val1;
@@ -195,9 +195,9 @@ static int xe_hwmon_pcode_write_power_limit(const struct xe_hwmon *hwmon, u32 at
 			channel, val0, val1, ret);
 
 	if (attr == PL1_HWMON_ATTR)
-		val0 = uval;
+		val0 = (val0 & ~clr) | set;
 	else if (attr == PL2_HWMON_ATTR)
-		val1 = uval;
+		val1 = (val1 & ~clr) | set;
 	else
 		return -EIO;
 
@@ -342,7 +342,7 @@ static int xe_hwmon_power_max_write(struct xe_hwmon *hwmon, u32 attr, int channe
 		if (hwmon->xe->info.has_mbx_power_limits) {
 			drm_dbg(&hwmon->xe->drm, "disabling %s on channel %d\n",
 				PWR_ATTR_TO_STR(attr), channel);
-			xe_hwmon_pcode_write_power_limit(hwmon, attr, channel, 0);
+			xe_hwmon_pcode_rmw_power_limit(hwmon, attr, channel, PWR_LIM_EN, 0);
 			xe_hwmon_pcode_read_power_limit(hwmon, attr, channel, &reg_val);
 		} else {
 			reg_val = xe_mmio_rmw32(mmio, rapl_limit, PWR_LIM_EN, 0);
@@ -378,10 +378,9 @@ static int xe_hwmon_power_max_write(struct xe_hwmon *hwmon, u32 attr, int channe
 	reg_val = PWR_LIM_EN | REG_FIELD_PREP(PWR_LIM_VAL, reg_val);
 
 	if (hwmon->xe->info.has_mbx_power_limits)
-		ret = xe_hwmon_pcode_write_power_limit(hwmon, attr, channel, reg_val);
+		ret = xe_hwmon_pcode_rmw_power_limit(hwmon, attr, channel, PWR_LIM, reg_val);
 	else
-		reg_val = xe_mmio_rmw32(mmio, rapl_limit, PWR_LIM_EN | PWR_LIM_VAL,
-					reg_val);
+		reg_val = xe_mmio_rmw32(mmio, rapl_limit, PWR_LIM, reg_val);
 unlock:
 	mutex_unlock(&hwmon->hwmon_lock);
 	return ret;
@@ -591,14 +590,11 @@ xe_hwmon_power_max_interval_store(struct device *dev, struct device_attribute *a
 
 	mutex_lock(&hwmon->hwmon_lock);
 
-	if (hwmon->xe->info.has_mbx_power_limits) {
-		ret = xe_hwmon_pcode_read_power_limit(hwmon, power_attr, channel, (u32 *)&r);
-		r = (r & ~PWR_LIM_TIME) | rxy;
-		xe_hwmon_pcode_write_power_limit(hwmon, power_attr, channel, r);
-	} else {
+	if (hwmon->xe->info.has_mbx_power_limits)
+		xe_hwmon_pcode_rmw_power_limit(hwmon, power_attr, channel, PWR_LIM_TIME, rxy);
+	else
 		r = xe_mmio_rmw32(mmio, xe_hwmon_get_reg(hwmon, REG_PKG_RAPL_LIMIT, channel),
 				  PWR_LIM_TIME, rxy);
-	}
 
 	mutex_unlock(&hwmon->hwmon_lock);
 
@@ -1217,25 +1213,25 @@ xe_hwmon_get_preregistration_info(struct xe_hwmon *hwmon)
 						    &hwmon->pl1_on_boot[CHANNEL_PKG]) |
 		    xe_hwmon_pcode_read_power_limit(hwmon, PL2_HWMON_ATTR, CHANNEL_CARD,
 						    &hwmon->pl2_on_boot[CHANNEL_CARD]) |
-		    xe_hwmon_pcode_read_power_limit(hwmon, PL1_HWMON_ATTR, CHANNEL_PKG,
+		    xe_hwmon_pcode_read_power_limit(hwmon, PL2_HWMON_ATTR, CHANNEL_PKG,
 						    &hwmon->pl2_on_boot[CHANNEL_PKG])) {
 			drm_warn(&hwmon->xe->drm,
 				 "Failed to read power limits, check GPU firmware !\n");
 		} else {
 			drm_info(&hwmon->xe->drm, "Using mailbox commands for power limits\n");
 			/* Write default limits to read from pcode from now on. */
-			xe_hwmon_pcode_write_power_limit(hwmon, PL1_HWMON_ATTR,
-							 CHANNEL_CARD,
-							 hwmon->pl1_on_boot[CHANNEL_CARD]);
-			xe_hwmon_pcode_write_power_limit(hwmon, PL1_HWMON_ATTR,
-							 CHANNEL_PKG,
-							 hwmon->pl1_on_boot[CHANNEL_PKG]);
-			xe_hwmon_pcode_write_power_limit(hwmon, PL2_HWMON_ATTR,
-							 CHANNEL_CARD,
-							 hwmon->pl2_on_boot[CHANNEL_CARD]);
-			xe_hwmon_pcode_write_power_limit(hwmon, PL2_HWMON_ATTR,
-							 CHANNEL_PKG,
-							 hwmon->pl2_on_boot[CHANNEL_PKG]);
+			xe_hwmon_pcode_rmw_power_limit(hwmon, PL1_HWMON_ATTR,
+						       CHANNEL_CARD, PWR_LIM | PWR_LIM_TIME,
+						       hwmon->pl1_on_boot[CHANNEL_CARD]);
+			xe_hwmon_pcode_rmw_power_limit(hwmon, PL1_HWMON_ATTR,
+						       CHANNEL_PKG, PWR_LIM | PWR_LIM_TIME,
+						       hwmon->pl1_on_boot[CHANNEL_PKG]);
+			xe_hwmon_pcode_rmw_power_limit(hwmon, PL2_HWMON_ATTR,
+						       CHANNEL_CARD, PWR_LIM | PWR_LIM_TIME,
+						       hwmon->pl2_on_boot[CHANNEL_CARD]);
+			xe_hwmon_pcode_rmw_power_limit(hwmon, PL2_HWMON_ATTR,
+						       CHANNEL_PKG, PWR_LIM | PWR_LIM_TIME,
+						       hwmon->pl2_on_boot[CHANNEL_PKG]);
 			hwmon->scl_shift_power = PWR_UNIT;
 			hwmon->scl_shift_energy = ENERGY_UNIT;
 			hwmon->scl_shift_time = TIME_UNIT;
-- 
2.25.1


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

* Re: [PATCH v4] drm/xe/hwmon: Fix xe_hwmon_power_max_write
  2025-06-17 12:00 [PATCH v4] drm/xe/hwmon: Fix xe_hwmon_power_max_write Karthik Poosa
@ 2025-06-17 12:03 ` Nilawar, Badal
  2025-06-17 12:08 ` ✓ CI.KUnit: success for drm/xe/hwmon: Fix xe_hwmon_power_max_write (rev6) Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Nilawar, Badal @ 2025-06-17 12:03 UTC (permalink / raw)
  To: Karthik Poosa, intel-xe; +Cc: anshuman.gupta, riana.tauro


On 17-06-2025 17:30, Karthik Poosa wrote:
> Prevent other bits of mailbox power limit from being overwritten with 0.
> This issue was due to a missing read and modify of current power limit,
> before setting a requested mailbox power limit, which is added in this
> patch.
>
> v2:
>   - Improve commit message. (Anshuman)
>
> v3:
>   - Rebase.
>   - Rephrase commit message. (Riana)
>   - Add read-modify-write variant of xe_hwmon_pcode_write_power_limit()
>     i.e. xe_hwmon_pcode_rmw_power_limit(). (Badal)
>   - Use xe_hwmon_pcode_rmw_power_limit() to set mailbox power limits.
>   - Remove xe_hwmon_pcode_write_power_limit() as all mailbox power limits
>     writes use xe_hwmon_pcode_rmw_power_limit() only.
>
> v4:
>   - Use PWR_LIM in place of (PWR_LIM_EN | PWR_LIM_VAL) wherever
>     applicable. (Riana)
>
> Fixes: 7596d839f6228 ("drm/xe/hwmon: Add support to manage power limits though mailbox")
> Reviewed-by: Riana Tauro <riana.tauro@intel.com>
> Signed-off-by: Karthik Poosa <karthik.poosa@intel.com>
> ---
>   drivers/gpu/drm/xe/regs/xe_mchbar_regs.h |  1 +
>   drivers/gpu/drm/xe/xe_hwmon.c            | 50 +++++++++++-------------
>   2 files changed, 24 insertions(+), 27 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/regs/xe_mchbar_regs.h b/drivers/gpu/drm/xe/regs/xe_mchbar_regs.h
> index 5394a1373a6b..ef2bf984723f 100644
> --- a/drivers/gpu/drm/xe/regs/xe_mchbar_regs.h
> +++ b/drivers/gpu/drm/xe/regs/xe_mchbar_regs.h
> @@ -40,6 +40,7 @@
>   #define PCU_CR_PACKAGE_RAPL_LIMIT		XE_REG(MCHBAR_MIRROR_BASE_SNB + 0x59a0)
>   #define   PWR_LIM_VAL				REG_GENMASK(14, 0)
>   #define   PWR_LIM_EN				REG_BIT(15)
> +#define   PWR_LIM				REG_GENMASK(15, 0)
>   #define   PWR_LIM_TIME				REG_GENMASK(23, 17)
>   #define   PWR_LIM_TIME_X			REG_GENMASK(23, 22)
>   #define   PWR_LIM_TIME_Y			REG_GENMASK(21, 17)
> diff --git a/drivers/gpu/drm/xe/xe_hwmon.c b/drivers/gpu/drm/xe/xe_hwmon.c
> index 0d32e977537c..f08fc4377d25 100644
> --- a/drivers/gpu/drm/xe/xe_hwmon.c
> +++ b/drivers/gpu/drm/xe/xe_hwmon.c
> @@ -175,8 +175,8 @@ static int xe_hwmon_pcode_read_power_limit(const struct xe_hwmon *hwmon, u32 att
>   	return ret;
>   }
>   
> -static int xe_hwmon_pcode_write_power_limit(const struct xe_hwmon *hwmon, u32 attr, u8 channel,
> -					    u32 uval)
> +static int xe_hwmon_pcode_rmw_power_limit(const struct xe_hwmon *hwmon, u32 attr, u8 channel,
> +					  u32 clr, u32 set)
>   {
>   	struct xe_tile *root_tile = xe_device_get_root_tile(hwmon->xe);
>   	u32 val0, val1;
> @@ -195,9 +195,9 @@ static int xe_hwmon_pcode_write_power_limit(const struct xe_hwmon *hwmon, u32 at
>   			channel, val0, val1, ret);
>   
>   	if (attr == PL1_HWMON_ATTR)
> -		val0 = uval;
> +		val0 = (val0 & ~clr) | set;
>   	else if (attr == PL2_HWMON_ATTR)
> -		val1 = uval;
> +		val1 = (val1 & ~clr) | set;
>   	else
>   		return -EIO;
>   
> @@ -342,7 +342,7 @@ static int xe_hwmon_power_max_write(struct xe_hwmon *hwmon, u32 attr, int channe
>   		if (hwmon->xe->info.has_mbx_power_limits) {
>   			drm_dbg(&hwmon->xe->drm, "disabling %s on channel %d\n",
>   				PWR_ATTR_TO_STR(attr), channel);
> -			xe_hwmon_pcode_write_power_limit(hwmon, attr, channel, 0);
> +			xe_hwmon_pcode_rmw_power_limit(hwmon, attr, channel, PWR_LIM_EN, 0);
>   			xe_hwmon_pcode_read_power_limit(hwmon, attr, channel, &reg_val);
>   		} else {
>   			reg_val = xe_mmio_rmw32(mmio, rapl_limit, PWR_LIM_EN, 0);
> @@ -378,10 +378,9 @@ static int xe_hwmon_power_max_write(struct xe_hwmon *hwmon, u32 attr, int channe
>   	reg_val = PWR_LIM_EN | REG_FIELD_PREP(PWR_LIM_VAL, reg_val);
>   
>   	if (hwmon->xe->info.has_mbx_power_limits)
> -		ret = xe_hwmon_pcode_write_power_limit(hwmon, attr, channel, reg_val);
> +		ret = xe_hwmon_pcode_rmw_power_limit(hwmon, attr, channel, PWR_LIM, reg_val);
>   	else
> -		reg_val = xe_mmio_rmw32(mmio, rapl_limit, PWR_LIM_EN | PWR_LIM_VAL,
> -					reg_val);
> +		reg_val = xe_mmio_rmw32(mmio, rapl_limit, PWR_LIM, reg_val);
>   unlock:
>   	mutex_unlock(&hwmon->hwmon_lock);
>   	return ret;
> @@ -591,14 +590,11 @@ xe_hwmon_power_max_interval_store(struct device *dev, struct device_attribute *a
>   
>   	mutex_lock(&hwmon->hwmon_lock);
>   
> -	if (hwmon->xe->info.has_mbx_power_limits) {
> -		ret = xe_hwmon_pcode_read_power_limit(hwmon, power_attr, channel, (u32 *)&r);
> -		r = (r & ~PWR_LIM_TIME) | rxy;
> -		xe_hwmon_pcode_write_power_limit(hwmon, power_attr, channel, r);
> -	} else {
> +	if (hwmon->xe->info.has_mbx_power_limits)
> +		xe_hwmon_pcode_rmw_power_limit(hwmon, power_attr, channel, PWR_LIM_TIME, rxy);
> +	else
>   		r = xe_mmio_rmw32(mmio, xe_hwmon_get_reg(hwmon, REG_PKG_RAPL_LIMIT, channel),
>   				  PWR_LIM_TIME, rxy);
> -	}
>   
>   	mutex_unlock(&hwmon->hwmon_lock);
>   
> @@ -1217,25 +1213,25 @@ xe_hwmon_get_preregistration_info(struct xe_hwmon *hwmon)
>   						    &hwmon->pl1_on_boot[CHANNEL_PKG]) |
>   		    xe_hwmon_pcode_read_power_limit(hwmon, PL2_HWMON_ATTR, CHANNEL_CARD,
>   						    &hwmon->pl2_on_boot[CHANNEL_CARD]) |
> -		    xe_hwmon_pcode_read_power_limit(hwmon, PL1_HWMON_ATTR, CHANNEL_PKG,
> +		    xe_hwmon_pcode_read_power_limit(hwmon, PL2_HWMON_ATTR, CHANNEL_PKG,
>   						    &hwmon->pl2_on_boot[CHANNEL_PKG])) {
>   			drm_warn(&hwmon->xe->drm,
>   				 "Failed to read power limits, check GPU firmware !\n");
>   		} else {
>   			drm_info(&hwmon->xe->drm, "Using mailbox commands for power limits\n");
>   			/* Write default limits to read from pcode from now on. */
> -			xe_hwmon_pcode_write_power_limit(hwmon, PL1_HWMON_ATTR,
> -							 CHANNEL_CARD,
> -							 hwmon->pl1_on_boot[CHANNEL_CARD]);
> -			xe_hwmon_pcode_write_power_limit(hwmon, PL1_HWMON_ATTR,
> -							 CHANNEL_PKG,
> -							 hwmon->pl1_on_boot[CHANNEL_PKG]);
> -			xe_hwmon_pcode_write_power_limit(hwmon, PL2_HWMON_ATTR,
> -							 CHANNEL_CARD,
> -							 hwmon->pl2_on_boot[CHANNEL_CARD]);
> -			xe_hwmon_pcode_write_power_limit(hwmon, PL2_HWMON_ATTR,
> -							 CHANNEL_PKG,
> -							 hwmon->pl2_on_boot[CHANNEL_PKG]);
> +			xe_hwmon_pcode_rmw_power_limit(hwmon, PL1_HWMON_ATTR,
> +						       CHANNEL_CARD, PWR_LIM | PWR_LIM_TIME,
> +						       hwmon->pl1_on_boot[CHANNEL_CARD]);
> +			xe_hwmon_pcode_rmw_power_limit(hwmon, PL1_HWMON_ATTR,
> +						       CHANNEL_PKG, PWR_LIM | PWR_LIM_TIME,
> +						       hwmon->pl1_on_boot[CHANNEL_PKG]);
> +			xe_hwmon_pcode_rmw_power_limit(hwmon, PL2_HWMON_ATTR,
> +						       CHANNEL_CARD, PWR_LIM | PWR_LIM_TIME,
> +						       hwmon->pl2_on_boot[CHANNEL_CARD]);
> +			xe_hwmon_pcode_rmw_power_limit(hwmon, PL2_HWMON_ATTR,
> +						       CHANNEL_PKG, PWR_LIM | PWR_LIM_TIME,
> +						       hwmon->pl2_on_boot[CHANNEL_PKG]);

Looks good to me.
Reviewed-by: Badal Nilawar <badal.nilawar@intel.com>

>   			hwmon->scl_shift_power = PWR_UNIT;
>   			hwmon->scl_shift_energy = ENERGY_UNIT;
>   			hwmon->scl_shift_time = TIME_UNIT;

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

* ✓ CI.KUnit: success for drm/xe/hwmon: Fix xe_hwmon_power_max_write (rev6)
  2025-06-17 12:00 [PATCH v4] drm/xe/hwmon: Fix xe_hwmon_power_max_write Karthik Poosa
  2025-06-17 12:03 ` Nilawar, Badal
@ 2025-06-17 12:08 ` Patchwork
  2025-06-17 12:55 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-06-17 12:08 UTC (permalink / raw)
  To: Karthik Poosa; +Cc: intel-xe

== Series Details ==

Series: drm/xe/hwmon: Fix xe_hwmon_power_max_write (rev6)
URL   : https://patchwork.freedesktop.org/series/149816/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe/hwmon: Fix xe_hwmon_power_max_write (rev6)
  2025-06-17 12:00 [PATCH v4] drm/xe/hwmon: Fix xe_hwmon_power_max_write Karthik Poosa
  2025-06-17 12:03 ` Nilawar, Badal
  2025-06-17 12:08 ` ✓ CI.KUnit: success for drm/xe/hwmon: Fix xe_hwmon_power_max_write (rev6) Patchwork
@ 2025-06-17 12:55 ` Patchwork
  2025-06-17 19:36 ` ✗ Xe.CI.Full: failure " Patchwork
  2025-06-19 15:32 ` [PATCH v4] drm/xe/hwmon: Fix xe_hwmon_power_max_write Thomas Hellström
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-06-17 12:55 UTC (permalink / raw)
  To: Karthik Poosa; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/hwmon: Fix xe_hwmon_power_max_write (rev6)
URL   : https://patchwork.freedesktop.org/series/149816/
State : success

== Summary ==

CI Bug Log - changes from xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8_BAT -> xe-pw-149816v6_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

  Here are the changes found in xe-pw-149816v6_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-lnl-2:          NOTRUN -> [SKIP][1] ([Intel XE#1466] / [Intel XE#2235])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-lnl-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_flip@basic-flip-vs-dpms:
    - bat-lnl-2:          NOTRUN -> [SKIP][2] ([Intel XE#2235] / [Intel XE#2482]) +3 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-lnl-2/igt@kms_flip@basic-flip-vs-dpms.html

  * igt@kms_force_connector_basic@force-connector-state:
    - bat-lnl-2:          NOTRUN -> [SKIP][3] ([Intel XE#2235] / [Intel XE#352]) +2 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-lnl-2/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_frontbuffer_tracking@basic:
    - bat-lnl-2:          NOTRUN -> [SKIP][4] ([Intel XE#2235] / [Intel XE#2548])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_hdmi_inject@inject-audio:
    - bat-lnl-2:          NOTRUN -> [SKIP][5] ([Intel XE#1470] / [Intel XE#2235] / [Intel XE#2853])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-lnl-2/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
    - bat-lnl-2:          NOTRUN -> [SKIP][6] ([Intel XE#2235]) +13 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-lnl-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html

  * igt@kms_psr@psr-cursor-plane-move:
    - bat-lnl-2:          NOTRUN -> [SKIP][7] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-lnl-2/igt@kms_psr@psr-cursor-plane-move.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - bat-lnl-2:          NOTRUN -> [SKIP][8] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-lnl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@xe_evict@evict-beng-small:
    - bat-lnl-2:          NOTRUN -> [SKIP][9] ([Intel XE#688]) +11 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-lnl-2/igt@xe_evict@evict-beng-small.html

  * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
    - bat-lnl-2:          NOTRUN -> [SKIP][10] ([Intel XE#2229]) +2 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-lnl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html

  * igt@xe_mmap@vram:
    - bat-lnl-2:          NOTRUN -> [SKIP][11] ([Intel XE#1416])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-lnl-2/igt@xe_mmap@vram.html

  * igt@xe_pat@pat-index-xehpc:
    - bat-lnl-2:          NOTRUN -> [SKIP][12] ([Intel XE#1420] / [Intel XE#2838])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-lnl-2/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelp:
    - bat-lnl-2:          NOTRUN -> [SKIP][13] ([Intel XE#977])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-lnl-2/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pat@pat-index-xelpg:
    - bat-lnl-2:          NOTRUN -> [SKIP][14] ([Intel XE#2236] / [Intel XE#979])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-lnl-2/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - bat-lnl-2:          NOTRUN -> [SKIP][15] ([Intel XE#3342])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-lnl-2/igt@xe_sriov_flr@flr-vf1-clear.html

  
#### Possible fixes ####

  * igt@intel_sysfs_debugfs@xe-sysfs-read-all-entries:
    - bat-lnl-2:          [ABORT][16] ([Intel XE#4624] / [Intel XE#4966]) -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/bat-lnl-2/igt@intel_sysfs_debugfs@xe-sysfs-read-all-entries.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-lnl-2/igt@intel_sysfs_debugfs@xe-sysfs-read-all-entries.html

  
#### Warnings ####

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - bat-adlp-7:         [ABORT][18] ([Intel XE#5214]) -> [INCOMPLETE][19] ([Intel XE#5214]) +1 other test incomplete
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html

  
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
  [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235
  [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
  [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
  [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#4624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4624
  [Intel XE#4966]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4966
  [Intel XE#5214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5214
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979


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

  * IGT: IGT_8412 -> IGT_8413
  * Linux: xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8 -> xe-pw-149816v6

  IGT_8412: 8412
  IGT_8413: 8413
  xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8: 95f0ac069cc2eee10b5d5e0ba67502ccea089de8
  xe-pw-149816v6: 149816v6

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for drm/xe/hwmon: Fix xe_hwmon_power_max_write (rev6)
  2025-06-17 12:00 [PATCH v4] drm/xe/hwmon: Fix xe_hwmon_power_max_write Karthik Poosa
                   ` (2 preceding siblings ...)
  2025-06-17 12:55 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-06-17 19:36 ` Patchwork
  2025-06-19 15:32 ` [PATCH v4] drm/xe/hwmon: Fix xe_hwmon_power_max_write Thomas Hellström
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-06-17 19:36 UTC (permalink / raw)
  To: Karthik Poosa; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/hwmon: Fix xe_hwmon_power_max_write (rev6)
URL   : https://patchwork.freedesktop.org/series/149816/
State : failure

== Summary ==

CI Bug Log - changes from xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8_FULL -> xe-pw-149816v6_FULL
====================================================

Summary
-------

  **FAILURE**

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

  

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

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in xe-pw-149816v6_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_pmu@engine-activity-single-load:
    - shard-lnl:          [PASS][1] -> [FAIL][2] +4 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-lnl-6/igt@xe_pmu@engine-activity-single-load.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-8/igt@xe_pmu@engine-activity-single-load.html

  * igt@xe_pmu@engine-activity-single-load@engine-drm_xe_engine_class_render0:
    - shard-bmg:          [PASS][3] -> [FAIL][4] +6 other tests fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-7/igt@xe_pmu@engine-activity-single-load@engine-drm_xe_engine_class_render0.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-5/igt@xe_pmu@engine-activity-single-load@engine-drm_xe_engine_class_render0.html

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

  Here are the changes found in xe-pw-149816v6_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@unaligned-read:
    - shard-adlp:         [PASS][5] -> [SKIP][6] ([Intel XE#2134])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-2/igt@fbdev@unaligned-read.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@fbdev@unaligned-read.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-adlp:         NOTRUN -> [SKIP][7] ([Intel XE#3157])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
    - shard-lnl:          NOTRUN -> [SKIP][8] ([Intel XE#3157])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
    - shard-lnl:          [PASS][9] -> [FAIL][10] ([Intel XE#911]) +3 other tests fail
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#3767]) +15 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y:
    - shard-adlp:         [PASS][12] -> [DMESG-WARN][13] ([Intel XE#4543]) +3 other tests dmesg-warn
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-9/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html

  * igt@kms_async_flips@invalid-async-flip-atomic:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#3768])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-5/igt@kms_async_flips@invalid-async-flip-atomic.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][15] ([Intel XE#316]) +2 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][16] ([Intel XE#3658])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

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

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2327])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
    - shard-lnl:          NOTRUN -> [SKIP][19] ([Intel XE#1407]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][20] ([Intel XE#316]) +6 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-dg2-set2:     NOTRUN -> [SKIP][21] ([Intel XE#619])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-adlp:         NOTRUN -> [SKIP][22] ([Intel XE#619])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-6/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-dg2-set2:     NOTRUN -> [SKIP][23] ([Intel XE#610])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-adlp:         NOTRUN -> [SKIP][24] ([Intel XE#1124]) +18 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#1124]) +7 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#1124]) +3 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#1124]) +7 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [PASS][28] -> [SKIP][29] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#2314] / [Intel XE#2894])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#2191])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-4/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - shard-lnl:          NOTRUN -> [SKIP][32] ([Intel XE#1512]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][33] ([Intel XE#2191]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-2560x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][34] ([Intel XE#367]) +5 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-8/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][35] ([Intel XE#367])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-3840x2160p:
    - shard-lnl:          NOTRUN -> [SKIP][36] ([Intel XE#367]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-5/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#367]) +1 other test skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-7/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
    - shard-adlp:         NOTRUN -> [SKIP][38] ([Intel XE#455] / [Intel XE#787]) +73 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][39] ([Intel XE#787]) +110 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][41] ([Intel XE#787]) +90 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][42] ([Intel XE#3442])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][43] ([Intel XE#3442])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#2669] / [Intel XE#3433]) +3 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][45] ([Intel XE#3862]) +1 other test incomplete
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][46] ([Intel XE#3432])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][47] ([Intel XE#2907]) +2 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#2669]) +3 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][49] ([Intel XE#455] / [Intel XE#787]) +25 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#2887]) +4 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html
    - shard-lnl:          NOTRUN -> [SKIP][51] ([Intel XE#2887]) +7 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][52] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [PASS][53] -> [INCOMPLETE][54] ([Intel XE#2705] / [Intel XE#4212]) +1 other test incomplete
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][55] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][56] ([Intel XE#2907]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-adlp:         NOTRUN -> [SKIP][57] ([Intel XE#4417] / [Intel XE#455])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-8/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-adlp:         NOTRUN -> [SKIP][58] ([Intel XE#4418])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-1/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][59] ([Intel XE#4417]) +2 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-8/igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1.html

  * igt@kms_cdclk@plane-scaling:
    - shard-adlp:         NOTRUN -> [SKIP][60] ([Intel XE#4416] / [Intel XE#455])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@kms_cdclk@plane-scaling.html

  * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][61] ([Intel XE#4416]) +2 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-1.html

  * igt@kms_chamelium_color@degamma:
    - shard-adlp:         NOTRUN -> [SKIP][62] ([Intel XE#306]) +3 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_color@gamma:
    - shard-dg2-set2:     NOTRUN -> [SKIP][63] ([Intel XE#306]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-464/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-adlp:         NOTRUN -> [SKIP][64] ([Intel XE#373]) +18 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#373]) +6 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-5/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#2252]) +2 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-6/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_chamelium_hpd@vga-hpd:
    - shard-dg2-set2:     NOTRUN -> [SKIP][67] ([Intel XE#373]) +10 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][68] ([Intel XE#1178])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-4/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html

  * igt@kms_content_protection@content-type-change:
    - shard-adlp:         NOTRUN -> [SKIP][69] ([Intel XE#455]) +44 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_content_protection@content-type-change.html
    - shard-lnl:          NOTRUN -> [SKIP][70] ([Intel XE#5176])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-8/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-adlp:         NOTRUN -> [SKIP][71] ([Intel XE#307])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][72] ([Intel XE#307])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-435/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#2320]) +1 other test skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-dg2-set2:     NOTRUN -> [SKIP][74] ([Intel XE#308]) +1 other test skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#2321]) +2 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#2321])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-adlp:         NOTRUN -> [SKIP][77] ([Intel XE#308]) +3 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-128x42:
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#1424]) +4 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-128x42.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
    - shard-bmg:          [PASS][79] -> [SKIP][80] ([Intel XE#2291]) +2 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-adlp:         NOTRUN -> [SKIP][81] ([Intel XE#323])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-adlp:         NOTRUN -> [SKIP][82] ([Intel XE#4302])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-8/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-lnl:          NOTRUN -> [SKIP][83] ([Intel XE#4354])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-6/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-dg2-set2:     NOTRUN -> [SKIP][84] ([Intel XE#4356])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-436/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-bmg:          NOTRUN -> [SKIP][85] ([Intel XE#4331])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html
    - shard-adlp:         NOTRUN -> [SKIP][86] ([Intel XE#4331])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][87] ([Intel XE#4331])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-435/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
    - shard-dg2-set2:     NOTRUN -> [SKIP][88] ([Intel XE#4422])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-434/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html

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

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-lnl:          [PASS][91] -> [FAIL][92] ([Intel XE#4164])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-lnl-2/igt@kms_fbcon_fbt@psr-suspend.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-7/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@display-2x:
    - shard-adlp:         NOTRUN -> [SKIP][93] ([Intel XE#702])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@display-3x:
    - shard-adlp:         NOTRUN -> [SKIP][94] ([Intel XE#703])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@kms_feature_discovery@display-3x.html
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#2373])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-5/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@display-4x:
    - shard-adlp:         NOTRUN -> [SKIP][96] ([Intel XE#1138])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-8/igt@kms_feature_discovery@display-4x.html
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#1138])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-1/igt@kms_feature_discovery@display-4x.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][98] ([Intel XE#1138])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@kms_feature_discovery@display-4x.html
    - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#1138])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-6/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-adlp:         NOTRUN -> [SKIP][100] ([Intel XE#1137])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][101] ([Intel XE#1135])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-435/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-dpms-vs-vblank-race:
    - shard-lnl:          NOTRUN -> [SKIP][102] ([Intel XE#1421]) +4 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-2/igt@kms_flip@2x-dpms-vs-vblank-race.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-bmg:          [PASS][103] -> [SKIP][104] ([Intel XE#2316]) +5 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@2x-flip-vs-panning-interruptible:
    - shard-bmg:          NOTRUN -> [SKIP][105] ([Intel XE#2316])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-interruptible.html

  * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
    - shard-adlp:         NOTRUN -> [SKIP][106] ([Intel XE#310]) +15 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html

  * igt@kms_flip@basic-flip-vs-wf_vblank:
    - shard-bmg:          [PASS][107] -> [FAIL][108] ([Intel XE#2882] / [Intel XE#3098])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-2/igt@kms_flip@basic-flip-vs-wf_vblank.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-7/igt@kms_flip@basic-flip-vs-wf_vblank.html

  * igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2:
    - shard-bmg:          [PASS][109] -> [FAIL][110] ([Intel XE#3098])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-2/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2.html

  * igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2:
    - shard-bmg:          [PASS][111] -> [FAIL][112] ([Intel XE#2882]) +1 other test fail
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-2/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2.html

  * igt@kms_flip@bo-too-big-interruptible@a-edp1:
    - shard-lnl:          NOTRUN -> [TIMEOUT][113] ([Intel XE#1504]) +1 other test timeout
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-2/igt@kms_flip@bo-too-big-interruptible@a-edp1.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank:
    - shard-lnl:          [PASS][114] -> [FAIL][115] ([Intel XE#886]) +7 other tests fail
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html

  * igt@kms_flip@flip-vs-expired-vblank@a-dp4:
    - shard-dg2-set2:     [PASS][116] -> [FAIL][117] ([Intel XE#301] / [Intel XE#3321]) +2 other tests fail
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html

  * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
    - shard-dg2-set2:     [PASS][118] -> [FAIL][119] ([Intel XE#301]) +5 other tests fail
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html

  * igt@kms_flip@modeset-vs-vblank-race-interruptible:
    - shard-adlp:         [PASS][120] -> [SKIP][121] ([Intel XE#4950]) +3 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-6/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_flip@modeset-vs-vblank-race-interruptible.html

  * igt@kms_flip@plain-flip-ts-check:
    - shard-adlp:         NOTRUN -> [FAIL][122] ([Intel XE#3149] / [Intel XE#886])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@kms_flip@plain-flip-ts-check.html
    - shard-lnl:          [PASS][123] -> [FAIL][124] ([Intel XE#3149] / [Intel XE#886])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-lnl-5/igt@kms_flip@plain-flip-ts-check.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-3/igt@kms_flip@plain-flip-ts-check.html

  * igt@kms_flip@plain-flip-ts-check@c-hdmi-a1:
    - shard-adlp:         NOTRUN -> [FAIL][125] ([Intel XE#886]) +2 other tests fail
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@kms_flip@plain-flip-ts-check@c-hdmi-a1.html

  * igt@kms_flip@plain-flip-ts-check@d-hdmi-a1:
    - shard-adlp:         NOTRUN -> [FAIL][126] ([Intel XE#3149])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@kms_flip@plain-flip-ts-check@d-hdmi-a1.html

  * igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2:
    - shard-bmg:          NOTRUN -> [FAIL][127] ([Intel XE#2882]) +1 other test fail
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
    - shard-adlp:         [PASS][128] -> [SKIP][129] ([Intel XE#4947])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-adlp:         [PASS][130] -> [DMESG-FAIL][131] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][132] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][133] ([Intel XE#1401]) +2 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
    - shard-bmg:          NOTRUN -> [SKIP][134] ([Intel XE#2311]) +10 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move:
    - shard-adlp:         NOTRUN -> [SKIP][135] ([Intel XE#4947]) +14 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@drrs-suspend:
    - shard-lnl:          NOTRUN -> [SKIP][136] ([Intel XE#651]) +9 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
    - shard-adlp:         [PASS][137] -> [DMESG-FAIL][138] ([Intel XE#4543]) +1 other test dmesg-fail
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][139] ([Intel XE#4141]) +4 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][140] ([Intel XE#4543]) +9 other tests dmesg-fail
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][141] ([Intel XE#2312])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][142] ([Intel XE#656]) +24 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][143] ([Intel XE#651]) +27 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][144] ([Intel XE#651]) +25 other tests skip
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-dg2-set2:     NOTRUN -> [SKIP][145] ([Intel XE#658])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-adlp:         NOTRUN -> [SKIP][146] ([Intel XE#1151])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
    - shard-adlp:         NOTRUN -> [SKIP][147] ([Intel XE#653]) +28 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][148] ([Intel XE#653]) +21 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html

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

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

  * igt@kms_getfb@getfb-reject-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][151] ([Intel XE#2502])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-1/igt@kms_getfb@getfb-reject-ccs.html
    - shard-adlp:         NOTRUN -> [SKIP][152] ([Intel XE#1341])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-8/igt@kms_getfb@getfb-reject-ccs.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][153] ([Intel XE#605])
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@kms_getfb@getfb-reject-ccs.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][154] ([Intel XE#346])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-436/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][155] ([Intel XE#4298])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-464/igt@kms_joiner@basic-max-non-joiner.html
    - shard-lnl:          NOTRUN -> [SKIP][156] ([Intel XE#4298])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-1/igt@kms_joiner@basic-max-non-joiner.html
    - shard-adlp:         NOTRUN -> [SKIP][157] ([Intel XE#4298])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-6/igt@kms_joiner@basic-max-non-joiner.html
    - shard-bmg:          NOTRUN -> [SKIP][158] ([Intel XE#4298])
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-4/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][159] ([Intel XE#2925]) +1 other test skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-dg2-set2:     NOTRUN -> [SKIP][160] ([Intel XE#356])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
    - shard-dg2-set2:     NOTRUN -> [FAIL][161] ([Intel XE#616]) +5 other tests fail
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-435/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][162] ([Intel XE#4596])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-3/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-adlp:         NOTRUN -> [SKIP][163] ([Intel XE#4596])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-8/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_plane_multiple@tiling-4:
    - shard-adlp:         NOTRUN -> [SKIP][164] ([Intel XE#5020])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-1/igt@kms_plane_multiple@tiling-4.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][165] ([Intel XE#5020])
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-466/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-adlp:         NOTRUN -> [SKIP][166] ([Intel XE#309]) +7 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
    - shard-lnl:          NOTRUN -> [SKIP][167] ([Intel XE#309]) +4 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
    - shard-lnl:          NOTRUN -> [SKIP][168] ([Intel XE#2763]) +3 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][169] ([Intel XE#870]) +1 other test skip
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-adlp:         NOTRUN -> [SKIP][170] ([Intel XE#1122])
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-8/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          NOTRUN -> [FAIL][171] ([Intel XE#718])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [PASS][172] -> [FAIL][173] ([Intel XE#718])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-adlp:         NOTRUN -> [SKIP][174] ([Intel XE#734])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-adlp:         NOTRUN -> [SKIP][175] ([Intel XE#2007])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-8/igt@kms_pm_dc@deep-pkgc.html
    - shard-lnl:          NOTRUN -> [FAIL][176] ([Intel XE#2029])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-4/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][177] ([Intel XE#2499])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-8/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-adlp:         NOTRUN -> [SKIP][178] ([Intel XE#836]) +1 other test skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-6/igt@kms_pm_rpm@dpms-non-lpsp.html
    - shard-lnl:          NOTRUN -> [SKIP][179] ([Intel XE#1439] / [Intel XE#3141]) +1 other test skip
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-1/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-adlp:         [PASS][180] -> [SKIP][181] ([Intel XE#4962])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-1/igt@kms_pm_rpm@system-suspend-modeset.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_pm_rpm@system-suspend-modeset.html

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

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][183] ([Intel XE#1489]) +3 other tests skip
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][184] ([Intel XE#2893] / [Intel XE#4608])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][185] ([Intel XE#4608]) +3 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
    - shard-adlp:         NOTRUN -> [SKIP][186] ([Intel XE#1489]) +17 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
    - shard-bmg:          NOTRUN -> [SKIP][187] ([Intel XE#1489]) +3 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-dg2-set2:     NOTRUN -> [SKIP][188] ([Intel XE#1122])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-464/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@fbc-psr2-cursor-render@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][189] ([Intel XE#4609]) +2 other tests skip
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][190] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-464/igt@kms_psr@fbc-psr2-primary-render.html
    - shard-lnl:          NOTRUN -> [SKIP][191] ([Intel XE#1406]) +6 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_psr@pr-primary-page-flip:
    - shard-adlp:         NOTRUN -> [SKIP][192] ([Intel XE#2850] / [Intel XE#929]) +27 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@kms_psr@pr-primary-page-flip.html

  * igt@kms_psr@psr-primary-page-flip:
    - shard-bmg:          NOTRUN -> [SKIP][193] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-5/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-adlp:         NOTRUN -> [SKIP][194] ([Intel XE#2939])
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][195] ([Intel XE#2939])
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-464/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-adlp:         NOTRUN -> [SKIP][196] ([Intel XE#3414]) +6 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][197] ([Intel XE#3414]) +2 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-436/igt@kms_rotation_crc@bad-tiling.html
    - shard-lnl:          NOTRUN -> [SKIP][198] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-4/igt@kms_rotation_crc@bad-tiling.html
    - shard-bmg:          NOTRUN -> [SKIP][199] ([Intel XE#3414] / [Intel XE#3904])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-2/igt@kms_rotation_crc@bad-tiling.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-adlp:         NOTRUN -> [SKIP][200] ([Intel XE#1127])
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-dg2-set2:     NOTRUN -> [SKIP][201] ([Intel XE#1127]) +2 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-dg2-set2:     NOTRUN -> [SKIP][202] ([Intel XE#455]) +11 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@kms_scaling_modes@scaling-mode-full-aspect.html
    - shard-bmg:          NOTRUN -> [SKIP][203] ([Intel XE#2413])
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-lnl:          NOTRUN -> [SKIP][204] ([Intel XE#1435])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-adlp:         NOTRUN -> [SKIP][205] ([Intel XE#362]) +1 other test skip
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-6/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [FAIL][206] ([Intel XE#4459]) +1 other test fail
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@kms_vrr@flip-basic-fastset:
    - shard-bmg:          NOTRUN -> [SKIP][207] ([Intel XE#1499])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-3/igt@kms_vrr@flip-basic-fastset.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-dg2-set2:     NOTRUN -> [SKIP][208] ([Intel XE#1091] / [Intel XE#2849])
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-435/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@testdisplay:
    - shard-adlp:         NOTRUN -> [SKIP][209] ([Intel XE#4950]) +10 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@testdisplay.html

  * igt@xe_ccs@suspend-resume:
    - shard-adlp:         NOTRUN -> [SKIP][210] ([Intel XE#455] / [Intel XE#488]) +2 other tests skip
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@xe_ccs@suspend-resume.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-adlp:         NOTRUN -> [SKIP][211] ([Intel XE#1447]) +1 other test skip
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
    - shard-dg2-set2:     NOTRUN -> [SKIP][212] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-436/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html

  * igt@xe_copy_basic@mem-copy-linear-0x369:
    - shard-adlp:         NOTRUN -> [SKIP][213] ([Intel XE#1123]) +1 other test skip
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@xe_copy_basic@mem-copy-linear-0x369.html

  * igt@xe_copy_basic@mem-copy-linear-0xfffe:
    - shard-dg2-set2:     NOTRUN -> [SKIP][214] ([Intel XE#1123])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0xfffe.html

  * igt@xe_copy_basic@mem-set-linear-0x3fff:
    - shard-adlp:         NOTRUN -> [SKIP][215] ([Intel XE#1126])
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@xe_copy_basic@mem-set-linear-0x3fff.html

  * igt@xe_create@multigpu-create-massive-size:
    - shard-bmg:          NOTRUN -> [SKIP][216] ([Intel XE#2504])
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-6/igt@xe_create@multigpu-create-massive-size.html

  * igt@xe_eu_stall@unprivileged-access:
    - shard-adlp:         NOTRUN -> [SKIP][217] ([Intel XE#4497]) +1 other test skip
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@xe_eu_stall@unprivileged-access.html

  * igt@xe_eudebug@basic-close:
    - shard-dg2-set2:     NOTRUN -> [SKIP][218] ([Intel XE#4837]) +16 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-434/igt@xe_eudebug@basic-close.html

  * igt@xe_eudebug_online@interrupt-other:
    - shard-adlp:         NOTRUN -> [SKIP][219] ([Intel XE#4837]) +19 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-8/igt@xe_eudebug_online@interrupt-other.html

  * igt@xe_eudebug_online@single-step:
    - shard-bmg:          NOTRUN -> [SKIP][220] ([Intel XE#4837]) +5 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-2/igt@xe_eudebug_online@single-step.html

  * igt@xe_eudebug_sriov@deny-eudebug:
    - shard-dg2-set2:     NOTRUN -> [SKIP][221] ([Intel XE#4518]) +1 other test skip
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-464/igt@xe_eudebug_sriov@deny-eudebug.html

  * igt@xe_eudebug_sriov@deny-sriov:
    - shard-adlp:         NOTRUN -> [SKIP][222] ([Intel XE#4519])
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-1/igt@xe_eudebug_sriov@deny-sriov.html
    - shard-bmg:          NOTRUN -> [SKIP][223] ([Intel XE#4518])
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-7/igt@xe_eudebug_sriov@deny-sriov.html
    - shard-lnl:          NOTRUN -> [SKIP][224] ([Intel XE#4518])
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-6/igt@xe_eudebug_sriov@deny-sriov.html

  * igt@xe_evict@evict-beng-large-multi-vm:
    - shard-adlp:         NOTRUN -> [SKIP][225] ([Intel XE#261] / [Intel XE#688]) +4 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@xe_evict@evict-beng-large-multi-vm.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd:
    - shard-adlp:         NOTRUN -> [SKIP][226] ([Intel XE#688]) +4 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html

  * igt@xe_evict_ccs@evict-overcommit-simple:
    - shard-lnl:          NOTRUN -> [SKIP][227] ([Intel XE#688]) +2 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-3/igt@xe_evict_ccs@evict-overcommit-simple.html

  * igt@xe_exec_basic@multigpu-no-exec-userptr:
    - shard-lnl:          NOTRUN -> [SKIP][228] ([Intel XE#1392]) +7 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-userptr.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
    - shard-adlp:         NOTRUN -> [SKIP][229] ([Intel XE#1392]) +17 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-once-null-defer-bind:
    - shard-bmg:          NOTRUN -> [SKIP][230] ([Intel XE#2322]) +3 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-2/igt@xe_exec_basic@multigpu-once-null-defer-bind.html

  * igt@xe_exec_basic@twice-bindexecqueue:
    - shard-adlp:         [PASS][231] -> [SKIP][232] ([Intel XE#4945]) +10 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-1/igt@xe_exec_basic@twice-bindexecqueue.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@xe_exec_basic@twice-bindexecqueue.html

  * igt@xe_exec_capture@reset:
    - shard-dg2-set2:     [PASS][233] -> [INCOMPLETE][234] ([Intel XE#4842])
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-dg2-434/igt@xe_exec_capture@reset.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-435/igt@xe_exec_capture@reset.html

  * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm:
    - shard-adlp:         NOTRUN -> [SKIP][235] ([Intel XE#288]) +56 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html

  * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][236] ([Intel XE#288]) +20 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
    - shard-adlp:         NOTRUN -> [SKIP][237] ([Intel XE#2360]) +1 other test skip
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html

  * igt@xe_exec_reset@cat-error:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][238] ([Intel XE#3868])
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@xe_exec_reset@cat-error.html

  * igt@xe_exec_sip_eudebug@breakpoint-writesip:
    - shard-lnl:          NOTRUN -> [SKIP][239] ([Intel XE#4837]) +8 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-7/igt@xe_exec_sip_eudebug@breakpoint-writesip.html

  * igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][240] ([Intel XE#4943]) +15 other tests skip
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-3/igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
    - shard-dg2-set2:     NOTRUN -> [SKIP][241] ([Intel XE#4915]) +247 other tests skip
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][242] ([Intel XE#4943]) +8 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-shared-remap-dontunmap-eocheck:
    - shard-adlp:         NOTRUN -> [SKIP][243] ([Intel XE#4915]) +500 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-shared-remap-dontunmap-eocheck.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-dg2-set2:     NOTRUN -> [ABORT][244] ([Intel XE#4917] / [Intel XE#5227])
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-436/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-adlp:         NOTRUN -> [SKIP][245] ([Intel XE#2229])
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-8/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

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

  * igt@xe_module_load@force-load:
    - shard-dg2-set2:     NOTRUN -> [SKIP][247] ([Intel XE#378])
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-466/igt@xe_module_load@force-load.html

  * igt@xe_module_load@load:
    - shard-adlp:         ([PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272]) -> ([PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [SKIP][298]) ([Intel XE#378])
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-8/igt@xe_module_load@load.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-8/igt@xe_module_load@load.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-4/igt@xe_module_load@load.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-1/igt@xe_module_load@load.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-1/igt@xe_module_load@load.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-9/igt@xe_module_load@load.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-2/igt@xe_module_load@load.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-2/igt@xe_module_load@load.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-6/igt@xe_module_load@load.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-6/igt@xe_module_load@load.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-3/igt@xe_module_load@load.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-2/igt@xe_module_load@load.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-9/igt@xe_module_load@load.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-3/igt@xe_module_load@load.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-3/igt@xe_module_load@load.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-3/igt@xe_module_load@load.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-4/igt@xe_module_load@load.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-4/igt@xe_module_load@load.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-8/igt@xe_module_load@load.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-6/igt@xe_module_load@load.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-1/igt@xe_module_load@load.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-2/igt@xe_module_load@load.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-6/igt@xe_module_load@load.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-4/igt@xe_module_load@load.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-8/igt@xe_module_load@load.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@xe_module_load@load.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-1/igt@xe_module_load@load.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-1/igt@xe_module_load@load.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-8/igt@xe_module_load@load.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@xe_module_load@load.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-6/igt@xe_module_load@load.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@xe_module_load@load.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-1/igt@xe_module_load@load.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@xe_module_load@load.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@xe_module_load@load.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-8/igt@xe_module_load@load.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-8/igt@xe_module_load@load.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-6/igt@xe_module_load@load.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@xe_module_load@load.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@xe_module_load@load.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@xe_module_load@load.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@xe_module_load@load.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@xe_module_load@load.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@xe_module_load@load.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@xe_module_load@load.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@xe_module_load@load.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@xe_module_load@load.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-6/igt@xe_module_load@load.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@xe_module_load@load.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@xe_module_load@load.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@xe_module_load@load.html

  * igt@xe_noexec_ping_pong:
    - shard-adlp:         NOTRUN -> [SKIP][299] ([Intel XE#379])
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@xe_noexec_ping_pong.html

  * igt@xe_oa@buffer-fill:
    - shard-adlp:         NOTRUN -> [SKIP][300] ([Intel XE#2541] / [Intel XE#3573]) +12 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@xe_oa@buffer-fill.html

  * igt@xe_oa@polling-small-buf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][301] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@xe_oa@polling-small-buf.html

  * igt@xe_oa@syncs-syncobj-cfg:
    - shard-adlp:         NOTRUN -> [SKIP][302] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +1 other test skip
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@xe_oa@syncs-syncobj-cfg.html

  * igt@xe_oa@syncs-syncobj-wait:
    - shard-dg2-set2:     NOTRUN -> [SKIP][303] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-435/igt@xe_oa@syncs-syncobj-wait.html

  * igt@xe_pat@pat-index-xe2:
    - shard-adlp:         NOTRUN -> [SKIP][304] ([Intel XE#977])
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-1/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-adlp:         NOTRUN -> [SKIP][305] ([Intel XE#2838] / [Intel XE#979])
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelp:
    - shard-lnl:          NOTRUN -> [SKIP][306] ([Intel XE#977])
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-6/igt@xe_pat@pat-index-xelp.html

  * igt@xe_peer2peer@read:
    - shard-adlp:         NOTRUN -> [SKIP][307] ([Intel XE#1061])
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-6/igt@xe_peer2peer@read.html
    - shard-lnl:          NOTRUN -> [SKIP][308] ([Intel XE#1061])
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-1/igt@xe_peer2peer@read.html

  * igt@xe_pm@d3cold-mocs:
    - shard-adlp:         NOTRUN -> [SKIP][309] ([Intel XE#2284])
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][310] ([Intel XE#2284] / [Intel XE#366])
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-434/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pm@s2idle-d3cold-basic-exec:
    - shard-adlp:         NOTRUN -> [SKIP][311] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-6/igt@xe_pm@s2idle-d3cold-basic-exec.html

  * igt@xe_pm@s3-mocs:
    - shard-lnl:          NOTRUN -> [SKIP][312] ([Intel XE#584]) +1 other test skip
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-5/igt@xe_pm@s3-mocs.html

  * igt@xe_pm@s4-mocs:
    - shard-lnl:          [PASS][313] -> [ABORT][314] ([Intel XE#1794])
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-lnl-8/igt@xe_pm@s4-mocs.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-2/igt@xe_pm@s4-mocs.html

  * igt@xe_pmu@engine-activity-single-load@engine-drm_xe_engine_class_render0:
    - shard-adlp:         [PASS][315] -> [FAIL][316] ([Intel XE#5178]) +3 other tests fail
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-1/igt@xe_pmu@engine-activity-single-load@engine-drm_xe_engine_class_render0.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@xe_pmu@engine-activity-single-load@engine-drm_xe_engine_class_render0.html

  * igt@xe_pmu@fn-engine-activity-load:
    - shard-bmg:          NOTRUN -> [SKIP][317] ([Intel XE#4650])
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-3/igt@xe_pmu@fn-engine-activity-load.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][318] ([Intel XE#4650])
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-434/igt@xe_pmu@fn-engine-activity-load.html
    - shard-lnl:          NOTRUN -> [SKIP][319] ([Intel XE#4650])
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-7/igt@xe_pmu@fn-engine-activity-load.html

  * igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
    - shard-adlp:         NOTRUN -> [SKIP][320] ([Intel XE#4733]) +4 other tests skip
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
    - shard-bmg:          NOTRUN -> [SKIP][321] ([Intel XE#4733])
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-7/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html

  * igt@xe_pxp@pxp-termination-key-update-post-rpm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][322] ([Intel XE#4733]) +1 other test skip
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-435/igt@xe_pxp@pxp-termination-key-update-post-rpm.html

  * igt@xe_query@multigpu-query-config:
    - shard-dg2-set2:     NOTRUN -> [SKIP][323] ([Intel XE#944]) +2 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@xe_query@multigpu-query-config.html

  * igt@xe_query@multigpu-query-engines:
    - shard-adlp:         NOTRUN -> [SKIP][324] ([Intel XE#944]) +3 other tests skip
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@xe_query@multigpu-query-engines.html

  * igt@xe_query@multigpu-query-uc-fw-version-guc:
    - shard-lnl:          NOTRUN -> [SKIP][325] ([Intel XE#944]) +2 other tests skip
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-3/igt@xe_query@multigpu-query-uc-fw-version-guc.html

  * igt@xe_render_copy@render-stress-0-copies:
    - shard-dg2-set2:     NOTRUN -> [SKIP][326] ([Intel XE#4814]) +1 other test skip
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-434/igt@xe_render_copy@render-stress-0-copies.html

  * igt@xe_render_copy@render-stress-2-copies:
    - shard-adlp:         NOTRUN -> [SKIP][327] ([Intel XE#4814]) +1 other test skip
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-6/igt@xe_render_copy@render-stress-2-copies.html

  * igt@xe_spin_batch@spin-mem-copy:
    - shard-dg2-set2:     NOTRUN -> [SKIP][328] ([Intel XE#4821])
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@xe_spin_batch@spin-mem-copy.html
    - shard-adlp:         NOTRUN -> [SKIP][329] ([Intel XE#4821])
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@xe_spin_batch@spin-mem-copy.html

  * igt@xe_sriov_auto_provisioning@exclusive-ranges:
    - shard-lnl:          NOTRUN -> [SKIP][330] ([Intel XE#4130])
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-6/igt@xe_sriov_auto_provisioning@exclusive-ranges.html

  * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
    - shard-adlp:         NOTRUN -> [ABORT][331] ([Intel XE#5214]) +3 other tests abort
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html

  * igt@xe_sriov_flr@flr-each-isolation:
    - shard-dg2-set2:     NOTRUN -> [SKIP][332] ([Intel XE#3342])
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-435/igt@xe_sriov_flr@flr-each-isolation.html
    - shard-lnl:          NOTRUN -> [SKIP][333] ([Intel XE#3342])
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-6/igt@xe_sriov_flr@flr-each-isolation.html
    - shard-bmg:          NOTRUN -> [SKIP][334] ([Intel XE#3342])
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-7/igt@xe_sriov_flr@flr-each-isolation.html

  * igt@xe_sriov_flr@flr-twice:
    - shard-dg2-set2:     NOTRUN -> [SKIP][335] ([Intel XE#4273])
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@xe_sriov_flr@flr-twice.html

  * igt@xe_sriov_scheduling@equal-throughput:
    - shard-lnl:          NOTRUN -> [SKIP][336] ([Intel XE#4351])
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-5/igt@xe_sriov_scheduling@equal-throughput.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets:
    - shard-dg2-set2:     NOTRUN -> [SKIP][337] ([Intel XE#4351])
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-436/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html

  * igt@xe_vm@large-split-binds-2147483648:
    - shard-adlp:         NOTRUN -> [SKIP][338] ([Intel XE#4945]) +38 other tests skip
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@xe_vm@large-split-binds-2147483648.html

  
#### Possible fixes ####

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-bmg:          [SKIP][339] ([Intel XE#2291]) -> [PASS][340] +6 other tests pass
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-bmg:          [SKIP][341] ([Intel XE#1340]) -> [PASS][342]
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-bmg:          [SKIP][343] ([Intel XE#4294]) -> [PASS][344]
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-bmg:          [SKIP][345] ([Intel XE#2316]) -> [PASS][346] +9 other tests pass
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@blocking-absolute-wf_vblank@b-dp4:
    - shard-dg2-set2:     [INCOMPLETE][347] ([Intel XE#2049]) -> [PASS][348] +1 other test pass
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-dg2-435/igt@kms_flip@blocking-absolute-wf_vblank@b-dp4.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-435/igt@kms_flip@blocking-absolute-wf_vblank@b-dp4.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [FAIL][349] ([Intel XE#301]) -> [PASS][350]
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4:
    - shard-dg2-set2:     [FAIL][351] ([Intel XE#301]) -> [PASS][352] +1 other test pass
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-bmg:          [INCOMPLETE][353] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][354] +1 other test pass
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-2/igt@kms_flip@flip-vs-suspend.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-wf_vblank-interruptible@a-dp2:
    - shard-bmg:          [FAIL][355] ([Intel XE#3098]) -> [PASS][356] +1 other test pass
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-8/igt@kms_flip@flip-vs-wf_vblank-interruptible@a-dp2.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-2/igt@kms_flip@flip-vs-wf_vblank-interruptible@a-dp2.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
    - shard-adlp:         [DMESG-FAIL][357] ([Intel XE#4543]) -> [PASS][358] +2 other tests pass
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_lease@setcrtc-implicit-plane:
    - shard-adlp:         [DMESG-WARN][359] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][360] +4 other tests pass
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-8/igt@kms_lease@setcrtc-implicit-plane.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-8/igt@kms_lease@setcrtc-implicit-plane.html

  * igt@kms_plane_cursor@viewport:
    - shard-dg2-set2:     [FAIL][361] ([Intel XE#616]) -> [PASS][362] +1 other test pass
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-dg2-433/igt@kms_plane_cursor@viewport.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-464/igt@kms_plane_cursor@viewport.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-bmg:          [SKIP][363] ([Intel XE#4596]) -> [PASS][364]
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-x.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-bmg:          [SKIP][365] ([Intel XE#2571]) -> [PASS][366]
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_setmode@basic@pipe-b-edp-1:
    - shard-lnl:          [FAIL][367] ([Intel XE#2883]) -> [PASS][368] +2 other tests pass
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html

  * igt@xe_exec_reset@gt-reset-stress:
    - shard-adlp:         [DMESG-WARN][369] ([Intel XE#4812]) -> [PASS][370]
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-9/igt@xe_exec_reset@gt-reset-stress.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-3/igt@xe_exec_reset@gt-reset-stress.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
    - shard-lnl:          [FAIL][371] ([Intel XE#5018]) -> [PASS][372]
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html

  * igt@xe_module_load@load:
    - shard-bmg:          ([SKIP][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382], [PASS][383], [PASS][384], [PASS][385], [PASS][386], [PASS][387], [PASS][388], [PASS][389], [PASS][390], [PASS][391], [PASS][392], [PASS][393], [PASS][394], [PASS][395], [PASS][396], [PASS][397], [PASS][398]) ([Intel XE#2457]) -> ([PASS][399], [PASS][400], [PASS][401], [PASS][402], [PASS][403], [PASS][404], [PASS][405], [PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410], [PASS][411], [PASS][412], [PASS][413], [PASS][414], [PASS][415], [PASS][416], [PASS][417], [PASS][418], [PASS][419], [PASS][420], [PASS][421], [PASS][422])
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-5/igt@xe_module_load@load.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-3/igt@xe_module_load@load.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-3/igt@xe_module_load@load.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-3/igt@xe_module_load@load.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-4/igt@xe_module_load@load.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-5/igt@xe_module_load@load.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-4/igt@xe_module_load@load.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-2/igt@xe_module_load@load.html
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-2/igt@xe_module_load@load.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-5/igt@xe_module_load@load.html
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-5/igt@xe_module_load@load.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-7/igt@xe_module_load@load.html
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-7/igt@xe_module_load@load.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-1/igt@xe_module_load@load.html
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-1/igt@xe_module_load@load.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-1/igt@xe_module_load@load.html
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-6/igt@xe_module_load@load.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-2/igt@xe_module_load@load.html
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-6/igt@xe_module_load@load.html
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-6/igt@xe_module_load@load.html
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-8/igt@xe_module_load@load.html
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-8/igt@xe_module_load@load.html
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-4/igt@xe_module_load@load.html
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-5/igt@xe_module_load@load.html
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-7/igt@xe_module_load@load.html
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-8/igt@xe_module_load@load.html
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-4/igt@xe_module_load@load.html
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-8/igt@xe_module_load@load.html
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-1/igt@xe_module_load@load.html
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-1/igt@xe_module_load@load.html
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-2/igt@xe_module_load@load.html
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-3/igt@xe_module_load@load.html
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-4/igt@xe_module_load@load.html
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-7/igt@xe_module_load@load.html
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-7/igt@xe_module_load@load.html
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-3/igt@xe_module_load@load.html
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-5/igt@xe_module_load@load.html
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-1/igt@xe_module_load@load.html
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-8/igt@xe_module_load@load.html
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-2/igt@xe_module_load@load.html
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-8/igt@xe_module_load@load.html
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-2/igt@xe_module_load@load.html
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-7/igt@xe_module_load@load.html
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-6/igt@xe_module_load@load.html
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-6/igt@xe_module_load@load.html
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-7/igt@xe_module_load@load.html
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-4/igt@xe_module_load@load.html
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-5/igt@xe_module_load@load.html
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-5/igt@xe_module_load@load.html
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-5/igt@xe_module_load@load.html

  * igt@xe_pm@s4-vm-bind-prefetch:
    - shard-lnl:          [ABORT][423] ([Intel XE#1794]) -> [PASS][424]
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-lnl-7/igt@xe_pm@s4-vm-bind-prefetch.html

  * igt@xe_pmu@gt-frequency:
    - shard-dg2-set2:     [FAIL][425] ([Intel XE#4819]) -> [PASS][426] +1 other test pass
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-dg2-434/igt@xe_pmu@gt-frequency.html
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-dg2-436/igt@xe_pmu@gt-frequency.html

  
#### Warnings ####

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-adlp:         [SKIP][427] ([Intel XE#1124]) -> [SKIP][428] ([Intel XE#4947])
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
    - shard-adlp:         [SKIP][429] ([Intel XE#316]) -> [SKIP][430] ([Intel XE#4947])
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-1/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - shard-adlp:         [SKIP][431] ([Intel XE#2191]) -> [SKIP][432] ([Intel XE#4950])
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
    - shard-adlp:         [SKIP][433] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][434] ([Intel XE#4947]) +1 other test skip
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-adlp:         [SKIP][435] ([Intel XE#306]) -> [SKIP][436] ([Intel XE#4950])
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-6/igt@kms_chamelium_color@ctm-max.html
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-bmg:          [SKIP][437] ([Intel XE#2341]) -> [FAIL][438] ([Intel XE#1178])
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-4/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-adlp:         [SKIP][439] ([Intel XE#307]) -> [SKIP][440] ([Intel XE#4950])
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-8/igt@kms_content_protection@dp-mst-lic-type-0.html
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@srm:
    - shard-bmg:          [FAIL][441] ([Intel XE#1178]) -> [SKIP][442] ([Intel XE#2341])
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-3/igt@kms_content_protection@srm.html
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-5/igt@kms_content_protection@srm.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
    - shard-adlp:         [SKIP][443] ([Intel XE#4422]) -> [SKIP][444] ([Intel XE#4945])
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
    - shard-adlp:         [SKIP][445] ([Intel XE#455]) -> [SKIP][446] ([Intel XE#4947])
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
    - shard-adlp:         [SKIP][447] ([Intel XE#651]) -> [SKIP][448] ([Intel XE#4947]) +1 other test skip
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][449] ([Intel XE#2311]) -> [SKIP][450] ([Intel XE#2312]) +15 other tests skip
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][451] ([Intel XE#2312]) -> [SKIP][452] ([Intel XE#4141]) +4 other tests skip
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][453] ([Intel XE#4141]) -> [SKIP][454] ([Intel XE#2312]) +6 other tests skip
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][455] ([Intel XE#2312]) -> [SKIP][456] ([Intel XE#2311]) +19 other tests skip
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          [SKIP][457] ([Intel XE#2312]) -> [SKIP][458] ([Intel XE#2313]) +16 other tests skip
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render:
    - shard-adlp:         [SKIP][459] ([Intel XE#653]) -> [SKIP][460] ([Intel XE#2351] / [Intel XE#4947])
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][461] ([Intel XE#2313]) -> [SKIP][462] ([Intel XE#2312]) +17 other tests skip
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          [SKIP][463] ([Intel XE#5021]) -> [SKIP][464] ([Intel XE#4596])
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-y.html
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-adlp:         [SKIP][465] ([Intel XE#1129]) -> [SKIP][466] ([Intel XE#4947])
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-3/igt@kms_pm_dc@dc5-psr.html
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
    - shard-adlp:         [SKIP][467] ([Intel XE#1489]) -> [SKIP][468] ([Intel XE#4947])
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-8/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr@psr2-cursor-render:
    - shard-adlp:         [SKIP][469] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][470] ([Intel XE#4947])
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-9/igt@kms_psr@psr2-cursor-render.html
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@kms_psr@psr2-cursor-render.html

  * igt@xe_eu_stall@non-blocking-read:
    - shard-adlp:         [SKIP][471] ([Intel XE#4497]) -> [SKIP][472] ([Intel XE#4945])
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-3/igt@xe_eu_stall@non-blocking-read.html
   [472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@xe_eu_stall@non-blocking-read.html

  * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram:
    - shard-adlp:         [SKIP][473] ([Intel XE#4837]) -> [SKIP][474] ([Intel XE#4945]) +1 other test skip
   [473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-1/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html

  * igt@xe_evict@evict-beng-large-external-cm:
    - shard-adlp:         [SKIP][475] ([Intel XE#261] / [Intel XE#688]) -> [SKIP][476] ([Intel XE#4945])
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-6/igt@xe_evict@evict-beng-large-external-cm.html
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@xe_evict@evict-beng-large-external-cm.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-imm:
    - shard-adlp:         [SKIP][477] ([Intel XE#288]) -> [SKIP][478] ([Intel XE#4945]) +1 other test skip
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-4/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html

  * igt@xe_exec_system_allocator@twice-free:
    - shard-adlp:         [SKIP][479] ([Intel XE#4915]) -> [SKIP][480] ([Intel XE#4945]) +23 other tests skip
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-1/igt@xe_exec_system_allocator@twice-free.html
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@xe_exec_system_allocator@twice-free.html

  * igt@xe_mmap@vram:
    - shard-adlp:         [SKIP][481] ([Intel XE#1008]) -> [SKIP][482] ([Intel XE#4945])
   [481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-1/igt@xe_mmap@vram.html
   [482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-2/igt@xe_mmap@vram.html

  * igt@xe_pmu@engine-activity-load:
    - shard-adlp:         [ABORT][483] ([Intel XE#5214]) -> [DMESG-WARN][484] ([Intel XE#5214]) +3 other tests dmesg-warn
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-1/igt@xe_pmu@engine-activity-load.html
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-4/igt@xe_pmu@engine-activity-load.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
    - shard-adlp:         [ABORT][485] ([Intel XE#5214]) -> [DMESG-FAIL][486] ([Intel XE#5237]) +1 other test dmesg-fail
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8/shard-adlp-6/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149816v6/shard-adlp-9/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html

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

  [Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1341
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
  [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#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#2007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2007
  [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
  [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [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#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
  [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
  [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4164]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4164
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
  [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
  [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497
  [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
  [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
  [Intel XE#4519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4519
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4812]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4812
  [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
  [Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
  [Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
  [Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#4945]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4945
  [Intel XE#4947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4947
  [Intel XE#4950]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4950
  [Intel XE#4962]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4962
  [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#5172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5172
  [Intel XE#5176]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5176
  [Intel XE#5178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5178
  [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
  [Intel XE#5214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5214
  [Intel XE#5227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5227
  [Intel XE#5237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5237
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979


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

  * IGT: IGT_8412 -> IGT_8413
  * Linux: xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8 -> xe-pw-149816v6

  IGT_8412: 8412
  IGT_8413: 8413
  xe-3261-95f0ac069cc2eee10b5d5e0ba67502ccea089de8: 95f0ac069cc2eee10b5d5e0ba67502ccea089de8
  xe-pw-149816v6: 149816v6

== Logs ==

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

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

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

* Re: [PATCH v4] drm/xe/hwmon: Fix xe_hwmon_power_max_write
  2025-06-17 12:00 [PATCH v4] drm/xe/hwmon: Fix xe_hwmon_power_max_write Karthik Poosa
                   ` (3 preceding siblings ...)
  2025-06-17 19:36 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-06-19 15:32 ` Thomas Hellström
  4 siblings, 0 replies; 6+ messages in thread
From: Thomas Hellström @ 2025-06-19 15:32 UTC (permalink / raw)
  To: Karthik Poosa, intel-xe; +Cc: anshuman.gupta, badal.nilawar, riana.tauro

Hi, Karthik

On Tue, 2025-06-17 at 17:30 +0530, Karthik Poosa wrote:
> Prevent other bits of mailbox power limit from being overwritten with
> 0.
> This issue was due to a missing read and modify of current power
> limit,
> before setting a requested mailbox power limit, which is added in
> this
> patch.
> 
> v2:
>  - Improve commit message. (Anshuman)
> 
> v3:
>  - Rebase.
>  - Rephrase commit message. (Riana)
>  - Add read-modify-write variant of
> xe_hwmon_pcode_write_power_limit()
>    i.e. xe_hwmon_pcode_rmw_power_limit(). (Badal)
>  - Use xe_hwmon_pcode_rmw_power_limit() to set mailbox power limits.
>  - Remove xe_hwmon_pcode_write_power_limit() as all mailbox power
> limits
>    writes use xe_hwmon_pcode_rmw_power_limit() only.
> 
> v4:
>  - Use PWR_LIM in place of (PWR_LIM_EN | PWR_LIM_VAL) wherever
>    applicable. (Riana)
> 
> Fixes: 7596d839f6228 ("drm/xe/hwmon: Add support to manage power

This patch has non-trivial conflicts in drm-xe-fixes. Please help
backporting by helping resolving those:

dim update-branches
dim checkout drm-xe-fixes
dim cherry-pick 8aa7306631f0

Manually fix conflicts

git add <fixed files>
git cherry-pick --continue

Then please send me the resulting patch (do not push drm-xe-fixes).

Please let me know if you need assistance.

Thanks,
Thomas


> limits though mailbox")
> Reviewed-by: Riana Tauro <riana.tauro@intel.com>
> Signed-off-by: Karthik Poosa <karthik.poosa@intel.com>
> ---
>  drivers/gpu/drm/xe/regs/xe_mchbar_regs.h |  1 +
>  drivers/gpu/drm/xe/xe_hwmon.c            | 50 +++++++++++-----------
> --
>  2 files changed, 24 insertions(+), 27 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/regs/xe_mchbar_regs.h
> b/drivers/gpu/drm/xe/regs/xe_mchbar_regs.h
> index 5394a1373a6b..ef2bf984723f 100644
> --- a/drivers/gpu/drm/xe/regs/xe_mchbar_regs.h
> +++ b/drivers/gpu/drm/xe/regs/xe_mchbar_regs.h
> @@ -40,6 +40,7 @@
>  #define
> PCU_CR_PACKAGE_RAPL_LIMIT		XE_REG(MCHBAR_MIRROR_BASE_SNB + 0x59a0)
>  #define   PWR_LIM_VAL				REG_GENMASK(14, 0)
>  #define   PWR_LIM_EN				REG_BIT(15)
> +#define   PWR_LIM				REG_GENMASK(15, 0)
>  #define   PWR_LIM_TIME				REG_GENMASK(23, 17)
>  #define   PWR_LIM_TIME_X			REG_GENMASK(23, 22)
>  #define   PWR_LIM_TIME_Y			REG_GENMASK(21, 17)
> diff --git a/drivers/gpu/drm/xe/xe_hwmon.c
> b/drivers/gpu/drm/xe/xe_hwmon.c
> index 0d32e977537c..f08fc4377d25 100644
> --- a/drivers/gpu/drm/xe/xe_hwmon.c
> +++ b/drivers/gpu/drm/xe/xe_hwmon.c
> @@ -175,8 +175,8 @@ static int xe_hwmon_pcode_read_power_limit(const
> struct xe_hwmon *hwmon, u32 att
>  	return ret;
>  }
>  
> -static int xe_hwmon_pcode_write_power_limit(const struct xe_hwmon
> *hwmon, u32 attr, u8 channel,
> -					    u32 uval)
> +static int xe_hwmon_pcode_rmw_power_limit(const struct xe_hwmon
> *hwmon, u32 attr, u8 channel,
> +					  u32 clr, u32 set)
>  {
>  	struct xe_tile *root_tile = xe_device_get_root_tile(hwmon-
> >xe);
>  	u32 val0, val1;
> @@ -195,9 +195,9 @@ static int xe_hwmon_pcode_write_power_limit(const
> struct xe_hwmon *hwmon, u32 at
>  			channel, val0, val1, ret);
>  
>  	if (attr == PL1_HWMON_ATTR)
> -		val0 = uval;
> +		val0 = (val0 & ~clr) | set;
>  	else if (attr == PL2_HWMON_ATTR)
> -		val1 = uval;
> +		val1 = (val1 & ~clr) | set;
>  	else
>  		return -EIO;
>  
> @@ -342,7 +342,7 @@ static int xe_hwmon_power_max_write(struct
> xe_hwmon *hwmon, u32 attr, int channe
>  		if (hwmon->xe->info.has_mbx_power_limits) {
>  			drm_dbg(&hwmon->xe->drm, "disabling %s on
> channel %d\n",
>  				PWR_ATTR_TO_STR(attr), channel);
> -			xe_hwmon_pcode_write_power_limit(hwmon,
> attr, channel, 0);
> +			xe_hwmon_pcode_rmw_power_limit(hwmon, attr,
> channel, PWR_LIM_EN, 0);
>  			xe_hwmon_pcode_read_power_limit(hwmon, attr,
> channel, &reg_val);
>  		} else {
>  			reg_val = xe_mmio_rmw32(mmio, rapl_limit,
> PWR_LIM_EN, 0);
> @@ -378,10 +378,9 @@ static int xe_hwmon_power_max_write(struct
> xe_hwmon *hwmon, u32 attr, int channe
>  	reg_val = PWR_LIM_EN | REG_FIELD_PREP(PWR_LIM_VAL, reg_val);
>  
>  	if (hwmon->xe->info.has_mbx_power_limits)
> -		ret = xe_hwmon_pcode_write_power_limit(hwmon, attr,
> channel, reg_val);
> +		ret = xe_hwmon_pcode_rmw_power_limit(hwmon, attr,
> channel, PWR_LIM, reg_val);
>  	else
> -		reg_val = xe_mmio_rmw32(mmio, rapl_limit, PWR_LIM_EN
> | PWR_LIM_VAL,
> -					reg_val);
> +		reg_val = xe_mmio_rmw32(mmio, rapl_limit, PWR_LIM,
> reg_val);
>  unlock:
>  	mutex_unlock(&hwmon->hwmon_lock);
>  	return ret;
> @@ -591,14 +590,11 @@ xe_hwmon_power_max_interval_store(struct device
> *dev, struct device_attribute *a
>  
>  	mutex_lock(&hwmon->hwmon_lock);
>  
> -	if (hwmon->xe->info.has_mbx_power_limits) {
> -		ret = xe_hwmon_pcode_read_power_limit(hwmon,
> power_attr, channel, (u32 *)&r);
> -		r = (r & ~PWR_LIM_TIME) | rxy;
> -		xe_hwmon_pcode_write_power_limit(hwmon, power_attr,
> channel, r);
> -	} else {
> +	if (hwmon->xe->info.has_mbx_power_limits)
> +		xe_hwmon_pcode_rmw_power_limit(hwmon, power_attr,
> channel, PWR_LIM_TIME, rxy);
> +	else
>  		r = xe_mmio_rmw32(mmio, xe_hwmon_get_reg(hwmon,
> REG_PKG_RAPL_LIMIT, channel),
>  				  PWR_LIM_TIME, rxy);
> -	}
>  
>  	mutex_unlock(&hwmon->hwmon_lock);
>  
> @@ -1217,25 +1213,25 @@ xe_hwmon_get_preregistration_info(struct
> xe_hwmon *hwmon)
>  						    &hwmon-
> >pl1_on_boot[CHANNEL_PKG]) |
>  		    xe_hwmon_pcode_read_power_limit(hwmon,
> PL2_HWMON_ATTR, CHANNEL_CARD,
>  						    &hwmon-
> >pl2_on_boot[CHANNEL_CARD]) |
> -		    xe_hwmon_pcode_read_power_limit(hwmon,
> PL1_HWMON_ATTR, CHANNEL_PKG,
> +		    xe_hwmon_pcode_read_power_limit(hwmon,
> PL2_HWMON_ATTR, CHANNEL_PKG,
>  						    &hwmon-
> >pl2_on_boot[CHANNEL_PKG])) {
>  			drm_warn(&hwmon->xe->drm,
>  				 "Failed to read power limits, check
> GPU firmware !\n");
>  		} else {
>  			drm_info(&hwmon->xe->drm, "Using mailbox
> commands for power limits\n");
>  			/* Write default limits to read from pcode
> from now on. */
> -			xe_hwmon_pcode_write_power_limit(hwmon,
> PL1_HWMON_ATTR,
> -							
> CHANNEL_CARD,
> -							 hwmon-
> >pl1_on_boot[CHANNEL_CARD]);
> -			xe_hwmon_pcode_write_power_limit(hwmon,
> PL1_HWMON_ATTR,
> -							
> CHANNEL_PKG,
> -							 hwmon-
> >pl1_on_boot[CHANNEL_PKG]);
> -			xe_hwmon_pcode_write_power_limit(hwmon,
> PL2_HWMON_ATTR,
> -							
> CHANNEL_CARD,
> -							 hwmon-
> >pl2_on_boot[CHANNEL_CARD]);
> -			xe_hwmon_pcode_write_power_limit(hwmon,
> PL2_HWMON_ATTR,
> -							
> CHANNEL_PKG,
> -							 hwmon-
> >pl2_on_boot[CHANNEL_PKG]);
> +			xe_hwmon_pcode_rmw_power_limit(hwmon,
> PL1_HWMON_ATTR,
> +						       CHANNEL_CARD,
> PWR_LIM | PWR_LIM_TIME,
> +						       hwmon-
> >pl1_on_boot[CHANNEL_CARD]);
> +			xe_hwmon_pcode_rmw_power_limit(hwmon,
> PL1_HWMON_ATTR,
> +						       CHANNEL_PKG,
> PWR_LIM | PWR_LIM_TIME,
> +						       hwmon-
> >pl1_on_boot[CHANNEL_PKG]);
> +			xe_hwmon_pcode_rmw_power_limit(hwmon,
> PL2_HWMON_ATTR,
> +						       CHANNEL_CARD,
> PWR_LIM | PWR_LIM_TIME,
> +						       hwmon-
> >pl2_on_boot[CHANNEL_CARD]);
> +			xe_hwmon_pcode_rmw_power_limit(hwmon,
> PL2_HWMON_ATTR,
> +						       CHANNEL_PKG,
> PWR_LIM | PWR_LIM_TIME,
> +						       hwmon-
> >pl2_on_boot[CHANNEL_PKG]);
>  			hwmon->scl_shift_power = PWR_UNIT;
>  			hwmon->scl_shift_energy = ENERGY_UNIT;
>  			hwmon->scl_shift_time = TIME_UNIT;


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

end of thread, other threads:[~2025-06-19 15:32 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-17 12:00 [PATCH v4] drm/xe/hwmon: Fix xe_hwmon_power_max_write Karthik Poosa
2025-06-17 12:03 ` Nilawar, Badal
2025-06-17 12:08 ` ✓ CI.KUnit: success for drm/xe/hwmon: Fix xe_hwmon_power_max_write (rev6) Patchwork
2025-06-17 12:55 ` ✓ Xe.CI.BAT: " Patchwork
2025-06-17 19:36 ` ✗ Xe.CI.Full: failure " Patchwork
2025-06-19 15:32 ` [PATCH v4] drm/xe/hwmon: Fix xe_hwmon_power_max_write Thomas Hellström

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).