Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] drm/xe: Expose fan control and voltage regulator information
@ 2025-07-04 11:23 Raag Jadav
  2025-07-04 11:30 ` ✓ CI.KUnit: success for " Patchwork
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Raag Jadav @ 2025-07-04 11:23 UTC (permalink / raw)
  To: lucas.demarchi, rodrigo.vivi
  Cc: intel-xe, anshuman.gupta, badal.nilawar, riana.tauro, Raag Jadav

Expose sysfs attributes for late binding features which provide information
about their support, provisioning and bound version to the user.

v2: s/late_bind_fan_info/lb_fan_control_info (Badal)
    s/late_bind_vr_info/lb_voltage_regulator_info (Badal)
    s/LATE_BINDING/PCODE_LATE_BINDING (Badal)
    Add VERSION_MASK macros (Badal)

Signed-off-by: Raag Jadav <raag.jadav@intel.com>
---
 drivers/gpu/drm/xe/xe_device_sysfs.c | 121 ++++++++++++++++++++++++++-
 drivers/gpu/drm/xe/xe_pcode_api.h    |  15 ++++
 2 files changed, 135 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_device_sysfs.c b/drivers/gpu/drm/xe/xe_device_sysfs.c
index b9440f8c781e..8a1bb2b7c951 100644
--- a/drivers/gpu/drm/xe/xe_device_sysfs.c
+++ b/drivers/gpu/drm/xe/xe_device_sysfs.c
@@ -24,6 +24,15 @@
  *
  * vram_d3cold_threshold - Report/change vram used threshold(in MB) below
  * which vram save/restore is permissible during runtime D3cold entry/exit.
+ *
+ * lb_fan_control_info - Fan control information of the device in comma
+ * separated format as ``<supported>,<provisioned>,<version>`` with optional
+ * ``<version>`` field which is available only if provisioned by late binding.
+ *
+ * lb_voltage_regulator_info - Voltage regulator information of the device in
+ * comma separated format as ``<supported>,<provisioned>,<version>`` with
+ * optional ``<version>`` field which is available only if provisioned by late
+ * binding.
  */
 
 static ssize_t
@@ -65,6 +74,110 @@ vram_d3cold_threshold_store(struct device *dev, struct device_attribute *attr,
 
 static DEVICE_ATTR_RW(vram_d3cold_threshold);
 
+static ssize_t
+lb_fan_control_info_show(struct device *dev, struct device_attribute *attr, char *buf)
+{
+	struct xe_device *xe = pdev_to_xe_device(to_pci_dev(dev));
+	struct xe_tile *root = xe_device_get_root_tile(xe);
+	u32 cap, ver_low = FAN_TABLE, ver_high = FAN_TABLE;
+	bool supported, provisioned;
+	int ret, len = 0;
+
+	xe_pm_runtime_get(xe);
+
+	ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_CAPABILITY_STATUS, 0),
+			    &cap, NULL);
+	if (ret)
+		goto out;
+
+	supported = REG_FIELD_GET(V1_FAN_SUPPORTED, cap);
+	provisioned = REG_FIELD_GET(V1_FAN_PROVISIONED, cap);
+
+	if (provisioned) {
+		ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_VERSION_LOW, 0),
+				    &ver_low, NULL);
+		if (ret)
+			goto out;
+
+		ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_VERSION_HIGH, 0),
+				    &ver_high, NULL);
+		if (ret)
+			goto out;
+	}
+
+	len += sysfs_emit_at(buf, len, "%u", supported);
+	len += sysfs_emit_at(buf, len, ",%u", provisioned);
+
+	if (provisioned)
+		len += sysfs_emit_at(buf, len, ",%u.%u.%u.%u",
+				     REG_FIELD_GET(MAJOR_VERSION_MASK, ver_low),
+				     REG_FIELD_GET(MINOR_VERSION_MASK, ver_low),
+				     REG_FIELD_GET(HOTFIX_VERSION_MASK, ver_high),
+				     REG_FIELD_GET(BUILD_VERSION_MASK, ver_high));
+
+	len += sysfs_emit_at(buf, len, "\n");
+out:
+	xe_pm_runtime_put(xe);
+
+	return ret ?: len;
+}
+static DEVICE_ATTR_ADMIN_RO(lb_fan_control_info);
+
+static ssize_t
+lb_voltage_regulator_info_show(struct device *dev, struct device_attribute *attr, char *buf)
+{
+	struct xe_device *xe = pdev_to_xe_device(to_pci_dev(dev));
+	struct xe_tile *root = xe_device_get_root_tile(xe);
+	u32 cap, ver_low = VR_CONFIG, ver_high = VR_CONFIG;
+	bool supported, provisioned;
+	int ret, len = 0;
+
+	xe_pm_runtime_get(xe);
+
+	ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_CAPABILITY_STATUS, 0),
+			    &cap, NULL);
+	if (ret)
+		goto out;
+
+	supported = REG_FIELD_GET(VR_PARAMS_SUPPORTED, cap);
+	provisioned = REG_FIELD_GET(VR_PARAMS_PROVISIONED, cap);
+
+	if (provisioned) {
+		ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_VERSION_LOW, 0),
+				    &ver_low, NULL);
+		if (ret)
+			goto out;
+
+		ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_VERSION_HIGH, 0),
+				    &ver_high, NULL);
+		if (ret)
+			goto out;
+	}
+
+	len += sysfs_emit_at(buf, len, "%u", supported);
+	len += sysfs_emit_at(buf, len, ",%u", provisioned);
+
+	if (provisioned)
+		len += sysfs_emit_at(buf, len, ",%u.%u.%u.%u",
+				     REG_FIELD_GET(MAJOR_VERSION_MASK, ver_low),
+				     REG_FIELD_GET(MINOR_VERSION_MASK, ver_low),
+				     REG_FIELD_GET(HOTFIX_VERSION_MASK, ver_high),
+				     REG_FIELD_GET(BUILD_VERSION_MASK, ver_high));
+
+	len += sysfs_emit_at(buf, len, "\n");
+out:
+	xe_pm_runtime_put(xe);
+
+	return ret ?: len;
+}
+static DEVICE_ATTR_ADMIN_RO(lb_voltage_regulator_info);
+
+static const struct attribute *late_bind_attrs[] = {
+	&dev_attr_lb_fan_control_info.attr,
+	&dev_attr_lb_voltage_regulator_info.attr,
+	NULL
+};
+
 /**
  * DOC: PCIe Gen5 Limitations
  *
@@ -151,8 +264,10 @@ static void xe_device_sysfs_fini(void *arg)
 	if (xe->d3cold.capable)
 		sysfs_remove_file(&xe->drm.dev->kobj, &dev_attr_vram_d3cold_threshold.attr);
 
-	if (xe->info.platform == XE_BATTLEMAGE)
+	if (xe->info.platform == XE_BATTLEMAGE) {
 		sysfs_remove_files(&xe->drm.dev->kobj, auto_link_downgrade_attrs);
+		sysfs_remove_files(&xe->drm.dev->kobj, late_bind_attrs);
+	}
 }
 
 int xe_device_sysfs_init(struct xe_device *xe)
@@ -170,6 +285,10 @@ int xe_device_sysfs_init(struct xe_device *xe)
 		ret = sysfs_create_files(&dev->kobj, auto_link_downgrade_attrs);
 		if (ret)
 			return ret;
+
+		ret = sysfs_create_files(&dev->kobj, late_bind_attrs);
+		if (ret)
+			return ret;
 	}
 
 	return devm_add_action_or_reset(dev, xe_device_sysfs_fini, xe);
diff --git a/drivers/gpu/drm/xe/xe_pcode_api.h b/drivers/gpu/drm/xe/xe_pcode_api.h
index 0befdea77db1..92bfcba51e19 100644
--- a/drivers/gpu/drm/xe/xe_pcode_api.h
+++ b/drivers/gpu/drm/xe/xe_pcode_api.h
@@ -50,6 +50,21 @@
 #define	READ_PL_FROM_FW				0x1
 #define	READ_PL_FROM_PCODE			0x0
 
+#define   PCODE_LATE_BINDING			0x5C
+#define     GET_CAPABILITY_STATUS		0x0
+#define       V1_FAN_SUPPORTED			REG_BIT(0)
+#define       VR_PARAMS_SUPPORTED		REG_BIT(3)
+#define       V1_FAN_PROVISIONED		REG_BIT(16)
+#define       VR_PARAMS_PROVISIONED		REG_BIT(19)
+#define     GET_VERSION_LOW			0x1
+#define     GET_VERSION_HIGH			0x2
+#define       MAJOR_VERSION_MASK		REG_GENMASK(31, 16)
+#define       MINOR_VERSION_MASK		REG_GENMASK(15, 0)
+#define       HOTFIX_VERSION_MASK		REG_GENMASK(31, 16)
+#define       BUILD_VERSION_MASK		REG_GENMASK(15, 0)
+#define       FAN_TABLE				1
+#define       VR_CONFIG				2
+
 #define   PCODE_FREQUENCY_CONFIG		0x6e
 /* Frequency Config Sub Commands (param1) */
 #define     PCODE_MBOX_FC_SC_READ_FUSED_P0	0x0
-- 
2.34.1


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

* ✓ CI.KUnit: success for drm/xe: Expose fan control and voltage regulator information
  2025-07-04 11:23 [PATCH v2] drm/xe: Expose fan control and voltage regulator information Raag Jadav
@ 2025-07-04 11:30 ` Patchwork
  2025-07-04 12:16 ` [PATCH v2] " Nilawar, Badal
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-07-04 11:30 UTC (permalink / raw)
  To: Raag Jadav; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Expose fan control and voltage regulator information
URL   : https://patchwork.freedesktop.org/series/151183/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[11:29:06] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:29:10] 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
[11:29:37] Starting KUnit Kernel (1/1)...
[11:29:37] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:29:37] ================== guc_buf (11 subtests) ===================
[11:29:37] [PASSED] test_smallest
[11:29:37] [PASSED] test_largest
[11:29:37] [PASSED] test_granular
[11:29:37] [PASSED] test_unique
[11:29:37] [PASSED] test_overlap
[11:29:37] [PASSED] test_reusable
[11:29:37] [PASSED] test_too_big
[11:29:37] [PASSED] test_flush
[11:29:37] [PASSED] test_lookup
[11:29:37] [PASSED] test_data
[11:29:37] [PASSED] test_class
[11:29:37] ===================== [PASSED] guc_buf =====================
[11:29:37] =================== guc_dbm (7 subtests) ===================
[11:29:37] [PASSED] test_empty
[11:29:37] [PASSED] test_default
[11:29:37] ======================== test_size  ========================
[11:29:37] [PASSED] 4
[11:29:37] [PASSED] 8
[11:29:37] [PASSED] 32
[11:29:37] [PASSED] 256
[11:29:37] ==================== [PASSED] test_size ====================
[11:29:37] ======================= test_reuse  ========================
[11:29:37] [PASSED] 4
[11:29:37] [PASSED] 8
[11:29:37] [PASSED] 32
[11:29:37] [PASSED] 256
[11:29:37] =================== [PASSED] test_reuse ====================
[11:29:37] =================== test_range_overlap  ====================
[11:29:37] [PASSED] 4
[11:29:37] [PASSED] 8
[11:29:37] [PASSED] 32
[11:29:37] [PASSED] 256
[11:29:37] =============== [PASSED] test_range_overlap ================
[11:29:37] =================== test_range_compact  ====================
[11:29:37] [PASSED] 4
[11:29:37] [PASSED] 8
[11:29:37] [PASSED] 32
[11:29:37] [PASSED] 256
[11:29:37] =============== [PASSED] test_range_compact ================
[11:29:37] ==================== test_range_spare  =====================
[11:29:37] [PASSED] 4
[11:29:37] [PASSED] 8
[11:29:37] [PASSED] 32
[11:29:37] [PASSED] 256
[11:29:37] ================ [PASSED] test_range_spare =================
[11:29:37] ===================== [PASSED] guc_dbm =====================
[11:29:37] =================== guc_idm (6 subtests) ===================
[11:29:37] [PASSED] bad_init
[11:29:37] [PASSED] no_init
[11:29:37] [PASSED] init_fini
[11:29:37] [PASSED] check_used
[11:29:37] [PASSED] check_quota
[11:29:37] [PASSED] check_all
[11:29:37] ===================== [PASSED] guc_idm =====================
[11:29:37] ================== no_relay (3 subtests) ===================
[11:29:37] [PASSED] xe_drops_guc2pf_if_not_ready
[11:29:37] [PASSED] xe_drops_guc2vf_if_not_ready
[11:29:37] [PASSED] xe_rejects_send_if_not_ready
[11:29:37] ==================== [PASSED] no_relay =====================
[11:29:37] ================== pf_relay (14 subtests) ==================
[11:29:37] [PASSED] pf_rejects_guc2pf_too_short
[11:29:37] [PASSED] pf_rejects_guc2pf_too_long
[11:29:37] [PASSED] pf_rejects_guc2pf_no_payload
[11:29:37] [PASSED] pf_fails_no_payload
[11:29:37] [PASSED] pf_fails_bad_origin
[11:29:37] [PASSED] pf_fails_bad_type
[11:29:37] [PASSED] pf_txn_reports_error
[11:29:37] [PASSED] pf_txn_sends_pf2guc
[11:29:37] [PASSED] pf_sends_pf2guc
[11:29:37] [SKIPPED] pf_loopback_nop
[11:29:37] [SKIPPED] pf_loopback_echo
[11:29:37] [SKIPPED] pf_loopback_fail
[11:29:37] [SKIPPED] pf_loopback_busy
[11:29:37] [SKIPPED] pf_loopback_retry
[11:29:37] ==================== [PASSED] pf_relay =====================
[11:29:37] ================== vf_relay (3 subtests) ===================
[11:29:37] [PASSED] vf_rejects_guc2vf_too_short
[11:29:37] [PASSED] vf_rejects_guc2vf_too_long
[11:29:37] [PASSED] vf_rejects_guc2vf_no_payload
[11:29:37] ==================== [PASSED] vf_relay =====================
[11:29:37] ================= pf_service (11 subtests) =================
[11:29:37] [PASSED] pf_negotiate_any
[11:29:37] [PASSED] pf_negotiate_base_match
[11:29:37] [PASSED] pf_negotiate_base_newer
[11:29:37] [PASSED] pf_negotiate_base_next
[11:29:37] [SKIPPED] pf_negotiate_base_older
[11:29:37] [PASSED] pf_negotiate_base_prev
[11:29:37] [PASSED] pf_negotiate_latest_match
[11:29:37] [PASSED] pf_negotiate_latest_newer
[11:29:37] [PASSED] pf_negotiate_latest_next
[11:29:37] [SKIPPED] pf_negotiate_latest_older
[11:29:37] [SKIPPED] pf_negotiate_latest_prev
[11:29:37] =================== [PASSED] pf_service ====================
[11:29:37] ===================== lmtt (1 subtest) =====================
[11:29:37] ======================== test_ops  =========================
[11:29:37] [PASSED] 2-level
[11:29:37] [PASSED] multi-level
[11:29:37] ==================== [PASSED] test_ops =====================
[11:29:37] ====================== [PASSED] lmtt =======================
[11:29:37] =================== xe_mocs (2 subtests) ===================
[11:29:37] ================ xe_live_mocs_kernel_kunit  ================
[11:29:37] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[11:29:37] ================ xe_live_mocs_reset_kunit  =================
[11:29:37] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[11:29:37] ==================== [SKIPPED] xe_mocs =====================
[11:29:37] ================= xe_migrate (2 subtests) ==================
[11:29:37] ================= xe_migrate_sanity_kunit  =================
[11:29:37] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[11:29:37] ================== xe_validate_ccs_kunit  ==================
[11:29:37] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[11:29:37] =================== [SKIPPED] xe_migrate ===================
[11:29:37] ================== xe_dma_buf (1 subtest) ==================
[11:29:37] ==================== xe_dma_buf_kunit  =====================
[11:29:37] ================ [SKIPPED] xe_dma_buf_kunit ================
[11:29:37] =================== [SKIPPED] xe_dma_buf ===================
[11:29:37] ================= xe_bo_shrink (1 subtest) =================
[11:29:37] =================== xe_bo_shrink_kunit  ====================
[11:29:37] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[11:29:37] ================== [SKIPPED] xe_bo_shrink ==================
[11:29:37] ==================== xe_bo (2 subtests) ====================
[11:29:37] ================== xe_ccs_migrate_kunit  ===================
[11:29:37] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[11:29:37] ==================== xe_bo_evict_kunit  ====================
[11:29:37] =============== [SKIPPED] xe_bo_evict_kunit ================
[11:29:37] ===================== [SKIPPED] xe_bo ======================
[11:29:37] ==================== args (11 subtests) ====================
[11:29:37] [PASSED] count_args_test
[11:29:37] [PASSED] call_args_example
[11:29:37] [PASSED] call_args_test
[11:29:37] [PASSED] drop_first_arg_example
[11:29:37] [PASSED] drop_first_arg_test
[11:29:37] [PASSED] first_arg_example
[11:29:37] [PASSED] first_arg_test
[11:29:37] [PASSED] last_arg_example
[11:29:37] [PASSED] last_arg_test
[11:29:37] [PASSED] pick_arg_example
[11:29:37] [PASSED] sep_comma_example
[11:29:37] ====================== [PASSED] args =======================
[11:29:37] =================== xe_pci (3 subtests) ====================
[11:29:37] ==================== check_graphics_ip  ====================
[11:29:37] [PASSED] 12.70 Xe_LPG
[11:29:37] [PASSED] 12.71 Xe_LPG
[11:29:37] [PASSED] 12.74 Xe_LPG+
[11:29:37] [PASSED] 20.01 Xe2_HPG
[11:29:37] [PASSED] 20.02 Xe2_HPG
[11:29:37] [PASSED] 20.04 Xe2_LPG
[11:29:37] [PASSED] 30.00 Xe3_LPG
[11:29:37] [PASSED] 30.01 Xe3_LPG
[11:29:37] [PASSED] 30.03 Xe3_LPG
[11:29:37] ================ [PASSED] check_graphics_ip ================
[11:29:37] ===================== check_media_ip  ======================
[11:29:37] [PASSED] 13.00 Xe_LPM+
[11:29:37] [PASSED] 13.01 Xe2_HPM
[11:29:37] [PASSED] 20.00 Xe2_LPM
[11:29:37] [PASSED] 30.00 Xe3_LPM
[11:29:37] [PASSED] 30.02 Xe3_LPM
[11:29:37] ================= [PASSED] check_media_ip ==================
[11:29:37] ================= check_platform_gt_count  =================
[11:29:37] [PASSED] 0x9A60 (TIGERLAKE)
[11:29:37] [PASSED] 0x9A68 (TIGERLAKE)
[11:29:37] [PASSED] 0x9A70 (TIGERLAKE)
[11:29:37] [PASSED] 0x9A40 (TIGERLAKE)
[11:29:37] [PASSED] 0x9A49 (TIGERLAKE)
[11:29:37] [PASSED] 0x9A59 (TIGERLAKE)
[11:29:37] [PASSED] 0x9A78 (TIGERLAKE)
[11:29:37] [PASSED] 0x9AC0 (TIGERLAKE)
[11:29:37] [PASSED] 0x9AC9 (TIGERLAKE)
[11:29:37] [PASSED] 0x9AD9 (TIGERLAKE)
[11:29:37] [PASSED] 0x9AF8 (TIGERLAKE)
[11:29:37] [PASSED] 0x4C80 (ROCKETLAKE)
[11:29:37] [PASSED] 0x4C8A (ROCKETLAKE)
[11:29:37] [PASSED] 0x4C8B (ROCKETLAKE)
[11:29:37] [PASSED] 0x4C8C (ROCKETLAKE)
[11:29:37] [PASSED] 0x4C90 (ROCKETLAKE)
[11:29:37] [PASSED] 0x4C9A (ROCKETLAKE)
[11:29:37] [PASSED] 0x4680 (ALDERLAKE_S)
[11:29:37] [PASSED] 0x4682 (ALDERLAKE_S)
[11:29:37] [PASSED] 0x4688 (ALDERLAKE_S)
[11:29:37] [PASSED] 0x468A (ALDERLAKE_S)
[11:29:37] [PASSED] 0x468B (ALDERLAKE_S)
[11:29:37] [PASSED] 0x4690 (ALDERLAKE_S)
[11:29:37] [PASSED] 0x4692 (ALDERLAKE_S)
[11:29:37] [PASSED] 0x4693 (ALDERLAKE_S)
[11:29:37] [PASSED] 0x46A0 (ALDERLAKE_P)
[11:29:37] [PASSED] 0x46A1 (ALDERLAKE_P)
[11:29:37] [PASSED] 0x46A2 (ALDERLAKE_P)
[11:29:37] [PASSED] 0x46A3 (ALDERLAKE_P)
[11:29:37] [PASSED] 0x46A6 (ALDERLAKE_P)
[11:29:37] [PASSED] 0x46A8 (ALDERLAKE_P)
[11:29:37] [PASSED] 0x46AA (ALDERLAKE_P)
[11:29:37] [PASSED] 0x462A (ALDERLAKE_P)
[11:29:37] [PASSED] 0x4626 (ALDERLAKE_P)
[11:29:37] [PASSED] 0x4628 (ALDERLAKE_P)
[11:29:37] [PASSED] 0x46B0 (ALDERLAKE_P)
[11:29:37] [PASSED] 0x46B1 (ALDERLAKE_P)
[11:29:37] [PASSED] 0x46B2 (ALDERLAKE_P)
[11:29:37] [PASSED] 0x46B3 (ALDERLAKE_P)
[11:29:37] [PASSED] 0x46C0 (ALDERLAKE_P)
[11:29:37] [PASSED] 0x46C1 (ALDERLAKE_P)
[11:29:37] [PASSED] 0x46C2 (ALDERLAKE_P)
[11:29:37] [PASSED] 0x46C3 (ALDERLAKE_P)
[11:29:37] [PASSED] 0x46D0 (ALDERLAKE_N)
[11:29:37] [PASSED] 0x46D1 (ALDERLAKE_N)
[11:29:37] [PASSED] 0x46D2 (ALDERLAKE_N)
[11:29:37] [PASSED] 0x46D3 (ALDERLAKE_N)
[11:29:37] [PASSED] 0x46D4 (ALDERLAKE_N)
[11:29:37] [PASSED] 0xA721 (ALDERLAKE_P)
[11:29:37] [PASSED] 0xA7A1 (ALDERLAKE_P)
[11:29:37] [PASSED] 0xA7A9 (ALDERLAKE_P)
[11:29:37] [PASSED] 0xA7AC (ALDERLAKE_P)
[11:29:37] [PASSED] 0xA7AD (ALDERLAKE_P)
[11:29:37] [PASSED] 0xA720 (ALDERLAKE_P)
[11:29:37] [PASSED] 0xA7A0 (ALDERLAKE_P)
[11:29:37] [PASSED] 0xA7A8 (ALDERLAKE_P)
[11:29:37] [PASSED] 0xA7AA (ALDERLAKE_P)
[11:29:37] [PASSED] 0xA7AB (ALDERLAKE_P)
[11:29:37] [PASSED] 0xA780 (ALDERLAKE_S)
[11:29:37] [PASSED] 0xA781 (ALDERLAKE_S)
[11:29:37] [PASSED] 0xA782 (ALDERLAKE_S)
[11:29:37] [PASSED] 0xA783 (ALDERLAKE_S)
[11:29:37] [PASSED] 0xA788 (ALDERLAKE_S)
[11:29:37] [PASSED] 0xA789 (ALDERLAKE_S)
[11:29:37] [PASSED] 0xA78A (ALDERLAKE_S)
[11:29:37] [PASSED] 0xA78B (ALDERLAKE_S)
[11:29:37] [PASSED] 0x4905 (DG1)
[11:29:37] [PASSED] 0x4906 (DG1)
[11:29:37] [PASSED] 0x4907 (DG1)
[11:29:37] [PASSED] 0x4908 (DG1)
[11:29:37] [PASSED] 0x4909 (DG1)
[11:29:37] [PASSED] 0x56C0 (DG2)
[11:29:37] [PASSED] 0x56C2 (DG2)
[11:29:37] [PASSED] 0x56C1 (DG2)
[11:29:37] [PASSED] 0x7D51 (METEORLAKE)
[11:29:37] [PASSED] 0x7DD1 (METEORLAKE)
[11:29:37] [PASSED] 0x7D41 (METEORLAKE)
[11:29:37] [PASSED] 0x7D67 (METEORLAKE)
[11:29:37] [PASSED] 0xB640 (METEORLAKE)
[11:29:37] [PASSED] 0x56A0 (DG2)
[11:29:37] [PASSED] 0x56A1 (DG2)
[11:29:37] [PASSED] 0x56A2 (DG2)
[11:29:37] [PASSED] 0x56BE (DG2)
[11:29:37] [PASSED] 0x56BF (DG2)
[11:29:37] [PASSED] 0x5690 (DG2)
[11:29:37] [PASSED] 0x5691 (DG2)
[11:29:37] [PASSED] 0x5692 (DG2)
[11:29:37] [PASSED] 0x56A5 (DG2)
[11:29:37] [PASSED] 0x56A6 (DG2)
[11:29:37] [PASSED] 0x56B0 (DG2)
[11:29:37] [PASSED] 0x56B1 (DG2)
[11:29:37] [PASSED] 0x56BA (DG2)
[11:29:37] [PASSED] 0x56BB (DG2)
[11:29:37] [PASSED] 0x56BC (DG2)
[11:29:37] [PASSED] 0x56BD (DG2)
[11:29:37] [PASSED] 0x5693 (DG2)
[11:29:37] [PASSED] 0x5694 (DG2)
[11:29:37] [PASSED] 0x5695 (DG2)
[11:29:37] [PASSED] 0x56A3 (DG2)
[11:29:37] [PASSED] 0x56A4 (DG2)
[11:29:37] [PASSED] 0x56B2 (DG2)
[11:29:37] [PASSED] 0x56B3 (DG2)
[11:29:37] [PASSED] 0x5696 (DG2)
[11:29:37] [PASSED] 0x5697 (DG2)
[11:29:37] [PASSED] 0xB69 (PVC)
[11:29:37] [PASSED] 0xB6E (PVC)
[11:29:37] [PASSED] 0xBD4 (PVC)
[11:29:37] [PASSED] 0xBD5 (PVC)
[11:29:37] [PASSED] 0xBD6 (PVC)
[11:29:37] [PASSED] 0xBD7 (PVC)
[11:29:37] [PASSED] 0xBD8 (PVC)
[11:29:37] [PASSED] 0xBD9 (PVC)
[11:29:37] [PASSED] 0xBDA (PVC)
[11:29:37] [PASSED] 0xBDB (PVC)
[11:29:37] [PASSED] 0xBE0 (PVC)
[11:29:37] [PASSED] 0xBE1 (PVC)
[11:29:37] [PASSED] 0xBE5 (PVC)
[11:29:37] [PASSED] 0x7D40 (METEORLAKE)
[11:29:37] [PASSED] 0x7D45 (METEORLAKE)
[11:29:37] [PASSED] 0x7D55 (METEORLAKE)
[11:29:37] [PASSED] 0x7D60 (METEORLAKE)
[11:29:37] [PASSED] 0x7DD5 (METEORLAKE)
[11:29:37] [PASSED] 0x6420 (LUNARLAKE)
[11:29:37] [PASSED] 0x64A0 (LUNARLAKE)
[11:29:37] [PASSED] 0x64B0 (LUNARLAKE)
[11:29:37] [PASSED] 0xE202 (BATTLEMAGE)
[11:29:37] [PASSED] 0xE20B (BATTLEMAGE)
[11:29:37] [PASSED] 0xE20C (BATTLEMAGE)
[11:29:37] [PASSED] 0xE20D (BATTLEMAGE)
[11:29:37] [PASSED] 0xE210 (BATTLEMAGE)
[11:29:37] [PASSED] 0xE211 (BATTLEMAGE)
[11:29:37] [PASSED] 0xE212 (BATTLEMAGE)
[11:29:37] [PASSED] 0xE216 (BATTLEMAGE)
[11:29:37] [PASSED] 0xE220 (BATTLEMAGE)
[11:29:37] [PASSED] 0xE221 (BATTLEMAGE)
[11:29:37] [PASSED] 0xE222 (BATTLEMAGE)
[11:29:37] [PASSED] 0xE223 (BATTLEMAGE)
[11:29:37] [PASSED] 0xB080 (PANTHERLAKE)
[11:29:37] [PASSED] 0xB081 (PANTHERLAKE)
[11:29:37] [PASSED] 0xB082 (PANTHERLAKE)
[11:29:37] [PASSED] 0xB083 (PANTHERLAKE)
[11:29:37] [PASSED] 0xB084 (PANTHERLAKE)
[11:29:37] [PASSED] 0xB085 (PANTHERLAKE)
[11:29:37] [PASSED] 0xB086 (PANTHERLAKE)
[11:29:37] [PASSED] 0xB087 (PANTHERLAKE)
[11:29:37] [PASSED] 0xB08F (PANTHERLAKE)
[11:29:37] [PASSED] 0xB090 (PANTHERLAKE)
[11:29:37] [PASSED] 0xB0A0 (PANTHERLAKE)
[11:29:37] [PASSED] 0xB0B0 (PANTHERLAKE)
[11:29:37] [PASSED] 0xFD80 (PANTHERLAKE)
[11:29:37] [PASSED] 0xFD81 (PANTHERLAKE)
[11:29:37] ============= [PASSED] check_platform_gt_count =============
[11:29:37] ===================== [PASSED] xe_pci ======================
[11:29:37] =================== xe_rtp (2 subtests) ====================
[11:29:37] =============== xe_rtp_process_to_sr_tests  ================
[11:29:37] [PASSED] coalesce-same-reg
[11:29:37] [PASSED] no-match-no-add
[11:29:37] [PASSED] match-or
[11:29:37] [PASSED] match-or-xfail
[11:29:37] [PASSED] no-match-no-add-multiple-rules
[11:29:37] [PASSED] two-regs-two-entries
[11:29:37] [PASSED] clr-one-set-other
[11:29:37] [PASSED] set-field
[11:29:37] [PASSED] conflict-duplicate
[11:29:37] [PASSED] conflict-not-disjoint
[11:29:37] [PASSED] conflict-reg-type
[11:29:37] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[11:29:37] ================== xe_rtp_process_tests  ===================
[11:29:37] [PASSED] active1
[11:29:37] [PASSED] active2
[11:29:37] [PASSED] active-inactive
[11:29:37] [PASSED] inactive-active
[11:29:37] [PASSED] inactive-1st_or_active-inactive
[11:29:37] [PASSED] inactive-2nd_or_active-inactive
[11:29:37] [PASSED] inactive-last_or_active-inactive
[11:29:37] [PASSED] inactive-no_or_active-inactive
[11:29:37] ============== [PASSED] xe_rtp_process_tests ===============
[11:29:37] ===================== [PASSED] xe_rtp ======================
[11:29:37] ==================== xe_wa (1 subtest) =====================
[11:29:37] ======================== xe_wa_gt  =========================
[11:29:37] [PASSED] TIGERLAKE (B0)
[11:29:37] [PASSED] DG1 (A0)
[11:29:37] [PASSED] DG1 (B0)
[11:29:37] [PASSED] ALDERLAKE_S (A0)
[11:29:37] [PASSED] ALDERLAKE_S (B0)
[11:29:37] [PASSED] ALDERLAKE_S (C0)
[11:29:37] [PASSED] ALDERLAKE_S (D0)
[11:29:37] [PASSED] ALDERLAKE_P (A0)
[11:29:37] [PASSED] ALDERLAKE_P (B0)
[11:29:37] [PASSED] ALDERLAKE_P (C0)
[11:29:37] [PASSED] ALDERLAKE_S_RPLS (D0)
[11:29:37] [PASSED] ALDERLAKE_P_RPLU (E0)
[11:29:37] [PASSED] DG2_G10 (C0)
[11:29:37] [PASSED] DG2_G11 (B1)
[11:29:37] [PASSED] DG2_G12 (A1)
[11:29:37] [PASSED] METEORLAKE (g:A0, m:A0)
[11:29:37] [PASSED] METEORLAKE (g:A0, m:A0)
[11:29:37] [PASSED] METEORLAKE (g:A0, m:A0)
[11:29:37] [PASSED] LUNARLAKE (g:A0, m:A0)
[11:29:37] [PASSED] LUNARLAKE (g:B0, m:A0)
[11:29:37] [PASSED] BATTLEMAGE (g:A0, m:A1)
stty: 'standard input': Inappropriate ioctl for device
[11:29:37] ==================== [PASSED] xe_wa_gt =====================
[11:29:37] ====================== [PASSED] xe_wa ======================
[11:29:37] ============================================================
[11:29:37] Testing complete. Ran 296 tests: passed: 280, skipped: 16
[11:29:37] Elapsed time: 31.426s total, 4.213s configuring, 26.896s building, 0.308s running

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

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

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



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

* Re: [PATCH v2] drm/xe: Expose fan control and voltage regulator information
  2025-07-04 11:23 [PATCH v2] drm/xe: Expose fan control and voltage regulator information Raag Jadav
  2025-07-04 11:30 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-07-04 12:16 ` Nilawar, Badal
  2025-07-07 23:56 ` ✓ CI.KUnit: success for drm/xe: Expose fan control and voltage regulator information (rev2) Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Nilawar, Badal @ 2025-07-04 12:16 UTC (permalink / raw)
  To: Raag Jadav, lucas.demarchi, rodrigo.vivi
  Cc: intel-xe, anshuman.gupta, riana.tauro


On 04-07-2025 16:53, Raag Jadav wrote:
> Expose sysfs attributes for late binding features which provide information
> about their support, provisioning and bound version to the user.
>
> v2: s/late_bind_fan_info/lb_fan_control_info (Badal)
>      s/late_bind_vr_info/lb_voltage_regulator_info (Badal)
>      s/LATE_BINDING/PCODE_LATE_BINDING (Badal)
>      Add VERSION_MASK macros (Badal)
>
> Signed-off-by: Raag Jadav <raag.jadav@intel.com>
> ---
>   drivers/gpu/drm/xe/xe_device_sysfs.c | 121 ++++++++++++++++++++++++++-
>   drivers/gpu/drm/xe/xe_pcode_api.h    |  15 ++++
>   2 files changed, 135 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_device_sysfs.c b/drivers/gpu/drm/xe/xe_device_sysfs.c
> index b9440f8c781e..8a1bb2b7c951 100644
> --- a/drivers/gpu/drm/xe/xe_device_sysfs.c
> +++ b/drivers/gpu/drm/xe/xe_device_sysfs.c
> @@ -24,6 +24,15 @@
>    *
>    * vram_d3cold_threshold - Report/change vram used threshold(in MB) below
>    * which vram save/restore is permissible during runtime D3cold entry/exit.
> + *
> + * lb_fan_control_info - Fan control information of the device in comma
> + * separated format as ``<supported>,<provisioned>,<version>`` with optional
> + * ``<version>`` field which is available only if provisioned by late binding.
> + *
> + * lb_voltage_regulator_info - Voltage regulator information of the device in
> + * comma separated format as ``<supported>,<provisioned>,<version>`` with
> + * optional ``<version>`` field which is available only if provisioned by late
> + * binding.
>    */
>   
>   static ssize_t
> @@ -65,6 +74,110 @@ vram_d3cold_threshold_store(struct device *dev, struct device_attribute *attr,
>   
>   static DEVICE_ATTR_RW(vram_d3cold_threshold);
>   
> +static ssize_t
> +lb_fan_control_info_show(struct device *dev, struct device_attribute *attr, char *buf)
> +{
> +	struct xe_device *xe = pdev_to_xe_device(to_pci_dev(dev));
> +	struct xe_tile *root = xe_device_get_root_tile(xe);
> +	u32 cap, ver_low = FAN_TABLE, ver_high = FAN_TABLE;
> +	bool supported, provisioned;
> +	int ret, len = 0;
> +
> +	xe_pm_runtime_get(xe);
> +
> +	ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_CAPABILITY_STATUS, 0),
> +			    &cap, NULL);
> +	if (ret)
> +		goto out;
> +
> +	supported = REG_FIELD_GET(V1_FAN_SUPPORTED, cap);
> +	provisioned = REG_FIELD_GET(V1_FAN_PROVISIONED, cap);
> +
> +	if (provisioned) {
> +		ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_VERSION_LOW, 0),
> +				    &ver_low, NULL);
> +		if (ret)
> +			goto out;
> +
> +		ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_VERSION_HIGH, 0),
> +				    &ver_high, NULL);
> +		if (ret)
> +			goto out;
> +	}
> +
> +	len += sysfs_emit_at(buf, len, "%u", supported);
> +	len += sysfs_emit_at(buf, len, ",%u", provisioned);
> +
> +	if (provisioned)
> +		len += sysfs_emit_at(buf, len, ",%u.%u.%u.%u",
> +				     REG_FIELD_GET(MAJOR_VERSION_MASK, ver_low),
> +				     REG_FIELD_GET(MINOR_VERSION_MASK, ver_low),
> +				     REG_FIELD_GET(HOTFIX_VERSION_MASK, ver_high),
> +				     REG_FIELD_GET(BUILD_VERSION_MASK, ver_high));
> +
> +	len += sysfs_emit_at(buf, len, "\n");
> +out:
> +	xe_pm_runtime_put(xe);
> +
> +	return ret ?: len;
> +}
> +static DEVICE_ATTR_ADMIN_RO(lb_fan_control_info);
> +
> +static ssize_t
> +lb_voltage_regulator_info_show(struct device *dev, struct device_attribute *attr, char *buf)
> +{
> +	struct xe_device *xe = pdev_to_xe_device(to_pci_dev(dev));
> +	struct xe_tile *root = xe_device_get_root_tile(xe);
> +	u32 cap, ver_low = VR_CONFIG, ver_high = VR_CONFIG;
> +	bool supported, provisioned;
> +	int ret, len = 0;
> +
> +	xe_pm_runtime_get(xe);
> +
> +	ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_CAPABILITY_STATUS, 0),
> +			    &cap, NULL);
> +	if (ret)
> +		goto out;
> +
> +	supported = REG_FIELD_GET(VR_PARAMS_SUPPORTED, cap);
> +	provisioned = REG_FIELD_GET(VR_PARAMS_PROVISIONED, cap);
> +
> +	if (provisioned) {
> +		ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_VERSION_LOW, 0),
> +				    &ver_low, NULL);
> +		if (ret)
> +			goto out;
> +
> +		ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_VERSION_HIGH, 0),
> +				    &ver_high, NULL);
> +		if (ret)
> +			goto out;
> +	}
> +
> +	len += sysfs_emit_at(buf, len, "%u", supported);
> +	len += sysfs_emit_at(buf, len, ",%u", provisioned);
> +
> +	if (provisioned)
> +		len += sysfs_emit_at(buf, len, ",%u.%u.%u.%u",
> +				     REG_FIELD_GET(MAJOR_VERSION_MASK, ver_low),
> +				     REG_FIELD_GET(MINOR_VERSION_MASK, ver_low),
> +				     REG_FIELD_GET(HOTFIX_VERSION_MASK, ver_high),
> +				     REG_FIELD_GET(BUILD_VERSION_MASK, ver_high));
> +
> +	len += sysfs_emit_at(buf, len, "\n");
> +out:
> +	xe_pm_runtime_put(xe);
> +
> +	return ret ?: len;
> +}
> +static DEVICE_ATTR_ADMIN_RO(lb_voltage_regulator_info);
> +
> +static const struct attribute *late_bind_attrs[] = {
> +	&dev_attr_lb_fan_control_info.attr,
> +	&dev_attr_lb_voltage_regulator_info.attr,
> +	NULL
> +};
> +
>   /**
>    * DOC: PCIe Gen5 Limitations
>    *
> @@ -151,8 +264,10 @@ static void xe_device_sysfs_fini(void *arg)
>   	if (xe->d3cold.capable)
>   		sysfs_remove_file(&xe->drm.dev->kobj, &dev_attr_vram_d3cold_threshold.attr);
>   
> -	if (xe->info.platform == XE_BATTLEMAGE)
> +	if (xe->info.platform == XE_BATTLEMAGE) {
>   		sysfs_remove_files(&xe->drm.dev->kobj, auto_link_downgrade_attrs);
> +		sysfs_remove_files(&xe->drm.dev->kobj, late_bind_attrs);
> +	}
>   }
>   
>   int xe_device_sysfs_init(struct xe_device *xe)
> @@ -170,6 +285,10 @@ int xe_device_sysfs_init(struct xe_device *xe)
>   		ret = sysfs_create_files(&dev->kobj, auto_link_downgrade_attrs);
>   		if (ret)
>   			return ret;
> +
> +		ret = sysfs_create_files(&dev->kobj, late_bind_attrs);
> +		if (ret)
> +			return ret;
>   	}
>   
>   	return devm_add_action_or_reset(dev, xe_device_sysfs_fini, xe);
> diff --git a/drivers/gpu/drm/xe/xe_pcode_api.h b/drivers/gpu/drm/xe/xe_pcode_api.h
> index 0befdea77db1..92bfcba51e19 100644
> --- a/drivers/gpu/drm/xe/xe_pcode_api.h
> +++ b/drivers/gpu/drm/xe/xe_pcode_api.h
> @@ -50,6 +50,21 @@
>   #define	READ_PL_FROM_FW				0x1
>   #define	READ_PL_FROM_PCODE			0x0
>   
> +#define   PCODE_LATE_BINDING			0x5C
> +#define     GET_CAPABILITY_STATUS		0x0
> +#define       V1_FAN_SUPPORTED			REG_BIT(0)
> +#define       VR_PARAMS_SUPPORTED		REG_BIT(3)
> +#define       V1_FAN_PROVISIONED		REG_BIT(16)
> +#define       VR_PARAMS_PROVISIONED		REG_BIT(19)
> +#define     GET_VERSION_LOW			0x1
> +#define     GET_VERSION_HIGH			0x2
> +#define       MAJOR_VERSION_MASK		REG_GENMASK(31, 16)
> +#define       MINOR_VERSION_MASK		REG_GENMASK(15, 0)
> +#define       HOTFIX_VERSION_MASK		REG_GENMASK(31, 16)
> +#define       BUILD_VERSION_MASK		REG_GENMASK(15, 0)
> +#define       FAN_TABLE				1
> +#define       VR_CONFIG				2
> +

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

>   #define   PCODE_FREQUENCY_CONFIG		0x6e
>   /* Frequency Config Sub Commands (param1) */
>   #define     PCODE_MBOX_FC_SC_READ_FUSED_P0	0x0

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

* ✓ CI.KUnit: success for drm/xe: Expose fan control and voltage regulator information (rev2)
  2025-07-04 11:23 [PATCH v2] drm/xe: Expose fan control and voltage regulator information Raag Jadav
  2025-07-04 11:30 ` ✓ CI.KUnit: success for " Patchwork
  2025-07-04 12:16 ` [PATCH v2] " Nilawar, Badal
@ 2025-07-07 23:56 ` Patchwork
  2025-07-08  0:51 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-07-07 23:56 UTC (permalink / raw)
  To: Raag Jadav; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Expose fan control and voltage regulator information (rev2)
URL   : https://patchwork.freedesktop.org/series/151183/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[23:55:52] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:55:56] 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
[23:56:22] Starting KUnit Kernel (1/1)...
[23:56:22] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:56:23] ================== guc_buf (11 subtests) ===================
[23:56:23] [PASSED] test_smallest
[23:56:23] [PASSED] test_largest
[23:56:23] [PASSED] test_granular
[23:56:23] [PASSED] test_unique
[23:56:23] [PASSED] test_overlap
[23:56:23] [PASSED] test_reusable
[23:56:23] [PASSED] test_too_big
[23:56:23] [PASSED] test_flush
[23:56:23] [PASSED] test_lookup
[23:56:23] [PASSED] test_data
[23:56:23] [PASSED] test_class
[23:56:23] ===================== [PASSED] guc_buf =====================
[23:56:23] =================== guc_dbm (7 subtests) ===================
[23:56:23] [PASSED] test_empty
[23:56:23] [PASSED] test_default
[23:56:23] ======================== test_size  ========================
[23:56:23] [PASSED] 4
[23:56:23] [PASSED] 8
[23:56:23] [PASSED] 32
[23:56:23] [PASSED] 256
[23:56:23] ==================== [PASSED] test_size ====================
[23:56:23] ======================= test_reuse  ========================
[23:56:23] [PASSED] 4
[23:56:23] [PASSED] 8
[23:56:23] [PASSED] 32
[23:56:23] [PASSED] 256
[23:56:23] =================== [PASSED] test_reuse ====================
[23:56:23] =================== test_range_overlap  ====================
[23:56:23] [PASSED] 4
[23:56:23] [PASSED] 8
[23:56:23] [PASSED] 32
[23:56:23] [PASSED] 256
[23:56:23] =============== [PASSED] test_range_overlap ================
[23:56:23] =================== test_range_compact  ====================
[23:56:23] [PASSED] 4
[23:56:23] [PASSED] 8
[23:56:23] [PASSED] 32
[23:56:23] [PASSED] 256
[23:56:23] =============== [PASSED] test_range_compact ================
[23:56:23] ==================== test_range_spare  =====================
[23:56:23] [PASSED] 4
[23:56:23] [PASSED] 8
[23:56:23] [PASSED] 32
[23:56:23] [PASSED] 256
[23:56:23] ================ [PASSED] test_range_spare =================
[23:56:23] ===================== [PASSED] guc_dbm =====================
[23:56:23] =================== guc_idm (6 subtests) ===================
[23:56:23] [PASSED] bad_init
[23:56:23] [PASSED] no_init
[23:56:23] [PASSED] init_fini
[23:56:23] [PASSED] check_used
[23:56:23] [PASSED] check_quota
[23:56:23] [PASSED] check_all
[23:56:23] ===================== [PASSED] guc_idm =====================
[23:56:23] ================== no_relay (3 subtests) ===================
[23:56:23] [PASSED] xe_drops_guc2pf_if_not_ready
[23:56:23] [PASSED] xe_drops_guc2vf_if_not_ready
[23:56:23] [PASSED] xe_rejects_send_if_not_ready
[23:56:23] ==================== [PASSED] no_relay =====================
[23:56:23] ================== pf_relay (14 subtests) ==================
[23:56:23] [PASSED] pf_rejects_guc2pf_too_short
[23:56:23] [PASSED] pf_rejects_guc2pf_too_long
[23:56:23] [PASSED] pf_rejects_guc2pf_no_payload
[23:56:23] [PASSED] pf_fails_no_payload
[23:56:23] [PASSED] pf_fails_bad_origin
[23:56:23] [PASSED] pf_fails_bad_type
[23:56:23] [PASSED] pf_txn_reports_error
[23:56:23] [PASSED] pf_txn_sends_pf2guc
[23:56:23] [PASSED] pf_sends_pf2guc
[23:56:23] [SKIPPED] pf_loopback_nop
[23:56:23] [SKIPPED] pf_loopback_echo
[23:56:23] [SKIPPED] pf_loopback_fail
[23:56:23] [SKIPPED] pf_loopback_busy
[23:56:23] [SKIPPED] pf_loopback_retry
[23:56:23] ==================== [PASSED] pf_relay =====================
[23:56:23] ================== vf_relay (3 subtests) ===================
[23:56:23] [PASSED] vf_rejects_guc2vf_too_short
[23:56:23] [PASSED] vf_rejects_guc2vf_too_long
[23:56:23] [PASSED] vf_rejects_guc2vf_no_payload
[23:56:23] ==================== [PASSED] vf_relay =====================
[23:56:23] ================= pf_service (11 subtests) =================
[23:56:23] [PASSED] pf_negotiate_any
[23:56:23] [PASSED] pf_negotiate_base_match
[23:56:23] [PASSED] pf_negotiate_base_newer
[23:56:23] [PASSED] pf_negotiate_base_next
[23:56:23] [SKIPPED] pf_negotiate_base_older
[23:56:23] [PASSED] pf_negotiate_base_prev
[23:56:23] [PASSED] pf_negotiate_latest_match
[23:56:23] [PASSED] pf_negotiate_latest_newer
[23:56:23] [PASSED] pf_negotiate_latest_next
[23:56:23] [SKIPPED] pf_negotiate_latest_older
[23:56:23] [SKIPPED] pf_negotiate_latest_prev
[23:56:23] =================== [PASSED] pf_service ====================
[23:56:23] ===================== lmtt (1 subtest) =====================
[23:56:23] ======================== test_ops  =========================
[23:56:23] [PASSED] 2-level
[23:56:23] [PASSED] multi-level
[23:56:23] ==================== [PASSED] test_ops =====================
[23:56:23] ====================== [PASSED] lmtt =======================
[23:56:23] =================== xe_mocs (2 subtests) ===================
[23:56:23] ================ xe_live_mocs_kernel_kunit  ================
[23:56:23] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[23:56:23] ================ xe_live_mocs_reset_kunit  =================
[23:56:23] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[23:56:23] ==================== [SKIPPED] xe_mocs =====================
[23:56:23] ================= xe_migrate (2 subtests) ==================
[23:56:23] ================= xe_migrate_sanity_kunit  =================
[23:56:23] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[23:56:23] ================== xe_validate_ccs_kunit  ==================
[23:56:23] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[23:56:23] =================== [SKIPPED] xe_migrate ===================
[23:56:23] ================== xe_dma_buf (1 subtest) ==================
[23:56:23] ==================== xe_dma_buf_kunit  =====================
[23:56:23] ================ [SKIPPED] xe_dma_buf_kunit ================
[23:56:23] =================== [SKIPPED] xe_dma_buf ===================
[23:56:23] ================= xe_bo_shrink (1 subtest) =================
[23:56:23] =================== xe_bo_shrink_kunit  ====================
[23:56:23] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[23:56:23] ================== [SKIPPED] xe_bo_shrink ==================
[23:56:23] ==================== xe_bo (2 subtests) ====================
[23:56:23] ================== xe_ccs_migrate_kunit  ===================
[23:56:23] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[23:56:23] ==================== xe_bo_evict_kunit  ====================
[23:56:23] =============== [SKIPPED] xe_bo_evict_kunit ================
[23:56:23] ===================== [SKIPPED] xe_bo ======================
[23:56:23] ==================== args (11 subtests) ====================
[23:56:23] [PASSED] count_args_test
[23:56:23] [PASSED] call_args_example
[23:56:23] [PASSED] call_args_test
[23:56:23] [PASSED] drop_first_arg_example
[23:56:23] [PASSED] drop_first_arg_test
[23:56:23] [PASSED] first_arg_example
[23:56:23] [PASSED] first_arg_test
[23:56:23] [PASSED] last_arg_example
[23:56:23] [PASSED] last_arg_test
[23:56:23] [PASSED] pick_arg_example
[23:56:23] [PASSED] sep_comma_example
[23:56:23] ====================== [PASSED] args =======================
[23:56:23] =================== xe_pci (3 subtests) ====================
[23:56:23] ==================== check_graphics_ip  ====================
[23:56:23] [PASSED] 12.70 Xe_LPG
[23:56:23] [PASSED] 12.71 Xe_LPG
[23:56:23] [PASSED] 12.74 Xe_LPG+
[23:56:23] [PASSED] 20.01 Xe2_HPG
[23:56:23] [PASSED] 20.02 Xe2_HPG
[23:56:23] [PASSED] 20.04 Xe2_LPG
[23:56:23] [PASSED] 30.00 Xe3_LPG
[23:56:23] [PASSED] 30.01 Xe3_LPG
[23:56:23] [PASSED] 30.03 Xe3_LPG
[23:56:23] ================ [PASSED] check_graphics_ip ================
[23:56:23] ===================== check_media_ip  ======================
[23:56:23] [PASSED] 13.00 Xe_LPM+
[23:56:23] [PASSED] 13.01 Xe2_HPM
[23:56:23] [PASSED] 20.00 Xe2_LPM
[23:56:23] [PASSED] 30.00 Xe3_LPM
[23:56:23] [PASSED] 30.02 Xe3_LPM
[23:56:23] ================= [PASSED] check_media_ip ==================
[23:56:23] ================= check_platform_gt_count  =================
[23:56:23] [PASSED] 0x9A60 (TIGERLAKE)
[23:56:23] [PASSED] 0x9A68 (TIGERLAKE)
[23:56:23] [PASSED] 0x9A70 (TIGERLAKE)
[23:56:23] [PASSED] 0x9A40 (TIGERLAKE)
[23:56:23] [PASSED] 0x9A49 (TIGERLAKE)
[23:56:23] [PASSED] 0x9A59 (TIGERLAKE)
[23:56:23] [PASSED] 0x9A78 (TIGERLAKE)
[23:56:23] [PASSED] 0x9AC0 (TIGERLAKE)
[23:56:23] [PASSED] 0x9AC9 (TIGERLAKE)
[23:56:23] [PASSED] 0x9AD9 (TIGERLAKE)
[23:56:23] [PASSED] 0x9AF8 (TIGERLAKE)
[23:56:23] [PASSED] 0x4C80 (ROCKETLAKE)
[23:56:23] [PASSED] 0x4C8A (ROCKETLAKE)
[23:56:23] [PASSED] 0x4C8B (ROCKETLAKE)
[23:56:23] [PASSED] 0x4C8C (ROCKETLAKE)
[23:56:23] [PASSED] 0x4C90 (ROCKETLAKE)
[23:56:23] [PASSED] 0x4C9A (ROCKETLAKE)
[23:56:23] [PASSED] 0x4680 (ALDERLAKE_S)
[23:56:23] [PASSED] 0x4682 (ALDERLAKE_S)
[23:56:23] [PASSED] 0x4688 (ALDERLAKE_S)
[23:56:23] [PASSED] 0x468A (ALDERLAKE_S)
[23:56:23] [PASSED] 0x468B (ALDERLAKE_S)
[23:56:23] [PASSED] 0x4690 (ALDERLAKE_S)
[23:56:23] [PASSED] 0x4692 (ALDERLAKE_S)
[23:56:23] [PASSED] 0x4693 (ALDERLAKE_S)
[23:56:23] [PASSED] 0x46A0 (ALDERLAKE_P)
[23:56:23] [PASSED] 0x46A1 (ALDERLAKE_P)
[23:56:23] [PASSED] 0x46A2 (ALDERLAKE_P)
[23:56:23] [PASSED] 0x46A3 (ALDERLAKE_P)
[23:56:23] [PASSED] 0x46A6 (ALDERLAKE_P)
[23:56:23] [PASSED] 0x46A8 (ALDERLAKE_P)
[23:56:23] [PASSED] 0x46AA (ALDERLAKE_P)
[23:56:23] [PASSED] 0x462A (ALDERLAKE_P)
[23:56:23] [PASSED] 0x4626 (ALDERLAKE_P)
[23:56:23] [PASSED] 0x4628 (ALDERLAKE_P)
[23:56:23] [PASSED] 0x46B0 (ALDERLAKE_P)
[23:56:23] [PASSED] 0x46B1 (ALDERLAKE_P)
[23:56:23] [PASSED] 0x46B2 (ALDERLAKE_P)
[23:56:23] [PASSED] 0x46B3 (ALDERLAKE_P)
[23:56:23] [PASSED] 0x46C0 (ALDERLAKE_P)
[23:56:23] [PASSED] 0x46C1 (ALDERLAKE_P)
[23:56:23] [PASSED] 0x46C2 (ALDERLAKE_P)
[23:56:23] [PASSED] 0x46C3 (ALDERLAKE_P)
[23:56:23] [PASSED] 0x46D0 (ALDERLAKE_N)
[23:56:23] [PASSED] 0x46D1 (ALDERLAKE_N)
[23:56:23] [PASSED] 0x46D2 (ALDERLAKE_N)
[23:56:23] [PASSED] 0x46D3 (ALDERLAKE_N)
[23:56:23] [PASSED] 0x46D4 (ALDERLAKE_N)
[23:56:23] [PASSED] 0xA721 (ALDERLAKE_P)
[23:56:23] [PASSED] 0xA7A1 (ALDERLAKE_P)
[23:56:23] [PASSED] 0xA7A9 (ALDERLAKE_P)
[23:56:23] [PASSED] 0xA7AC (ALDERLAKE_P)
[23:56:23] [PASSED] 0xA7AD (ALDERLAKE_P)
[23:56:23] [PASSED] 0xA720 (ALDERLAKE_P)
[23:56:23] [PASSED] 0xA7A0 (ALDERLAKE_P)
[23:56:23] [PASSED] 0xA7A8 (ALDERLAKE_P)
[23:56:23] [PASSED] 0xA7AA (ALDERLAKE_P)
[23:56:23] [PASSED] 0xA7AB (ALDERLAKE_P)
[23:56:23] [PASSED] 0xA780 (ALDERLAKE_S)
[23:56:23] [PASSED] 0xA781 (ALDERLAKE_S)
[23:56:23] [PASSED] 0xA782 (ALDERLAKE_S)
[23:56:23] [PASSED] 0xA783 (ALDERLAKE_S)
[23:56:23] [PASSED] 0xA788 (ALDERLAKE_S)
[23:56:23] [PASSED] 0xA789 (ALDERLAKE_S)
[23:56:23] [PASSED] 0xA78A (ALDERLAKE_S)
[23:56:23] [PASSED] 0xA78B (ALDERLAKE_S)
[23:56:23] [PASSED] 0x4905 (DG1)
[23:56:23] [PASSED] 0x4906 (DG1)
[23:56:23] [PASSED] 0x4907 (DG1)
[23:56:23] [PASSED] 0x4908 (DG1)
[23:56:23] [PASSED] 0x4909 (DG1)
[23:56:23] [PASSED] 0x56C0 (DG2)
[23:56:23] [PASSED] 0x56C2 (DG2)
[23:56:23] [PASSED] 0x56C1 (DG2)
[23:56:23] [PASSED] 0x7D51 (METEORLAKE)
[23:56:23] [PASSED] 0x7DD1 (METEORLAKE)
[23:56:23] [PASSED] 0x7D41 (METEORLAKE)
[23:56:23] [PASSED] 0x7D67 (METEORLAKE)
[23:56:23] [PASSED] 0xB640 (METEORLAKE)
[23:56:23] [PASSED] 0x56A0 (DG2)
[23:56:23] [PASSED] 0x56A1 (DG2)
[23:56:23] [PASSED] 0x56A2 (DG2)
[23:56:23] [PASSED] 0x56BE (DG2)
[23:56:23] [PASSED] 0x56BF (DG2)
[23:56:23] [PASSED] 0x5690 (DG2)
[23:56:23] [PASSED] 0x5691 (DG2)
[23:56:23] [PASSED] 0x5692 (DG2)
[23:56:23] [PASSED] 0x56A5 (DG2)
[23:56:23] [PASSED] 0x56A6 (DG2)
[23:56:23] [PASSED] 0x56B0 (DG2)
[23:56:23] [PASSED] 0x56B1 (DG2)
[23:56:23] [PASSED] 0x56BA (DG2)
[23:56:23] [PASSED] 0x56BB (DG2)
[23:56:23] [PASSED] 0x56BC (DG2)
[23:56:23] [PASSED] 0x56BD (DG2)
[23:56:23] [PASSED] 0x5693 (DG2)
[23:56:23] [PASSED] 0x5694 (DG2)
[23:56:23] [PASSED] 0x5695 (DG2)
[23:56:23] [PASSED] 0x56A3 (DG2)
[23:56:23] [PASSED] 0x56A4 (DG2)
[23:56:23] [PASSED] 0x56B2 (DG2)
[23:56:23] [PASSED] 0x56B3 (DG2)
[23:56:23] [PASSED] 0x5696 (DG2)
[23:56:23] [PASSED] 0x5697 (DG2)
[23:56:23] [PASSED] 0xB69 (PVC)
[23:56:23] [PASSED] 0xB6E (PVC)
[23:56:23] [PASSED] 0xBD4 (PVC)
[23:56:23] [PASSED] 0xBD5 (PVC)
[23:56:23] [PASSED] 0xBD6 (PVC)
[23:56:23] [PASSED] 0xBD7 (PVC)
[23:56:23] [PASSED] 0xBD8 (PVC)
[23:56:23] [PASSED] 0xBD9 (PVC)
[23:56:23] [PASSED] 0xBDA (PVC)
[23:56:23] [PASSED] 0xBDB (PVC)
[23:56:23] [PASSED] 0xBE0 (PVC)
[23:56:23] [PASSED] 0xBE1 (PVC)
[23:56:23] [PASSED] 0xBE5 (PVC)
[23:56:23] [PASSED] 0x7D40 (METEORLAKE)
[23:56:23] [PASSED] 0x7D45 (METEORLAKE)
[23:56:23] [PASSED] 0x7D55 (METEORLAKE)
[23:56:23] [PASSED] 0x7D60 (METEORLAKE)
[23:56:23] [PASSED] 0x7DD5 (METEORLAKE)
[23:56:23] [PASSED] 0x6420 (LUNARLAKE)
[23:56:23] [PASSED] 0x64A0 (LUNARLAKE)
[23:56:23] [PASSED] 0x64B0 (LUNARLAKE)
[23:56:23] [PASSED] 0xE202 (BATTLEMAGE)
[23:56:23] [PASSED] 0xE209 (BATTLEMAGE)
[23:56:23] [PASSED] 0xE20B (BATTLEMAGE)
[23:56:23] [PASSED] 0xE20C (BATTLEMAGE)
[23:56:23] [PASSED] 0xE20D (BATTLEMAGE)
[23:56:23] [PASSED] 0xE210 (BATTLEMAGE)
[23:56:23] [PASSED] 0xE211 (BATTLEMAGE)
[23:56:23] [PASSED] 0xE212 (BATTLEMAGE)
[23:56:23] [PASSED] 0xE216 (BATTLEMAGE)
[23:56:23] [PASSED] 0xE220 (BATTLEMAGE)
[23:56:23] [PASSED] 0xE221 (BATTLEMAGE)
[23:56:23] [PASSED] 0xE222 (BATTLEMAGE)
[23:56:23] [PASSED] 0xE223 (BATTLEMAGE)
[23:56:23] [PASSED] 0xB080 (PANTHERLAKE)
[23:56:23] [PASSED] 0xB081 (PANTHERLAKE)
[23:56:23] [PASSED] 0xB082 (PANTHERLAKE)
[23:56:23] [PASSED] 0xB083 (PANTHERLAKE)
[23:56:23] [PASSED] 0xB084 (PANTHERLAKE)
[23:56:23] [PASSED] 0xB085 (PANTHERLAKE)
[23:56:23] [PASSED] 0xB086 (PANTHERLAKE)
[23:56:23] [PASSED] 0xB087 (PANTHERLAKE)
[23:56:23] [PASSED] 0xB08F (PANTHERLAKE)
[23:56:23] [PASSED] 0xB090 (PANTHERLAKE)
[23:56:23] [PASSED] 0xB0A0 (PANTHERLAKE)
[23:56:23] [PASSED] 0xB0B0 (PANTHERLAKE)
[23:56:23] [PASSED] 0xFD80 (PANTHERLAKE)
[23:56:23] [PASSED] 0xFD81 (PANTHERLAKE)
[23:56:23] ============= [PASSED] check_platform_gt_count =============
[23:56:23] ===================== [PASSED] xe_pci ======================
[23:56:23] =================== xe_rtp (2 subtests) ====================
[23:56:23] =============== xe_rtp_process_to_sr_tests  ================
[23:56:23] [PASSED] coalesce-same-reg
[23:56:23] [PASSED] no-match-no-add
[23:56:23] [PASSED] match-or
[23:56:23] [PASSED] match-or-xfail
[23:56:23] [PASSED] no-match-no-add-multiple-rules
[23:56:23] [PASSED] two-regs-two-entries
[23:56:23] [PASSED] clr-one-set-other
[23:56:23] [PASSED] set-field
[23:56:23] [PASSED] conflict-duplicate
[23:56:23] [PASSED] conflict-not-disjoint
[23:56:23] [PASSED] conflict-reg-type
[23:56:23] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[23:56:23] ================== xe_rtp_process_tests  ===================
[23:56:23] [PASSED] active1
[23:56:23] [PASSED] active2
[23:56:23] [PASSED] active-inactive
[23:56:23] [PASSED] inactive-active
[23:56:23] [PASSED] inactive-1st_or_active-inactive
[23:56:23] [PASSED] inactive-2nd_or_active-inactive
[23:56:23] [PASSED] inactive-last_or_active-inactive
[23:56:23] [PASSED] inactive-no_or_active-inactive
[23:56:23] ============== [PASSED] xe_rtp_process_tests ===============
[23:56:23] ===================== [PASSED] xe_rtp ======================
[23:56:23] ==================== xe_wa (1 subtest) =====================
[23:56:23] ======================== xe_wa_gt  =========================
[23:56:23] [PASSED] TIGERLAKE (B0)
[23:56:23] [PASSED] DG1 (A0)
[23:56:23] [PASSED] DG1 (B0)
[23:56:23] [PASSED] ALDERLAKE_S (A0)
[23:56:23] [PASSED] ALDERLAKE_S (B0)
[23:56:23] [PASSED] ALDERLAKE_S (C0)
[23:56:23] [PASSED] ALDERLAKE_S (D0)
[23:56:23] [PASSED] ALDERLAKE_P (A0)
[23:56:23] [PASSED] ALDERLAKE_P (B0)
[23:56:23] [PASSED] ALDERLAKE_P (C0)
[23:56:23] [PASSED] ALDERLAKE_S_RPLS (D0)
[23:56:23] [PASSED] ALDERLAKE_P_RPLU (E0)
[23:56:23] [PASSED] DG2_G10 (C0)
[23:56:23] [PASSED] DG2_G11 (B1)
[23:56:23] [PASSED] DG2_G12 (A1)
[23:56:23] [PASSED] METEORLAKE (g:A0, m:A0)
[23:56:23] [PASSED] METEORLAKE (g:A0, m:A0)
[23:56:23] [PASSED] METEORLAKE (g:A0, m:A0)
[23:56:23] [PASSED] LUNARLAKE (g:A0, m:A0)
[23:56:23] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[23:56:23] [PASSED] BATTLEMAGE (g:A0, m:A1)
[23:56:23] ==================== [PASSED] xe_wa_gt =====================
[23:56:23] ====================== [PASSED] xe_wa ======================
[23:56:23] ============================================================
[23:56:23] Testing complete. Ran 297 tests: passed: 281, skipped: 16
[23:56:23] Elapsed time: 31.214s total, 4.205s configuring, 26.689s building, 0.305s running

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe: Expose fan control and voltage regulator information (rev2)
  2025-07-04 11:23 [PATCH v2] drm/xe: Expose fan control and voltage regulator information Raag Jadav
                   ` (2 preceding siblings ...)
  2025-07-07 23:56 ` ✓ CI.KUnit: success for drm/xe: Expose fan control and voltage regulator information (rev2) Patchwork
@ 2025-07-08  0:51 ` Patchwork
  2025-07-08  3:36 ` ✗ Xe.CI.Full: failure " Patchwork
  2025-07-08 19:10 ` [PATCH v2] drm/xe: Expose fan control and voltage regulator information Rodrigo Vivi
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-07-08  0:51 UTC (permalink / raw)
  To: Raag Jadav; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Expose fan control and voltage regulator information (rev2)
URL   : https://patchwork.freedesktop.org/series/151183/
State : success

== Summary ==

CI Bug Log - changes from xe-3367-02069d358330d2c30eb66590736f360964d88612_BAT -> xe-pw-151183v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  Missing    (1): bat-adlp-vm 


Changes
-------

  No changes found


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

  * Linux: xe-3367-02069d358330d2c30eb66590736f360964d88612 -> xe-pw-151183v2

  IGT_8445: 8445
  xe-3367-02069d358330d2c30eb66590736f360964d88612: 02069d358330d2c30eb66590736f360964d88612
  xe-pw-151183v2: 151183v2

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for drm/xe: Expose fan control and voltage regulator information (rev2)
  2025-07-04 11:23 [PATCH v2] drm/xe: Expose fan control and voltage regulator information Raag Jadav
                   ` (3 preceding siblings ...)
  2025-07-08  0:51 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-07-08  3:36 ` Patchwork
  2025-07-08 19:10 ` [PATCH v2] drm/xe: Expose fan control and voltage regulator information Rodrigo Vivi
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-07-08  3:36 UTC (permalink / raw)
  To: Raag Jadav; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Expose fan control and voltage regulator information (rev2)
URL   : https://patchwork.freedesktop.org/series/151183/
State : failure

== Summary ==

CI Bug Log - changes from xe-3367-02069d358330d2c30eb66590736f360964d88612_FULL -> xe-pw-151183v2_FULL
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-adlp:         [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  
New tests
---------

  New tests have been introduced between xe-3367-02069d358330d2c30eb66590736f360964d88612_FULL and xe-pw-151183v2_FULL:

### New IGT tests (16) ###

  * igt@kms_flip@plain-flip-interruptible@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.80] s

  * igt@kms_flip@plain-flip-interruptible@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.74] s

  * igt@kms_flip@plain-flip-interruptible@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.72] s

  * igt@kms_flip@plain-flip-ts-check@d-hdmi-a2:
    - Statuses : 1 pass(s)
    - Exec time: [4.24] s

  * igt@kms_rmfb@close-fd@pipe-a-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [0.18] s

  * igt@kms_rmfb@rmfb-ioctl@pipe-a-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [0.14] s

  * igt@xe_oa@blocking@ccs-0:
    - Statuses : 2 pass(s)
    - Exec time: [1.01] s

  * igt@xe_oa@closed-fd-and-unmapped-access@rcs-0:
    - Statuses : 2 pass(s)
    - Exec time: [0.05, 0.06] s

  * igt@xe_oa@map-oa-buffer@rcs-0:
    - Statuses : 1 pass(s)
    - Exec time: [0.05] s

  * igt@xe_oa@mi-rpc@rcs-0:
    - Statuses : 2 pass(s)
    - Exec time: [0.01] s

  * igt@xe_oa@non-privileged-access-vaddr@ccs-0:
    - Statuses : 2 pass(s)
    - Exec time: [0.01, 0.02] s

  * igt@xe_oa@non-zero-reason@ccs-0:
    - Statuses : 1 pass(s)
    - Exec time: [1.19] s

  * igt@xe_oa@non-zero-reason@rcs-0:
    - Statuses : 1 pass(s)
    - Exec time: [1.19] s

  * igt@xe_oa@oa-exponents@rcs-0:
    - Statuses : 1 pass(s)
    - Exec time: [3.47] s

  * igt@xe_oa@privileged-forked-access-vaddr@ccs-0:
    - Statuses : 1 pass(s)
    - Exec time: [0.02] s

  * igt@xe_oa@stress-open-close@ccs-0:
    - Statuses : 2 pass(s)
    - Exec time: [2.17] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_getversion@all-cards:
    - shard-dg2-set2:     NOTRUN -> [FAIL][3] ([Intel XE#4208])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@core_getversion@all-cards.html

  * igt@intel_sysfs_debugfs@xe-base:
    - shard-dg2-set2:     [PASS][4] -> [SKIP][5] ([Intel XE#4208] / [Intel XE#4618]) +2 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@intel_sysfs_debugfs@xe-base.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@intel_sysfs_debugfs@xe-base.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][6] ([Intel XE#2351] / [Intel XE#4208]) +12 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#2327])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][8] ([Intel XE#1124]) +3 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html

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

  * igt@kms_bw@linear-tiling-3-displays-3840x2160p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][10] ([Intel XE#367])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#367])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][12] ([Intel XE#2669]) +3 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-lnl-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [PASS][13] -> [SKIP][14] ([Intel XE#2351] / [Intel XE#4208]) +5 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][15] ([Intel XE#787]) +272 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/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-basic-y-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2887]) +2 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html

  * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][17] ([Intel XE#455] / [Intel XE#787]) +39 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][18] ([Intel XE#3862])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][19] ([Intel XE#3862] / [Intel XE#4345])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-b-dp-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
    - shard-dg2-set2:     [PASS][20] -> [INCOMPLETE][21] ([Intel XE#3862])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][22] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) +2 other tests incomplete
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2724])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_cdclk@mode-transition-all-outputs.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][24] ([Intel XE#4418])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#4416]) +3 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_chamelium_color@degamma:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#2325]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_color@gamma:
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#306])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_frames@vga-frame-dump:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2252]) +2 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_chamelium_frames@vga-frame-dump.html

  * igt@kms_chamelium_hpd@vga-hpd-after-hibernate:
    - shard-dg2-set2:     NOTRUN -> [SKIP][29] ([Intel XE#373]) +2 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-after-hibernate.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-dg2-set2:     NOTRUN -> [FAIL][30] ([Intel XE#1178]) +1 other test fail
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][31] ([Intel XE#1178]) +1 other test fail
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#2320]) +2 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-128x42.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#1424]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
    - shard-dg2-set2:     [PASS][34] -> [SKIP][35] ([Intel XE#4208] / [i915#2575]) +67 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][36] -> [SKIP][37] ([Intel XE#2291]) +2 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

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

  * igt@kms_dsc@dsc-basic:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#2244]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_dsc@dsc-basic.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [PASS][40] -> [SKIP][41] ([Intel XE#2373])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-7/igt@kms_feature_discovery@display-2x.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-6/igt@kms_feature_discovery@display-2x.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
    - shard-bmg:          [PASS][42] -> [SKIP][43] ([Intel XE#2316]) +2 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#1421])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-lnl-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
    - shard-lnl:          [PASS][45] -> [FAIL][46] ([Intel XE#301])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html

  * igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a1:
    - shard-adlp:         [PASS][47] -> [DMESG-WARN][48] ([Intel XE#4543]) +4 other tests dmesg-warn
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a1.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
    - shard-adlp:         [PASS][49] -> [DMESG-WARN][50] ([Intel XE#2953] / [Intel XE#4173]) +7 other tests dmesg-warn
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y:
    - shard-adlp:         [PASS][51] -> [DMESG-FAIL][52] ([Intel XE#4543])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][53] ([Intel XE#651]) +5 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#2311]) +8 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][55] ([Intel XE#656])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#5390]) +2 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#651])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#2313]) +6 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][59] ([Intel XE#653]) +3 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_hdr@static-swap:
    - shard-bmg:          [PASS][60] -> [SKIP][61] ([Intel XE#1503]) +2 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-5/igt@kms_hdr@static-swap.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-6/igt@kms_hdr@static-swap.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2934])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_joiner@basic-force-ultra-joiner.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][63] ([Intel XE#2925])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_lease@invalid-create-leases:
    - shard-dg2-set2:     NOTRUN -> [SKIP][64] ([Intel XE#4208] / [i915#2575]) +39 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_lease@invalid-create-leases.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#2393])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-bmg:          [PASS][66] -> [SKIP][67] ([Intel XE#4596])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-x.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#1489]) +1 other test skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#1489]) +3 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-463/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr@fbc-psr2-basic:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_psr@fbc-psr2-basic.html

  * igt@kms_psr@fbc-psr2-sprite-plane-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][71] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][72] ([Intel XE#3414]) +1 other test skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_rotation_crc@bad-tiling.html

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

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

  * igt@kms_setmode@basic@pipe-b-edp-1:
    - shard-lnl:          [PASS][75] -> [FAIL][76] ([Intel XE#2883])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-bmg:          [PASS][77] -> [SKIP][78] ([Intel XE#1435])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@xe_compute_preempt@compute-preempt-many-all-ram@engine-drm_xe_engine_class_compute:
    - shard-dg2-set2:     NOTRUN -> [SKIP][79] ([Intel XE#455]) +7 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many-all-ram@engine-drm_xe_engine_class_compute.html

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

  * igt@xe_eu_stall@non-blocking-read:
    - shard-dg2-set2:     NOTRUN -> [SKIP][81] ([Intel XE#5419])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@xe_eu_stall@non-blocking-read.html

  * igt@xe_eudebug@basic-vm-access-parameters:
    - shard-dg2-set2:     NOTRUN -> [SKIP][82] ([Intel XE#4837]) +3 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@xe_eudebug@basic-vm-access-parameters.html

  * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#4837]) +3 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html

  * igt@xe_exec_balancer@twice-virtual-basic:
    - shard-dg2-set2:     NOTRUN -> [SKIP][84] ([Intel XE#4208]) +194 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_exec_balancer@twice-virtual-basic.html

  * igt@xe_exec_basic@many-null-rebind:
    - shard-dg2-set2:     [PASS][85] -> [SKIP][86] ([Intel XE#4208]) +179 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@xe_exec_basic@many-null-rebind.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_exec_basic@many-null-rebind.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
    - shard-dg2-set2:     [PASS][87] -> [SKIP][88] ([Intel XE#1392]) +5 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-466/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][89] ([Intel XE#2322]) +1 other test skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][90] ([Intel XE#288]) +3 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-463/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html

  * igt@xe_exec_reset@cm-close-fd:
    - shard-adlp:         [PASS][91] -> [DMESG-WARN][92] ([Intel XE#3868])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-adlp-2/igt@xe_exec_reset@cm-close-fd.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][93] ([Intel XE#3876])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_exec_system_allocator@process-many-execqueues-mmap-free-huge:
    - shard-bmg:          NOTRUN -> [SKIP][94] ([Intel XE#4943]) +5 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@xe_exec_system_allocator@process-many-execqueues-mmap-free-huge.html

  * igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-huge:
    - shard-lnl:          NOTRUN -> [SKIP][95] ([Intel XE#4943])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-lnl-4/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-huge.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset:
    - shard-dg2-set2:     NOTRUN -> [SKIP][96] ([Intel XE#4915]) +57 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset.html

  * igt@xe_huc_copy@huc_copy:
    - shard-dg2-set2:     NOTRUN -> [SKIP][97] ([Intel XE#255])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@xe_huc_copy@huc_copy.html

  * igt@xe_module_load@reload:
    - shard-dg2-set2:     [PASS][98] -> [FAIL][99] ([Intel XE#4208]) +2 other tests fail
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@xe_module_load@reload.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_module_load@reload.html

  * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
    - shard-dg2-set2:     NOTRUN -> [FAIL][100] ([Intel XE#1173])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-dg2-set2:     NOTRUN -> [SKIP][101] ([Intel XE#579])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html
    - shard-bmg:          NOTRUN -> [SKIP][102] ([Intel XE#579])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_pmu@gt-frequency:
    - shard-dg2-set2:     [PASS][103] -> [FAIL][104] ([Intel XE#5166]) +1 other test fail
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-466/igt@xe_pmu@gt-frequency.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-432/igt@xe_pmu@gt-frequency.html

  * igt@xe_query@multigpu-query-hwconfig:
    - shard-bmg:          NOTRUN -> [SKIP][105] ([Intel XE#944])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@xe_query@multigpu-query-hwconfig.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][106] ([Intel XE#944])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@xe_query@multigpu-query-hwconfig.html

  
#### Possible fixes ####

  * igt@fbdev@write:
    - shard-dg2-set2:     [SKIP][107] ([Intel XE#2134]) -> [PASS][108] +1 other test pass
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@fbdev@write.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@fbdev@write.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
    - shard-dg2-set2:     [SKIP][109] ([Intel XE#4208] / [i915#2575]) -> [PASS][110] +114 other tests pass
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition:
    - shard-adlp:         [FAIL][111] ([Intel XE#3908]) -> [PASS][112] +1 other test pass
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-adlp-1/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-adlp-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [SKIP][113] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-1:
    - shard-adlp:         [DMESG-WARN][115] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][116] +1 other test pass
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-adlp-8/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-1.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-adlp-6/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-1.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-bmg:          [SKIP][117] ([Intel XE#2291]) -> [PASS][118] +2 other tests pass
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size:
    - shard-bmg:          [DMESG-WARN][119] -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][121] ([Intel XE#4633]) -> [PASS][122]
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-bmg:          [SKIP][123] ([Intel XE#4354]) -> [PASS][124]
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-sst.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-4/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3:
    - shard-bmg:          [FAIL][125] -> [PASS][126] +1 other test pass
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-1/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-7/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-bmg:          [SKIP][127] ([Intel XE#2316]) -> [PASS][128] +1 other test pass
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [FAIL][129] ([Intel XE#301]) -> [PASS][130]
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-bmg:          [INCOMPLETE][131] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][132] +1 other test pass
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-4/igt@kms_flip@flip-vs-suspend.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-3/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x:
    - shard-adlp:         [DMESG-FAIL][133] ([Intel XE#4543]) -> [PASS][134] +1 other test pass
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
    - shard-dg2-set2:     [SKIP][135] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][136] +14 other tests pass
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html

  * igt@kms_setmode@basic:
    - shard-adlp:         [FAIL][137] ([Intel XE#2883]) -> [PASS][138] +1 other test pass
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-adlp-8/igt@kms_setmode@basic.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-adlp-6/igt@kms_setmode@basic.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [SKIP][139] ([Intel XE#1435]) -> [PASS][140]
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@xe_exec_balancer@once-parallel-rebind:
    - shard-dg2-set2:     [SKIP][141] ([Intel XE#4208]) -> [PASS][142] +241 other tests pass
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_exec_balancer@once-parallel-rebind.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@xe_exec_balancer@once-parallel-rebind.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
    - shard-dg2-set2:     [SKIP][143] ([Intel XE#1392]) -> [PASS][144] +4 other tests pass
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-466/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
    - shard-lnl:          [FAIL][145] ([Intel XE#4937]) -> [PASS][146]
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html

  
#### Warnings ####

  * igt@kms_big_fb@4-tiled-64bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][147] ([Intel XE#316]) -> [SKIP][148] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][149] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][150] ([Intel XE#316]) +2 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-90.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@linear-8bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][151] ([Intel XE#316]) -> [SKIP][152] ([Intel XE#4208])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_big_fb@linear-8bpp-rotate-90.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_big_fb@linear-8bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][153] ([Intel XE#4208]) -> [SKIP][154] ([Intel XE#316])
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-dg2-set2:     [INCOMPLETE][155] -> [SKIP][156] ([Intel XE#4208])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     [SKIP][157] ([Intel XE#607]) -> [SKIP][158] ([Intel XE#2351] / [Intel XE#4208])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][159] ([Intel XE#1124]) -> [SKIP][160] ([Intel XE#4208]) +3 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][161] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][162] ([Intel XE#1124]) +3 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2-set2:     [SKIP][163] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][164] ([Intel XE#619])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][165] ([Intel XE#1124]) -> [SKIP][166] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][167] ([Intel XE#4208]) -> [SKIP][168] ([Intel XE#1124]) +7 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - shard-dg2-set2:     [SKIP][169] ([Intel XE#2191]) -> [SKIP][170] ([Intel XE#4208] / [i915#2575]) +1 other test skip
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][171] ([Intel XE#4208] / [i915#2575]) -> [SKIP][172] ([Intel XE#2191]) +2 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-dg2-set2:     [SKIP][173] ([Intel XE#4208] / [i915#2575]) -> [SKIP][174] ([Intel XE#367]) +2 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][175] ([Intel XE#367]) -> [SKIP][176] ([Intel XE#4208] / [i915#2575]) +1 other test skip
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][177] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][178] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
    - shard-dg2-set2:     [SKIP][179] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][180] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
    - shard-dg2-set2:     [SKIP][181] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][182] ([Intel XE#4208]) +6 other tests skip
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-dg2-set2:     [SKIP][183] ([Intel XE#3442]) -> [SKIP][184] ([Intel XE#4208])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-dg2-set2:     [SKIP][185] ([Intel XE#4208]) -> [SKIP][186] ([Intel XE#2907])
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [SKIP][187] ([Intel XE#2351] / [Intel XE#4208]) -> [INCOMPLETE][188] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [SKIP][189] ([Intel XE#4208]) -> [INCOMPLETE][190] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/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:     [SKIP][191] ([Intel XE#4208]) -> [INCOMPLETE][192] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-dg2-set2:     [SKIP][193] ([Intel XE#2907]) -> [SKIP][194] ([Intel XE#4208])
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
    - shard-dg2-set2:     [SKIP][195] ([Intel XE#4208]) -> [SKIP][196] ([Intel XE#455] / [Intel XE#787]) +12 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html

  * igt@kms_chamelium_color@ctm-0-75:
    - shard-dg2-set2:     [SKIP][197] ([Intel XE#306]) -> [SKIP][198] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_chamelium_color@ctm-0-75.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_chamelium_color@ctm-0-75.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-dg2-set2:     [SKIP][199] ([Intel XE#4208] / [i915#2575]) -> [SKIP][200] ([Intel XE#306])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_chamelium_color@ctm-green-to-red.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-464/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_hpd@vga-hpd:
    - shard-dg2-set2:     [SKIP][201] ([Intel XE#4208] / [i915#2575]) -> [SKIP][202] ([Intel XE#373]) +14 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd.html

  * igt@kms_chamelium_hpd@vga-hpd-without-ddc:
    - shard-dg2-set2:     [SKIP][203] ([Intel XE#373]) -> [SKIP][204] ([Intel XE#4208] / [i915#2575]) +8 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2-set2:     [SKIP][205] ([Intel XE#307]) -> [SKIP][206] ([Intel XE#4208] / [i915#2575])
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-0.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg2-set2:     [SKIP][207] ([Intel XE#4208] / [i915#2575]) -> [SKIP][208] ([Intel XE#307])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-1.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@lic-type-0:
    - shard-bmg:          [FAIL][209] ([Intel XE#1178]) -> [SKIP][210] ([Intel XE#2341])
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-7/igt@kms_content_protection@lic-type-0.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-6/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@srm:
    - shard-dg2-set2:     [FAIL][211] ([Intel XE#1178]) -> [SKIP][212] ([Intel XE#4208] / [i915#2575])
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@kms_content_protection@srm.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-dg2-set2:     [SKIP][213] ([Intel XE#308]) -> [SKIP][214] ([Intel XE#4208] / [i915#2575]) +1 other test skip
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-dg2-set2:     [SKIP][215] ([Intel XE#4208] / [i915#2575]) -> [SKIP][216] ([Intel XE#308]) +2 other tests skip
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg2-set2:     [SKIP][217] ([Intel XE#323]) -> [SKIP][218] ([Intel XE#4208] / [i915#2575])
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-dg2-set2:     [SKIP][219] ([Intel XE#4208]) -> [SKIP][220] ([Intel XE#4356])
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_dp_link_training@uhbr-mst.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-dg2-set2:     [SKIP][221] ([Intel XE#455]) -> [SKIP][222] ([Intel XE#2351] / [Intel XE#4208])
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_dsc@dsc-with-bpc-formats.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-dg2-set2:     [SKIP][223] ([Intel XE#4422]) -> [SKIP][224] ([Intel XE#4208])
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
    - shard-dg2-set2:     [SKIP][225] ([Intel XE#4208]) -> [SKIP][226] ([Intel XE#4422])
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html

  * igt@kms_feature_discovery@display-3x:
    - shard-dg2-set2:     [SKIP][227] ([Intel XE#703]) -> [SKIP][228] ([Intel XE#4208] / [i915#2575])
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_feature_discovery@display-3x.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@display-4x:
    - shard-dg2-set2:     [SKIP][229] ([Intel XE#4208] / [i915#2575]) -> [SKIP][230] ([Intel XE#1138])
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_feature_discovery@display-4x.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@psr1:
    - shard-dg2-set2:     [SKIP][231] ([Intel XE#1135]) -> [SKIP][232] ([Intel XE#4208] / [i915#2575])
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@kms_feature_discovery@psr1.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
    - shard-dg2-set2:     [SKIP][233] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][234] ([Intel XE#455]) +1 other test skip
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
    - shard-dg2-set2:     [SKIP][235] ([Intel XE#455]) -> [SKIP][236] ([Intel XE#4208]) +2 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][237] ([Intel XE#4208]) -> [SKIP][238] ([Intel XE#651]) +30 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][239] ([Intel XE#2312]) -> [SKIP][240] ([Intel XE#2311]) +8 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][241] ([Intel XE#651]) -> [SKIP][242] ([Intel XE#4208]) +20 other tests skip
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][243] ([Intel XE#2311]) -> [SKIP][244] ([Intel XE#2312]) +14 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
    - shard-dg2-set2:     [SKIP][245] ([Intel XE#651]) -> [SKIP][246] ([Intel XE#2351] / [Intel XE#4208]) +7 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][247] ([Intel XE#5390]) -> [SKIP][248] ([Intel XE#2312]) +7 other tests skip
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][249] ([Intel XE#2312]) -> [SKIP][250] ([Intel XE#5390]) +4 other tests skip
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-dg2-set2:     [SKIP][251] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][252] ([Intel XE#658])
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
    - shard-dg2-set2:     [SKIP][253] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][254] ([Intel XE#651]) +10 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][255] ([Intel XE#2312]) -> [SKIP][256] ([Intel XE#2313]) +8 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg2-set2:     [SKIP][257] ([Intel XE#653]) -> [SKIP][258] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-dg2-set2:     [SKIP][259] ([Intel XE#4208]) -> [SKIP][260] ([Intel XE#455]) +1 other test skip
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg2-set2:     [SKIP][261] ([Intel XE#4208]) -> [SKIP][262] ([Intel XE#1158])
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
    - shard-dg2-set2:     [SKIP][263] ([Intel XE#653]) -> [SKIP][264] ([Intel XE#4208]) +23 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][265] ([Intel XE#2313]) -> [SKIP][266] ([Intel XE#2312]) +10 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move:
    - shard-dg2-set2:     [SKIP][267] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][268] ([Intel XE#653]) +8 other tests skip
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-slowdraw:
    - shard-dg2-set2:     [SKIP][269] ([Intel XE#4208]) -> [SKIP][270] ([Intel XE#653]) +29 other tests skip
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-slowdraw.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-slowdraw.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-dg2-set2:     [SKIP][271] ([Intel XE#4208]) -> [SKIP][272] ([Intel XE#346]) +1 other test skip
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_joiner@basic-big-joiner.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-dg2-set2:     [SKIP][273] ([Intel XE#5021]) -> [SKIP][274] ([Intel XE#4208] / [i915#2575])
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@kms_plane_multiple@2x-tiling-yf.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-dg2-set2:     [SKIP][275] ([Intel XE#870]) -> [SKIP][276] ([Intel XE#4208]) +1 other test skip
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-dg2-set2:     [SKIP][277] ([Intel XE#2938]) -> [SKIP][278] ([Intel XE#4208])
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@kms_pm_backlight@brightness-with-dpms.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade:
    - shard-dg2-set2:     [SKIP][279] ([Intel XE#4208]) -> [SKIP][280] ([Intel XE#870])
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_pm_backlight@fade.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg2-set2:     [SKIP][281] ([Intel XE#4208]) -> [SKIP][282] ([Intel XE#1129])
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_pm_dc@dc5-psr.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-dg2-set2:     [SKIP][283] ([Intel XE#4208]) -> [SKIP][284] ([Intel XE#908])
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_pm_dc@deep-pkgc.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     [SKIP][285] ([Intel XE#4208]) -> [SKIP][286] ([Intel XE#1489]) +9 other tests skip
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
    - shard-dg2-set2:     [SKIP][287] ([Intel XE#1489]) -> [SKIP][288] ([Intel XE#4208]) +7 other tests skip
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2-set2:     [SKIP][289] ([Intel XE#1122]) -> [SKIP][290] ([Intel XE#4208])
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_psr2_su@frontbuffer-xrgb8888.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg2-set2:     [SKIP][291] ([Intel XE#4208]) -> [SKIP][292] ([Intel XE#1122]) +1 other test skip
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_psr2_su@page_flip-p010.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-psr2-sprite-plane-move:
    - shard-dg2-set2:     [SKIP][293] ([Intel XE#4208]) -> [SKIP][294] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_psr@fbc-psr2-sprite-plane-move.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_psr@fbc-psr2-sprite-plane-move.html

  * igt@kms_psr@psr-dpms:
    - shard-dg2-set2:     [SKIP][295] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][296] ([Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@kms_psr@psr-dpms.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_psr@psr-dpms.html

  * igt@kms_psr@psr-primary-page-flip:
    - shard-dg2-set2:     [SKIP][297] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][298] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_psr@psr-primary-page-flip.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-464/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_psr@psr2-sprite-plane-move:
    - shard-dg2-set2:     [SKIP][299] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][300] ([Intel XE#4208]) +7 other tests skip
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@kms_psr@psr2-sprite-plane-move.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_psr@psr2-sprite-plane-move.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-dg2-set2:     [SKIP][301] ([Intel XE#4208] / [i915#2575]) -> [SKIP][302] ([Intel XE#1127])
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-dg2-set2:     [SKIP][303] ([Intel XE#3414]) -> [SKIP][304] ([Intel XE#4208] / [i915#2575])
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-dg2-set2:     [SKIP][305] ([Intel XE#1127]) -> [SKIP][306] ([Intel XE#4208] / [i915#2575])
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-dg2-set2:     [SKIP][307] ([Intel XE#4208] / [i915#2575]) -> [SKIP][308] ([Intel XE#3414])
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [FAIL][309] ([Intel XE#1729]) -> [SKIP][310] ([Intel XE#362])
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-dg2-set2:     [SKIP][311] ([Intel XE#4208] / [i915#2575]) -> [SKIP][312] ([Intel XE#1500])
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@flip-dpms:
    - shard-dg2-set2:     [SKIP][313] ([Intel XE#455]) -> [SKIP][314] ([Intel XE#4208] / [i915#2575]) +4 other tests skip
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@kms_vrr@flip-dpms.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     [SKIP][315] ([Intel XE#4208] / [i915#2575]) -> [SKIP][316] ([Intel XE#455]) +9 other tests skip
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@kms_vrr@flipline.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@kms_vrr@flipline.html

  * igt@kms_vrr@lobf:
    - shard-dg2-set2:     [SKIP][317] ([Intel XE#2168]) -> [SKIP][318] ([Intel XE#4208] / [i915#2575])
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@kms_vrr@lobf.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@kms_vrr@lobf.html

  * igt@xe_compute_preempt@compute-preempt:
    - shard-dg2-set2:     [SKIP][319] ([Intel XE#4208]) -> [SKIP][320] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@xe_compute_preempt@compute-preempt.html

  * igt@xe_configfs@survivability-mode:
    - shard-dg2-set2:     [SKIP][321] ([Intel XE#4208]) -> [SKIP][322] ([Intel XE#5249])
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_configfs@survivability-mode.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-464/igt@xe_configfs@survivability-mode.html

  * igt@xe_copy_basic@mem-copy-linear-0xfd:
    - shard-dg2-set2:     [SKIP][323] ([Intel XE#4208]) -> [SKIP][324] ([Intel XE#1123])
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfd.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfd.html

  * igt@xe_copy_basic@mem-set-linear-0xfffe:
    - shard-dg2-set2:     [SKIP][325] ([Intel XE#1126]) -> [SKIP][326] ([Intel XE#4208])
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfffe.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html

  * igt@xe_eu_stall@blocking-re-enable:
    - shard-dg2-set2:     [SKIP][327] ([Intel XE#5419]) -> [SKIP][328] ([Intel XE#4208])
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@xe_eu_stall@blocking-re-enable.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_eu_stall@blocking-re-enable.html

  * igt@xe_eu_stall@invalid-event-report-count:
    - shard-dg2-set2:     [SKIP][329] ([Intel XE#4208]) -> [SKIP][330] ([Intel XE#5419])
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_eu_stall@invalid-event-report-count.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@xe_eu_stall@invalid-event-report-count.html

  * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
    - shard-dg2-set2:     [SKIP][331] ([Intel XE#4837]) -> [SKIP][332] ([Intel XE#4208]) +11 other tests skip
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html

  * igt@xe_eudebug_online@resume-dss:
    - shard-dg2-set2:     [SKIP][333] ([Intel XE#4208]) -> [SKIP][334] ([Intel XE#4837]) +14 other tests skip
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_eudebug_online@resume-dss.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@xe_eudebug_online@resume-dss.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
    - shard-dg2-set2:     [SKIP][335] ([Intel XE#4208]) -> [SKIP][336] ([Intel XE#288]) +30 other tests skip
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html

  * igt@xe_exec_fault_mode@twice-userptr-prefetch:
    - shard-dg2-set2:     [SKIP][337] ([Intel XE#288]) -> [SKIP][338] ([Intel XE#4208]) +20 other tests skip
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-prefetch.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
    - shard-dg2-set2:     [SKIP][339] ([Intel XE#2360]) -> [SKIP][340] ([Intel XE#4208])
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html

  * igt@xe_exec_system_allocator@many-large-malloc-nomemset:
    - shard-dg2-set2:     [SKIP][341] ([Intel XE#4915]) -> [SKIP][342] ([Intel XE#4208]) +229 other tests skip
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@xe_exec_system_allocator@many-large-malloc-nomemset.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_exec_system_allocator@many-large-malloc-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-shared-nomemset:
    - shard-dg2-set2:     [SKIP][343] ([Intel XE#4208]) -> [SKIP][344] ([Intel XE#4915]) +309 other tests skip
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-shared-nomemset.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-shared-nomemset.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-dg2-set2:     [ABORT][345] ([Intel XE#4917]) -> [SKIP][346] ([Intel XE#4208])
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_oa@mmio-triggered-reports-read:
    - shard-dg2-set2:     [SKIP][347] ([Intel XE#5103]) -> [SKIP][348] ([Intel XE#4208])
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@xe_oa@mmio-triggered-reports-read.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_oa@mmio-triggered-reports-read.html

  * igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
    - shard-dg2-set2:     [SKIP][349] ([Intel XE#4208]) -> [SKIP][350] ([Intel XE#2541] / [Intel XE#3573]) +9 other tests skip
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html

  * igt@xe_oa@polling-small-buf:
    - shard-dg2-set2:     [SKIP][351] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][352] ([Intel XE#4208]) +4 other tests skip
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@xe_oa@polling-small-buf.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_oa@polling-small-buf.html

  * igt@xe_oa@syncs-syncobj-none:
    - shard-dg2-set2:     [SKIP][353] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) -> [SKIP][354] ([Intel XE#4208])
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@xe_oa@syncs-syncobj-none.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_oa@syncs-syncobj-none.html

  * igt@xe_oa@syncs-userptr-wait-cfg:
    - shard-dg2-set2:     [SKIP][355] ([Intel XE#4208]) -> [SKIP][356] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +1 other test skip
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_oa@syncs-userptr-wait-cfg.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-434/igt@xe_oa@syncs-userptr-wait-cfg.html

  * igt@xe_peer2peer@write:
    - shard-dg2-set2:     [SKIP][357] ([Intel XE#1061] / [Intel XE#4208]) -> [FAIL][358] ([Intel XE#1173])
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_peer2peer@write.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@xe_peer2peer@write.html

  * igt@xe_pm@d3cold-basic:
    - shard-dg2-set2:     [SKIP][359] ([Intel XE#4208]) -> [SKIP][360] ([Intel XE#2284] / [Intel XE#366])
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_pm@d3cold-basic.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-464/igt@xe_pm@d3cold-basic.html

  * igt@xe_pm@d3cold-mmap-system:
    - shard-dg2-set2:     [SKIP][361] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][362] ([Intel XE#4208])
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@xe_pm@d3cold-mmap-system.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_pm@d3cold-mmap-system.html

  * igt@xe_pm@d3cold-mocs:
    - shard-dg2-set2:     [SKIP][363] ([Intel XE#2284]) -> [SKIP][364] ([Intel XE#4208])
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@xe_pm@d3cold-mocs.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pmu@fn-engine-activity-load:
    - shard-dg2-set2:     [SKIP][365] ([Intel XE#4208]) -> [SKIP][366] ([Intel XE#4650])
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_pmu@fn-engine-activity-load.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-464/igt@xe_pmu@fn-engine-activity-load.html

  * igt@xe_pxp@display-pxp-fb:
    - shard-dg2-set2:     [SKIP][367] ([Intel XE#4208]) -> [SKIP][368] ([Intel XE#4733]) +3 other tests skip
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_pxp@display-pxp-fb.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@xe_pxp@display-pxp-fb.html

  * igt@xe_pxp@pxp-termination-key-update-post-suspend:
    - shard-dg2-set2:     [SKIP][369] ([Intel XE#4733]) -> [SKIP][370] ([Intel XE#4208]) +1 other test skip
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-464/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_pxp@pxp-termination-key-update-post-suspend.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-dg2-set2:     [SKIP][371] ([Intel XE#4208]) -> [SKIP][372] ([Intel XE#944]) +2 other tests skip
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_query@multigpu-query-invalid-cs-cycles.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_query@multigpu-query-topology:
    - shard-dg2-set2:     [SKIP][373] ([Intel XE#944]) -> [SKIP][374] ([Intel XE#4208]) +2 other tests skip
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@xe_query@multigpu-query-topology.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_query@multigpu-query-topology.html

  * igt@xe_render_copy@render-stress-1-copies:
    - shard-dg2-set2:     [SKIP][375] ([Intel XE#4208]) -> [SKIP][376] ([Intel XE#4814])
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_render_copy@render-stress-1-copies.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@xe_render_copy@render-stress-1-copies.html

  * igt@xe_render_copy@render-stress-2-copies:
    - shard-dg2-set2:     [SKIP][377] ([Intel XE#4814]) -> [SKIP][378] ([Intel XE#4208])
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@xe_render_copy@render-stress-2-copies.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_render_copy@render-stress-2-copies.html

  * igt@xe_spin_batch@spin-mem-copy:
    - shard-dg2-set2:     [SKIP][379] ([Intel XE#4208]) -> [SKIP][380] ([Intel XE#4821])
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_spin_batch@spin-mem-copy.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@xe_spin_batch@spin-mem-copy.html

  * igt@xe_sriov_auto_provisioning@fair-allocation:
    - shard-dg2-set2:     [SKIP][381] ([Intel XE#4208]) -> [SKIP][382] ([Intel XE#4130])
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_sriov_auto_provisioning@fair-allocation.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-435/igt@xe_sriov_auto_provisioning@fair-allocation.html

  * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
    - shard-dg2-set2:     [SKIP][383] ([Intel XE#4130]) -> [SKIP][384] ([Intel XE#4208])
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-433/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html

  * igt@xe_sriov_flr@flr-each-isolation:
    - shard-dg2-set2:     [SKIP][385] ([Intel XE#4208]) -> [SKIP][386] ([Intel XE#3342])
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-436/igt@xe_sriov_flr@flr-each-isolation.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-433/igt@xe_sriov_flr@flr-each-isolation.html

  * igt@xe_sriov_scheduling@equal-throughput:
    - shard-dg2-set2:     [SKIP][387] ([Intel XE#4351]) -> [SKIP][388] ([Intel XE#4208])
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3367-02069d358330d2c30eb66590736f360964d88612/shard-dg2-434/igt@xe_sriov_scheduling@equal-throughput.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151183v2/shard-dg2-436/igt@xe_sriov_scheduling@equal-throughput.html

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

  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#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#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
  [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
  [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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#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#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [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#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [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#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [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#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [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#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [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#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [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#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [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#4618]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4618
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [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#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [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#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
  [Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
  [Intel XE#5166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5166
  [Intel XE#5249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5249
  [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5419
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [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#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575


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

  * Linux: xe-3367-02069d358330d2c30eb66590736f360964d88612 -> xe-pw-151183v2

  IGT_8445: 8445
  xe-3367-02069d358330d2c30eb66590736f360964d88612: 02069d358330d2c30eb66590736f360964d88612
  xe-pw-151183v2: 151183v2

== Logs ==

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

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

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

* Re: [PATCH v2] drm/xe: Expose fan control and voltage regulator information
  2025-07-04 11:23 [PATCH v2] drm/xe: Expose fan control and voltage regulator information Raag Jadav
                   ` (4 preceding siblings ...)
  2025-07-08  3:36 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-07-08 19:10 ` Rodrigo Vivi
  5 siblings, 0 replies; 7+ messages in thread
From: Rodrigo Vivi @ 2025-07-08 19:10 UTC (permalink / raw)
  To: Raag Jadav
  Cc: lucas.demarchi, intel-xe, anshuman.gupta, badal.nilawar,
	riana.tauro

On Fri, Jul 04, 2025 at 04:53:05PM +0530, Raag Jadav wrote:
> Expose sysfs attributes for late binding features which provide information
> about their support, provisioning and bound version to the user.
> 
> v2: s/late_bind_fan_info/lb_fan_control_info (Badal)
>     s/late_bind_vr_info/lb_voltage_regulator_info (Badal)
>     s/LATE_BINDING/PCODE_LATE_BINDING (Badal)
>     Add VERSION_MASK macros (Badal)
> 
> Signed-off-by: Raag Jadav <raag.jadav@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_device_sysfs.c | 121 ++++++++++++++++++++++++++-
>  drivers/gpu/drm/xe/xe_pcode_api.h    |  15 ++++
>  2 files changed, 135 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_device_sysfs.c b/drivers/gpu/drm/xe/xe_device_sysfs.c
> index b9440f8c781e..8a1bb2b7c951 100644
> --- a/drivers/gpu/drm/xe/xe_device_sysfs.c
> +++ b/drivers/gpu/drm/xe/xe_device_sysfs.c
> @@ -24,6 +24,15 @@
>   *
>   * vram_d3cold_threshold - Report/change vram used threshold(in MB) below
>   * which vram save/restore is permissible during runtime D3cold entry/exit.
> + *
> + * lb_fan_control_info - Fan control information of the device in comma
> + * separated format as ``<supported>,<provisioned>,<version>`` with optional
> + * ``<version>`` field which is available only if provisioned by late binding.
> + *
> + * lb_voltage_regulator_info - Voltage regulator information of the device in
> + * comma separated format as ``<supported>,<provisioned>,<version>`` with
> + * optional ``<version>`` field which is available only if provisioned by late

Ouch. I have to apologize here. I had overseen this patch, but only with the
version in mind. Only now, while I was going to merge this patch that I noticed
it has fancy format against the written rules:

https://docs.kernel.org/6.15/filesystems/sysfs.html

"Mixing types, expressing multiple lines of data, and doing fancy formatting
of data is heavily frowned upon. Doing these things may get you publicly
humiliated and your code rewritten without notice."

For simplicity we should only do lb_fan_control_version and expose that only
if supported and provisioned.

> + * binding.
>   */
>  
>  static ssize_t
> @@ -65,6 +74,110 @@ vram_d3cold_threshold_store(struct device *dev, struct device_attribute *attr,
>  
>  static DEVICE_ATTR_RW(vram_d3cold_threshold);
>  
> +static ssize_t
> +lb_fan_control_info_show(struct device *dev, struct device_attribute *attr, char *buf)
> +{
> +	struct xe_device *xe = pdev_to_xe_device(to_pci_dev(dev));
> +	struct xe_tile *root = xe_device_get_root_tile(xe);
> +	u32 cap, ver_low = FAN_TABLE, ver_high = FAN_TABLE;
> +	bool supported, provisioned;
> +	int ret, len = 0;
> +
> +	xe_pm_runtime_get(xe);
> +
> +	ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_CAPABILITY_STATUS, 0),
> +			    &cap, NULL);
> +	if (ret)
> +		goto out;
> +
> +	supported = REG_FIELD_GET(V1_FAN_SUPPORTED, cap);
> +	provisioned = REG_FIELD_GET(V1_FAN_PROVISIONED, cap);
> +
> +	if (provisioned) {
> +		ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_VERSION_LOW, 0),
> +				    &ver_low, NULL);
> +		if (ret)
> +			goto out;
> +
> +		ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_VERSION_HIGH, 0),
> +				    &ver_high, NULL);
> +		if (ret)
> +			goto out;
> +	}
> +
> +	len += sysfs_emit_at(buf, len, "%u", supported);
> +	len += sysfs_emit_at(buf, len, ",%u", provisioned);
> +
> +	if (provisioned)
> +		len += sysfs_emit_at(buf, len, ",%u.%u.%u.%u",
> +				     REG_FIELD_GET(MAJOR_VERSION_MASK, ver_low),
> +				     REG_FIELD_GET(MINOR_VERSION_MASK, ver_low),
> +				     REG_FIELD_GET(HOTFIX_VERSION_MASK, ver_high),
> +				     REG_FIELD_GET(BUILD_VERSION_MASK, ver_high));
> +
> +	len += sysfs_emit_at(buf, len, "\n");
> +out:
> +	xe_pm_runtime_put(xe);
> +
> +	return ret ?: len;
> +}
> +static DEVICE_ATTR_ADMIN_RO(lb_fan_control_info);
> +
> +static ssize_t
> +lb_voltage_regulator_info_show(struct device *dev, struct device_attribute *attr, char *buf)
> +{
> +	struct xe_device *xe = pdev_to_xe_device(to_pci_dev(dev));
> +	struct xe_tile *root = xe_device_get_root_tile(xe);
> +	u32 cap, ver_low = VR_CONFIG, ver_high = VR_CONFIG;
> +	bool supported, provisioned;
> +	int ret, len = 0;
> +
> +	xe_pm_runtime_get(xe);
> +
> +	ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_CAPABILITY_STATUS, 0),
> +			    &cap, NULL);
> +	if (ret)
> +		goto out;
> +
> +	supported = REG_FIELD_GET(VR_PARAMS_SUPPORTED, cap);
> +	provisioned = REG_FIELD_GET(VR_PARAMS_PROVISIONED, cap);
> +
> +	if (provisioned) {
> +		ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_VERSION_LOW, 0),
> +				    &ver_low, NULL);
> +		if (ret)
> +			goto out;
> +
> +		ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_VERSION_HIGH, 0),
> +				    &ver_high, NULL);
> +		if (ret)
> +			goto out;
> +	}
> +
> +	len += sysfs_emit_at(buf, len, "%u", supported);
> +	len += sysfs_emit_at(buf, len, ",%u", provisioned);
> +
> +	if (provisioned)
> +		len += sysfs_emit_at(buf, len, ",%u.%u.%u.%u",
> +				     REG_FIELD_GET(MAJOR_VERSION_MASK, ver_low),
> +				     REG_FIELD_GET(MINOR_VERSION_MASK, ver_low),
> +				     REG_FIELD_GET(HOTFIX_VERSION_MASK, ver_high),
> +				     REG_FIELD_GET(BUILD_VERSION_MASK, ver_high));
> +
> +	len += sysfs_emit_at(buf, len, "\n");
> +out:
> +	xe_pm_runtime_put(xe);
> +
> +	return ret ?: len;
> +}
> +static DEVICE_ATTR_ADMIN_RO(lb_voltage_regulator_info);
> +
> +static const struct attribute *late_bind_attrs[] = {
> +	&dev_attr_lb_fan_control_info.attr,
> +	&dev_attr_lb_voltage_regulator_info.attr,
> +	NULL
> +};
> +
>  /**
>   * DOC: PCIe Gen5 Limitations
>   *
> @@ -151,8 +264,10 @@ static void xe_device_sysfs_fini(void *arg)
>  	if (xe->d3cold.capable)
>  		sysfs_remove_file(&xe->drm.dev->kobj, &dev_attr_vram_d3cold_threshold.attr);
>  
> -	if (xe->info.platform == XE_BATTLEMAGE)
> +	if (xe->info.platform == XE_BATTLEMAGE) {
>  		sysfs_remove_files(&xe->drm.dev->kobj, auto_link_downgrade_attrs);
> +		sysfs_remove_files(&xe->drm.dev->kobj, late_bind_attrs);
> +	}
>  }
>  
>  int xe_device_sysfs_init(struct xe_device *xe)
> @@ -170,6 +285,10 @@ int xe_device_sysfs_init(struct xe_device *xe)
>  		ret = sysfs_create_files(&dev->kobj, auto_link_downgrade_attrs);
>  		if (ret)
>  			return ret;
> +
> +		ret = sysfs_create_files(&dev->kobj, late_bind_attrs);
> +		if (ret)
> +			return ret;
>  	}
>  
>  	return devm_add_action_or_reset(dev, xe_device_sysfs_fini, xe);
> diff --git a/drivers/gpu/drm/xe/xe_pcode_api.h b/drivers/gpu/drm/xe/xe_pcode_api.h
> index 0befdea77db1..92bfcba51e19 100644
> --- a/drivers/gpu/drm/xe/xe_pcode_api.h
> +++ b/drivers/gpu/drm/xe/xe_pcode_api.h
> @@ -50,6 +50,21 @@
>  #define	READ_PL_FROM_FW				0x1
>  #define	READ_PL_FROM_PCODE			0x0
>  
> +#define   PCODE_LATE_BINDING			0x5C
> +#define     GET_CAPABILITY_STATUS		0x0
> +#define       V1_FAN_SUPPORTED			REG_BIT(0)
> +#define       VR_PARAMS_SUPPORTED		REG_BIT(3)
> +#define       V1_FAN_PROVISIONED		REG_BIT(16)
> +#define       VR_PARAMS_PROVISIONED		REG_BIT(19)
> +#define     GET_VERSION_LOW			0x1
> +#define     GET_VERSION_HIGH			0x2
> +#define       MAJOR_VERSION_MASK		REG_GENMASK(31, 16)
> +#define       MINOR_VERSION_MASK		REG_GENMASK(15, 0)
> +#define       HOTFIX_VERSION_MASK		REG_GENMASK(31, 16)
> +#define       BUILD_VERSION_MASK		REG_GENMASK(15, 0)
> +#define       FAN_TABLE				1
> +#define       VR_CONFIG				2
> +
>  #define   PCODE_FREQUENCY_CONFIG		0x6e
>  /* Frequency Config Sub Commands (param1) */
>  #define     PCODE_MBOX_FC_SC_READ_FUSED_P0	0x0
> -- 
> 2.34.1
> 

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

end of thread, other threads:[~2025-07-08 19:10 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-04 11:23 [PATCH v2] drm/xe: Expose fan control and voltage regulator information Raag Jadav
2025-07-04 11:30 ` ✓ CI.KUnit: success for " Patchwork
2025-07-04 12:16 ` [PATCH v2] " Nilawar, Badal
2025-07-07 23:56 ` ✓ CI.KUnit: success for drm/xe: Expose fan control and voltage regulator information (rev2) Patchwork
2025-07-08  0:51 ` ✓ Xe.CI.BAT: " Patchwork
2025-07-08  3:36 ` ✗ Xe.CI.Full: failure " Patchwork
2025-07-08 19:10 ` [PATCH v2] drm/xe: Expose fan control and voltage regulator information Rodrigo Vivi

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