Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4] drm/i915/display: Extend i915_display_info with Type-C port details
@ 2025-10-27 20:02 Khaled Almahallawy
  2025-10-27 20:09 ` ✗ CI.checkpatch: warning for drm/i915/display: Extend i915_display_info with Type-C port details (rev4) Patchwork
                   ` (12 more replies)
  0 siblings, 13 replies; 17+ messages in thread
From: Khaled Almahallawy @ 2025-10-27 20:02 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: Khaled Almahallawy, Ville Syrjälä, Imre Deak,
	Jani Nikula

Expose key Type-C port data in i915_display_info to make it easier to
understand the port configuration and active mode, especially whether
the link is in DP-Alt or TBT-Alt, without having to scan kernel logs.

Tested in DP-Alt, TBT-Alt, SST, and MST.

Expected output:

[CONNECTOR:290:DP-2]: status: connected
	TC Port: E/TC#2 mode: tbt-alt pin assignment: - max lanes: 4
	physical dimensions: 600x340mm
...
[CONNECTOR:263:DP-5]: status: connected
	TC Port: G/TC#4 mode: dp-alt pin assignment: C max lanes: 4
	physical dimensions: 610x350mm

v2: Use drm_printer (Ville)
    Lock/Unlock around the printf (Imre)
v3: Forward Declaration drm_printer struct (Jani)
v4: Handle MST connector with no active encoder (Imre)
    Add a delimiter between fields and ":" after the port name (Imre)

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Khaled Almahallawy <khaled.almahallawy@intel.com>
---
 drivers/gpu/drm/i915/display/intel_display_debugfs.c |  9 +++++++++
 drivers/gpu/drm/i915/display/intel_tc.c              | 12 ++++++++++++
 drivers/gpu/drm/i915/display/intel_tc.h              |  3 +++
 3 files changed, 24 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_display_debugfs.c b/drivers/gpu/drm/i915/display/intel_display_debugfs.c
index 10dddec3796f..4d931e4bef81 100644
--- a/drivers/gpu/drm/i915/display/intel_display_debugfs.c
+++ b/drivers/gpu/drm/i915/display/intel_display_debugfs.c
@@ -47,6 +47,7 @@
 #include "intel_psr_regs.h"
 #include "intel_vdsc.h"
 #include "intel_wm.h"
+#include "intel_tc.h"
 
 static struct intel_display *node_to_intel_display(struct drm_info_node *node)
 {
@@ -246,6 +247,8 @@ static void intel_connector_info(struct seq_file *m,
 {
 	struct intel_connector *intel_connector = to_intel_connector(connector);
 	const struct drm_display_mode *mode;
+	struct drm_printer p = drm_seq_file_printer(m);
+	struct intel_digital_port *dig_port;
 
 	seq_printf(m, "[CONNECTOR:%d:%s]: status: %s\n",
 		   connector->base.id, connector->name,
@@ -268,14 +271,20 @@ static void intel_connector_info(struct seq_file *m,
 			intel_dp_mst_info(m, intel_connector);
 		else
 			intel_dp_info(m, intel_connector);
+		dig_port = dp_to_dig_port(intel_attached_dp(intel_connector));
 		break;
 	case DRM_MODE_CONNECTOR_HDMIA:
 		intel_hdmi_info(m, intel_connector);
+		dig_port = hdmi_to_dig_port(intel_attached_hdmi(intel_connector));
 		break;
 	default:
 		break;
 	}
 
+	if (dig_port != NULL  &&
+	    intel_encoder_is_tc(intel_attached_encoder(intel_connector)))
+		intel_tc_info(&p, intel_attached_dig_port(intel_connector));
+
 	intel_hdcp_info(m, intel_connector);
 
 	seq_printf(m, "\tmax bpc: %u\n", connector->display_info.bpc);
diff --git a/drivers/gpu/drm/i915/display/intel_tc.c b/drivers/gpu/drm/i915/display/intel_tc.c
index c4a5601c5107..ef38d8483b46 100644
--- a/drivers/gpu/drm/i915/display/intel_tc.c
+++ b/drivers/gpu/drm/i915/display/intel_tc.c
@@ -1703,6 +1703,18 @@ void intel_tc_port_sanitize_mode(struct intel_digital_port *dig_port,
 	mutex_unlock(&tc->lock);
 }
 
+void intel_tc_info(struct drm_printer *p,  struct intel_digital_port *dig_port)
+{
+	struct intel_tc_port *tc = to_tc_port(dig_port);
+
+	mutex_lock(&tc->lock);
+	drm_printf(p, "\tTC Port %s: mode: %s, pin assignment: %c, max lanes: %d\n", tc->port_name,
+		   tc_port_mode_name(tc->mode),
+		   pin_assignment_name(tc->pin_assignment),
+		   tc->max_lane_count);
+	mutex_unlock(&tc->lock);
+}
+
 /*
  * The type-C ports are different because even when they are connected, they may
  * not be available/usable by the graphics driver: see the comment on
diff --git a/drivers/gpu/drm/i915/display/intel_tc.h b/drivers/gpu/drm/i915/display/intel_tc.h
index fff8b96e4972..6719aea5bd58 100644
--- a/drivers/gpu/drm/i915/display/intel_tc.h
+++ b/drivers/gpu/drm/i915/display/intel_tc.h
@@ -8,6 +8,7 @@
 
 #include <linux/types.h>
 
+struct drm_printer;
 struct intel_crtc_state;
 struct intel_digital_port;
 struct intel_encoder;
@@ -113,4 +114,6 @@ void intel_tc_port_cleanup(struct intel_digital_port *dig_port);
 
 bool intel_tc_cold_requires_aux_pw(struct intel_digital_port *dig_port);
 
+void intel_tc_info(struct drm_printer *p,  struct intel_digital_port *dig_port);
+
 #endif /* __INTEL_TC_H__ */
-- 
2.43.0


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

* ✗ CI.checkpatch: warning for drm/i915/display: Extend i915_display_info with Type-C port details (rev4)
  2025-10-27 20:02 [PATCH v4] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
@ 2025-10-27 20:09 ` Patchwork
  2025-10-27 20:10 ` ✓ CI.KUnit: success " Patchwork
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-10-27 20:09 UTC (permalink / raw)
  To: Khaled Almahallawy; +Cc: intel-xe

== Series Details ==

Series: drm/i915/display: Extend i915_display_info with Type-C port details (rev4)
URL   : https://patchwork.freedesktop.org/series/155066/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
f867e605613af1770f90c4b0afd4a8f06424d1f0
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 67ab6532fc00b1f2b1d725f5bda44afbd2d4bda7
Author: Khaled Almahallawy <khaled.almahallawy@intel.com>
Date:   Mon Oct 27 13:02:56 2025 -0700

    drm/i915/display: Extend i915_display_info with Type-C port details
    
    Expose key Type-C port data in i915_display_info to make it easier to
    understand the port configuration and active mode, especially whether
    the link is in DP-Alt or TBT-Alt, without having to scan kernel logs.
    
    Tested in DP-Alt, TBT-Alt, SST, and MST.
    
    Expected output:
    
    [CONNECTOR:290:DP-2]: status: connected
            TC Port: E/TC#2 mode: tbt-alt pin assignment: - max lanes: 4
            physical dimensions: 600x340mm
    ...
    [CONNECTOR:263:DP-5]: status: connected
            TC Port: G/TC#4 mode: dp-alt pin assignment: C max lanes: 4
            physical dimensions: 610x350mm
    
    v2: Use drm_printer (Ville)
        Lock/Unlock around the printf (Imre)
    v3: Forward Declaration drm_printer struct (Jani)
    v4: Handle MST connector with no active encoder (Imre)
        Add a delimiter between fields and ":" after the port name (Imre)
    
    Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Cc: Imre Deak <imre.deak@intel.com>
    Cc: Jani Nikula <jani.nikula@intel.com>
    Signed-off-by: Khaled Almahallawy <khaled.almahallawy@intel.com>
+ /mt/dim checkpatch a8f3783a2ccf78b04e48cf235f03629b80ffa3e0 drm-intel
67ab6532fc00 drm/i915/display: Extend i915_display_info with Type-C port details
-:72: CHECK:COMPARISON_TO_NULL: Comparison to NULL could be written "dig_port"
#72: FILE: drivers/gpu/drm/i915/display/intel_display_debugfs.c:284:
+	if (dig_port != NULL  &&

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



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

* ✓ CI.KUnit: success for drm/i915/display: Extend i915_display_info with Type-C port details (rev4)
  2025-10-27 20:02 [PATCH v4] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
  2025-10-27 20:09 ` ✗ CI.checkpatch: warning for drm/i915/display: Extend i915_display_info with Type-C port details (rev4) Patchwork
@ 2025-10-27 20:10 ` Patchwork
  2025-10-27 20:56 ` [PATCH v5] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-10-27 20:10 UTC (permalink / raw)
  To: Khaled Almahallawy; +Cc: intel-xe

== Series Details ==

Series: drm/i915/display: Extend i915_display_info with Type-C port details (rev4)
URL   : https://patchwork.freedesktop.org/series/155066/
State : success

== Summary ==

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

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

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

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



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

* [PATCH v5] drm/i915/display: Extend i915_display_info with Type-C port details
  2025-10-27 20:02 [PATCH v4] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
  2025-10-27 20:09 ` ✗ CI.checkpatch: warning for drm/i915/display: Extend i915_display_info with Type-C port details (rev4) Patchwork
  2025-10-27 20:10 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-27 20:56 ` Khaled Almahallawy
  2025-10-28 10:03   ` Imre Deak
  2025-10-28 19:07   ` [PATCH v6] " Khaled Almahallawy
  2025-10-27 21:08 ` ✓ Xe.CI.BAT: success for drm/i915/display: Extend i915_display_info with Type-C port details (rev4) Patchwork
                   ` (9 subsequent siblings)
  12 siblings, 2 replies; 17+ messages in thread
From: Khaled Almahallawy @ 2025-10-27 20:56 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: Khaled Almahallawy, Ville Syrjälä, Imre Deak,
	Jani Nikula

Expose key Type-C port data in i915_display_info to make it easier to
understand the port configuration and active mode, especially whether
the link is in DP-Alt or TBT-Alt, without having to scan kernel logs.

Tested in DP-Alt, TBT-Alt, SST, and MST.

Expected output:

[CONNECTOR:290:DP-2]: status: connected
	TC Port: E/TC#2 mode: tbt-alt pin assignment: - max lanes: 4
	physical dimensions: 600x340mm
...
[CONNECTOR:263:DP-5]: status: connected
	TC Port: G/TC#4 mode: dp-alt pin assignment: C max lanes: 4
	physical dimensions: 610x350mm

v2: Use drm_printer (Ville)
    Lock/Unlock around the printf (Imre)
v3: Forward Declaration drm_printer struct (Jani)
v4: Handle MST connector with no active encoder (Imre)
    Add a delimiter between fields and ":" after the port name (Imre)
v5: Init dig_port and use it in intel_encorder_is_tc and tc_info (Imre)
    Move tc->port_name to a newline (Imre)

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Khaled Almahallawy <khaled.almahallawy@intel.com>
---
 .../gpu/drm/i915/display/intel_display_debugfs.c    |  8 ++++++++
 drivers/gpu/drm/i915/display/intel_tc.c             | 13 +++++++++++++
 drivers/gpu/drm/i915/display/intel_tc.h             |  3 +++
 3 files changed, 24 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_display_debugfs.c b/drivers/gpu/drm/i915/display/intel_display_debugfs.c
index 10dddec3796f..7014331108aa 100644
--- a/drivers/gpu/drm/i915/display/intel_display_debugfs.c
+++ b/drivers/gpu/drm/i915/display/intel_display_debugfs.c
@@ -47,6 +47,7 @@
 #include "intel_psr_regs.h"
 #include "intel_vdsc.h"
 #include "intel_wm.h"
+#include "intel_tc.h"
 
 static struct intel_display *node_to_intel_display(struct drm_info_node *node)
 {
@@ -246,6 +247,8 @@ static void intel_connector_info(struct seq_file *m,
 {
 	struct intel_connector *intel_connector = to_intel_connector(connector);
 	const struct drm_display_mode *mode;
+	struct drm_printer p = drm_seq_file_printer(m);
+	struct intel_digital_port *dig_port = NULL;
 
 	seq_printf(m, "[CONNECTOR:%d:%s]: status: %s\n",
 		   connector->base.id, connector->name,
@@ -268,14 +271,19 @@ static void intel_connector_info(struct seq_file *m,
 			intel_dp_mst_info(m, intel_connector);
 		else
 			intel_dp_info(m, intel_connector);
+		dig_port = dp_to_dig_port(intel_attached_dp(intel_connector));
 		break;
 	case DRM_MODE_CONNECTOR_HDMIA:
 		intel_hdmi_info(m, intel_connector);
+		dig_port = hdmi_to_dig_port(intel_attached_hdmi(intel_connector));
 		break;
 	default:
 		break;
 	}
 
+	if (dig_port != NULL && intel_encoder_is_tc(&dig_port->base))
+		intel_tc_info(&p, dig_port);
+
 	intel_hdcp_info(m, intel_connector);
 
 	seq_printf(m, "\tmax bpc: %u\n", connector->display_info.bpc);
diff --git a/drivers/gpu/drm/i915/display/intel_tc.c b/drivers/gpu/drm/i915/display/intel_tc.c
index c4a5601c5107..addc876f455b 100644
--- a/drivers/gpu/drm/i915/display/intel_tc.c
+++ b/drivers/gpu/drm/i915/display/intel_tc.c
@@ -1703,6 +1703,19 @@ void intel_tc_port_sanitize_mode(struct intel_digital_port *dig_port,
 	mutex_unlock(&tc->lock);
 }
 
+void intel_tc_info(struct drm_printer *p,  struct intel_digital_port *dig_port)
+{
+	struct intel_tc_port *tc = to_tc_port(dig_port);
+
+	mutex_lock(&tc->lock);
+	drm_printf(p, "\tTC Port %s: mode: %s, pin assignment: %c, max lanes: %d\n",
+		   tc->port_name,
+		   tc_port_mode_name(tc->mode),
+		   pin_assignment_name(tc->pin_assignment),
+		   tc->max_lane_count);
+	mutex_unlock(&tc->lock);
+}
+
 /*
  * The type-C ports are different because even when they are connected, they may
  * not be available/usable by the graphics driver: see the comment on
diff --git a/drivers/gpu/drm/i915/display/intel_tc.h b/drivers/gpu/drm/i915/display/intel_tc.h
index fff8b96e4972..6719aea5bd58 100644
--- a/drivers/gpu/drm/i915/display/intel_tc.h
+++ b/drivers/gpu/drm/i915/display/intel_tc.h
@@ -8,6 +8,7 @@
 
 #include <linux/types.h>
 
+struct drm_printer;
 struct intel_crtc_state;
 struct intel_digital_port;
 struct intel_encoder;
@@ -113,4 +114,6 @@ void intel_tc_port_cleanup(struct intel_digital_port *dig_port);
 
 bool intel_tc_cold_requires_aux_pw(struct intel_digital_port *dig_port);
 
+void intel_tc_info(struct drm_printer *p,  struct intel_digital_port *dig_port);
+
 #endif /* __INTEL_TC_H__ */
-- 
2.43.0


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

* ✓ Xe.CI.BAT: success for drm/i915/display: Extend i915_display_info with Type-C port details (rev4)
  2025-10-27 20:02 [PATCH v4] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
                   ` (2 preceding siblings ...)
  2025-10-27 20:56 ` [PATCH v5] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
@ 2025-10-27 21:08 ` Patchwork
  2025-10-27 21:57 ` ✗ CI.checkpatch: warning for drm/i915/display: Extend i915_display_info with Type-C port details (rev5) Patchwork
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-10-27 21:08 UTC (permalink / raw)
  To: Khaled Almahallawy; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/display: Extend i915_display_info with Type-C port details (rev4)
URL   : https://patchwork.freedesktop.org/series/155066/
State : success

== Summary ==

CI Bug Log - changes from xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469_BAT -> xe-pw-155066v4_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts


Changes
-------

  No changes found


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

  * Linux: xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469 -> xe-pw-155066v4

  IGT_8597: 8597
  xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469: 6c42b2ca1a7f0fafa84f65690540d1e70096d469
  xe-pw-155066v4: 155066v4

== Logs ==

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

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

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

* ✗ CI.checkpatch: warning for drm/i915/display: Extend i915_display_info with Type-C port details (rev5)
  2025-10-27 20:02 [PATCH v4] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
                   ` (3 preceding siblings ...)
  2025-10-27 21:08 ` ✓ Xe.CI.BAT: success for drm/i915/display: Extend i915_display_info with Type-C port details (rev4) Patchwork
@ 2025-10-27 21:57 ` Patchwork
  2025-10-27 21:58 ` ✓ CI.KUnit: success " Patchwork
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-10-27 21:57 UTC (permalink / raw)
  To: Khaled Almahallawy; +Cc: intel-xe

== Series Details ==

Series: drm/i915/display: Extend i915_display_info with Type-C port details (rev5)
URL   : https://patchwork.freedesktop.org/series/155066/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
f867e605613af1770f90c4b0afd4a8f06424d1f0
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit ec04362581d400e6087779b8efa6266dcf891974
Author: Khaled Almahallawy <khaled.almahallawy@intel.com>
Date:   Mon Oct 27 13:56:28 2025 -0700

    drm/i915/display: Extend i915_display_info with Type-C port details
    
    Expose key Type-C port data in i915_display_info to make it easier to
    understand the port configuration and active mode, especially whether
    the link is in DP-Alt or TBT-Alt, without having to scan kernel logs.
    
    Tested in DP-Alt, TBT-Alt, SST, and MST.
    
    Expected output:
    
    [CONNECTOR:290:DP-2]: status: connected
            TC Port: E/TC#2 mode: tbt-alt pin assignment: - max lanes: 4
            physical dimensions: 600x340mm
    ...
    [CONNECTOR:263:DP-5]: status: connected
            TC Port: G/TC#4 mode: dp-alt pin assignment: C max lanes: 4
            physical dimensions: 610x350mm
    
    v2: Use drm_printer (Ville)
        Lock/Unlock around the printf (Imre)
    v3: Forward Declaration drm_printer struct (Jani)
    v4: Handle MST connector with no active encoder (Imre)
        Add a delimiter between fields and ":" after the port name (Imre)
    v5: Init dig_port and use it in intel_encorder_is_tc and tc_info (Imre)
        Move tc->port_name to a newline (Imre)
    
    Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Cc: Imre Deak <imre.deak@intel.com>
    Cc: Jani Nikula <jani.nikula@intel.com>
    Signed-off-by: Khaled Almahallawy <khaled.almahallawy@intel.com>
+ /mt/dim checkpatch de43fe70c436c359e7478a5532d873f87357cb4e drm-intel
ec04362581d4 drm/i915/display: Extend i915_display_info with Type-C port details
-:74: CHECK:COMPARISON_TO_NULL: Comparison to NULL could be written "dig_port"
#74: FILE: drivers/gpu/drm/i915/display/intel_display_debugfs.c:284:
+	if (dig_port != NULL && intel_encoder_is_tc(&dig_port->base))

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



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

* ✓ CI.KUnit: success for drm/i915/display: Extend i915_display_info with Type-C port details (rev5)
  2025-10-27 20:02 [PATCH v4] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
                   ` (4 preceding siblings ...)
  2025-10-27 21:57 ` ✗ CI.checkpatch: warning for drm/i915/display: Extend i915_display_info with Type-C port details (rev5) Patchwork
@ 2025-10-27 21:58 ` Patchwork
  2025-10-27 22:44 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-10-27 21:58 UTC (permalink / raw)
  To: Khaled Almahallawy; +Cc: intel-xe

== Series Details ==

Series: drm/i915/display: Extend i915_display_info with Type-C port details (rev5)
URL   : https://patchwork.freedesktop.org/series/155066/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/i915/display: Extend i915_display_info with Type-C port details (rev5)
  2025-10-27 20:02 [PATCH v4] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
                   ` (5 preceding siblings ...)
  2025-10-27 21:58 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-27 22:44 ` Patchwork
  2025-10-28  3:06 ` ✗ Xe.CI.Full: failure for drm/i915/display: Extend i915_display_info with Type-C port details (rev4) Patchwork
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-10-27 22:44 UTC (permalink / raw)
  To: Khaled Almahallawy; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/display: Extend i915_display_info with Type-C port details (rev5)
URL   : https://patchwork.freedesktop.org/series/155066/
State : success

== Summary ==

CI Bug Log - changes from xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0_BAT -> xe-pw-155066v5_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts


Changes
-------

  No changes found


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

  * Linux: xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0 -> xe-pw-155066v5

  IGT_8597: 8597
  xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0: a8f3783a2ccf78b04e48cf235f03629b80ffa3e0
  xe-pw-155066v5: 155066v5

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for drm/i915/display: Extend i915_display_info with Type-C port details (rev4)
  2025-10-27 20:02 [PATCH v4] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
                   ` (6 preceding siblings ...)
  2025-10-27 22:44 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-28  3:06 ` Patchwork
  2025-10-28  6:00 ` ✗ Xe.CI.Full: failure for drm/i915/display: Extend i915_display_info with Type-C port details (rev5) Patchwork
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-10-28  3:06 UTC (permalink / raw)
  To: Khaled Almahallawy; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/display: Extend i915_display_info with Type-C port details (rev4)
URL   : https://patchwork.freedesktop.org/series/155066/
State : failure

== Summary ==

CI Bug Log - changes from xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469_FULL -> xe-pw-155066v4_FULL
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-b-edp-1:
    - shard-lnl:          [PASS][1] -> [DMESG-WARN][2] +2 other tests dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-b-edp-1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-b-edp-1.html

  * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3:
    - shard-bmg:          [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-bmg-6/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-bmg-6/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3.html

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

  Here are the changes found in xe-pw-155066v4_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-bmg:          [PASS][5] -> [FAIL][6] ([Intel XE#3718] / [Intel XE#6078])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3:
    - shard-bmg:          [PASS][7] -> [FAIL][8] ([Intel XE#6078])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][9] ([Intel XE#316])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-adlp:         [PASS][10] -> [DMESG-FAIL][11] ([Intel XE#4543])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][12] ([Intel XE#1124])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-432/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][13] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][14] ([Intel XE#787]) +6 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [PASS][15] -> [INCOMPLETE][16] ([Intel XE#3862]) +1 other test incomplete
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     [PASS][17] -> [INCOMPLETE][18] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168]) +1 other test incomplete
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [PASS][19] -> [INCOMPLETE][20] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) +2 other tests incomplete
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [PASS][21] -> [INCOMPLETE][22] ([Intel XE#6168] / [i915#14968])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [PASS][23] -> [DMESG-WARN][24] ([Intel XE#1727] / [Intel XE#3113])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6.html

  * igt@kms_chamelium_hpd@vga-hpd-after-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#373])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-dg2-set2:     NOTRUN -> [SKIP][26] ([Intel XE#455])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-432/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4:
    - shard-dg2-set2:     [PASS][27] -> [INCOMPLETE][28] ([Intel XE#2049] / [Intel XE#2597]) +3 other tests incomplete
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4.html

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-lnl:          [PASS][29] -> [FAIL][30] ([Intel XE#301])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank@c-dp4:
    - shard-dg2-set2:     [PASS][31] -> [FAIL][32] ([Intel XE#301] / [Intel XE#3321])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-adlp:         [PASS][33] -> [DMESG-WARN][34] ([Intel XE#2953] / [Intel XE#4173]) +4 other tests dmesg-warn
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-adlp-8/igt@kms_flip@flip-vs-suspend.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-adlp-3/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][35] ([Intel XE#651]) +2 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][36] ([Intel XE#653]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_psr@fbc-psr2-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][37] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-432/igt@kms_psr@fbc-psr2-dpms.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [PASS][38] -> [INCOMPLETE][39] ([Intel XE#6321])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_fault_mode@many-execqueues-basic-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][40] ([Intel XE#288]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-basic-imm.html

  * igt@xe_exec_system_allocator:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][41] ([Intel XE#2594])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-bmg-4/igt@xe_exec_system_allocator.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
    - shard-lnl:          [PASS][42] -> [FAIL][43] ([Intel XE#5625])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html

  * igt@xe_exec_system_allocator@process-many-mmap-free-race-nomemset:
    - shard-dg2-set2:     NOTRUN -> [SKIP][44] ([Intel XE#4915]) +21 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-432/igt@xe_exec_system_allocator@process-many-mmap-free-race-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#4943])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge-nomemset.html

  
#### Possible fixes ####

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [DMESG-FAIL][46] ([Intel XE#4543]) -> [PASS][47] +1 other test pass
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_cursor_legacy@cursora-vs-flipa-atomic:
    - shard-adlp:         [DMESG-WARN][48] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-adlp-1/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-adlp-6/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html

  * igt@kms_flip@flip-vs-expired-vblank@c-edp1:
    - shard-lnl:          [FAIL][50] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][51]
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank@d-dp4:
    - shard-dg2-set2:     [FAIL][52] ([Intel XE#301] / [Intel XE#3149] / [Intel XE#3321]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind:
    - shard-dg2-set2:     [INCOMPLETE][54] ([Intel XE#4842]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-dg2-466/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-dg2-set2:     [DMESG-WARN][56] ([Intel XE#5893]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-dg2-466/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_gt_freq@freq_fixed_idle:
    - shard-dg2-set2:     [FAIL][58] ([Intel XE#6407]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-dg2-435/igt@xe_gt_freq@freq_fixed_idle.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-466/igt@xe_gt_freq@freq_fixed_idle.html

  * igt@xe_pmu@gt-c6-idle:
    - shard-dg2-set2:     [FAIL][60] ([Intel XE#6366]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-dg2-435/igt@xe_pmu@gt-c6-idle.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-433/igt@xe_pmu@gt-c6-idle.html

  
#### Warnings ####

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-dg2-set2:     [FAIL][62] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][63] ([Intel XE#301])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank.html
    - shard-lnl:          [FAIL][64] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][65] ([Intel XE#301])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1:
    - shard-adlp:         [TIMEOUT][66] ([Intel XE#4543]) -> [DMESG-WARN][67] ([Intel XE#4543]) +1 other test dmesg-warn
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-adlp-2/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-adlp-4/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [SKIP][68] ([Intel XE#362]) -> [FAIL][69] ([Intel XE#1729])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][70] ([Intel XE#2426]) -> [SKIP][71] ([Intel XE#2509])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_sriov_scheduling@equal-throughput:
    - shard-adlp:         [DMESG-FAIL][72] ([Intel XE#3868] / [Intel XE#5213]) -> [ABORT][73] ([Intel XE#4917]) +1 other test abort
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469/shard-adlp-6/igt@xe_sriov_scheduling@equal-throughput.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v4/shard-adlp-6/igt@xe_sriov_scheduling@equal-throughput.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [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#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [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#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [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#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
  [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#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
  [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
  [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6366
  [Intel XE#6407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6407
  [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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [i915#14968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14968


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

  * Linux: xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469 -> xe-pw-155066v4

  IGT_8597: 8597
  xe-3992-6c42b2ca1a7f0fafa84f65690540d1e70096d469: 6c42b2ca1a7f0fafa84f65690540d1e70096d469
  xe-pw-155066v4: 155066v4

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for drm/i915/display: Extend i915_display_info with Type-C port details (rev5)
  2025-10-27 20:02 [PATCH v4] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
                   ` (7 preceding siblings ...)
  2025-10-28  3:06 ` ✗ Xe.CI.Full: failure for drm/i915/display: Extend i915_display_info with Type-C port details (rev4) Patchwork
@ 2025-10-28  6:00 ` Patchwork
  2025-10-28 21:33 ` ✗ CI.checkpatch: warning for drm/i915/display: Extend i915_display_info with Type-C port details (rev6) Patchwork
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-10-28  6:00 UTC (permalink / raw)
  To: Khaled Almahallawy; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/display: Extend i915_display_info with Type-C port details (rev5)
URL   : https://patchwork.freedesktop.org/series/155066/
State : failure

== Summary ==

CI Bug Log - changes from xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0_FULL -> xe-pw-155066v5_FULL
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_cursor_legacy@torture-bo@pipe-a:
    - shard-dg2-set2:     [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-dg2-466/igt@kms_cursor_legacy@torture-bo@pipe-a.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-435/igt@kms_cursor_legacy@torture-bo@pipe-a.html

  
New tests
---------

  New tests have been introduced between xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0_FULL and xe-pw-155066v5_FULL:

### New IGT tests (1) ###

  * igt@kms_fbc_dirty_rect:
    - Statuses :
    - Exec time: [None] s

  

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

  Here are the changes found in xe-pw-155066v5_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-adlp:         [PASS][3] -> [DMESG-WARN][4] ([Intel XE#2953] / [Intel XE#4173]) +6 other tests dmesg-warn
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-adlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [SKIP][5] ([Intel XE#1124])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][6] ([Intel XE#1124])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-lnl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [PASS][7] -> [SKIP][8] ([Intel XE#2314] / [Intel XE#2894])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#2314] / [Intel XE#2894])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2887]) +1 other test skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-2/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html

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

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

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

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

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#308])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-433/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2320])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][18] -> [SKIP][19] ([Intel XE#2291]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-lnl:          NOTRUN -> [SKIP][20] ([Intel XE#309])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][21] -> [FAIL][22] ([Intel XE#1475])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-dg2-set2:     NOTRUN -> [SKIP][23] ([Intel XE#323])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@torture-bo:
    - shard-dg2-set2:     [PASS][24] -> [DMESG-WARN][25] ([Intel XE#6363])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-dg2-466/igt@kms_cursor_legacy@torture-bo.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-435/igt@kms_cursor_legacy@torture-bo.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
    - shard-lnl:          NOTRUN -> [SKIP][26] ([Intel XE#4422])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-lnl-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-bmg:          [PASS][27] -> [SKIP][28] ([Intel XE#2316]) +9 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1:
    - shard-adlp:         [PASS][29] -> [DMESG-WARN][30] ([Intel XE#4543])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-2/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-adlp-9/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [PASS][31] -> [FAIL][32] ([Intel XE#301]) +1 other test fail
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2293] / [Intel XE#2380])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#2293])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#5390]) +1 other test skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2311]) +3 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw:
    - shard-dg2-set2:     NOTRUN -> [SKIP][37] ([Intel XE#651]) +3 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][38] ([Intel XE#653]) +2 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][39] ([Intel XE#656]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2313])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [PASS][41] -> [SKIP][42] ([Intel XE#3012])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-bmg:          [PASS][43] -> [SKIP][44] ([Intel XE#2571])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_pm_backlight@fade:
    - shard-dg2-set2:     NOTRUN -> [SKIP][45] ([Intel XE#870])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-433/igt@kms_pm_backlight@fade.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][46] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-433/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#1128] / [Intel XE#1406])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-lnl-2/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@fbc-pr-no-drrs:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-4/igt@kms_psr@fbc-pr-no-drrs.html

  * igt@kms_psr@fbc-psr2-cursor-plane-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][49] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-433/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#3414]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#2330])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [PASS][52] -> [FAIL][53] ([Intel XE#4459]) +1 other test fail
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     NOTRUN -> [SKIP][54] ([Intel XE#455]) +2 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-433/igt@kms_vrr@flipline.html

  * igt@xe_configfs@survivability-mode:
    - shard-lnl:          NOTRUN -> [SKIP][55] ([Intel XE#6010])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-lnl-2/igt@xe_configfs@survivability-mode.html

  * igt@xe_copy_basic@mem-page-copy-17:
    - shard-dg2-set2:     NOTRUN -> [SKIP][56] ([Intel XE#5300])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-433/igt@xe_copy_basic@mem-page-copy-17.html

  * igt@xe_eudebug@connect-user:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#4837])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-lnl-2/igt@xe_eudebug@connect-user.html

  * igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#4837]) +1 other test skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-2/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html

  * igt@xe_eudebug_online@interrupt-all:
    - shard-dg2-set2:     NOTRUN -> [SKIP][59] ([Intel XE#4837]) +1 other test skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-433/igt@xe_eudebug_online@interrupt-all.html

  * igt@xe_evict@evict-beng-small-multi-vm-cm:
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#688])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-lnl-2/igt@xe_evict@evict-beng-small-multi-vm-cm.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#2322])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html

  * igt@xe_exec_fault_mode@twice-userptr-prefetch:
    - shard-dg2-set2:     NOTRUN -> [SKIP][62] ([Intel XE#288]) +3 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-prefetch.html

  * igt@xe_exec_reset@cm-close-fd:
    - shard-adlp:         [PASS][63] -> [DMESG-WARN][64] ([Intel XE#3868])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-1/igt@xe_exec_reset@cm-close-fd.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
    - shard-lnl:          [PASS][65] -> [FAIL][66] ([Intel XE#5625]) +1 other test fail
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html

  * igt@xe_exec_system_allocator@process-many-large-execqueues-new-bo-map-nomemset:
    - shard-dg2-set2:     NOTRUN -> [SKIP][67] ([Intel XE#4915]) +45 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-433/igt@xe_exec_system_allocator@process-many-large-execqueues-new-bo-map-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#4943]) +3 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][69] ([Intel XE#4943]) +2 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-huge-nomemset.html

  * igt@xe_oa@non-privileged-access-vaddr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][70] ([Intel XE#3573]) +1 other test skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-433/igt@xe_oa@non-privileged-access-vaddr.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
    - shard-adlp:         [PASS][71] -> [DMESG-FAIL][72] ([Intel XE#3868] / [Intel XE#5213] / [Intel XE#5545]) +1 other test dmesg-fail
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-6/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-adlp-8/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html

  
#### Possible fixes ####

  * igt@kms_atomic_transition@plane-toggle-modeset-transition:
    - shard-adlp:         [FAIL][73] ([Intel XE#3908]) -> [PASS][74] +1 other test pass
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-9/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-adlp-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-adlp:         [DMESG-FAIL][75] ([Intel XE#4543]) -> [PASS][76]
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][77] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168]) -> [PASS][78]
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][79] ([Intel XE#2291]) -> [PASS][80] +3 other tests pass
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
    - shard-bmg:          [DMESG-WARN][81] ([Intel XE#5354]) -> [PASS][82]
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-bmg:          [SKIP][83] ([Intel XE#4354]) -> [PASS][84]
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-7/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-bmg:          [SKIP][85] ([Intel XE#4294]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [SKIP][87] ([Intel XE#2373]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-7/igt@kms_feature_discovery@display-2x.html

  * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
    - shard-bmg:          [SKIP][89] ([Intel XE#2316]) -> [PASS][90] +2 other tests pass
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-adlp:         [DMESG-WARN][91] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][92] +2 other tests pass
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-8/igt@kms_flip@flip-vs-suspend.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-adlp-1/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][93] ([Intel XE#4543]) -> [PASS][94] +3 other tests pass
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-2/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-adlp-3/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-bmg:          [SKIP][95] ([Intel XE#1503]) -> [PASS][96]
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-7/igt@kms_hdr@static-toggle-suspend.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][97] ([Intel XE#6321]) -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_gt_freq@freq_fixed_idle:
    - shard-dg2-set2:     [FAIL][99] ([Intel XE#6407]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-dg2-435/igt@xe_gt_freq@freq_fixed_idle.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-463/igt@xe_gt_freq@freq_fixed_idle.html

  * igt@xe_pmu@gt-c6-idle:
    - shard-dg2-set2:     [FAIL][101] ([Intel XE#6366]) -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-dg2-466/igt@xe_pmu@gt-c6-idle.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-dg2-433/igt@xe_pmu@gt-c6-idle.html

  
#### Warnings ####

  * igt@kms_content_protection@srm:
    - shard-bmg:          [FAIL][103] ([Intel XE#1178]) -> [SKIP][104] ([Intel XE#2341])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-7/igt@kms_content_protection@srm.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-6/igt@kms_content_protection@srm.html

  * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
    - shard-bmg:          [SKIP][105] ([Intel XE#2311]) -> [SKIP][106] ([Intel XE#2312]) +15 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][107] ([Intel XE#2312]) -> [SKIP][108] ([Intel XE#5390]) +8 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][109] ([Intel XE#5390]) -> [SKIP][110] ([Intel XE#2312]) +5 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][111] ([Intel XE#2312]) -> [SKIP][112] ([Intel XE#2311]) +13 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][113] ([Intel XE#2312]) -> [SKIP][114] ([Intel XE#2313]) +8 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][115] ([Intel XE#2313]) -> [SKIP][116] ([Intel XE#2312]) +14 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][117] ([Intel XE#3544]) -> [SKIP][118] ([Intel XE#3374] / [Intel XE#3544])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][119] ([Intel XE#2426]) -> [SKIP][120] ([Intel XE#2509])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v5/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
  [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
  [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6363]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6363
  [Intel XE#6366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6366
  [Intel XE#6407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6407
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [i915#14968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14968


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

  * Linux: xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0 -> xe-pw-155066v5

  IGT_8597: 8597
  xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0: a8f3783a2ccf78b04e48cf235f03629b80ffa3e0
  xe-pw-155066v5: 155066v5

== Logs ==

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

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

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

* Re: [PATCH v5] drm/i915/display: Extend i915_display_info with Type-C port details
  2025-10-27 20:56 ` [PATCH v5] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
@ 2025-10-28 10:03   ` Imre Deak
  2025-10-28 19:07   ` [PATCH v6] " Khaled Almahallawy
  1 sibling, 0 replies; 17+ messages in thread
From: Imre Deak @ 2025-10-28 10:03 UTC (permalink / raw)
  To: Khaled Almahallawy
  Cc: intel-gfx, intel-xe, Ville Syrjälä, Jani Nikula

On Mon, Oct 27, 2025 at 01:56:28PM -0700, Khaled Almahallawy wrote:
> Expose key Type-C port data in i915_display_info to make it easier to
> understand the port configuration and active mode, especially whether
> the link is in DP-Alt or TBT-Alt, without having to scan kernel logs.
> 
> Tested in DP-Alt, TBT-Alt, SST, and MST.
> 
> Expected output:
> 
> [CONNECTOR:290:DP-2]: status: connected
> 	TC Port: E/TC#2 mode: tbt-alt pin assignment: - max lanes: 4
> 	physical dimensions: 600x340mm
> ...
> [CONNECTOR:263:DP-5]: status: connected
> 	TC Port: G/TC#4 mode: dp-alt pin assignment: C max lanes: 4
> 	physical dimensions: 610x350mm
> 
> v2: Use drm_printer (Ville)
>     Lock/Unlock around the printf (Imre)
> v3: Forward Declaration drm_printer struct (Jani)
> v4: Handle MST connector with no active encoder (Imre)
>     Add a delimiter between fields and ":" after the port name (Imre)
> v5: Init dig_port and use it in intel_encorder_is_tc and tc_info (Imre)
>     Move tc->port_name to a newline (Imre)
> 
> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Cc: Imre Deak <imre.deak@intel.com>
> Cc: Jani Nikula <jani.nikula@intel.com>
> Signed-off-by: Khaled Almahallawy <khaled.almahallawy@intel.com>
> ---
>  .../gpu/drm/i915/display/intel_display_debugfs.c    |  8 ++++++++
>  drivers/gpu/drm/i915/display/intel_tc.c             | 13 +++++++++++++
>  drivers/gpu/drm/i915/display/intel_tc.h             |  3 +++
>  3 files changed, 24 insertions(+)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_display_debugfs.c b/drivers/gpu/drm/i915/display/intel_display_debugfs.c
> index 10dddec3796f..7014331108aa 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_debugfs.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_debugfs.c
> @@ -47,6 +47,7 @@
>  #include "intel_psr_regs.h"
>  #include "intel_vdsc.h"
>  #include "intel_wm.h"
> +#include "intel_tc.h"
>  
>  static struct intel_display *node_to_intel_display(struct drm_info_node *node)
>  {
> @@ -246,6 +247,8 @@ static void intel_connector_info(struct seq_file *m,
>  {
>  	struct intel_connector *intel_connector = to_intel_connector(connector);
>  	const struct drm_display_mode *mode;
> +	struct drm_printer p = drm_seq_file_printer(m);
> +	struct intel_digital_port *dig_port = NULL;
>  
>  	seq_printf(m, "[CONNECTOR:%d:%s]: status: %s\n",
>  		   connector->base.id, connector->name,
> @@ -268,14 +271,19 @@ static void intel_connector_info(struct seq_file *m,
>  			intel_dp_mst_info(m, intel_connector);
>  		else
>  			intel_dp_info(m, intel_connector);
> +		dig_port = dp_to_dig_port(intel_attached_dp(intel_connector));
>  		break;
>  	case DRM_MODE_CONNECTOR_HDMIA:
>  		intel_hdmi_info(m, intel_connector);
> +		dig_port = hdmi_to_dig_port(intel_attached_hdmi(intel_connector));
>  		break;
>  	default:
>  		break;
>  	}
>  
> +	if (dig_port != NULL && intel_encoder_is_tc(&dig_port->base))
> +		intel_tc_info(&p, dig_port);
> +
>  	intel_hdcp_info(m, intel_connector);
>  
>  	seq_printf(m, "\tmax bpc: %u\n", connector->display_info.bpc);
> diff --git a/drivers/gpu/drm/i915/display/intel_tc.c b/drivers/gpu/drm/i915/display/intel_tc.c
> index c4a5601c5107..addc876f455b 100644
> --- a/drivers/gpu/drm/i915/display/intel_tc.c
> +++ b/drivers/gpu/drm/i915/display/intel_tc.c
> @@ -1703,6 +1703,19 @@ void intel_tc_port_sanitize_mode(struct intel_digital_port *dig_port,
>  	mutex_unlock(&tc->lock);
>  }
>  
> +void intel_tc_info(struct drm_printer *p,  struct intel_digital_port *dig_port)
> +{
> +	struct intel_tc_port *tc = to_tc_port(dig_port);
> +
> +	mutex_lock(&tc->lock);

Missed this in my earlier review, sorry for that:

This happens to work only by chance: tc->mode reflects the mode the port
was connected in only if the port's PHY is also connected, otherwise
tc->mode will be set to disconnected. So this function will print the
expected connnected mode only if the PHY happens to be connected at the
point the function is called. To fix that could you instead of the
mutex_lock/unlock do:

intel_tc_port_lock();
drm_printf();
intel_tc_port_unlock();

?

> +	drm_printf(p, "\tTC Port %s: mode: %s, pin assignment: %c, max lanes: %d\n",
> +		   tc->port_name,
> +		   tc_port_mode_name(tc->mode),
> +		   pin_assignment_name(tc->pin_assignment),
> +		   tc->max_lane_count);
> +	mutex_unlock(&tc->lock);
> +}
> +
>  /*
>   * The type-C ports are different because even when they are connected, they may
>   * not be available/usable by the graphics driver: see the comment on
> diff --git a/drivers/gpu/drm/i915/display/intel_tc.h b/drivers/gpu/drm/i915/display/intel_tc.h
> index fff8b96e4972..6719aea5bd58 100644
> --- a/drivers/gpu/drm/i915/display/intel_tc.h
> +++ b/drivers/gpu/drm/i915/display/intel_tc.h
> @@ -8,6 +8,7 @@
>  
>  #include <linux/types.h>
>  
> +struct drm_printer;
>  struct intel_crtc_state;
>  struct intel_digital_port;
>  struct intel_encoder;
> @@ -113,4 +114,6 @@ void intel_tc_port_cleanup(struct intel_digital_port *dig_port);
>  
>  bool intel_tc_cold_requires_aux_pw(struct intel_digital_port *dig_port);
>  
> +void intel_tc_info(struct drm_printer *p,  struct intel_digital_port *dig_port);
> +
>  #endif /* __INTEL_TC_H__ */
> -- 
> 2.43.0
> 

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

* [PATCH v6] drm/i915/display: Extend i915_display_info with Type-C port details
  2025-10-27 20:56 ` [PATCH v5] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
  2025-10-28 10:03   ` Imre Deak
@ 2025-10-28 19:07   ` Khaled Almahallawy
  2025-10-29  8:32     ` Imre Deak
  1 sibling, 1 reply; 17+ messages in thread
From: Khaled Almahallawy @ 2025-10-28 19:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: Khaled Almahallawy, Ville Syrjälä, Imre Deak,
	Jani Nikula

Expose key Type-C port data in i915_display_info to make it easier to
understand the port configuration and active mode, especially whether
the link is in DP-Alt or TBT-Alt, without having to scan kernel logs.

Tested in DP-Alt, TBT-Alt, SST, and MST.

Expected output:

[CONNECTOR:290:DP-2]: status: connected
	TC Port: E/TC#2 mode: tbt-alt pin assignment: - max lanes: 4
	physical dimensions: 600x340mm
...
[CONNECTOR:263:DP-5]: status: connected
	TC Port: G/TC#4 mode: dp-alt pin assignment: C max lanes: 4
	physical dimensions: 610x350mm

v2: Use drm_printer (Ville)
    Lock/Unlock around the printf (Imre)
v3: Forward Declaration drm_printer struct (Jani)
v4: Handle MST connector with no active encoder (Imre)
    Add a delimiter between fields and ":" after the port name (Imre)
v5: Init dig_port and use it in intel_encorder_is_tc and tc_info (Imre)
    Move tc->port_name to a newline (Imre)
v6: Use intel_tc_port_lock/Unlock (Imre)

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Khaled Almahallawy <khaled.almahallawy@intel.com>
---
 .../gpu/drm/i915/display/intel_display_debugfs.c    |  8 ++++++++
 drivers/gpu/drm/i915/display/intel_tc.c             | 13 +++++++++++++
 drivers/gpu/drm/i915/display/intel_tc.h             |  3 +++
 3 files changed, 24 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_display_debugfs.c b/drivers/gpu/drm/i915/display/intel_display_debugfs.c
index 10dddec3796f..7014331108aa 100644
--- a/drivers/gpu/drm/i915/display/intel_display_debugfs.c
+++ b/drivers/gpu/drm/i915/display/intel_display_debugfs.c
@@ -47,6 +47,7 @@
 #include "intel_psr_regs.h"
 #include "intel_vdsc.h"
 #include "intel_wm.h"
+#include "intel_tc.h"
 
 static struct intel_display *node_to_intel_display(struct drm_info_node *node)
 {
@@ -246,6 +247,8 @@ static void intel_connector_info(struct seq_file *m,
 {
 	struct intel_connector *intel_connector = to_intel_connector(connector);
 	const struct drm_display_mode *mode;
+	struct drm_printer p = drm_seq_file_printer(m);
+	struct intel_digital_port *dig_port = NULL;
 
 	seq_printf(m, "[CONNECTOR:%d:%s]: status: %s\n",
 		   connector->base.id, connector->name,
@@ -268,14 +271,19 @@ static void intel_connector_info(struct seq_file *m,
 			intel_dp_mst_info(m, intel_connector);
 		else
 			intel_dp_info(m, intel_connector);
+		dig_port = dp_to_dig_port(intel_attached_dp(intel_connector));
 		break;
 	case DRM_MODE_CONNECTOR_HDMIA:
 		intel_hdmi_info(m, intel_connector);
+		dig_port = hdmi_to_dig_port(intel_attached_hdmi(intel_connector));
 		break;
 	default:
 		break;
 	}
 
+	if (dig_port != NULL && intel_encoder_is_tc(&dig_port->base))
+		intel_tc_info(&p, dig_port);
+
 	intel_hdcp_info(m, intel_connector);
 
 	seq_printf(m, "\tmax bpc: %u\n", connector->display_info.bpc);
diff --git a/drivers/gpu/drm/i915/display/intel_tc.c b/drivers/gpu/drm/i915/display/intel_tc.c
index c4a5601c5107..08e94004d3a7 100644
--- a/drivers/gpu/drm/i915/display/intel_tc.c
+++ b/drivers/gpu/drm/i915/display/intel_tc.c
@@ -1703,6 +1703,19 @@ void intel_tc_port_sanitize_mode(struct intel_digital_port *dig_port,
 	mutex_unlock(&tc->lock);
 }
 
+void intel_tc_info(struct drm_printer *p,  struct intel_digital_port *dig_port)
+{
+	struct intel_tc_port *tc = to_tc_port(dig_port);
+
+	intel_tc_port_lock(dig_port);
+	drm_printf(p, "\tTC Port %s: mode: %s, pin assignment: %c, max lanes: %d\n",
+		   tc->port_name,
+		   tc_port_mode_name(tc->mode),
+		   pin_assignment_name(tc->pin_assignment),
+		   tc->max_lane_count);
+	intel_tc_port_unlock(dig_port);
+}
+
 /*
  * The type-C ports are different because even when they are connected, they may
  * not be available/usable by the graphics driver: see the comment on
diff --git a/drivers/gpu/drm/i915/display/intel_tc.h b/drivers/gpu/drm/i915/display/intel_tc.h
index fff8b96e4972..6719aea5bd58 100644
--- a/drivers/gpu/drm/i915/display/intel_tc.h
+++ b/drivers/gpu/drm/i915/display/intel_tc.h
@@ -8,6 +8,7 @@
 
 #include <linux/types.h>
 
+struct drm_printer;
 struct intel_crtc_state;
 struct intel_digital_port;
 struct intel_encoder;
@@ -113,4 +114,6 @@ void intel_tc_port_cleanup(struct intel_digital_port *dig_port);
 
 bool intel_tc_cold_requires_aux_pw(struct intel_digital_port *dig_port);
 
+void intel_tc_info(struct drm_printer *p,  struct intel_digital_port *dig_port);
+
 #endif /* __INTEL_TC_H__ */
-- 
2.43.0


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

* ✗ CI.checkpatch: warning for drm/i915/display: Extend i915_display_info with Type-C port details (rev6)
  2025-10-27 20:02 [PATCH v4] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
                   ` (8 preceding siblings ...)
  2025-10-28  6:00 ` ✗ Xe.CI.Full: failure for drm/i915/display: Extend i915_display_info with Type-C port details (rev5) Patchwork
@ 2025-10-28 21:33 ` Patchwork
  2025-10-28 21:35 ` ✓ CI.KUnit: success " Patchwork
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-10-28 21:33 UTC (permalink / raw)
  To: Khaled Almahallawy; +Cc: intel-xe

== Series Details ==

Series: drm/i915/display: Extend i915_display_info with Type-C port details (rev6)
URL   : https://patchwork.freedesktop.org/series/155066/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
f867e605613af1770f90c4b0afd4a8f06424d1f0
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit ca0accd05cec522b39b87391a02a14b15a8eff72
Author: Khaled Almahallawy <khaled.almahallawy@intel.com>
Date:   Tue Oct 28 12:07:53 2025 -0700

    drm/i915/display: Extend i915_display_info with Type-C port details
    
    Expose key Type-C port data in i915_display_info to make it easier to
    understand the port configuration and active mode, especially whether
    the link is in DP-Alt or TBT-Alt, without having to scan kernel logs.
    
    Tested in DP-Alt, TBT-Alt, SST, and MST.
    
    Expected output:
    
    [CONNECTOR:290:DP-2]: status: connected
            TC Port: E/TC#2 mode: tbt-alt pin assignment: - max lanes: 4
            physical dimensions: 600x340mm
    ...
    [CONNECTOR:263:DP-5]: status: connected
            TC Port: G/TC#4 mode: dp-alt pin assignment: C max lanes: 4
            physical dimensions: 610x350mm
    
    v2: Use drm_printer (Ville)
        Lock/Unlock around the printf (Imre)
    v3: Forward Declaration drm_printer struct (Jani)
    v4: Handle MST connector with no active encoder (Imre)
        Add a delimiter between fields and ":" after the port name (Imre)
    v5: Init dig_port and use it in intel_encorder_is_tc and tc_info (Imre)
        Move tc->port_name to a newline (Imre)
    v6: Use intel_tc_port_lock/Unlock (Imre)
    
    Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Cc: Imre Deak <imre.deak@intel.com>
    Cc: Jani Nikula <jani.nikula@intel.com>
    Signed-off-by: Khaled Almahallawy <khaled.almahallawy@intel.com>
+ /mt/dim checkpatch 820bcb3f052e15c3f9b42aa28344d0a9991ac044 drm-intel
ca0accd05cec drm/i915/display: Extend i915_display_info with Type-C port details
-:75: CHECK:COMPARISON_TO_NULL: Comparison to NULL could be written "dig_port"
#75: FILE: drivers/gpu/drm/i915/display/intel_display_debugfs.c:284:
+	if (dig_port != NULL && intel_encoder_is_tc(&dig_port->base))

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



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

* ✓ CI.KUnit: success for drm/i915/display: Extend i915_display_info with Type-C port details (rev6)
  2025-10-27 20:02 [PATCH v4] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
                   ` (9 preceding siblings ...)
  2025-10-28 21:33 ` ✗ CI.checkpatch: warning for drm/i915/display: Extend i915_display_info with Type-C port details (rev6) Patchwork
@ 2025-10-28 21:35 ` Patchwork
  2025-10-28 22:12 ` ✓ Xe.CI.BAT: " Patchwork
  2025-10-29  9:46 ` ✗ Xe.CI.Full: failure " Patchwork
  12 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-10-28 21:35 UTC (permalink / raw)
  To: Khaled Almahallawy; +Cc: intel-xe

== Series Details ==

Series: drm/i915/display: Extend i915_display_info with Type-C port details (rev6)
URL   : https://patchwork.freedesktop.org/series/155066/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/i915/display: Extend i915_display_info with Type-C port details (rev6)
  2025-10-27 20:02 [PATCH v4] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
                   ` (10 preceding siblings ...)
  2025-10-28 21:35 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-28 22:12 ` Patchwork
  2025-10-29  9:46 ` ✗ Xe.CI.Full: failure " Patchwork
  12 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-10-28 22:12 UTC (permalink / raw)
  To: Khaled Almahallawy; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/display: Extend i915_display_info with Type-C port details (rev6)
URL   : https://patchwork.freedesktop.org/series/155066/
State : success

== Summary ==

CI Bug Log - changes from xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8_BAT -> xe-pw-155066v6_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-plain-flip@c-edp1:
    - bat-adlp-7:         [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543]) +1 other test dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html

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


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

  * Linux: xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8 -> xe-pw-155066v6

  IGT_8599: b22b9ca357de868f3848269e5eb7c4cc53b3f2d1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8: 91225c66730ea0440b33e9d238c6325d8bc629d8
  xe-pw-155066v6: 155066v6

== Logs ==

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

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

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

* Re: [PATCH v6] drm/i915/display: Extend i915_display_info with Type-C port details
  2025-10-28 19:07   ` [PATCH v6] " Khaled Almahallawy
@ 2025-10-29  8:32     ` Imre Deak
  0 siblings, 0 replies; 17+ messages in thread
From: Imre Deak @ 2025-10-29  8:32 UTC (permalink / raw)
  To: Khaled Almahallawy
  Cc: intel-gfx, intel-xe, Ville Syrjälä, Jani Nikula

On Tue, Oct 28, 2025 at 12:07:53PM -0700, Khaled Almahallawy wrote:
> Expose key Type-C port data in i915_display_info to make it easier to
> understand the port configuration and active mode, especially whether
> the link is in DP-Alt or TBT-Alt, without having to scan kernel logs.
> 
> Tested in DP-Alt, TBT-Alt, SST, and MST.
> 
> Expected output:
> 
> [CONNECTOR:290:DP-2]: status: connected
> 	TC Port: E/TC#2 mode: tbt-alt pin assignment: - max lanes: 4
> 	physical dimensions: 600x340mm
> ...
> [CONNECTOR:263:DP-5]: status: connected
> 	TC Port: G/TC#4 mode: dp-alt pin assignment: C max lanes: 4
> 	physical dimensions: 610x350mm
> 
> v2: Use drm_printer (Ville)
>     Lock/Unlock around the printf (Imre)
> v3: Forward Declaration drm_printer struct (Jani)
> v4: Handle MST connector with no active encoder (Imre)
>     Add a delimiter between fields and ":" after the port name (Imre)
> v5: Init dig_port and use it in intel_encorder_is_tc and tc_info (Imre)
>     Move tc->port_name to a newline (Imre)
> v6: Use intel_tc_port_lock/Unlock (Imre)
> 
> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Cc: Imre Deak <imre.deak@intel.com>
> Cc: Jani Nikula <jani.nikula@intel.com>
> Signed-off-by: Khaled Almahallawy <khaled.almahallawy@intel.com>

Reviewed-by: Imre Deak <imre.deak@intel.com>

> ---
>  .../gpu/drm/i915/display/intel_display_debugfs.c    |  8 ++++++++
>  drivers/gpu/drm/i915/display/intel_tc.c             | 13 +++++++++++++
>  drivers/gpu/drm/i915/display/intel_tc.h             |  3 +++
>  3 files changed, 24 insertions(+)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_display_debugfs.c b/drivers/gpu/drm/i915/display/intel_display_debugfs.c
> index 10dddec3796f..7014331108aa 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_debugfs.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_debugfs.c
> @@ -47,6 +47,7 @@
>  #include "intel_psr_regs.h"
>  #include "intel_vdsc.h"
>  #include "intel_wm.h"
> +#include "intel_tc.h"
>  
>  static struct intel_display *node_to_intel_display(struct drm_info_node *node)
>  {
> @@ -246,6 +247,8 @@ static void intel_connector_info(struct seq_file *m,
>  {
>  	struct intel_connector *intel_connector = to_intel_connector(connector);
>  	const struct drm_display_mode *mode;
> +	struct drm_printer p = drm_seq_file_printer(m);
> +	struct intel_digital_port *dig_port = NULL;
>  
>  	seq_printf(m, "[CONNECTOR:%d:%s]: status: %s\n",
>  		   connector->base.id, connector->name,
> @@ -268,14 +271,19 @@ static void intel_connector_info(struct seq_file *m,
>  			intel_dp_mst_info(m, intel_connector);
>  		else
>  			intel_dp_info(m, intel_connector);
> +		dig_port = dp_to_dig_port(intel_attached_dp(intel_connector));
>  		break;
>  	case DRM_MODE_CONNECTOR_HDMIA:
>  		intel_hdmi_info(m, intel_connector);
> +		dig_port = hdmi_to_dig_port(intel_attached_hdmi(intel_connector));
>  		break;
>  	default:
>  		break;
>  	}
>  
> +	if (dig_port != NULL && intel_encoder_is_tc(&dig_port->base))
> +		intel_tc_info(&p, dig_port);
> +
>  	intel_hdcp_info(m, intel_connector);
>  
>  	seq_printf(m, "\tmax bpc: %u\n", connector->display_info.bpc);
> diff --git a/drivers/gpu/drm/i915/display/intel_tc.c b/drivers/gpu/drm/i915/display/intel_tc.c
> index c4a5601c5107..08e94004d3a7 100644
> --- a/drivers/gpu/drm/i915/display/intel_tc.c
> +++ b/drivers/gpu/drm/i915/display/intel_tc.c
> @@ -1703,6 +1703,19 @@ void intel_tc_port_sanitize_mode(struct intel_digital_port *dig_port,
>  	mutex_unlock(&tc->lock);
>  }
>  
> +void intel_tc_info(struct drm_printer *p,  struct intel_digital_port *dig_port)
> +{
> +	struct intel_tc_port *tc = to_tc_port(dig_port);
> +
> +	intel_tc_port_lock(dig_port);
> +	drm_printf(p, "\tTC Port %s: mode: %s, pin assignment: %c, max lanes: %d\n",
> +		   tc->port_name,
> +		   tc_port_mode_name(tc->mode),
> +		   pin_assignment_name(tc->pin_assignment),
> +		   tc->max_lane_count);
> +	intel_tc_port_unlock(dig_port);
> +}
> +
>  /*
>   * The type-C ports are different because even when they are connected, they may
>   * not be available/usable by the graphics driver: see the comment on
> diff --git a/drivers/gpu/drm/i915/display/intel_tc.h b/drivers/gpu/drm/i915/display/intel_tc.h
> index fff8b96e4972..6719aea5bd58 100644
> --- a/drivers/gpu/drm/i915/display/intel_tc.h
> +++ b/drivers/gpu/drm/i915/display/intel_tc.h
> @@ -8,6 +8,7 @@
>  
>  #include <linux/types.h>
>  
> +struct drm_printer;
>  struct intel_crtc_state;
>  struct intel_digital_port;
>  struct intel_encoder;
> @@ -113,4 +114,6 @@ void intel_tc_port_cleanup(struct intel_digital_port *dig_port);
>  
>  bool intel_tc_cold_requires_aux_pw(struct intel_digital_port *dig_port);
>  
> +void intel_tc_info(struct drm_printer *p,  struct intel_digital_port *dig_port);
> +
>  #endif /* __INTEL_TC_H__ */
> -- 
> 2.43.0
> 

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

* ✗ Xe.CI.Full: failure for drm/i915/display: Extend i915_display_info with Type-C port details (rev6)
  2025-10-27 20:02 [PATCH v4] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
                   ` (11 preceding siblings ...)
  2025-10-28 22:12 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-29  9:46 ` Patchwork
  12 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-10-29  9:46 UTC (permalink / raw)
  To: Khaled Almahallawy; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/display: Extend i915_display_info with Type-C port details (rev6)
URL   : https://patchwork.freedesktop.org/series/155066/
State : failure

== Summary ==

CI Bug Log - changes from xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8_FULL -> xe-pw-155066v6_FULL
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@2x-flip-vs-wf_vblank@ad-dp2-hdmi-a3:
    - shard-bmg:          [PASS][1] -> [FAIL][2] +2 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-8/igt@kms_flip@2x-flip-vs-wf_vblank@ad-dp2-hdmi-a3.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank@ad-dp2-hdmi-a3.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][3]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-suspend.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_atomic_transition@plane-toggle-modeset-transition:
    - shard-adlp:         [PASS][4] -> [FAIL][5] ([Intel XE#3908]) +1 other test fail
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-6/igt@kms_atomic_transition@plane-toggle-modeset-transition.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-180:
    - shard-adlp:         NOTRUN -> [SKIP][6] ([Intel XE#1124]) +1 other test skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@linear-8bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][7] ([Intel XE#316])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@kms_big_fb@linear-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#1124])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][9] ([Intel XE#1124])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-463/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

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

  * igt@kms_ccs@bad-pixel-format-y-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2887]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@kms_ccs@bad-pixel-format-y-tiled-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][12] ([Intel XE#787]) +13 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][13] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [PASS][14] -> [INCOMPLETE][15] ([Intel XE#3862]) +1 other test incomplete
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html

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

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][17] ([Intel XE#787]) +5 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-9/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][18] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-9/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [PASS][19] -> [INCOMPLETE][20] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [PASS][21] -> [INCOMPLETE][22] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [PASS][23] -> [INCOMPLETE][24] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html

  * igt@kms_chamelium_frames@vga-frame-dump:
    - shard-adlp:         NOTRUN -> [SKIP][25] ([Intel XE#373]) +2 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-8/igt@kms_chamelium_frames@vga-frame-dump.html

  * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#2252]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#373]) +3 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html

  * igt@kms_cursor_crc@cursor-alpha-opaque:
    - shard-bmg:          [PASS][28] -> [SKIP][29] ([Intel XE#2320])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-8/igt@kms_cursor_crc@cursor-alpha-opaque.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-6/igt@kms_cursor_crc@cursor-alpha-opaque.html

  * igt@kms_cursor_crc@cursor-onscreen-256x85:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#2320])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-adlp:         NOTRUN -> [SKIP][31] ([Intel XE#308])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
    - shard-adlp:         NOTRUN -> [SKIP][32] ([Intel XE#309])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html

  * igt@kms_feature_discovery@display-4x:
    - shard-adlp:         NOTRUN -> [SKIP][33] ([Intel XE#1138])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-8/igt@kms_feature_discovery@display-4x.html

  * igt@kms_flip@2x-flip-vs-wf_vblank:
    - shard-bmg:          [PASS][34] -> [FAIL][35] ([Intel XE#3149] / [Intel XE#3650]) +1 other test fail
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-8/igt@kms_flip@2x-flip-vs-wf_vblank.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-wf_vblank@bd-dp2-hdmi-a3:
    - shard-bmg:          [PASS][36] -> [FAIL][37] ([Intel XE#3650]) +1 other test fail
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-8/igt@kms_flip@2x-flip-vs-wf_vblank@bd-dp2-hdmi-a3.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank@bd-dp2-hdmi-a3.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-adlp:         NOTRUN -> [SKIP][38] ([Intel XE#310]) +2 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
    - shard-lnl:          [PASS][39] -> [FAIL][40] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html

  * igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
    - shard-adlp:         [PASS][41] -> [DMESG-WARN][42] ([Intel XE#2953] / [Intel XE#4173]) +15 other tests dmesg-warn
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-3/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html

  * igt@kms_flip@plain-flip-interruptible@b-hdmi-a1:
    - shard-adlp:         [PASS][43] -> [DMESG-WARN][44] ([Intel XE#4543]) +2 other tests dmesg-warn
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-4/igt@kms_flip@plain-flip-interruptible@b-hdmi-a1.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-2/igt@kms_flip@plain-flip-interruptible@b-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#2293] / [Intel XE#2380])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][46] ([Intel XE#455]) +1 other test skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#2293])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][48] ([Intel XE#656]) +10 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#5390])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#651])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][52] ([Intel XE#653]) +4 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc:
    - shard-adlp:         NOTRUN -> [SKIP][53] ([Intel XE#6312]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#2313]) +3 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#653]) +3 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_panel_fitting@legacy:
    - shard-adlp:         NOTRUN -> [SKIP][56] ([Intel XE#455]) +4 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-8/igt@kms_panel_fitting@legacy.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#5624])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][58] ([Intel XE#5624])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-463/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_pm_backlight@fade:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#870])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@kms_pm_backlight@fade.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][60] ([Intel XE#870])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-463/igt@kms_pm_backlight@fade.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
    - shard-adlp:         NOTRUN -> [SKIP][61] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-9/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr@fbc-psr2-sprite-plane-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][62] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +1 other test skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-463/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html

  * igt@kms_psr@psr-no-drrs:
    - shard-adlp:         NOTRUN -> [SKIP][63] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-9/igt@kms_psr@psr-no-drrs.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-adlp:         NOTRUN -> [SKIP][64] ([Intel XE#1406] / [Intel XE#2939] / [Intel XE#5585])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@xe_ccs@large-ctrl-surf-copy:
    - shard-adlp:         NOTRUN -> [SKIP][65] ([Intel XE#3576] / [Intel XE#5610])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-9/igt@xe_ccs@large-ctrl-surf-copy.html

  * igt@xe_compute_preempt@compute-preempt-many-vram:
    - shard-adlp:         NOTRUN -> [SKIP][66] ([Intel XE#5191])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@xe_compute_preempt@compute-preempt-many-vram.html

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

  * igt@xe_eudebug@basic-connect:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#4837])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@xe_eudebug@basic-connect.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#4837])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-463/igt@xe_eudebug@basic-connect.html

  * igt@xe_eudebug_online@single-step-one:
    - shard-adlp:         NOTRUN -> [SKIP][70] ([Intel XE#4837] / [Intel XE#5565]) +4 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@xe_eudebug_online@single-step-one.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [PASS][71] -> [INCOMPLETE][72] ([Intel XE#6321])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_evict@evict-mixed-threads-small:
    - shard-adlp:         NOTRUN -> [SKIP][73] ([Intel XE#261] / [Intel XE#688])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@xe_evict@evict-mixed-threads-small.html

  * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
    - shard-adlp:         NOTRUN -> [SKIP][74] ([Intel XE#688])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
    - shard-adlp:         NOTRUN -> [SKIP][75] ([Intel XE#1392] / [Intel XE#5575]) +2 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_fault_mode@many-execqueues-rebind-prefetch:
    - shard-adlp:         NOTRUN -> [SKIP][76] ([Intel XE#288] / [Intel XE#5561]) +8 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-8/igt@xe_exec_fault_mode@many-execqueues-rebind-prefetch.html

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

  * igt@xe_exec_system_allocator@many-64k-mmap-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#5007])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@xe_exec_system_allocator@many-64k-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
    - shard-lnl:          [PASS][79] -> [FAIL][80] ([Intel XE#5625])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-free-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#4943])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-free-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-large-new-race:
    - shard-adlp:         NOTRUN -> [SKIP][82] ([Intel XE#4915]) +83 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@xe_exec_system_allocator@threads-many-large-new-race.html

  * igt@xe_exec_system_allocator@threads-many-stride-mmap-shared-remap-eocheck:
    - shard-bmg:          [PASS][83] -> [DMESG-WARN][84] ([Intel XE#3428]) +1 other test dmesg-warn
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-stride-mmap-shared-remap-eocheck.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-6/igt@xe_exec_system_allocator@threads-many-stride-mmap-shared-remap-eocheck.html

  * igt@xe_exec_system_allocator@twice-mmap-free:
    - shard-dg2-set2:     NOTRUN -> [SKIP][85] ([Intel XE#4915]) +18 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-463/igt@xe_exec_system_allocator@twice-mmap-free.html

  * igt@xe_oa@oa-exponents:
    - shard-adlp:         NOTRUN -> [SKIP][86] ([Intel XE#3573]) +1 other test skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-8/igt@xe_oa@oa-exponents.html

  * igt@xe_oa@privileged-forked-access-vaddr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][87] ([Intel XE#3573])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-463/igt@xe_oa@privileged-forked-access-vaddr.html

  * igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
    - shard-adlp:         NOTRUN -> [SKIP][88] ([Intel XE#4733] / [Intel XE#5594]) +2 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html

  * igt@xe_sriov_auto_provisioning@fair-allocation:
    - shard-dg2-set2:     NOTRUN -> [SKIP][89] ([Intel XE#4130])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-463/igt@xe_sriov_auto_provisioning@fair-allocation.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][90] ([Intel XE#4912]) -> [PASS][91] +1 other test pass
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-dg2-432/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-433/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [DMESG-FAIL][92] ([Intel XE#4543]) -> [PASS][93] +2 other tests pass
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-bmg:          [SKIP][94] ([Intel XE#2291]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-bmg:          [SKIP][96] ([Intel XE#2316]) -> [PASS][97]
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][98] ([Intel XE#4543]) -> [PASS][99] +2 other tests pass
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-9/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-4/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1.html

  * igt@kms_flip@flip-vs-rmfb:
    - shard-adlp:         [DMESG-WARN][100] ([Intel XE#4543] / [Intel XE#5208]) -> [PASS][101]
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-6/igt@kms_flip@flip-vs-rmfb.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-9/igt@kms_flip@flip-vs-rmfb.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][102] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][103] +8 other tests pass
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-2/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html

  * igt@kms_lease@lease-unleased-crtc@pipe-a-hdmi-a-1:
    - shard-adlp:         [ABORT][104] ([Intel XE#2953]) -> [PASS][105] +1 other test pass
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-2/igt@kms_lease@lease-unleased-crtc@pipe-a-hdmi-a-1.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@kms_lease@lease-unleased-crtc@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
    - shard-bmg:          [DMESG-WARN][106] ([Intel XE#6381]) -> [PASS][107] +16 other tests pass
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html

  * igt@kms_vblank@ts-continuation-dpms-suspend:
    - shard-adlp:         [INCOMPLETE][108] ([Intel XE#4488] / [Intel XE#5545]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-1/igt@kms_vblank@ts-continuation-dpms-suspend.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-8/igt@kms_vblank@ts-continuation-dpms-suspend.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
    - shard-adlp:         [DMESG-FAIL][110] ([Intel XE#5545]) -> [PASS][111]
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-8/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1:
    - shard-adlp:         [INCOMPLETE][112] ([Intel XE#4488]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-8/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][114] ([Intel XE#6321]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_reset@cm-close-fd:
    - shard-adlp:         [DMESG-WARN][116] ([Intel XE#3868]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-adlp:         [DMESG-WARN][118] ([Intel XE#3876]) -> [PASS][119]
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-1/igt@xe_exec_reset@parallel-gt-reset.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-8/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_exec_system_allocator@once-large-malloc-busy-nomemset:
    - shard-bmg:          [DMESG-WARN][120] ([Intel XE#3428]) -> [PASS][121] +2 other tests pass
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-6/igt@xe_exec_system_allocator@once-large-malloc-busy-nomemset.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@xe_exec_system_allocator@once-large-malloc-busy-nomemset.html

  * igt@xe_pm@s2idle-d3hot-basic-exec:
    - shard-adlp:         [INCOMPLETE][122] ([Intel XE#4504]) -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-6/igt@xe_pm@s2idle-d3hot-basic-exec.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-9/igt@xe_pm@s2idle-d3hot-basic-exec.html

  * igt@xe_pm@s2idle-vm-bind-prefetch:
    - shard-adlp:         [DMESG-WARN][124] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-3/igt@xe_pm@s2idle-vm-bind-prefetch.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-6/igt@xe_pm@s2idle-vm-bind-prefetch.html

  * igt@xe_pm@s4-d3hot-basic-exec:
    - shard-adlp:         [TIMEOUT][126] ([Intel XE#3876]) -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-1/igt@xe_pm@s4-d3hot-basic-exec.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-8/igt@xe_pm@s4-d3hot-basic-exec.html

  
#### Warnings ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][128] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][129] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
    - shard-bmg:          [SKIP][130] ([Intel XE#2312]) -> [SKIP][131] ([Intel XE#2311]) +1 other test skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][132] ([Intel XE#2311]) -> [SKIP][133] ([Intel XE#2312])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][134] ([Intel XE#2312]) -> [SKIP][135] ([Intel XE#5390]) +3 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
    - shard-bmg:          [SKIP][136] ([Intel XE#5390]) -> [SKIP][137] ([Intel XE#2312]) +1 other test skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move:
    - shard-bmg:          [SKIP][138] ([Intel XE#2312]) -> [SKIP][139] ([Intel XE#2313]) +2 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
    - shard-dg2-set2:     [INCOMPLETE][140] ([Intel XE#2594]) -> [SKIP][141] ([Intel XE#653])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][142] ([Intel XE#2313]) -> [SKIP][143] ([Intel XE#2312])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][144] ([Intel XE#2426]) -> [FAIL][145] ([Intel XE#1729])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-adlp:         [ABORT][146] ([Intel XE#5466] / [Intel XE#5530]) -> [ABORT][147] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_module_load@load:
    - shard-bmg:          ([PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [SKIP][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173]) ([Intel XE#2457]) -> ([PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [DMESG-WARN][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [SKIP][197], [PASS][198], [PASS][199]) ([Intel XE#2457] / [Intel XE#3428])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-4/igt@xe_module_load@load.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-4/igt@xe_module_load@load.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-7/igt@xe_module_load@load.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-5/igt@xe_module_load@load.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-5/igt@xe_module_load@load.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-6/igt@xe_module_load@load.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-6/igt@xe_module_load@load.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-6/igt@xe_module_load@load.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-8/igt@xe_module_load@load.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-5/igt@xe_module_load@load.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-1/igt@xe_module_load@load.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-1/igt@xe_module_load@load.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-4/igt@xe_module_load@load.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-8/igt@xe_module_load@load.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-8/igt@xe_module_load@load.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-4/igt@xe_module_load@load.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-4/igt@xe_module_load@load.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-1/igt@xe_module_load@load.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-3/igt@xe_module_load@load.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-3/igt@xe_module_load@load.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-2/igt@xe_module_load@load.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-2/igt@xe_module_load@load.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-7/igt@xe_module_load@load.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-7/igt@xe_module_load@load.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-7/igt@xe_module_load@load.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-bmg-2/igt@xe_module_load@load.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-7/igt@xe_module_load@load.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-8/igt@xe_module_load@load.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@xe_module_load@load.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@xe_module_load@load.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-7/igt@xe_module_load@load.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-7/igt@xe_module_load@load.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-2/igt@xe_module_load@load.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-2/igt@xe_module_load@load.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-6/igt@xe_module_load@load.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-5/igt@xe_module_load@load.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-5/igt@xe_module_load@load.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-5/igt@xe_module_load@load.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-8/igt@xe_module_load@load.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-1/igt@xe_module_load@load.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-1/igt@xe_module_load@load.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-4/igt@xe_module_load@load.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-3/igt@xe_module_load@load.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-6/igt@xe_module_load@load.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-3/igt@xe_module_load@load.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-8/igt@xe_module_load@load.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-1/igt@xe_module_load@load.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-2/igt@xe_module_load@load.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-2/igt@xe_module_load@load.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-8/igt@xe_module_load@load.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-8/igt@xe_module_load@load.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-bmg-3/igt@xe_module_load@load.html

  * igt@xe_sriov_scheduling@equal-throughput:
    - shard-adlp:         [DMESG-FAIL][200] ([Intel XE#3868] / [Intel XE#5213] / [Intel XE#5545]) -> [DMESG-FAIL][201] ([Intel XE#3868] / [Intel XE#5213]) +1 other test dmesg-fail
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8/shard-adlp-6/igt@xe_sriov_scheduling@equal-throughput.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155066v6/shard-adlp-9/igt@xe_sriov_scheduling@equal-throughput.html

  
  [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#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
  [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#3576]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3576
  [Intel XE#3650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3650
  [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#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#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4488
  [Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
  [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#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4912
  [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#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
  [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
  [Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
  [Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
  [Intel XE#5585]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5585
  [Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
  [Intel XE#5610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5610
  [Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6381]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6381
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929


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

  * Linux: xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8 -> xe-pw-155066v6

  IGT_8599: b22b9ca357de868f3848269e5eb7c4cc53b3f2d1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-3997-91225c66730ea0440b33e9d238c6325d8bc629d8: 91225c66730ea0440b33e9d238c6325d8bc629d8
  xe-pw-155066v6: 155066v6

== Logs ==

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

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

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

end of thread, other threads:[~2025-10-29  9:46 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-27 20:02 [PATCH v4] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
2025-10-27 20:09 ` ✗ CI.checkpatch: warning for drm/i915/display: Extend i915_display_info with Type-C port details (rev4) Patchwork
2025-10-27 20:10 ` ✓ CI.KUnit: success " Patchwork
2025-10-27 20:56 ` [PATCH v5] drm/i915/display: Extend i915_display_info with Type-C port details Khaled Almahallawy
2025-10-28 10:03   ` Imre Deak
2025-10-28 19:07   ` [PATCH v6] " Khaled Almahallawy
2025-10-29  8:32     ` Imre Deak
2025-10-27 21:08 ` ✓ Xe.CI.BAT: success for drm/i915/display: Extend i915_display_info with Type-C port details (rev4) Patchwork
2025-10-27 21:57 ` ✗ CI.checkpatch: warning for drm/i915/display: Extend i915_display_info with Type-C port details (rev5) Patchwork
2025-10-27 21:58 ` ✓ CI.KUnit: success " Patchwork
2025-10-27 22:44 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-28  3:06 ` ✗ Xe.CI.Full: failure for drm/i915/display: Extend i915_display_info with Type-C port details (rev4) Patchwork
2025-10-28  6:00 ` ✗ Xe.CI.Full: failure for drm/i915/display: Extend i915_display_info with Type-C port details (rev5) Patchwork
2025-10-28 21:33 ` ✗ CI.checkpatch: warning for drm/i915/display: Extend i915_display_info with Type-C port details (rev6) Patchwork
2025-10-28 21:35 ` ✓ CI.KUnit: success " Patchwork
2025-10-28 22:12 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-29  9:46 ` ✗ Xe.CI.Full: failure " Patchwork

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