* [PATCH 0/2] Changes in hdcp2_stream_encryption
@ 2025-06-19 10:28 Suraj Kandpal
2025-06-19 10:28 ` [PATCH 1/2] drm/i915/hdcp: Do not use inline intel_de_read Suraj Kandpal
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Suraj Kandpal @ 2025-06-19 10:28 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: ankit.k.nautiyal, jani.nikula, Suraj Kandpal
Contains changes in hdcp2_stream_encryption where we remove the
intel_de_read from the WARN_ON function also we move to using
HDCP2_STREAM_STATUS for our WARN_ON for platforms PTL and above.
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Suraj Kandpal (2):
drm/i915/hdcp: Do not use inline intel_de_read
drm/i915/hdcp: Use HDCP2_STREAM_STATUS instead of HDCP2_AUTH_STREAM
drivers/gpu/drm/i915/display/intel_dp_hdcp.c | 22 ++++++++++++++++----
1 file changed, 18 insertions(+), 4 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 1/2] drm/i915/hdcp: Do not use inline intel_de_read
2025-06-19 10:28 [PATCH 0/2] Changes in hdcp2_stream_encryption Suraj Kandpal
@ 2025-06-19 10:28 ` Suraj Kandpal
2025-06-19 10:59 ` Jani Nikula
2025-06-19 10:28 ` [PATCH 2/2] drm/i915/hdcp: Use HDCP2_STREAM_STATUS instead of HDCP2_AUTH_STREAM Suraj Kandpal
` (3 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Suraj Kandpal @ 2025-06-19 10:28 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: ankit.k.nautiyal, jani.nikula, Suraj Kandpal
Do not use intel_de_read() inline in the WARN_ON functions.
While we are at it make the comparision for stream_type u8 to u8.
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
drivers/gpu/drm/i915/display/intel_dp_hdcp.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
index 7bd775fb65a0..3620f7853c8f 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
@@ -805,10 +805,13 @@ intel_dp_mst_hdcp2_stream_encryption(struct intel_connector *connector,
enum pipe pipe = (enum pipe)cpu_transcoder;
enum port port = dig_port->base.port;
int ret;
+ u32 val;
+ u8 stream_type;
+ val = intel_de_read(display, HDCP2_AUTH_STREAM(display, cpu_transcoder, port));
+ stream_type = REG_FIELD_GET8(AUTH_STREAM_TYPE, val);
drm_WARN_ON(display->drm, enable &&
- !!(intel_de_read(display, HDCP2_AUTH_STREAM(display, cpu_transcoder, port))
- & AUTH_STREAM_TYPE) != data->streams[0].stream_type);
+ stream_type == data->streams[0].stream_type);
ret = intel_dp_mst_toggle_hdcp_stream_select(connector, enable);
if (ret)
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/2] drm/i915/hdcp: Use HDCP2_STREAM_STATUS instead of HDCP2_AUTH_STREAM
2025-06-19 10:28 [PATCH 0/2] Changes in hdcp2_stream_encryption Suraj Kandpal
2025-06-19 10:28 ` [PATCH 1/2] drm/i915/hdcp: Do not use inline intel_de_read Suraj Kandpal
@ 2025-06-19 10:28 ` Suraj Kandpal
2025-06-19 10:36 ` ✓ CI.KUnit: success for Changes in hdcp2_stream_encryption Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Suraj Kandpal @ 2025-06-19 10:28 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: ankit.k.nautiyal, jani.nikula, Suraj Kandpal
From PTL we need to move to using HDCP2_STREAM_STATUS as a WARN_ON
to see if written content type info is not the same since
HDCP2_AUTH_STREAM is inaccessible to us now.
--v2
-Fix commit message [Jani]
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
drivers/gpu/drm/i915/display/intel_dp_hdcp.c | 19 +++++++++++++++----
1 file changed, 15 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
index 3620f7853c8f..a6fb201fea84 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
@@ -808,10 +808,13 @@ intel_dp_mst_hdcp2_stream_encryption(struct intel_connector *connector,
u32 val;
u8 stream_type;
- val = intel_de_read(display, HDCP2_AUTH_STREAM(display, cpu_transcoder, port));
- stream_type = REG_FIELD_GET8(AUTH_STREAM_TYPE, val);
- drm_WARN_ON(display->drm, enable &&
- stream_type == data->streams[0].stream_type);
+ if (DISPLAY_VER(display) < 30) {
+ val = intel_de_read(display,
+ HDCP2_AUTH_STREAM(display, cpu_transcoder, port));
+ stream_type = REG_FIELD_GET8(AUTH_STREAM_TYPE, val);
+ drm_WARN_ON(display->drm, enable &&
+ stream_type == data->streams[0].stream_type);
+ }
ret = intel_dp_mst_toggle_hdcp_stream_select(connector, enable);
if (ret)
@@ -827,6 +830,14 @@ intel_dp_mst_hdcp2_stream_encryption(struct intel_connector *connector,
return -ETIMEDOUT;
}
+ if (DISPLAY_VER(display) >= 30) {
+ val = intel_de_read(display,
+ HDCP2_STREAM_STATUS(display, cpu_transcoder, port));
+ stream_type = REG_FIELD_GET8(STREAM_TYPE_STATUS, val);
+ drm_WARN_ON(display->drm, enable &&
+ stream_type != data->streams[0].stream_type);
+ }
+
return 0;
}
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ CI.KUnit: success for Changes in hdcp2_stream_encryption
2025-06-19 10:28 [PATCH 0/2] Changes in hdcp2_stream_encryption Suraj Kandpal
2025-06-19 10:28 ` [PATCH 1/2] drm/i915/hdcp: Do not use inline intel_de_read Suraj Kandpal
2025-06-19 10:28 ` [PATCH 2/2] drm/i915/hdcp: Use HDCP2_STREAM_STATUS instead of HDCP2_AUTH_STREAM Suraj Kandpal
@ 2025-06-19 10:36 ` Patchwork
2025-06-19 11:44 ` ✓ Xe.CI.BAT: " Patchwork
2025-06-19 23:23 ` ✗ Xe.CI.Full: failure " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-06-19 10:36 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-xe
== Series Details ==
Series: Changes in hdcp2_stream_encryption
URL : https://patchwork.freedesktop.org/series/150508/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[10:35:24] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:35:28] 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
[10:35:55] Starting KUnit Kernel (1/1)...
[10:35:55] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:35:55] ================== guc_buf (11 subtests) ===================
[10:35:55] [PASSED] test_smallest
[10:35:56] [PASSED] test_largest
[10:35:56] [PASSED] test_granular
[10:35:56] [PASSED] test_unique
[10:35:56] [PASSED] test_overlap
[10:35:56] [PASSED] test_reusable
[10:35:56] [PASSED] test_too_big
[10:35:56] [PASSED] test_flush
[10:35:56] [PASSED] test_lookup
[10:35:56] [PASSED] test_data
[10:35:56] [PASSED] test_class
[10:35:56] ===================== [PASSED] guc_buf =====================
[10:35:56] =================== guc_dbm (7 subtests) ===================
[10:35:56] [PASSED] test_empty
[10:35:56] [PASSED] test_default
[10:35:56] ======================== test_size ========================
[10:35:56] [PASSED] 4
[10:35:56] [PASSED] 8
[10:35:56] [PASSED] 32
[10:35:56] [PASSED] 256
[10:35:56] ==================== [PASSED] test_size ====================
[10:35:56] ======================= test_reuse ========================
[10:35:56] [PASSED] 4
[10:35:56] [PASSED] 8
[10:35:56] [PASSED] 32
[10:35:56] [PASSED] 256
[10:35:56] =================== [PASSED] test_reuse ====================
[10:35:56] =================== test_range_overlap ====================
[10:35:56] [PASSED] 4
[10:35:56] [PASSED] 8
[10:35:56] [PASSED] 32
[10:35:56] [PASSED] 256
[10:35:56] =============== [PASSED] test_range_overlap ================
[10:35:56] =================== test_range_compact ====================
[10:35:56] [PASSED] 4
[10:35:56] [PASSED] 8
[10:35:56] [PASSED] 32
[10:35:56] [PASSED] 256
[10:35:56] =============== [PASSED] test_range_compact ================
[10:35:56] ==================== test_range_spare =====================
[10:35:56] [PASSED] 4
[10:35:56] [PASSED] 8
[10:35:56] [PASSED] 32
[10:35:56] [PASSED] 256
[10:35:56] ================ [PASSED] test_range_spare =================
[10:35:56] ===================== [PASSED] guc_dbm =====================
[10:35:56] =================== guc_idm (6 subtests) ===================
[10:35:56] [PASSED] bad_init
[10:35:56] [PASSED] no_init
[10:35:56] [PASSED] init_fini
[10:35:56] [PASSED] check_used
[10:35:56] [PASSED] check_quota
[10:35:56] [PASSED] check_all
[10:35:56] ===================== [PASSED] guc_idm =====================
[10:35:56] ================== no_relay (3 subtests) ===================
[10:35:56] [PASSED] xe_drops_guc2pf_if_not_ready
[10:35:56] [PASSED] xe_drops_guc2vf_if_not_ready
[10:35:56] [PASSED] xe_rejects_send_if_not_ready
[10:35:56] ==================== [PASSED] no_relay =====================
[10:35:56] ================== pf_relay (14 subtests) ==================
[10:35:56] [PASSED] pf_rejects_guc2pf_too_short
[10:35:56] [PASSED] pf_rejects_guc2pf_too_long
[10:35:56] [PASSED] pf_rejects_guc2pf_no_payload
[10:35:56] [PASSED] pf_fails_no_payload
[10:35:56] [PASSED] pf_fails_bad_origin
[10:35:56] [PASSED] pf_fails_bad_type
[10:35:56] [PASSED] pf_txn_reports_error
[10:35:56] [PASSED] pf_txn_sends_pf2guc
[10:35:56] [PASSED] pf_sends_pf2guc
[10:35:56] [SKIPPED] pf_loopback_nop
[10:35:56] [SKIPPED] pf_loopback_echo
[10:35:56] [SKIPPED] pf_loopback_fail
[10:35:56] [SKIPPED] pf_loopback_busy
[10:35:56] [SKIPPED] pf_loopback_retry
[10:35:56] ==================== [PASSED] pf_relay =====================
[10:35:56] ================== vf_relay (3 subtests) ===================
[10:35:56] [PASSED] vf_rejects_guc2vf_too_short
[10:35:56] [PASSED] vf_rejects_guc2vf_too_long
[10:35:56] [PASSED] vf_rejects_guc2vf_no_payload
[10:35:56] ==================== [PASSED] vf_relay =====================
[10:35:56] ================= pf_service (11 subtests) =================
[10:35:56] [PASSED] pf_negotiate_any
[10:35:56] [PASSED] pf_negotiate_base_match
[10:35:56] [PASSED] pf_negotiate_base_newer
[10:35:56] [PASSED] pf_negotiate_base_next
[10:35:56] [SKIPPED] pf_negotiate_base_older
[10:35:56] [PASSED] pf_negotiate_base_prev
[10:35:56] [PASSED] pf_negotiate_latest_match
[10:35:56] [PASSED] pf_negotiate_latest_newer
[10:35:56] [PASSED] pf_negotiate_latest_next
[10:35:56] [SKIPPED] pf_negotiate_latest_older
[10:35:56] [SKIPPED] pf_negotiate_latest_prev
[10:35:56] =================== [PASSED] pf_service ====================
[10:35:56] ===================== lmtt (1 subtest) =====================
[10:35:56] ======================== test_ops =========================
[10:35:56] [PASSED] 2-level
[10:35:56] [PASSED] multi-level
[10:35:56] ==================== [PASSED] test_ops =====================
[10:35:56] ====================== [PASSED] lmtt =======================
[10:35:56] =================== xe_mocs (2 subtests) ===================
[10:35:56] ================ xe_live_mocs_kernel_kunit ================
[10:35:56] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[10:35:56] ================ xe_live_mocs_reset_kunit =================
[10:35:56] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[10:35:56] ==================== [SKIPPED] xe_mocs =====================
[10:35:56] ================= xe_migrate (2 subtests) ==================
[10:35:56] ================= xe_migrate_sanity_kunit =================
[10:35:56] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[10:35:56] ================== xe_validate_ccs_kunit ==================
[10:35:56] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[10:35:56] =================== [SKIPPED] xe_migrate ===================
[10:35:56] ================== xe_dma_buf (1 subtest) ==================
[10:35:56] ==================== xe_dma_buf_kunit =====================
[10:35:56] ================ [SKIPPED] xe_dma_buf_kunit ================
[10:35:56] =================== [SKIPPED] xe_dma_buf ===================
[10:35:56] ================= xe_bo_shrink (1 subtest) =================
[10:35:56] =================== xe_bo_shrink_kunit ====================
[10:35:56] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[10:35:56] ================== [SKIPPED] xe_bo_shrink ==================
[10:35:56] ==================== xe_bo (2 subtests) ====================
[10:35:56] ================== xe_ccs_migrate_kunit ===================
[10:35:56] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[10:35:56] ==================== xe_bo_evict_kunit ====================
[10:35:56] =============== [SKIPPED] xe_bo_evict_kunit ================
[10:35:56] ===================== [SKIPPED] xe_bo ======================
[10:35:56] ==================== args (11 subtests) ====================
[10:35:56] [PASSED] count_args_test
[10:35:56] [PASSED] call_args_example
[10:35:56] [PASSED] call_args_test
[10:35:56] [PASSED] drop_first_arg_example
[10:35:56] [PASSED] drop_first_arg_test
[10:35:56] [PASSED] first_arg_example
[10:35:56] [PASSED] first_arg_test
[10:35:56] [PASSED] last_arg_example
[10:35:56] [PASSED] last_arg_test
[10:35:56] [PASSED] pick_arg_example
[10:35:56] [PASSED] sep_comma_example
[10:35:56] ====================== [PASSED] args =======================
[10:35:56] =================== xe_pci (2 subtests) ====================
[10:35:56] ==================== check_graphics_ip ====================
[10:35:56] [PASSED] 12.70 Xe_LPG
[10:35:56] [PASSED] 12.71 Xe_LPG
[10:35:56] [PASSED] 12.74 Xe_LPG+
[10:35:56] [PASSED] 20.01 Xe2_HPG
[10:35:56] [PASSED] 20.02 Xe2_HPG
[10:35:56] [PASSED] 20.04 Xe2_LPG
[10:35:56] [PASSED] 30.00 Xe3_LPG
[10:35:56] [PASSED] 30.01 Xe3_LPG
[10:35:56] [PASSED] 30.03 Xe3_LPG
[10:35:56] ================ [PASSED] check_graphics_ip ================
[10:35:56] ===================== check_media_ip ======================
[10:35:56] [PASSED] 13.00 Xe_LPM+
[10:35:56] [PASSED] 13.01 Xe2_HPM
[10:35:56] [PASSED] 20.00 Xe2_LPM
[10:35:56] [PASSED] 30.00 Xe3_LPM
[10:35:56] [PASSED] 30.02 Xe3_LPM
stty: 'standard input': Inappropriate ioctl for device
[10:35:56] ================= [PASSED] check_media_ip ==================
[10:35:56] ===================== [PASSED] xe_pci ======================
[10:35:56] =================== xe_rtp (2 subtests) ====================
[10:35:56] =============== xe_rtp_process_to_sr_tests ================
[10:35:56] [PASSED] coalesce-same-reg
[10:35:56] [PASSED] no-match-no-add
[10:35:56] [PASSED] match-or
[10:35:56] [PASSED] match-or-xfail
[10:35:56] [PASSED] no-match-no-add-multiple-rules
[10:35:56] [PASSED] two-regs-two-entries
[10:35:56] [PASSED] clr-one-set-other
[10:35:56] [PASSED] set-field
[10:35:56] [PASSED] conflict-duplicate
[10:35:56] [PASSED] conflict-not-disjoint
[10:35:56] [PASSED] conflict-reg-type
[10:35:56] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[10:35:56] ================== xe_rtp_process_tests ===================
[10:35:56] [PASSED] active1
[10:35:56] [PASSED] active2
[10:35:56] [PASSED] active-inactive
[10:35:56] [PASSED] inactive-active
[10:35:56] [PASSED] inactive-1st_or_active-inactive
[10:35:56] [PASSED] inactive-2nd_or_active-inactive
[10:35:56] [PASSED] inactive-last_or_active-inactive
[10:35:56] [PASSED] inactive-no_or_active-inactive
[10:35:56] ============== [PASSED] xe_rtp_process_tests ===============
[10:35:56] ===================== [PASSED] xe_rtp ======================
[10:35:56] ==================== xe_wa (1 subtest) =====================
[10:35:56] ======================== xe_wa_gt =========================
[10:35:56] [PASSED] TIGERLAKE (B0)
[10:35:56] [PASSED] DG1 (A0)
[10:35:56] [PASSED] DG1 (B0)
[10:35:56] [PASSED] ALDERLAKE_S (A0)
[10:35:56] [PASSED] ALDERLAKE_S (B0)
[10:35:56] [PASSED] ALDERLAKE_S (C0)
[10:35:56] [PASSED] ALDERLAKE_S (D0)
[10:35:56] [PASSED] ALDERLAKE_P (A0)
[10:35:56] [PASSED] ALDERLAKE_P (B0)
[10:35:56] [PASSED] ALDERLAKE_P (C0)
[10:35:56] [PASSED] ALDERLAKE_S_RPLS (D0)
[10:35:56] [PASSED] ALDERLAKE_P_RPLU (E0)
[10:35:56] [PASSED] DG2_G10 (C0)
[10:35:56] [PASSED] DG2_G11 (B1)
[10:35:56] [PASSED] DG2_G12 (A1)
[10:35:56] [PASSED] METEORLAKE (g:A0, m:A0)
[10:35:56] [PASSED] METEORLAKE (g:A0, m:A0)
[10:35:56] [PASSED] METEORLAKE (g:A0, m:A0)
[10:35:56] [PASSED] LUNARLAKE (g:A0, m:A0)
[10:35:56] [PASSED] LUNARLAKE (g:B0, m:A0)
[10:35:56] [PASSED] BATTLEMAGE (g:A0, m:A1)
[10:35:56] ==================== [PASSED] xe_wa_gt =====================
[10:35:56] ====================== [PASSED] xe_wa ======================
[10:35:56] ============================================================
[10:35:56] Testing complete. Ran 145 tests: passed: 129, skipped: 16
[10:35:56] Elapsed time: 31.461s total, 4.170s configuring, 26.976s building, 0.296s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[10:35:56] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:35:57] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[10:36:19] Starting KUnit Kernel (1/1)...
[10:36:19] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:36:19] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[10:36:19] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[10:36:19] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[10:36:19] =========== drm_validate_clone_mode (2 subtests) ===========
[10:36:19] ============== drm_test_check_in_clone_mode ===============
[10:36:19] [PASSED] in_clone_mode
[10:36:19] [PASSED] not_in_clone_mode
[10:36:19] ========== [PASSED] drm_test_check_in_clone_mode ===========
[10:36:19] =============== drm_test_check_valid_clones ===============
[10:36:19] [PASSED] not_in_clone_mode
[10:36:19] [PASSED] valid_clone
[10:36:19] [PASSED] invalid_clone
[10:36:19] =========== [PASSED] drm_test_check_valid_clones ===========
[10:36:19] ============= [PASSED] drm_validate_clone_mode =============
[10:36:19] ============= drm_validate_modeset (1 subtest) =============
[10:36:19] [PASSED] drm_test_check_connector_changed_modeset
[10:36:19] ============== [PASSED] drm_validate_modeset ===============
[10:36:19] ====== drm_test_bridge_get_current_state (2 subtests) ======
[10:36:19] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[10:36:19] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[10:36:19] ======== [PASSED] drm_test_bridge_get_current_state ========
[10:36:19] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[10:36:19] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[10:36:19] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[10:36:19] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[10:36:19] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[10:36:19] ============== drm_bridge_alloc (2 subtests) ===============
[10:36:19] [PASSED] drm_test_drm_bridge_alloc_basic
[10:36:19] [PASSED] drm_test_drm_bridge_alloc_get_put
[10:36:19] ================ [PASSED] drm_bridge_alloc =================
[10:36:19] ================== drm_buddy (7 subtests) ==================
[10:36:19] [PASSED] drm_test_buddy_alloc_limit
[10:36:19] [PASSED] drm_test_buddy_alloc_optimistic
[10:36:19] [PASSED] drm_test_buddy_alloc_pessimistic
[10:36:19] [PASSED] drm_test_buddy_alloc_pathological
[10:36:19] [PASSED] drm_test_buddy_alloc_contiguous
[10:36:19] [PASSED] drm_test_buddy_alloc_clear
[10:36:19] [PASSED] drm_test_buddy_alloc_range_bias
[10:36:19] ==================== [PASSED] drm_buddy ====================
[10:36:19] ============= drm_cmdline_parser (40 subtests) =============
[10:36:19] [PASSED] drm_test_cmdline_force_d_only
[10:36:19] [PASSED] drm_test_cmdline_force_D_only_dvi
[10:36:19] [PASSED] drm_test_cmdline_force_D_only_hdmi
[10:36:19] [PASSED] drm_test_cmdline_force_D_only_not_digital
[10:36:19] [PASSED] drm_test_cmdline_force_e_only
[10:36:19] [PASSED] drm_test_cmdline_res
[10:36:19] [PASSED] drm_test_cmdline_res_vesa
[10:36:19] [PASSED] drm_test_cmdline_res_vesa_rblank
[10:36:19] [PASSED] drm_test_cmdline_res_rblank
[10:36:19] [PASSED] drm_test_cmdline_res_bpp
[10:36:19] [PASSED] drm_test_cmdline_res_refresh
[10:36:19] [PASSED] drm_test_cmdline_res_bpp_refresh
[10:36:19] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[10:36:19] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[10:36:19] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[10:36:19] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[10:36:19] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[10:36:19] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[10:36:19] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[10:36:19] [PASSED] drm_test_cmdline_res_margins_force_on
[10:36:19] [PASSED] drm_test_cmdline_res_vesa_margins
[10:36:19] [PASSED] drm_test_cmdline_name
[10:36:19] [PASSED] drm_test_cmdline_name_bpp
[10:36:19] [PASSED] drm_test_cmdline_name_option
[10:36:19] [PASSED] drm_test_cmdline_name_bpp_option
[10:36:19] [PASSED] drm_test_cmdline_rotate_0
[10:36:19] [PASSED] drm_test_cmdline_rotate_90
[10:36:19] [PASSED] drm_test_cmdline_rotate_180
[10:36:19] [PASSED] drm_test_cmdline_rotate_270
[10:36:19] [PASSED] drm_test_cmdline_hmirror
[10:36:19] [PASSED] drm_test_cmdline_vmirror
[10:36:19] [PASSED] drm_test_cmdline_margin_options
[10:36:19] [PASSED] drm_test_cmdline_multiple_options
[10:36:19] [PASSED] drm_test_cmdline_bpp_extra_and_option
[10:36:19] [PASSED] drm_test_cmdline_extra_and_option
[10:36:19] [PASSED] drm_test_cmdline_freestanding_options
[10:36:19] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[10:36:19] [PASSED] drm_test_cmdline_panel_orientation
[10:36:19] ================ drm_test_cmdline_invalid =================
[10:36:19] [PASSED] margin_only
[10:36:19] [PASSED] interlace_only
[10:36:19] [PASSED] res_missing_x
[10:36:19] [PASSED] res_missing_y
[10:36:19] [PASSED] res_bad_y
[10:36:19] [PASSED] res_missing_y_bpp
[10:36:19] [PASSED] res_bad_bpp
[10:36:19] [PASSED] res_bad_refresh
[10:36:19] [PASSED] res_bpp_refresh_force_on_off
[10:36:19] [PASSED] res_invalid_mode
[10:36:19] [PASSED] res_bpp_wrong_place_mode
[10:36:19] [PASSED] name_bpp_refresh
[10:36:19] [PASSED] name_refresh
[10:36:19] [PASSED] name_refresh_wrong_mode
[10:36:19] [PASSED] name_refresh_invalid_mode
[10:36:19] [PASSED] rotate_multiple
[10:36:19] [PASSED] rotate_invalid_val
[10:36:19] [PASSED] rotate_truncated
[10:36:19] [PASSED] invalid_option
[10:36:19] [PASSED] invalid_tv_option
[10:36:19] [PASSED] truncated_tv_option
[10:36:19] ============ [PASSED] drm_test_cmdline_invalid =============
[10:36:19] =============== drm_test_cmdline_tv_options ===============
[10:36:19] [PASSED] NTSC
[10:36:19] [PASSED] NTSC_443
[10:36:19] [PASSED] NTSC_J
[10:36:19] [PASSED] PAL
[10:36:19] [PASSED] PAL_M
[10:36:19] [PASSED] PAL_N
[10:36:19] [PASSED] SECAM
[10:36:19] [PASSED] MONO_525
[10:36:19] [PASSED] MONO_625
[10:36:19] =========== [PASSED] drm_test_cmdline_tv_options ===========
[10:36:19] =============== [PASSED] drm_cmdline_parser ================
[10:36:19] ========== drmm_connector_hdmi_init (20 subtests) ==========
[10:36:19] [PASSED] drm_test_connector_hdmi_init_valid
[10:36:19] [PASSED] drm_test_connector_hdmi_init_bpc_8
[10:36:19] [PASSED] drm_test_connector_hdmi_init_bpc_10
[10:36:19] [PASSED] drm_test_connector_hdmi_init_bpc_12
[10:36:19] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[10:36:19] [PASSED] drm_test_connector_hdmi_init_bpc_null
[10:36:19] [PASSED] drm_test_connector_hdmi_init_formats_empty
[10:36:19] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[10:36:19] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[10:36:19] [PASSED] supported_formats=0x9 yuv420_allowed=1
[10:36:19] [PASSED] supported_formats=0x9 yuv420_allowed=0
[10:36:19] [PASSED] supported_formats=0x3 yuv420_allowed=1
[10:36:19] [PASSED] supported_formats=0x3 yuv420_allowed=0
[10:36:19] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[10:36:19] [PASSED] drm_test_connector_hdmi_init_null_ddc
[10:36:19] [PASSED] drm_test_connector_hdmi_init_null_product
[10:36:19] [PASSED] drm_test_connector_hdmi_init_null_vendor
[10:36:19] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[10:36:19] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[10:36:19] [PASSED] drm_test_connector_hdmi_init_product_valid
[10:36:19] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[10:36:19] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[10:36:19] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[10:36:19] ========= drm_test_connector_hdmi_init_type_valid =========
[10:36:19] [PASSED] HDMI-A
[10:36:19] [PASSED] HDMI-B
[10:36:19] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[10:36:19] ======== drm_test_connector_hdmi_init_type_invalid ========
[10:36:19] [PASSED] Unknown
[10:36:19] [PASSED] VGA
[10:36:19] [PASSED] DVI-I
[10:36:19] [PASSED] DVI-D
[10:36:19] [PASSED] DVI-A
[10:36:19] [PASSED] Composite
[10:36:19] [PASSED] SVIDEO
[10:36:19] [PASSED] LVDS
[10:36:19] [PASSED] Component
[10:36:19] [PASSED] DIN
[10:36:19] [PASSED] DP
[10:36:19] [PASSED] TV
[10:36:19] [PASSED] eDP
[10:36:19] [PASSED] Virtual
[10:36:19] [PASSED] DSI
[10:36:19] [PASSED] DPI
[10:36:19] [PASSED] Writeback
[10:36:19] [PASSED] SPI
[10:36:19] [PASSED] USB
[10:36:19] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[10:36:19] ============ [PASSED] drmm_connector_hdmi_init =============
[10:36:19] ============= drmm_connector_init (3 subtests) =============
[10:36:19] [PASSED] drm_test_drmm_connector_init
[10:36:19] [PASSED] drm_test_drmm_connector_init_null_ddc
[10:36:19] ========= drm_test_drmm_connector_init_type_valid =========
[10:36:19] [PASSED] Unknown
[10:36:19] [PASSED] VGA
[10:36:19] [PASSED] DVI-I
[10:36:19] [PASSED] DVI-D
[10:36:19] [PASSED] DVI-A
[10:36:19] [PASSED] Composite
[10:36:19] [PASSED] SVIDEO
[10:36:19] [PASSED] LVDS
[10:36:19] [PASSED] Component
[10:36:19] [PASSED] DIN
[10:36:19] [PASSED] DP
[10:36:19] [PASSED] HDMI-A
[10:36:19] [PASSED] HDMI-B
[10:36:19] [PASSED] TV
[10:36:19] [PASSED] eDP
[10:36:19] [PASSED] Virtual
[10:36:19] [PASSED] DSI
[10:36:19] [PASSED] DPI
[10:36:19] [PASSED] Writeback
[10:36:19] [PASSED] SPI
[10:36:19] [PASSED] USB
[10:36:19] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[10:36:19] =============== [PASSED] drmm_connector_init ===============
[10:36:19] ========= drm_connector_dynamic_init (6 subtests) ==========
[10:36:19] [PASSED] drm_test_drm_connector_dynamic_init
[10:36:19] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[10:36:19] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[10:36:19] [PASSED] drm_test_drm_connector_dynamic_init_properties
[10:36:19] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[10:36:19] [PASSED] Unknown
[10:36:19] [PASSED] VGA
[10:36:19] [PASSED] DVI-I
[10:36:19] [PASSED] DVI-D
[10:36:19] [PASSED] DVI-A
[10:36:19] [PASSED] Composite
[10:36:19] [PASSED] SVIDEO
[10:36:19] [PASSED] LVDS
[10:36:19] [PASSED] Component
[10:36:19] [PASSED] DIN
[10:36:19] [PASSED] DP
[10:36:19] [PASSED] HDMI-A
[10:36:19] [PASSED] HDMI-B
[10:36:19] [PASSED] TV
[10:36:19] [PASSED] eDP
[10:36:19] [PASSED] Virtual
[10:36:19] [PASSED] DSI
[10:36:19] [PASSED] DPI
[10:36:19] [PASSED] Writeback
[10:36:19] [PASSED] SPI
[10:36:19] [PASSED] USB
[10:36:19] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[10:36:19] ======== drm_test_drm_connector_dynamic_init_name =========
[10:36:19] [PASSED] Unknown
[10:36:19] [PASSED] VGA
[10:36:19] [PASSED] DVI-I
[10:36:19] [PASSED] DVI-D
[10:36:19] [PASSED] DVI-A
[10:36:19] [PASSED] Composite
[10:36:19] [PASSED] SVIDEO
[10:36:19] [PASSED] LVDS
[10:36:19] [PASSED] Component
[10:36:19] [PASSED] DIN
[10:36:19] [PASSED] DP
[10:36:19] [PASSED] HDMI-A
[10:36:19] [PASSED] HDMI-B
[10:36:19] [PASSED] TV
[10:36:19] [PASSED] eDP
[10:36:19] [PASSED] Virtual
[10:36:19] [PASSED] DSI
[10:36:19] [PASSED] DPI
[10:36:19] [PASSED] Writeback
[10:36:19] [PASSED] SPI
[10:36:19] [PASSED] USB
[10:36:19] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[10:36:19] =========== [PASSED] drm_connector_dynamic_init ============
[10:36:19] ==== drm_connector_dynamic_register_early (4 subtests) =====
[10:36:19] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[10:36:19] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[10:36:19] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[10:36:19] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[10:36:19] ====== [PASSED] drm_connector_dynamic_register_early =======
[10:36:19] ======= drm_connector_dynamic_register (7 subtests) ========
[10:36:19] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[10:36:19] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[10:36:19] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[10:36:19] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[10:36:19] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[10:36:19] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[10:36:19] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[10:36:19] ========= [PASSED] drm_connector_dynamic_register ==========
[10:36:19] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[10:36:19] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[10:36:19] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[10:36:19] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[10:36:19] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[10:36:19] ========== drm_test_get_tv_mode_from_name_valid ===========
[10:36:19] [PASSED] NTSC
[10:36:19] [PASSED] NTSC-443
[10:36:19] [PASSED] NTSC-J
[10:36:19] [PASSED] PAL
[10:36:19] [PASSED] PAL-M
[10:36:19] [PASSED] PAL-N
[10:36:19] [PASSED] SECAM
[10:36:19] [PASSED] Mono
[10:36:19] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[10:36:19] [PASSED] drm_test_get_tv_mode_from_name_truncated
[10:36:19] ============ [PASSED] drm_get_tv_mode_from_name ============
[10:36:19] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[10:36:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[10:36:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[10:36:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[10:36:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[10:36:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[10:36:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[10:36:19] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[10:36:19] [PASSED] VIC 96
[10:36:19] [PASSED] VIC 97
[10:36:19] [PASSED] VIC 101
[10:36:19] [PASSED] VIC 102
[10:36:19] [PASSED] VIC 106
[10:36:19] [PASSED] VIC 107
[10:36:19] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[10:36:19] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[10:36:19] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[10:36:19] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[10:36:19] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[10:36:19] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[10:36:19] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[10:36:19] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[10:36:19] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[10:36:19] [PASSED] Automatic
[10:36:19] [PASSED] Full
[10:36:19] [PASSED] Limited 16:235
[10:36:19] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[10:36:19] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[10:36:19] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[10:36:19] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[10:36:19] === drm_test_drm_hdmi_connector_get_output_format_name ====
[10:36:19] [PASSED] RGB
[10:36:19] [PASSED] YUV 4:2:0
[10:36:19] [PASSED] YUV 4:2:2
[10:36:19] [PASSED] YUV 4:4:4
[10:36:19] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[10:36:19] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[10:36:19] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[10:36:19] ============= drm_damage_helper (21 subtests) ==============
[10:36:19] [PASSED] drm_test_damage_iter_no_damage
[10:36:19] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[10:36:19] [PASSED] drm_test_damage_iter_no_damage_src_moved
[10:36:19] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[10:36:19] [PASSED] drm_test_damage_iter_no_damage_not_visible
[10:36:19] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[10:36:19] [PASSED] drm_test_damage_iter_no_damage_no_fb
[10:36:19] [PASSED] drm_test_damage_iter_simple_damage
[10:36:19] [PASSED] drm_test_damage_iter_single_damage
[10:36:19] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[10:36:19] [PASSED] drm_test_damage_iter_single_damage_outside_src
[10:36:19] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[10:36:19] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[10:36:19] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[10:36:19] [PASSED] drm_test_damage_iter_single_damage_src_moved
[10:36:19] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[10:36:19] [PASSED] drm_test_damage_iter_damage
[10:36:19] [PASSED] drm_test_damage_iter_damage_one_intersect
[10:36:19] [PASSED] drm_test_damage_iter_damage_one_outside
[10:36:19] [PASSED] drm_test_damage_iter_damage_src_moved
[10:36:19] [PASSED] drm_test_damage_iter_damage_not_visible
[10:36:19] ================ [PASSED] drm_damage_helper ================
[10:36:19] ============== drm_dp_mst_helper (3 subtests) ==============
[10:36:19] ============== drm_test_dp_mst_calc_pbn_mode ==============
[10:36:19] [PASSED] Clock 154000 BPP 30 DSC disabled
[10:36:19] [PASSED] Clock 234000 BPP 30 DSC disabled
[10:36:19] [PASSED] Clock 297000 BPP 24 DSC disabled
[10:36:19] [PASSED] Clock 332880 BPP 24 DSC enabled
[10:36:19] [PASSED] Clock 324540 BPP 24 DSC enabled
[10:36:19] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[10:36:19] ============== drm_test_dp_mst_calc_pbn_div ===============
[10:36:19] [PASSED] Link rate 2000000 lane count 4
[10:36:19] [PASSED] Link rate 2000000 lane count 2
[10:36:19] [PASSED] Link rate 2000000 lane count 1
[10:36:19] [PASSED] Link rate 1350000 lane count 4
[10:36:19] [PASSED] Link rate 1350000 lane count 2
[10:36:19] [PASSED] Link rate 1350000 lane count 1
[10:36:19] [PASSED] Link rate 1000000 lane count 4
[10:36:19] [PASSED] Link rate 1000000 lane count 2
[10:36:19] [PASSED] Link rate 1000000 lane count 1
[10:36:19] [PASSED] Link rate 810000 lane count 4
[10:36:19] [PASSED] Link rate 810000 lane count 2
[10:36:19] [PASSED] Link rate 810000 lane count 1
[10:36:19] [PASSED] Link rate 540000 lane count 4
[10:36:19] [PASSED] Link rate 540000 lane count 2
[10:36:19] [PASSED] Link rate 540000 lane count 1
[10:36:19] [PASSED] Link rate 270000 lane count 4
[10:36:19] [PASSED] Link rate 270000 lane count 2
[10:36:19] [PASSED] Link rate 270000 lane count 1
[10:36:19] [PASSED] Link rate 162000 lane count 4
[10:36:19] [PASSED] Link rate 162000 lane count 2
[10:36:19] [PASSED] Link rate 162000 lane count 1
[10:36:19] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[10:36:19] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[10:36:19] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[10:36:19] [PASSED] DP_POWER_UP_PHY with port number
[10:36:19] [PASSED] DP_POWER_DOWN_PHY with port number
[10:36:19] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[10:36:19] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[10:36:19] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[10:36:19] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[10:36:19] [PASSED] DP_QUERY_PAYLOAD with port number
[10:36:19] [PASSED] DP_QUERY_PAYLOAD with VCPI
[10:36:19] [PASSED] DP_REMOTE_DPCD_READ with port number
[10:36:19] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[10:36:19] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[10:36:19] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[10:36:19] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[10:36:19] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[10:36:19] [PASSED] DP_REMOTE_I2C_READ with port number
[10:36:19] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[10:36:19] [PASSED] DP_REMOTE_I2C_READ with transactions array
[10:36:19] [PASSED] DP_REMOTE_I2C_WRITE with port number
[10:36:19] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[10:36:19] [PASSED] DP_REMOTE_I2C_WRITE with data array
[10:36:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[10:36:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[10:36:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[10:36:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[10:36:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[10:36:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[10:36:19] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[10:36:19] ================ [PASSED] drm_dp_mst_helper ================
[10:36:19] ================== drm_exec (7 subtests) ===================
[10:36:19] [PASSED] sanitycheck
[10:36:19] [PASSED] test_lock
[10:36:19] [PASSED] test_lock_unlock
[10:36:19] [PASSED] test_duplicates
[10:36:19] [PASSED] test_prepare
[10:36:19] [PASSED] test_prepare_array
[10:36:19] [PASSED] test_multiple_loops
[10:36:19] ==================== [PASSED] drm_exec =====================
[10:36:19] =========== drm_format_helper_test (17 subtests) ===========
[10:36:19] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[10:36:19] [PASSED] single_pixel_source_buffer
[10:36:19] [PASSED] single_pixel_clip_rectangle
[10:36:19] [PASSED] well_known_colors
[10:36:19] [PASSED] destination_pitch
[10:36:19] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[10:36:19] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[10:36:19] [PASSED] single_pixel_source_buffer
[10:36:19] [PASSED] single_pixel_clip_rectangle
[10:36:19] [PASSED] well_known_colors
[10:36:19] [PASSED] destination_pitch
[10:36:19] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[10:36:19] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[10:36:19] [PASSED] single_pixel_source_buffer
[10:36:19] [PASSED] single_pixel_clip_rectangle
[10:36:19] [PASSED] well_known_colors
[10:36:19] [PASSED] destination_pitch
[10:36:19] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[10:36:19] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[10:36:19] [PASSED] single_pixel_source_buffer
[10:36:19] [PASSED] single_pixel_clip_rectangle
[10:36:19] [PASSED] well_known_colors
[10:36:19] [PASSED] destination_pitch
[10:36:19] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[10:36:19] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[10:36:19] [PASSED] single_pixel_source_buffer
[10:36:19] [PASSED] single_pixel_clip_rectangle
[10:36:19] [PASSED] well_known_colors
[10:36:19] [PASSED] destination_pitch
[10:36:19] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[10:36:19] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[10:36:19] [PASSED] single_pixel_source_buffer
[10:36:19] [PASSED] single_pixel_clip_rectangle
[10:36:19] [PASSED] well_known_colors
[10:36:19] [PASSED] destination_pitch
[10:36:19] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[10:36:19] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[10:36:19] [PASSED] single_pixel_source_buffer
[10:36:19] [PASSED] single_pixel_clip_rectangle
[10:36:19] [PASSED] well_known_colors
[10:36:19] [PASSED] destination_pitch
[10:36:19] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[10:36:19] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[10:36:19] [PASSED] single_pixel_source_buffer
[10:36:19] [PASSED] single_pixel_clip_rectangle
[10:36:19] [PASSED] well_known_colors
[10:36:19] [PASSED] destination_pitch
[10:36:19] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[10:36:19] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[10:36:19] [PASSED] single_pixel_source_buffer
[10:36:19] [PASSED] single_pixel_clip_rectangle
[10:36:19] [PASSED] well_known_colors
[10:36:19] [PASSED] destination_pitch
[10:36:19] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[10:36:19] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[10:36:19] [PASSED] single_pixel_source_buffer
[10:36:19] [PASSED] single_pixel_clip_rectangle
[10:36:19] [PASSED] well_known_colors
[10:36:19] [PASSED] destination_pitch
[10:36:19] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[10:36:19] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[10:36:19] [PASSED] single_pixel_source_buffer
[10:36:19] [PASSED] single_pixel_clip_rectangle
[10:36:19] [PASSED] well_known_colors
[10:36:19] [PASSED] destination_pitch
[10:36:19] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[10:36:19] ============== drm_test_fb_xrgb8888_to_mono ===============
[10:36:19] [PASSED] single_pixel_source_buffer
[10:36:19] [PASSED] single_pixel_clip_rectangle
[10:36:19] [PASSED] well_known_colors
[10:36:19] [PASSED] destination_pitch
[10:36:19] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[10:36:19] ==================== drm_test_fb_swab =====================
[10:36:19] [PASSED] single_pixel_source_buffer
[10:36:19] [PASSED] single_pixel_clip_rectangle
[10:36:19] [PASSED] well_known_colors
[10:36:19] [PASSED] destination_pitch
[10:36:19] ================ [PASSED] drm_test_fb_swab =================
[10:36:19] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[10:36:19] [PASSED] single_pixel_source_buffer
[10:36:19] [PASSED] single_pixel_clip_rectangle
[10:36:19] [PASSED] well_known_colors
[10:36:19] [PASSED] destination_pitch
[10:36:19] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[10:36:19] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[10:36:19] [PASSED] single_pixel_source_buffer
[10:36:19] [PASSED] single_pixel_clip_rectangle
[10:36:19] [PASSED] well_known_colors
[10:36:19] [PASSED] destination_pitch
[10:36:19] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[10:36:19] ================= drm_test_fb_clip_offset =================
[10:36:19] [PASSED] pass through
[10:36:19] [PASSED] horizontal offset
[10:36:19] [PASSED] vertical offset
[10:36:19] [PASSED] horizontal and vertical offset
[10:36:19] [PASSED] horizontal offset (custom pitch)
[10:36:19] [PASSED] vertical offset (custom pitch)
[10:36:19] [PASSED] horizontal and vertical offset (custom pitch)
[10:36:19] ============= [PASSED] drm_test_fb_clip_offset =============
[10:36:19] =================== drm_test_fb_memcpy ====================
[10:36:19] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[10:36:19] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[10:36:19] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[10:36:19] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[10:36:19] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[10:36:19] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[10:36:19] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[10:36:19] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[10:36:19] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[10:36:19] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[10:36:19] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[10:36:19] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[10:36:19] =============== [PASSED] drm_test_fb_memcpy ================
[10:36:19] ============= [PASSED] drm_format_helper_test ==============
[10:36:19] ================= drm_format (18 subtests) =================
[10:36:19] [PASSED] drm_test_format_block_width_invalid
[10:36:19] [PASSED] drm_test_format_block_width_one_plane
[10:36:19] [PASSED] drm_test_format_block_width_two_plane
[10:36:19] [PASSED] drm_test_format_block_width_three_plane
[10:36:19] [PASSED] drm_test_format_block_width_tiled
[10:36:19] [PASSED] drm_test_format_block_height_invalid
[10:36:19] [PASSED] drm_test_format_block_height_one_plane
[10:36:19] [PASSED] drm_test_format_block_height_two_plane
[10:36:19] [PASSED] drm_test_format_block_height_three_plane
[10:36:19] [PASSED] drm_test_format_block_height_tiled
[10:36:19] [PASSED] drm_test_format_min_pitch_invalid
[10:36:19] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[10:36:19] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[10:36:19] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[10:36:19] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[10:36:19] [PASSED] drm_test_format_min_pitch_two_plane
[10:36:19] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[10:36:19] [PASSED] drm_test_format_min_pitch_tiled
[10:36:19] =================== [PASSED] drm_format ====================
[10:36:19] ============== drm_framebuffer (10 subtests) ===============
[10:36:19] ========== drm_test_framebuffer_check_src_coords ==========
[10:36:19] [PASSED] Success: source fits into fb
[10:36:19] [PASSED] Fail: overflowing fb with x-axis coordinate
[10:36:19] [PASSED] Fail: overflowing fb with y-axis coordinate
[10:36:19] [PASSED] Fail: overflowing fb with source width
[10:36:19] [PASSED] Fail: overflowing fb with source height
[10:36:19] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[10:36:19] [PASSED] drm_test_framebuffer_cleanup
[10:36:19] =============== drm_test_framebuffer_create ===============
[10:36:19] [PASSED] ABGR8888 normal sizes
[10:36:19] [PASSED] ABGR8888 max sizes
[10:36:19] [PASSED] ABGR8888 pitch greater than min required
[10:36:19] [PASSED] ABGR8888 pitch less than min required
[10:36:19] [PASSED] ABGR8888 Invalid width
[10:36:19] [PASSED] ABGR8888 Invalid buffer handle
[10:36:19] [PASSED] No pixel format
[10:36:19] [PASSED] ABGR8888 Width 0
[10:36:19] [PASSED] ABGR8888 Height 0
[10:36:19] [PASSED] ABGR8888 Out of bound height * pitch combination
[10:36:19] [PASSED] ABGR8888 Large buffer offset
[10:36:19] [PASSED] ABGR8888 Buffer offset for inexistent plane
[10:36:19] [PASSED] ABGR8888 Invalid flag
[10:36:19] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[10:36:19] [PASSED] ABGR8888 Valid buffer modifier
[10:36:19] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[10:36:19] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[10:36:19] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[10:36:19] [PASSED] NV12 Normal sizes
[10:36:19] [PASSED] NV12 Max sizes
[10:36:19] [PASSED] NV12 Invalid pitch
[10:36:19] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[10:36:19] [PASSED] NV12 different modifier per-plane
[10:36:19] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[10:36:19] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[10:36:19] [PASSED] NV12 Modifier for inexistent plane
[10:36:19] [PASSED] NV12 Handle for inexistent plane
[10:36:19] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[10:36:19] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[10:36:19] [PASSED] YVU420 Normal sizes
[10:36:19] [PASSED] YVU420 Max sizes
[10:36:19] [PASSED] YVU420 Invalid pitch
[10:36:19] [PASSED] YVU420 Different pitches
[10:36:19] [PASSED] YVU420 Different buffer offsets/pitches
[10:36:19] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[10:36:19] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[10:36:19] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[10:36:19] [PASSED] YVU420 Valid modifier
[10:36:19] [PASSED] YVU420 Different modifiers per plane
[10:36:19] [PASSED] YVU420 Modifier for inexistent plane
[10:36:19] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[10:36:19] [PASSED] X0L2 Normal sizes
[10:36:19] [PASSED] X0L2 Max sizes
[10:36:19] [PASSED] X0L2 Invalid pitch
[10:36:19] [PASSED] X0L2 Pitch greater than minimum required
[10:36:19] [PASSED] X0L2 Handle for inexistent plane
[10:36:19] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[10:36:19] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[10:36:19] [PASSED] X0L2 Valid modifier
[10:36:19] [PASSED] X0L2 Modifier for inexistent plane
[10:36:19] =========== [PASSED] drm_test_framebuffer_create ===========
[10:36:19] [PASSED] drm_test_framebuffer_free
[10:36:19] [PASSED] drm_test_framebuffer_init
[10:36:19] [PASSED] drm_test_framebuffer_init_bad_format
[10:36:19] [PASSED] drm_test_framebuffer_init_dev_mismatch
[10:36:19] [PASSED] drm_test_framebuffer_lookup
[10:36:19] [PASSED] drm_test_framebuffer_lookup_inexistent
[10:36:19] [PASSED] drm_test_framebuffer_modifiers_not_supported
[10:36:19] ================= [PASSED] drm_framebuffer =================
[10:36:19] ================ drm_gem_shmem (8 subtests) ================
[10:36:19] [PASSED] drm_gem_shmem_test_obj_create
[10:36:19] [PASSED] drm_gem_shmem_test_obj_create_private
[10:36:19] [PASSED] drm_gem_shmem_test_pin_pages
[10:36:19] [PASSED] drm_gem_shmem_test_vmap
[10:36:19] [PASSED] drm_gem_shmem_test_get_pages_sgt
[10:36:19] [PASSED] drm_gem_shmem_test_get_sg_table
[10:36:19] [PASSED] drm_gem_shmem_test_madvise
[10:36:19] [PASSED] drm_gem_shmem_test_purge
[10:36:19] ================== [PASSED] drm_gem_shmem ==================
[10:36:19] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[10:36:19] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[10:36:19] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[10:36:19] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[10:36:19] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[10:36:19] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[10:36:19] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[10:36:19] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[10:36:19] [PASSED] Automatic
[10:36:19] [PASSED] Full
[10:36:19] [PASSED] Limited 16:235
[10:36:19] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[10:36:19] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[10:36:19] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[10:36:19] [PASSED] drm_test_check_disable_connector
[10:36:19] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[10:36:19] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[10:36:19] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[10:36:19] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[10:36:19] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[10:36:19] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[10:36:19] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[10:36:19] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[10:36:19] [PASSED] drm_test_check_output_bpc_dvi
[10:36:19] [PASSED] drm_test_check_output_bpc_format_vic_1
[10:36:19] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[10:36:19] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[10:36:19] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[10:36:19] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[10:36:19] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[10:36:19] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[10:36:19] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[10:36:19] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[10:36:19] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[10:36:19] [PASSED] drm_test_check_broadcast_rgb_value
[10:36:19] [PASSED] drm_test_check_bpc_8_value
[10:36:19] [PASSED] drm_test_check_bpc_10_value
[10:36:19] [PASSED] drm_test_check_bpc_12_value
[10:36:19] [PASSED] drm_test_check_format_value
[10:36:19] [PASSED] drm_test_check_tmds_char_value
[10:36:19] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[10:36:19] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[10:36:19] [PASSED] drm_test_check_mode_valid
[10:36:19] [PASSED] drm_test_check_mode_valid_reject
[10:36:19] [PASSED] drm_test_check_mode_valid_reject_rate
[10:36:19] [PASSED] drm_test_check_mode_valid_reject_max_clock
[10:36:19] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[10:36:19] ================= drm_managed (2 subtests) =================
[10:36:19] [PASSED] drm_test_managed_release_action
[10:36:19] [PASSED] drm_test_managed_run_action
[10:36:19] =================== [PASSED] drm_managed ===================
[10:36:19] =================== drm_mm (6 subtests) ====================
[10:36:19] [PASSED] drm_test_mm_init
[10:36:19] [PASSED] drm_test_mm_debug
[10:36:19] [PASSED] drm_test_mm_align32
[10:36:19] [PASSED] drm_test_mm_align64
[10:36:19] [PASSED] drm_test_mm_lowest
[10:36:19] [PASSED] drm_test_mm_highest
[10:36:19] ===================== [PASSED] drm_mm ======================
[10:36:19] ============= drm_modes_analog_tv (5 subtests) =============
[10:36:19] [PASSED] drm_test_modes_analog_tv_mono_576i
[10:36:19] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[10:36:19] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[10:36:19] [PASSED] drm_test_modes_analog_tv_pal_576i
[10:36:19] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[10:36:19] =============== [PASSED] drm_modes_analog_tv ===============
[10:36:19] ============== drm_plane_helper (2 subtests) ===============
[10:36:19] =============== drm_test_check_plane_state ================
[10:36:19] [PASSED] clipping_simple
[10:36:19] [PASSED] clipping_rotate_reflect
[10:36:19] [PASSED] positioning_simple
[10:36:19] [PASSED] upscaling
[10:36:19] [PASSED] downscaling
[10:36:19] [PASSED] rounding1
[10:36:19] [PASSED] rounding2
[10:36:19] [PASSED] rounding3
[10:36:19] [PASSED] rounding4
[10:36:19] =========== [PASSED] drm_test_check_plane_state ============
[10:36:19] =========== drm_test_check_invalid_plane_state ============
[10:36:19] [PASSED] positioning_invalid
[10:36:19] [PASSED] upscaling_invalid
[10:36:19] [PASSED] downscaling_invalid
[10:36:19] ======= [PASSED] drm_test_check_invalid_plane_state ========
[10:36:19] ================ [PASSED] drm_plane_helper =================
[10:36:19] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[10:36:19] ====== drm_test_connector_helper_tv_get_modes_check =======
[10:36:19] [PASSED] None
[10:36:19] [PASSED] PAL
[10:36:19] [PASSED] NTSC
[10:36:19] [PASSED] Both, NTSC Default
[10:36:19] [PASSED] Both, PAL Default
[10:36:19] [PASSED] Both, NTSC Default, with PAL on command-line
[10:36:19] [PASSED] Both, PAL Default, with NTSC on command-line
[10:36:19] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[10:36:19] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[10:36:19] ================== drm_rect (9 subtests) ===================
[10:36:19] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[10:36:19] [PASSED] drm_test_rect_clip_scaled_not_clipped
[10:36:19] [PASSED] drm_test_rect_clip_scaled_clipped
[10:36:19] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[10:36:19] ================= drm_test_rect_intersect =================
[10:36:19] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[10:36:19] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[10:36:19] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[10:36:19] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[10:36:19] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[10:36:19] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[10:36:19] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[10:36:19] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[10:36:19] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[10:36:19] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[10:36:19] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[10:36:19] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[10:36:19] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[10:36:19] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[10:36:19] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[10:36:19] ============= [PASSED] drm_test_rect_intersect =============
[10:36:19] ================ drm_test_rect_calc_hscale ================
[10:36:19] [PASSED] normal use
[10:36:19] [PASSED] out of max range
[10:36:19] [PASSED] out of min range
[10:36:19] [PASSED] zero dst
[10:36:19] [PASSED] negative src
[10:36:19] [PASSED] negative dst
[10:36:19] ============ [PASSED] drm_test_rect_calc_hscale ============
[10:36:19] ================ drm_test_rect_calc_vscale ================
[10:36:19] [PASSED] normal use
[10:36:19] [PASSED] out of max range
[10:36:19] [PASSED] out of min range
[10:36:19] [PASSED] zero dst
[10:36:19] [PASSED] negative src
[10:36:19] [PASSED] negative dst
[10:36:19] ============ [PASSED] drm_test_rect_calc_vscale ============
[10:36:19] ================== drm_test_rect_rotate ===================
[10:36:19] [PASSED] reflect-x
[10:36:19] [PASSED] reflect-y
[10:36:19] [PASSED] rotate-0
[10:36:19] [PASSED] rotate-90
[10:36:19] [PASSED] rotate-180
[10:36:19] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[10:36:19] ============== [PASSED] drm_test_rect_rotate ===============
[10:36:19] ================ drm_test_rect_rotate_inv =================
[10:36:19] [PASSED] reflect-x
[10:36:19] [PASSED] reflect-y
[10:36:19] [PASSED] rotate-0
[10:36:19] [PASSED] rotate-90
[10:36:19] [PASSED] rotate-180
[10:36:19] [PASSED] rotate-270
[10:36:19] ============ [PASSED] drm_test_rect_rotate_inv =============
[10:36:19] ==================== [PASSED] drm_rect =====================
[10:36:19] ============ drm_sysfb_modeset_test (1 subtest) ============
[10:36:19] ============ drm_test_sysfb_build_fourcc_list =============
[10:36:19] [PASSED] no native formats
[10:36:19] [PASSED] XRGB8888 as native format
[10:36:19] [PASSED] remove duplicates
[10:36:19] [PASSED] convert alpha formats
[10:36:19] [PASSED] random formats
[10:36:19] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[10:36:19] ============= [PASSED] drm_sysfb_modeset_test ==============
[10:36:19] ============================================================
[10:36:19] Testing complete. Ran 616 tests: passed: 616
[10:36:19] Elapsed time: 23.611s total, 1.655s configuring, 21.785s building, 0.148s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[10:36:19] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:36:21] 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
[10:36:29] Starting KUnit Kernel (1/1)...
[10:36:29] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:36:29] ================= ttm_device (5 subtests) ==================
[10:36:29] [PASSED] ttm_device_init_basic
[10:36:29] [PASSED] ttm_device_init_multiple
[10:36:29] [PASSED] ttm_device_fini_basic
[10:36:29] [PASSED] ttm_device_init_no_vma_man
[10:36:29] ================== ttm_device_init_pools ==================
[10:36:29] [PASSED] No DMA allocations, no DMA32 required
[10:36:29] [PASSED] DMA allocations, DMA32 required
[10:36:29] [PASSED] No DMA allocations, DMA32 required
[10:36:29] [PASSED] DMA allocations, no DMA32 required
[10:36:29] ============== [PASSED] ttm_device_init_pools ==============
[10:36:29] =================== [PASSED] ttm_device ====================
[10:36:29] ================== ttm_pool (8 subtests) ===================
[10:36:29] ================== ttm_pool_alloc_basic ===================
[10:36:29] [PASSED] One page
[10:36:29] [PASSED] More than one page
[10:36:29] [PASSED] Above the allocation limit
[10:36:29] [PASSED] One page, with coherent DMA mappings enabled
[10:36:29] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[10:36:29] ============== [PASSED] ttm_pool_alloc_basic ===============
[10:36:29] ============== ttm_pool_alloc_basic_dma_addr ==============
[10:36:29] [PASSED] One page
[10:36:29] [PASSED] More than one page
[10:36:29] [PASSED] Above the allocation limit
[10:36:29] [PASSED] One page, with coherent DMA mappings enabled
[10:36:29] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[10:36:29] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[10:36:29] [PASSED] ttm_pool_alloc_order_caching_match
[10:36:29] [PASSED] ttm_pool_alloc_caching_mismatch
[10:36:29] [PASSED] ttm_pool_alloc_order_mismatch
[10:36:29] [PASSED] ttm_pool_free_dma_alloc
[10:36:29] [PASSED] ttm_pool_free_no_dma_alloc
[10:36:29] [PASSED] ttm_pool_fini_basic
[10:36:29] ==================== [PASSED] ttm_pool =====================
[10:36:29] ================ ttm_resource (8 subtests) =================
[10:36:29] ================= ttm_resource_init_basic =================
[10:36:29] [PASSED] Init resource in TTM_PL_SYSTEM
[10:36:29] [PASSED] Init resource in TTM_PL_VRAM
[10:36:29] [PASSED] Init resource in a private placement
[10:36:29] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[10:36:29] ============= [PASSED] ttm_resource_init_basic =============
[10:36:29] [PASSED] ttm_resource_init_pinned
[10:36:29] [PASSED] ttm_resource_fini_basic
[10:36:29] [PASSED] ttm_resource_manager_init_basic
[10:36:29] [PASSED] ttm_resource_manager_usage_basic
[10:36:29] [PASSED] ttm_resource_manager_set_used_basic
[10:36:29] [PASSED] ttm_sys_man_alloc_basic
[10:36:29] [PASSED] ttm_sys_man_free_basic
[10:36:29] ================== [PASSED] ttm_resource ===================
[10:36:29] =================== ttm_tt (15 subtests) ===================
[10:36:29] ==================== ttm_tt_init_basic ====================
[10:36:29] [PASSED] Page-aligned size
[10:36:29] [PASSED] Extra pages requested
[10:36:29] ================ [PASSED] ttm_tt_init_basic ================
[10:36:29] [PASSED] ttm_tt_init_misaligned
[10:36:29] [PASSED] ttm_tt_fini_basic
[10:36:29] [PASSED] ttm_tt_fini_sg
[10:36:29] [PASSED] ttm_tt_fini_shmem
[10:36:29] [PASSED] ttm_tt_create_basic
[10:36:29] [PASSED] ttm_tt_create_invalid_bo_type
[10:36:29] [PASSED] ttm_tt_create_ttm_exists
[10:36:29] [PASSED] ttm_tt_create_failed
[10:36:29] [PASSED] ttm_tt_destroy_basic
[10:36:29] [PASSED] ttm_tt_populate_null_ttm
[10:36:29] [PASSED] ttm_tt_populate_populated_ttm
[10:36:29] [PASSED] ttm_tt_unpopulate_basic
[10:36:29] [PASSED] ttm_tt_unpopulate_empty_ttm
[10:36:29] [PASSED] ttm_tt_swapin_basic
[10:36:29] ===================== [PASSED] ttm_tt ======================
[10:36:29] =================== ttm_bo (14 subtests) ===================
[10:36:29] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[10:36:29] [PASSED] Cannot be interrupted and sleeps
[10:36:29] [PASSED] Cannot be interrupted, locks straight away
[10:36:29] [PASSED] Can be interrupted, sleeps
[10:36:29] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[10:36:29] [PASSED] ttm_bo_reserve_locked_no_sleep
[10:36:29] [PASSED] ttm_bo_reserve_no_wait_ticket
[10:36:29] [PASSED] ttm_bo_reserve_double_resv
[10:36:29] [PASSED] ttm_bo_reserve_interrupted
[10:36:29] [PASSED] ttm_bo_reserve_deadlock
[10:36:29] [PASSED] ttm_bo_unreserve_basic
[10:36:29] [PASSED] ttm_bo_unreserve_pinned
[10:36:29] [PASSED] ttm_bo_unreserve_bulk
[10:36:29] [PASSED] ttm_bo_put_basic
[10:36:29] [PASSED] ttm_bo_put_shared_resv
[10:36:29] [PASSED] ttm_bo_pin_basic
[10:36:29] [PASSED] ttm_bo_pin_unpin_resource
[10:36:29] [PASSED] ttm_bo_multiple_pin_one_unpin
[10:36:29] ===================== [PASSED] ttm_bo ======================
[10:36:29] ============== ttm_bo_validate (22 subtests) ===============
[10:36:29] ============== ttm_bo_init_reserved_sys_man ===============
[10:36:29] [PASSED] Buffer object for userspace
[10:36:29] [PASSED] Kernel buffer object
[10:36:29] [PASSED] Shared buffer object
[10:36:29] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[10:36:29] ============== ttm_bo_init_reserved_mock_man ==============
[10:36:29] [PASSED] Buffer object for userspace
[10:36:29] [PASSED] Kernel buffer object
[10:36:29] [PASSED] Shared buffer object
[10:36:29] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[10:36:29] [PASSED] ttm_bo_init_reserved_resv
[10:36:29] ================== ttm_bo_validate_basic ==================
[10:36:29] [PASSED] Buffer object for userspace
[10:36:29] [PASSED] Kernel buffer object
[10:36:29] [PASSED] Shared buffer object
[10:36:29] ============== [PASSED] ttm_bo_validate_basic ==============
[10:36:29] [PASSED] ttm_bo_validate_invalid_placement
[10:36:29] ============= ttm_bo_validate_same_placement ==============
[10:36:29] [PASSED] System manager
[10:36:29] [PASSED] VRAM manager
[10:36:29] ========= [PASSED] ttm_bo_validate_same_placement ==========
[10:36:29] [PASSED] ttm_bo_validate_failed_alloc
[10:36:29] [PASSED] ttm_bo_validate_pinned
[10:36:29] [PASSED] ttm_bo_validate_busy_placement
[10:36:29] ================ ttm_bo_validate_multihop =================
[10:36:29] [PASSED] Buffer object for userspace
[10:36:29] [PASSED] Kernel buffer object
[10:36:29] [PASSED] Shared buffer object
[10:36:29] ============ [PASSED] ttm_bo_validate_multihop =============
[10:36:29] ========== ttm_bo_validate_no_placement_signaled ==========
[10:36:29] [PASSED] Buffer object in system domain, no page vector
[10:36:29] [PASSED] Buffer object in system domain with an existing page vector
[10:36:29] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[10:36:29] ======== ttm_bo_validate_no_placement_not_signaled ========
[10:36:29] [PASSED] Buffer object for userspace
[10:36:29] [PASSED] Kernel buffer object
[10:36:29] [PASSED] Shared buffer object
[10:36:29] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[10:36:29] [PASSED] ttm_bo_validate_move_fence_signaled
[10:36:29] ========= ttm_bo_validate_move_fence_not_signaled =========
[10:36:29] [PASSED] Waits for GPU
[10:36:29] [PASSED] Tries to lock straight away
[10:36:29] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[10:36:29] [PASSED] ttm_bo_validate_swapout
[10:36:29] [PASSED] ttm_bo_validate_happy_evict
[10:36:29] [PASSED] ttm_bo_validate_all_pinned_evict
[10:36:29] [PASSED] ttm_bo_validate_allowed_only_evict
[10:36:29] [PASSED] ttm_bo_validate_deleted_evict
[10:36:29] [PASSED] ttm_bo_validate_busy_domain_evict
[10:36:29] [PASSED] ttm_bo_validate_evict_gutting
[10:36:29] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[10:36:29] ================= [PASSED] ttm_bo_validate =================
[10:36:29] ============================================================
[10:36:29] Testing complete. Ran 102 tests: passed: 102
[10:36:30] Elapsed time: 10.130s total, 1.709s configuring, 7.804s building, 0.514s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/2] drm/i915/hdcp: Do not use inline intel_de_read
2025-06-19 10:28 ` [PATCH 1/2] drm/i915/hdcp: Do not use inline intel_de_read Suraj Kandpal
@ 2025-06-19 10:59 ` Jani Nikula
2025-06-19 11:36 ` Kandpal, Suraj
0 siblings, 1 reply; 9+ messages in thread
From: Jani Nikula @ 2025-06-19 10:59 UTC (permalink / raw)
To: Suraj Kandpal, intel-xe, intel-gfx; +Cc: ankit.k.nautiyal, Suraj Kandpal
On Thu, 19 Jun 2025, Suraj Kandpal <suraj.kandpal@intel.com> wrote:
> Do not use intel_de_read() inline in the WARN_ON functions.
> While we are at it make the comparision for stream_type u8 to u8.
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_dp_hdcp.c | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
> index 7bd775fb65a0..3620f7853c8f 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
> @@ -805,10 +805,13 @@ intel_dp_mst_hdcp2_stream_encryption(struct intel_connector *connector,
> enum pipe pipe = (enum pipe)cpu_transcoder;
> enum port port = dig_port->base.port;
> int ret;
> + u32 val;
> + u8 stream_type;
>
> + val = intel_de_read(display, HDCP2_AUTH_STREAM(display, cpu_transcoder, port));
> + stream_type = REG_FIELD_GET8(AUTH_STREAM_TYPE, val);
The size in GET8 is not really about the size of the field, it's about
the size of the register/value, and how the field is defined.
It should be REG_FIELD_GET() for 32-bit registers.
But then should AUTH_STREAM_TYPE be defined via REG_GENMASK()?
#define AUTH_STREAM_TYPE_MASK REG_GENMASK(31, 31)
Would be more consistent:
stream_type = REG_FIELD_GET(AUTH_STREAM_TYPE_MASK, val);
> drm_WARN_ON(display->drm, enable &&
> - !!(intel_de_read(display, HDCP2_AUTH_STREAM(display, cpu_transcoder, port))
> - & AUTH_STREAM_TYPE) != data->streams[0].stream_type);
> + stream_type == data->streams[0].stream_type);
Comparing it like this certainly makes much more sense, but shouldn't it
remain != instead of ==?
BR,
Jani.
>
> ret = intel_dp_mst_toggle_hdcp_stream_select(connector, enable);
> if (ret)
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 1/2] drm/i915/hdcp: Do not use inline intel_de_read
2025-06-19 11:33 [PATCH 0/2] " Suraj Kandpal
@ 2025-06-19 11:33 ` Suraj Kandpal
0 siblings, 0 replies; 9+ messages in thread
From: Suraj Kandpal @ 2025-06-19 11:33 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: ankit.k.nautiyal, jani.nikula, Suraj Kandpal
Do not use intel_de_read() inline in the WARN_ON functions.
While we are at it make the comparision for stream_type u8 to u8.
--v2
-Use REG_GENMASK() [Jani]
-USe REG_FIELD_GET() [Jani]
-Fix the WARN_ON() condition [Jani]
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
drivers/gpu/drm/i915/display/intel_dp_hdcp.c | 7 +++++--
drivers/gpu/drm/i915/display/intel_hdcp_regs.h | 2 +-
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
index 7bd775fb65a0..70dafaa2afad 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
@@ -805,10 +805,13 @@ intel_dp_mst_hdcp2_stream_encryption(struct intel_connector *connector,
enum pipe pipe = (enum pipe)cpu_transcoder;
enum port port = dig_port->base.port;
int ret;
+ u32 val;
+ u8 stream_type;
+ val = intel_de_read(display, HDCP2_AUTH_STREAM(display, cpu_transcoder, port));
+ stream_type = REG_FIELD_GET(AUTH_STREAM_TYPE_MASK, val);
drm_WARN_ON(display->drm, enable &&
- !!(intel_de_read(display, HDCP2_AUTH_STREAM(display, cpu_transcoder, port))
- & AUTH_STREAM_TYPE) != data->streams[0].stream_type);
+ stream_type != data->streams[0].stream_type);
ret = intel_dp_mst_toggle_hdcp_stream_select(connector, enable);
if (ret)
diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_regs.h b/drivers/gpu/drm/i915/display/intel_hdcp_regs.h
index f590d7f48ba7..8b9b87910a9e 100644
--- a/drivers/gpu/drm/i915/display/intel_hdcp_regs.h
+++ b/drivers/gpu/drm/i915/display/intel_hdcp_regs.h
@@ -263,7 +263,7 @@
#define TRANS_HDCP2_AUTH_STREAM(trans) _MMIO_TRANS(trans, \
_TRANSA_HDCP2_AUTH_STREAM, \
_TRANSB_HDCP2_AUTH_STREAM)
-#define AUTH_STREAM_TYPE REG_BIT(31)
+#define AUTH_STREAM_TYPE_MASK REG_GENMASK(31, 31)
#define HDCP2_AUTH_STREAM(dev_priv, trans, port) \
(TRANS_HDCP(dev_priv) ? \
TRANS_HDCP2_AUTH_STREAM(trans) : \
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* RE: [PATCH 1/2] drm/i915/hdcp: Do not use inline intel_de_read
2025-06-19 10:59 ` Jani Nikula
@ 2025-06-19 11:36 ` Kandpal, Suraj
0 siblings, 0 replies; 9+ messages in thread
From: Kandpal, Suraj @ 2025-06-19 11:36 UTC (permalink / raw)
To: Nikula, Jani, intel-xe@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org
Cc: Nautiyal, Ankit K
> -----Original Message-----
> From: Nikula, Jani <jani.nikula@intel.com>
> Sent: Thursday, June 19, 2025 4:29 PM
> To: Kandpal, Suraj <suraj.kandpal@intel.com>; intel-xe@lists.freedesktop.org;
> intel-gfx@lists.freedesktop.org
> Cc: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>; Kandpal, Suraj
> <suraj.kandpal@intel.com>
> Subject: Re: [PATCH 1/2] drm/i915/hdcp: Do not use inline intel_de_read
>
> On Thu, 19 Jun 2025, Suraj Kandpal <suraj.kandpal@intel.com> wrote:
> > Do not use intel_de_read() inline in the WARN_ON functions.
> > While we are at it make the comparision for stream_type u8 to u8.
> >
> > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_dp_hdcp.c | 7 +++++--
> > 1 file changed, 5 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
> > b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
> > index 7bd775fb65a0..3620f7853c8f 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c
> > @@ -805,10 +805,13 @@ intel_dp_mst_hdcp2_stream_encryption(struct
> intel_connector *connector,
> > enum pipe pipe = (enum pipe)cpu_transcoder;
> > enum port port = dig_port->base.port;
> > int ret;
> > + u32 val;
> > + u8 stream_type;
> >
> > + val = intel_de_read(display, HDCP2_AUTH_STREAM(display,
> cpu_transcoder, port));
> > + stream_type = REG_FIELD_GET8(AUTH_STREAM_TYPE, val);
>
> The size in GET8 is not really about the size of the field, it's about the size of
> the register/value, and how the field is defined.
>
> It should be REG_FIELD_GET() for 32-bit registers.
>
> But then should AUTH_STREAM_TYPE be defined via REG_GENMASK()?
>
> #define AUTH_STREAM_TYPE_MASK REG_GENMASK(31, 31)
>
> Would be more consistent:
>
> stream_type = REG_FIELD_GET(AUTH_STREAM_TYPE_MASK, val);
>
> > drm_WARN_ON(display->drm, enable &&
> > - !!(intel_de_read(display, HDCP2_AUTH_STREAM(display,
> cpu_transcoder, port))
> > - & AUTH_STREAM_TYPE) != data->streams[0].stream_type);
> > + stream_type == data->streams[0].stream_type);
>
> Comparing it like this certainly makes much more sense, but shouldn't it
> remain != instead of ==?
Right fixed these and sent a new version
Regards,
Suraj Kandpal
>
> BR,
> Jani.
>
> >
> > ret = intel_dp_mst_toggle_hdcp_stream_select(connector, enable);
> > if (ret)
>
> --
> Jani Nikula, Intel
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for Changes in hdcp2_stream_encryption
2025-06-19 10:28 [PATCH 0/2] Changes in hdcp2_stream_encryption Suraj Kandpal
` (2 preceding siblings ...)
2025-06-19 10:36 ` ✓ CI.KUnit: success for Changes in hdcp2_stream_encryption Patchwork
@ 2025-06-19 11:44 ` Patchwork
2025-06-19 23:23 ` ✗ Xe.CI.Full: failure " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-06-19 11:44 UTC (permalink / raw)
To: Kandpal, Suraj; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 850 bytes --]
== Series Details ==
Series: Changes in hdcp2_stream_encryption
URL : https://patchwork.freedesktop.org/series/150508/
State : success
== Summary ==
CI Bug Log - changes from xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3_BAT -> xe-pw-150508v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 8)
------------------------------
Missing (1): bat-adlp-vm
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3 -> xe-pw-150508v1
IGT_8418: 8418
xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3: 74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3
xe-pw-150508v1: 150508v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/index.html
[-- Attachment #2: Type: text/html, Size: 1398 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for Changes in hdcp2_stream_encryption
2025-06-19 10:28 [PATCH 0/2] Changes in hdcp2_stream_encryption Suraj Kandpal
` (3 preceding siblings ...)
2025-06-19 11:44 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-06-19 23:23 ` Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-06-19 23:23 UTC (permalink / raw)
To: Kandpal, Suraj; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 50204 bytes --]
== Series Details ==
Series: Changes in hdcp2_stream_encryption
URL : https://patchwork.freedesktop.org/series/150508/
State : failure
== Summary ==
CI Bug Log - changes from xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3_FULL -> xe-pw-150508v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-150508v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-150508v1_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-150508v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@hotreplug-lateclose:
- shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-dg2-436/igt@core_hotunplug@hotreplug-lateclose.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@core_hotunplug@hotreplug-lateclose.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2-set2: [PASS][3] -> [FAIL][4] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-dg2-436/igt@kms_hdr@bpc-switch-dpms.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-466/igt@kms_hdr@bpc-switch-dpms.html
* igt@xe_eu_stall@invalid-gt-id:
- shard-dg2-set2: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@xe_eu_stall@invalid-gt-id.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-dg2-set2: [PASS][6] -> [INCOMPLETE][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-dg2-436/igt@xe_pm@s2idle-vm-bind-userptr.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@xe_pm@s2idle-vm-bind-userptr.html
Known issues
------------
Here are the changes found in xe-pw-150508v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#3767]) +15 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#3768])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-466/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-adlp: NOTRUN -> [SKIP][10] ([Intel XE#1124])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][11] ([Intel XE#316])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#316]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#610])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +9 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1124])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-adlp: NOTRUN -> [SKIP][17] ([Intel XE#610])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [PASS][18] -> [SKIP][19] ([Intel XE#2314] / [Intel XE#2894])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#2191])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#367])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-5/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#367]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][23] ([Intel XE#367])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +62 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2887])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-5/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#2907])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#3432])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][29] ([Intel XE#2907]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:
- shard-adlp: NOTRUN -> [SKIP][30] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][31] ([Intel XE#787]) +5 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][32] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#4416]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#306]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@degamma:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#306])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-5/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#373]) +8 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-after-hibernate:
- shard-adlp: NOTRUN -> [SKIP][38] ([Intel XE#373]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#307])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: NOTRUN -> [FAIL][40] ([Intel XE#1178])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][41] ([Intel XE#1178]) +1 other test fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#3304])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][43] ([Intel XE#1188])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-4/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#308]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][45] -> [SKIP][46] ([Intel XE#2291]) +4 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#4354])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#4294])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#701])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#2373])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-8/igt@kms_feature_discovery@display-2x.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-5/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1421])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-5/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][54] -> [FAIL][55] ([Intel XE#301]) +3 other tests fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][56] ([Intel XE#301]) +2 other tests fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2316]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-8/igt@kms_flip@2x-nonexisting-fb.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [PASS][59] -> [FAIL][60] ([Intel XE#2882]) +5 other tests fail
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#310]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-adlp: [PASS][62] -> [FAIL][63] ([Intel XE#301]) +1 other test fail
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-adlp-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [PASS][64] -> [FAIL][65] ([Intel XE#301])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@b-dp4:
- shard-dg2-set2: [PASS][66] -> [FAIL][67] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x:
- shard-adlp: [PASS][68] -> [FAIL][69] ([Intel XE#1874])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-x:
- shard-adlp: [PASS][70] -> [DMESG-FAIL][71] ([Intel XE#4543])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-x.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-x.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt:
- shard-adlp: NOTRUN -> [SKIP][72] ([Intel XE#656]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#656]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#651]) +29 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-adlp: [PASS][75] -> [DMESG-WARN][76] ([Intel XE#2953] / [Intel XE#4173]) +20 other tests dmesg-warn
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-adlp-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][77] ([Intel XE#651])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#653]) +28 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [SKIP][79] ([Intel XE#653]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_hdr@static-toggle-dpms:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1503])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-5/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#4298])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#4359])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-adlp: NOTRUN -> [SKIP][83] ([Intel XE#1489])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1489]) +10 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#2893]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-5/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-adlp: NOTRUN -> [SKIP][86] ([Intel XE#1122])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#3414])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1435])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-5/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vrr@max-min:
- shard-adlp: NOTRUN -> [SKIP][90] ([Intel XE#455]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@kms_vrr@max-min.html
* igt@xe_compute_preempt@compute-preempt-many-all-ram@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#455]) +16 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@xe_compute_preempt@compute-preempt-many-all-ram@engine-drm_xe_engine_class_compute.html
* igt@xe_configfs@survivability-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#5249])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-466/igt@xe_configfs@survivability-mode.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#4837]) +13 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-466/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_evict@evict-small:
- shard-adlp: NOTRUN -> [SKIP][94] ([Intel XE#261] / [Intel XE#688])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@xe_evict@evict-small.html
* igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault:
- shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#288]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault.html
* igt@xe_exec_fault_mode@once-bindexecqueue-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#288]) +24 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@xe_exec_fault_mode@once-bindexecqueue-rebind.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-free-race:
- shard-adlp: NOTRUN -> [SKIP][97] ([Intel XE#4915]) +23 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@xe_exec_system_allocator@many-execqueues-mmap-free-race.html
* igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#4915]) +245 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#560])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-466/igt@xe_media_fill@media-fill.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_oa@syncs-userptr-wait:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-466/igt@xe_oa@syncs-userptr-wait.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2838] / [Intel XE#979])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-adlp: NOTRUN -> [SKIP][103] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s4-mocs:
- shard-adlp: [PASS][104] -> [ABORT][105] ([Intel XE#1794]) +1 other test abort
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-adlp-1/igt@xe_pm@s4-mocs.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-9/igt@xe_pm@s4-mocs.html
* igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#4733]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#944]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-466/igt@xe_query@multigpu-query-topology.html
* igt@xe_render_copy@render-stress-2-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#4814])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-466/igt@xe_render_copy@render-stress-2-copies.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#4130])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-436/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#3342])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#4351])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-466/igt@xe_sriov_scheduling@equal-throughput.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][112] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][113]
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][114] ([Intel XE#2705] / [Intel XE#4212]) -> [PASS][115]
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][116] ([Intel XE#2291]) -> [PASS][117] +5 other tests pass
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][118] ([Intel XE#4302]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][120] ([Intel XE#1340]) -> [PASS][121]
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [SKIP][122] ([Intel XE#2316]) -> [PASS][123] +7 other tests pass
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [FAIL][124] ([Intel XE#886]) -> [PASS][125] +5 other tests pass
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [FAIL][126] ([Intel XE#301]) -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [DMESG-WARN][128] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][129] +4 other tests pass
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y:
- shard-adlp: [DMESG-FAIL][130] ([Intel XE#4543]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html
* igt@kms_hdr@static-swap:
- shard-bmg: [SKIP][132] ([Intel XE#1503]) -> [PASS][133] +1 other test pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-6/igt@kms_hdr@static-swap.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-7/igt@kms_hdr@static-swap.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [SKIP][134] ([Intel XE#4596]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2-set2: [FAIL][136] ([Intel XE#4741]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-dg2-436/igt@kms_pm_rpm@basic-pci-d3-state.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-434/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][138] ([Intel XE#2883]) -> [PASS][139] +4 other tests pass
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-dg2-434/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-435/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [SKIP][140] ([Intel XE#1435]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][142] ([Intel XE#4459]) -> [PASS][143] +1 other test pass
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
- shard-lnl: [FAIL][144] ([Intel XE#5018]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
* igt@xe_pm@s4-basic:
- shard-adlp: [ABORT][146] ([Intel XE#1794]) -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-adlp-9/igt@xe_pm@s4-basic.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-adlp-4/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [ABORT][148] ([Intel XE#1794]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-5/igt@xe_pm@s4-d3hot-basic-exec.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][150] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345]) -> [INCOMPLETE][151] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][152] ([Intel XE#1178]) -> [SKIP][153] ([Intel XE#2341])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-8/igt@kms_content_protection@atomic.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][154] ([Intel XE#2341]) -> [FAIL][155] ([Intel XE#1178]) +1 other test fail
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-6/igt@kms_content_protection@srm.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-bmg: [SKIP][156] ([Intel XE#2341]) -> [FAIL][157] ([Intel XE#1188])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-5/igt@kms_content_protection@uevent.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-4/igt@kms_content_protection@uevent.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-lnl: [FAIL][158] ([Intel XE#3149] / [Intel XE#886]) -> [FAIL][159] ([Intel XE#886])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][160] ([Intel XE#2312]) -> [SKIP][161] ([Intel XE#2311]) +19 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][162] ([Intel XE#2312]) -> [SKIP][163] ([Intel XE#4141]) +6 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][164] ([Intel XE#4141]) -> [SKIP][165] ([Intel XE#2312]) +9 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][166] ([Intel XE#2311]) -> [SKIP][167] ([Intel XE#2312]) +17 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][168] ([Intel XE#2312]) -> [SKIP][169] ([Intel XE#2313]) +21 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][170] ([Intel XE#2313]) -> [SKIP][171] ([Intel XE#2312]) +17 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][172] ([Intel XE#5021]) -> [SKIP][173] ([Intel XE#4596])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-y.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#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#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4741]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4741
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[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#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5249
[Intel XE#5301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5301
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* Linux: xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3 -> xe-pw-150508v1
IGT_8418: 8418
xe-3275-74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3: 74c4708b7ac3e4bcecaa618e9f16c0b5c3e75ab3
xe-pw-150508v1: 150508v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150508v1/index.html
[-- Attachment #2: Type: text/html, Size: 58805 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-06-19 23:23 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-19 10:28 [PATCH 0/2] Changes in hdcp2_stream_encryption Suraj Kandpal
2025-06-19 10:28 ` [PATCH 1/2] drm/i915/hdcp: Do not use inline intel_de_read Suraj Kandpal
2025-06-19 10:59 ` Jani Nikula
2025-06-19 11:36 ` Kandpal, Suraj
2025-06-19 10:28 ` [PATCH 2/2] drm/i915/hdcp: Use HDCP2_STREAM_STATUS instead of HDCP2_AUTH_STREAM Suraj Kandpal
2025-06-19 10:36 ` ✓ CI.KUnit: success for Changes in hdcp2_stream_encryption Patchwork
2025-06-19 11:44 ` ✓ Xe.CI.BAT: " Patchwork
2025-06-19 23:23 ` ✗ Xe.CI.Full: failure " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2025-06-19 11:33 [PATCH 0/2] " Suraj Kandpal
2025-06-19 11:33 ` [PATCH 1/2] drm/i915/hdcp: Do not use inline intel_de_read Suraj Kandpal
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.