* [PATCH v3] drm/i915/display: Use the recomended min_hblank values
@ 2025-06-25 5:34 Arun R Murthy
2025-06-25 6:09 ` ✓ CI.KUnit: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Arun R Murthy @ 2025-06-25 5:34 UTC (permalink / raw)
To: jani.nikula, Imre Deak, intel-gfx, intel-xe; +Cc: Arun R Murthy
Use recommended values as per wa_14021694213 to compare with the
calculated value and choose minimum of them.
v2: corrected checkpatch warning and retain the restriction for
min_hblank (Jani)
v3: use calculated value to compare with recomended value and choose
minimum of them (Imre)
Bspec: 74379
Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
---
Changes in v3:
- EDITME: describe what is new in this series revision.
- EDITME: use bulletpoints and terse descriptions.
- Link to v2: https://lore.kernel.org/r/20250624-min_hblank-v2-1-9110a9342d8c@intel.com
Changes in v2:
- EDITME: describe what is new in this series revision.
- EDITME: use bulletpoints and terse descriptions.
- Link to v1: https://lore.kernel.org/r/20250624-min_hblank-v1-1-5c100e4a8b05@intel.com
---
drivers/gpu/drm/i915/display/intel_dp.c | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index f48912f308df7fd26c9d089e8f1bd096bfc8df95..c55315fb74734fded40695bae40dd19f71a9786f 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -3175,7 +3175,22 @@ int intel_dp_compute_min_hblank(struct intel_crtc_state *crtc_state,
*/
min_hblank = min_hblank - 2;
- min_hblank = min(10, min_hblank);
+ /*
+ * min_hblank formula is undergoing a change, to avoid underrun use the
+ * recomended value in spec to compare with the calculated one and use the
+ * minimum value
+ */
+ if (intel_dp_is_uhbr(crtc_state)) {
+ if (crtc_state->dsc.compression_enable &&
+ crtc_state->output_format == INTEL_OUTPUT_FORMAT_YCBCR420 &&
+ crtc_state->pipe_bpp == 18)
+ min_hblank = min(2, min_hblank);
+ else
+ min_hblank = min(3, min_hblank);
+ } else {
+ min_hblank = min(10, min_hblank);
+ }
+
crtc_state->min_hblank = min_hblank;
return 0;
---
base-commit: da56936fad6f5e1d5f0cef8b50277bfb071eefe7
change-id: 20250624-min_hblank-8af8d2626ff8
Best regards,
--
Arun R Murthy <arun.r.murthy@intel.com>
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ CI.KUnit: success for drm/i915/display: Use the recomended min_hblank values
2025-06-25 5:34 [PATCH v3] drm/i915/display: Use the recomended min_hblank values Arun R Murthy
@ 2025-06-25 6:09 ` Patchwork
2025-06-25 6:46 ` ✓ Xe.CI.BAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-06-25 6:09 UTC (permalink / raw)
To: Arun R Murthy; +Cc: intel-xe
== Series Details ==
Series: drm/i915/display: Use the recomended min_hblank values
URL : https://patchwork.freedesktop.org/series/150727/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[06:07:59] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:08:03] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[06:08:30] Starting KUnit Kernel (1/1)...
[06:08:30] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:08:30] ================== guc_buf (11 subtests) ===================
[06:08:30] [PASSED] test_smallest
[06:08:30] [PASSED] test_largest
[06:08:30] [PASSED] test_granular
[06:08:30] [PASSED] test_unique
[06:08:30] [PASSED] test_overlap
[06:08:30] [PASSED] test_reusable
[06:08:30] [PASSED] test_too_big
[06:08:30] [PASSED] test_flush
[06:08:30] [PASSED] test_lookup
[06:08:30] [PASSED] test_data
[06:08:30] [PASSED] test_class
[06:08:30] ===================== [PASSED] guc_buf =====================
[06:08:30] =================== guc_dbm (7 subtests) ===================
[06:08:30] [PASSED] test_empty
[06:08:30] [PASSED] test_default
[06:08:30] ======================== test_size ========================
[06:08:30] [PASSED] 4
[06:08:30] [PASSED] 8
[06:08:30] [PASSED] 32
[06:08:30] [PASSED] 256
[06:08:30] ==================== [PASSED] test_size ====================
[06:08:30] ======================= test_reuse ========================
[06:08:30] [PASSED] 4
[06:08:30] [PASSED] 8
[06:08:30] [PASSED] 32
[06:08:30] [PASSED] 256
[06:08:30] =================== [PASSED] test_reuse ====================
[06:08:30] =================== test_range_overlap ====================
[06:08:30] [PASSED] 4
[06:08:30] [PASSED] 8
[06:08:30] [PASSED] 32
[06:08:30] [PASSED] 256
[06:08:30] =============== [PASSED] test_range_overlap ================
[06:08:30] =================== test_range_compact ====================
[06:08:30] [PASSED] 4
[06:08:30] [PASSED] 8
[06:08:30] [PASSED] 32
[06:08:30] [PASSED] 256
[06:08:30] =============== [PASSED] test_range_compact ================
[06:08:30] ==================== test_range_spare =====================
[06:08:30] [PASSED] 4
[06:08:30] [PASSED] 8
[06:08:30] [PASSED] 32
[06:08:30] [PASSED] 256
[06:08:30] ================ [PASSED] test_range_spare =================
[06:08:30] ===================== [PASSED] guc_dbm =====================
[06:08:30] =================== guc_idm (6 subtests) ===================
[06:08:30] [PASSED] bad_init
[06:08:30] [PASSED] no_init
[06:08:30] [PASSED] init_fini
[06:08:30] [PASSED] check_used
[06:08:30] [PASSED] check_quota
[06:08:30] [PASSED] check_all
[06:08:30] ===================== [PASSED] guc_idm =====================
[06:08:30] ================== no_relay (3 subtests) ===================
[06:08:30] [PASSED] xe_drops_guc2pf_if_not_ready
[06:08:30] [PASSED] xe_drops_guc2vf_if_not_ready
[06:08:30] [PASSED] xe_rejects_send_if_not_ready
[06:08:30] ==================== [PASSED] no_relay =====================
[06:08:30] ================== pf_relay (14 subtests) ==================
[06:08:30] [PASSED] pf_rejects_guc2pf_too_short
[06:08:30] [PASSED] pf_rejects_guc2pf_too_long
[06:08:30] [PASSED] pf_rejects_guc2pf_no_payload
[06:08:30] [PASSED] pf_fails_no_payload
[06:08:30] [PASSED] pf_fails_bad_origin
[06:08:30] [PASSED] pf_fails_bad_type
[06:08:30] [PASSED] pf_txn_reports_error
[06:08:30] [PASSED] pf_txn_sends_pf2guc
[06:08:30] [PASSED] pf_sends_pf2guc
[06:08:30] [SKIPPED] pf_loopback_nop
[06:08:30] [SKIPPED] pf_loopback_echo
[06:08:30] [SKIPPED] pf_loopback_fail
[06:08:30] [SKIPPED] pf_loopback_busy
[06:08:30] [SKIPPED] pf_loopback_retry
[06:08:30] ==================== [PASSED] pf_relay =====================
[06:08:30] ================== vf_relay (3 subtests) ===================
[06:08:30] [PASSED] vf_rejects_guc2vf_too_short
[06:08:30] [PASSED] vf_rejects_guc2vf_too_long
[06:08:30] [PASSED] vf_rejects_guc2vf_no_payload
[06:08:30] ==================== [PASSED] vf_relay =====================
[06:08:30] ================= pf_service (11 subtests) =================
[06:08:30] [PASSED] pf_negotiate_any
[06:08:30] [PASSED] pf_negotiate_base_match
[06:08:30] [PASSED] pf_negotiate_base_newer
[06:08:30] [PASSED] pf_negotiate_base_next
[06:08:30] [SKIPPED] pf_negotiate_base_older
[06:08:30] [PASSED] pf_negotiate_base_prev
[06:08:30] [PASSED] pf_negotiate_latest_match
[06:08:30] [PASSED] pf_negotiate_latest_newer
[06:08:30] [PASSED] pf_negotiate_latest_next
[06:08:30] [SKIPPED] pf_negotiate_latest_older
[06:08:30] [SKIPPED] pf_negotiate_latest_prev
[06:08:30] =================== [PASSED] pf_service ====================
[06:08:30] ===================== lmtt (1 subtest) =====================
[06:08:30] ======================== test_ops =========================
[06:08:30] [PASSED] 2-level
[06:08:30] [PASSED] multi-level
[06:08:30] ==================== [PASSED] test_ops =====================
[06:08:30] ====================== [PASSED] lmtt =======================
[06:08:30] =================== xe_mocs (2 subtests) ===================
[06:08:30] ================ xe_live_mocs_kernel_kunit ================
[06:08:30] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[06:08:30] ================ xe_live_mocs_reset_kunit =================
[06:08:30] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[06:08:30] ==================== [SKIPPED] xe_mocs =====================
[06:08:30] ================= xe_migrate (2 subtests) ==================
[06:08:30] ================= xe_migrate_sanity_kunit =================
[06:08:30] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[06:08:30] ================== xe_validate_ccs_kunit ==================
[06:08:30] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[06:08:30] =================== [SKIPPED] xe_migrate ===================
[06:08:30] ================== xe_dma_buf (1 subtest) ==================
[06:08:30] ==================== xe_dma_buf_kunit =====================
[06:08:30] ================ [SKIPPED] xe_dma_buf_kunit ================
[06:08:30] =================== [SKIPPED] xe_dma_buf ===================
[06:08:30] ================= xe_bo_shrink (1 subtest) =================
[06:08:30] =================== xe_bo_shrink_kunit ====================
[06:08:30] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[06:08:30] ================== [SKIPPED] xe_bo_shrink ==================
[06:08:30] ==================== xe_bo (2 subtests) ====================
[06:08:30] ================== xe_ccs_migrate_kunit ===================
[06:08:30] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[06:08:30] ==================== xe_bo_evict_kunit ====================
[06:08:30] =============== [SKIPPED] xe_bo_evict_kunit ================
[06:08:30] ===================== [SKIPPED] xe_bo ======================
[06:08:30] ==================== args (11 subtests) ====================
[06:08:30] [PASSED] count_args_test
[06:08:30] [PASSED] call_args_example
[06:08:30] [PASSED] call_args_test
[06:08:30] [PASSED] drop_first_arg_example
[06:08:30] [PASSED] drop_first_arg_test
[06:08:30] [PASSED] first_arg_example
[06:08:30] [PASSED] first_arg_test
[06:08:30] [PASSED] last_arg_example
[06:08:30] [PASSED] last_arg_test
[06:08:30] [PASSED] pick_arg_example
[06:08:30] [PASSED] sep_comma_example
[06:08:30] ====================== [PASSED] args =======================
[06:08:30] =================== xe_pci (2 subtests) ====================
[06:08:30] ==================== check_graphics_ip ====================
[06:08:30] [PASSED] 12.70 Xe_LPG
[06:08:30] [PASSED] 12.71 Xe_LPG
[06:08:30] [PASSED] 12.74 Xe_LPG+
[06:08:30] [PASSED] 20.01 Xe2_HPG
[06:08:30] [PASSED] 20.02 Xe2_HPG
[06:08:30] [PASSED] 20.04 Xe2_LPG
[06:08:30] [PASSED] 30.00 Xe3_LPG
[06:08:30] [PASSED] 30.01 Xe3_LPG
[06:08:30] [PASSED] 30.03 Xe3_LPG
[06:08:30] ================ [PASSED] check_graphics_ip ================
[06:08:30] ===================== check_media_ip ======================
[06:08:30] [PASSED] 13.00 Xe_LPM+
[06:08:30] [PASSED] 13.01 Xe2_HPM
[06:08:30] [PASSED] 20.00 Xe2_LPM
[06:08:30] [PASSED] 30.00 Xe3_LPM
[06:08:30] [PASSED] 30.02 Xe3_LPM
stty: 'standard input': Inappropriate ioctl for device
[06:08:30] ================= [PASSED] check_media_ip ==================
[06:08:30] ===================== [PASSED] xe_pci ======================
[06:08:30] =================== xe_rtp (2 subtests) ====================
[06:08:30] =============== xe_rtp_process_to_sr_tests ================
[06:08:30] [PASSED] coalesce-same-reg
[06:08:30] [PASSED] no-match-no-add
[06:08:30] [PASSED] match-or
[06:08:30] [PASSED] match-or-xfail
[06:08:30] [PASSED] no-match-no-add-multiple-rules
[06:08:30] [PASSED] two-regs-two-entries
[06:08:30] [PASSED] clr-one-set-other
[06:08:30] [PASSED] set-field
[06:08:30] [PASSED] conflict-duplicate
[06:08:30] [PASSED] conflict-not-disjoint
[06:08:30] [PASSED] conflict-reg-type
[06:08:30] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[06:08:30] ================== xe_rtp_process_tests ===================
[06:08:30] [PASSED] active1
[06:08:30] [PASSED] active2
[06:08:30] [PASSED] active-inactive
[06:08:30] [PASSED] inactive-active
[06:08:30] [PASSED] inactive-1st_or_active-inactive
[06:08:30] [PASSED] inactive-2nd_or_active-inactive
[06:08:30] [PASSED] inactive-last_or_active-inactive
[06:08:30] [PASSED] inactive-no_or_active-inactive
[06:08:30] ============== [PASSED] xe_rtp_process_tests ===============
[06:08:30] ===================== [PASSED] xe_rtp ======================
[06:08:30] ==================== xe_wa (1 subtest) =====================
[06:08:30] ======================== xe_wa_gt =========================
[06:08:30] [PASSED] TIGERLAKE (B0)
[06:08:30] [PASSED] DG1 (A0)
[06:08:30] [PASSED] DG1 (B0)
[06:08:30] [PASSED] ALDERLAKE_S (A0)
[06:08:30] [PASSED] ALDERLAKE_S (B0)
[06:08:30] [PASSED] ALDERLAKE_S (C0)
[06:08:30] [PASSED] ALDERLAKE_S (D0)
[06:08:30] [PASSED] ALDERLAKE_P (A0)
[06:08:30] [PASSED] ALDERLAKE_P (B0)
[06:08:30] [PASSED] ALDERLAKE_P (C0)
[06:08:30] [PASSED] ALDERLAKE_S_RPLS (D0)
[06:08:30] [PASSED] ALDERLAKE_P_RPLU (E0)
[06:08:30] [PASSED] DG2_G10 (C0)
[06:08:30] [PASSED] DG2_G11 (B1)
[06:08:30] [PASSED] DG2_G12 (A1)
[06:08:30] [PASSED] METEORLAKE (g:A0, m:A0)
[06:08:30] [PASSED] METEORLAKE (g:A0, m:A0)
[06:08:30] [PASSED] METEORLAKE (g:A0, m:A0)
[06:08:30] [PASSED] LUNARLAKE (g:A0, m:A0)
[06:08:30] [PASSED] LUNARLAKE (g:B0, m:A0)
[06:08:30] [PASSED] BATTLEMAGE (g:A0, m:A1)
[06:08:30] ==================== [PASSED] xe_wa_gt =====================
[06:08:30] ====================== [PASSED] xe_wa ======================
[06:08:30] ============================================================
[06:08:30] Testing complete. Ran 145 tests: passed: 129, skipped: 16
[06:08:30] Elapsed time: 31.142s total, 4.056s configuring, 26.769s building, 0.289s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[06:08:30] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:08:32] 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
[06:08:53] Starting KUnit Kernel (1/1)...
[06:08:53] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:08:53] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[06:08:53] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[06:08:53] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[06:08:53] =========== drm_validate_clone_mode (2 subtests) ===========
[06:08:53] ============== drm_test_check_in_clone_mode ===============
[06:08:53] [PASSED] in_clone_mode
[06:08:53] [PASSED] not_in_clone_mode
[06:08:53] ========== [PASSED] drm_test_check_in_clone_mode ===========
[06:08:53] =============== drm_test_check_valid_clones ===============
[06:08:53] [PASSED] not_in_clone_mode
[06:08:53] [PASSED] valid_clone
[06:08:53] [PASSED] invalid_clone
[06:08:53] =========== [PASSED] drm_test_check_valid_clones ===========
[06:08:53] ============= [PASSED] drm_validate_clone_mode =============
[06:08:53] ============= drm_validate_modeset (1 subtest) =============
[06:08:53] [PASSED] drm_test_check_connector_changed_modeset
[06:08:53] ============== [PASSED] drm_validate_modeset ===============
[06:08:53] ====== drm_test_bridge_get_current_state (2 subtests) ======
[06:08:53] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[06:08:53] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[06:08:53] ======== [PASSED] drm_test_bridge_get_current_state ========
[06:08:53] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[06:08:53] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[06:08:53] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[06:08:53] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[06:08:53] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[06:08:53] ============== drm_bridge_alloc (2 subtests) ===============
[06:08:53] [PASSED] drm_test_drm_bridge_alloc_basic
[06:08:53] [PASSED] drm_test_drm_bridge_alloc_get_put
[06:08:53] ================ [PASSED] drm_bridge_alloc =================
[06:08:53] ================== drm_buddy (7 subtests) ==================
[06:08:53] [PASSED] drm_test_buddy_alloc_limit
[06:08:53] [PASSED] drm_test_buddy_alloc_optimistic
[06:08:53] [PASSED] drm_test_buddy_alloc_pessimistic
[06:08:53] [PASSED] drm_test_buddy_alloc_pathological
[06:08:53] [PASSED] drm_test_buddy_alloc_contiguous
[06:08:53] [PASSED] drm_test_buddy_alloc_clear
[06:08:53] [PASSED] drm_test_buddy_alloc_range_bias
[06:08:53] ==================== [PASSED] drm_buddy ====================
[06:08:53] ============= drm_cmdline_parser (40 subtests) =============
[06:08:53] [PASSED] drm_test_cmdline_force_d_only
[06:08:53] [PASSED] drm_test_cmdline_force_D_only_dvi
[06:08:53] [PASSED] drm_test_cmdline_force_D_only_hdmi
[06:08:53] [PASSED] drm_test_cmdline_force_D_only_not_digital
[06:08:53] [PASSED] drm_test_cmdline_force_e_only
[06:08:53] [PASSED] drm_test_cmdline_res
[06:08:53] [PASSED] drm_test_cmdline_res_vesa
[06:08:53] [PASSED] drm_test_cmdline_res_vesa_rblank
[06:08:53] [PASSED] drm_test_cmdline_res_rblank
[06:08:53] [PASSED] drm_test_cmdline_res_bpp
[06:08:53] [PASSED] drm_test_cmdline_res_refresh
[06:08:53] [PASSED] drm_test_cmdline_res_bpp_refresh
[06:08:53] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[06:08:53] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[06:08:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[06:08:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[06:08:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[06:08:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[06:08:53] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[06:08:53] [PASSED] drm_test_cmdline_res_margins_force_on
[06:08:53] [PASSED] drm_test_cmdline_res_vesa_margins
[06:08:53] [PASSED] drm_test_cmdline_name
[06:08:53] [PASSED] drm_test_cmdline_name_bpp
[06:08:53] [PASSED] drm_test_cmdline_name_option
[06:08:53] [PASSED] drm_test_cmdline_name_bpp_option
[06:08:53] [PASSED] drm_test_cmdline_rotate_0
[06:08:53] [PASSED] drm_test_cmdline_rotate_90
[06:08:53] [PASSED] drm_test_cmdline_rotate_180
[06:08:53] [PASSED] drm_test_cmdline_rotate_270
[06:08:53] [PASSED] drm_test_cmdline_hmirror
[06:08:53] [PASSED] drm_test_cmdline_vmirror
[06:08:53] [PASSED] drm_test_cmdline_margin_options
[06:08:53] [PASSED] drm_test_cmdline_multiple_options
[06:08:53] [PASSED] drm_test_cmdline_bpp_extra_and_option
[06:08:53] [PASSED] drm_test_cmdline_extra_and_option
[06:08:53] [PASSED] drm_test_cmdline_freestanding_options
[06:08:53] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[06:08:53] [PASSED] drm_test_cmdline_panel_orientation
[06:08:53] ================ drm_test_cmdline_invalid =================
[06:08:53] [PASSED] margin_only
[06:08:53] [PASSED] interlace_only
[06:08:53] [PASSED] res_missing_x
[06:08:53] [PASSED] res_missing_y
[06:08:53] [PASSED] res_bad_y
[06:08:53] [PASSED] res_missing_y_bpp
[06:08:53] [PASSED] res_bad_bpp
[06:08:53] [PASSED] res_bad_refresh
[06:08:53] [PASSED] res_bpp_refresh_force_on_off
[06:08:53] [PASSED] res_invalid_mode
[06:08:53] [PASSED] res_bpp_wrong_place_mode
[06:08:53] [PASSED] name_bpp_refresh
[06:08:53] [PASSED] name_refresh
[06:08:53] [PASSED] name_refresh_wrong_mode
[06:08:53] [PASSED] name_refresh_invalid_mode
[06:08:53] [PASSED] rotate_multiple
[06:08:53] [PASSED] rotate_invalid_val
[06:08:53] [PASSED] rotate_truncated
[06:08:53] [PASSED] invalid_option
[06:08:53] [PASSED] invalid_tv_option
[06:08:53] [PASSED] truncated_tv_option
[06:08:53] ============ [PASSED] drm_test_cmdline_invalid =============
[06:08:53] =============== drm_test_cmdline_tv_options ===============
[06:08:53] [PASSED] NTSC
[06:08:53] [PASSED] NTSC_443
[06:08:53] [PASSED] NTSC_J
[06:08:53] [PASSED] PAL
[06:08:53] [PASSED] PAL_M
[06:08:53] [PASSED] PAL_N
[06:08:53] [PASSED] SECAM
[06:08:53] [PASSED] MONO_525
[06:08:53] [PASSED] MONO_625
[06:08:53] =========== [PASSED] drm_test_cmdline_tv_options ===========
[06:08:53] =============== [PASSED] drm_cmdline_parser ================
[06:08:53] ========== drmm_connector_hdmi_init (20 subtests) ==========
[06:08:53] [PASSED] drm_test_connector_hdmi_init_valid
[06:08:53] [PASSED] drm_test_connector_hdmi_init_bpc_8
[06:08:53] [PASSED] drm_test_connector_hdmi_init_bpc_10
[06:08:53] [PASSED] drm_test_connector_hdmi_init_bpc_12
[06:08:53] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[06:08:53] [PASSED] drm_test_connector_hdmi_init_bpc_null
[06:08:53] [PASSED] drm_test_connector_hdmi_init_formats_empty
[06:08:53] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[06:08:53] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[06:08:53] [PASSED] supported_formats=0x9 yuv420_allowed=1
[06:08:53] [PASSED] supported_formats=0x9 yuv420_allowed=0
[06:08:53] [PASSED] supported_formats=0x3 yuv420_allowed=1
[06:08:53] [PASSED] supported_formats=0x3 yuv420_allowed=0
[06:08:53] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[06:08:53] [PASSED] drm_test_connector_hdmi_init_null_ddc
[06:08:53] [PASSED] drm_test_connector_hdmi_init_null_product
[06:08:53] [PASSED] drm_test_connector_hdmi_init_null_vendor
[06:08:53] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[06:08:53] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[06:08:53] [PASSED] drm_test_connector_hdmi_init_product_valid
[06:08:53] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[06:08:53] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[06:08:53] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[06:08:53] ========= drm_test_connector_hdmi_init_type_valid =========
[06:08:53] [PASSED] HDMI-A
[06:08:53] [PASSED] HDMI-B
[06:08:53] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[06:08:53] ======== drm_test_connector_hdmi_init_type_invalid ========
[06:08:53] [PASSED] Unknown
[06:08:53] [PASSED] VGA
[06:08:53] [PASSED] DVI-I
[06:08:53] [PASSED] DVI-D
[06:08:53] [PASSED] DVI-A
[06:08:53] [PASSED] Composite
[06:08:53] [PASSED] SVIDEO
[06:08:53] [PASSED] LVDS
[06:08:53] [PASSED] Component
[06:08:53] [PASSED] DIN
[06:08:53] [PASSED] DP
[06:08:53] [PASSED] TV
[06:08:53] [PASSED] eDP
[06:08:53] [PASSED] Virtual
[06:08:53] [PASSED] DSI
[06:08:53] [PASSED] DPI
[06:08:53] [PASSED] Writeback
[06:08:53] [PASSED] SPI
[06:08:53] [PASSED] USB
[06:08:53] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[06:08:53] ============ [PASSED] drmm_connector_hdmi_init =============
[06:08:53] ============= drmm_connector_init (3 subtests) =============
[06:08:53] [PASSED] drm_test_drmm_connector_init
[06:08:53] [PASSED] drm_test_drmm_connector_init_null_ddc
[06:08:53] ========= drm_test_drmm_connector_init_type_valid =========
[06:08:53] [PASSED] Unknown
[06:08:53] [PASSED] VGA
[06:08:53] [PASSED] DVI-I
[06:08:53] [PASSED] DVI-D
[06:08:53] [PASSED] DVI-A
[06:08:53] [PASSED] Composite
[06:08:53] [PASSED] SVIDEO
[06:08:53] [PASSED] LVDS
[06:08:53] [PASSED] Component
[06:08:53] [PASSED] DIN
[06:08:53] [PASSED] DP
[06:08:53] [PASSED] HDMI-A
[06:08:53] [PASSED] HDMI-B
[06:08:53] [PASSED] TV
[06:08:53] [PASSED] eDP
[06:08:53] [PASSED] Virtual
[06:08:53] [PASSED] DSI
[06:08:53] [PASSED] DPI
[06:08:53] [PASSED] Writeback
[06:08:53] [PASSED] SPI
[06:08:53] [PASSED] USB
[06:08:53] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[06:08:53] =============== [PASSED] drmm_connector_init ===============
[06:08:53] ========= drm_connector_dynamic_init (6 subtests) ==========
[06:08:53] [PASSED] drm_test_drm_connector_dynamic_init
[06:08:53] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[06:08:53] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[06:08:53] [PASSED] drm_test_drm_connector_dynamic_init_properties
[06:08:53] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[06:08:53] [PASSED] Unknown
[06:08:53] [PASSED] VGA
[06:08:53] [PASSED] DVI-I
[06:08:53] [PASSED] DVI-D
[06:08:53] [PASSED] DVI-A
[06:08:53] [PASSED] Composite
[06:08:53] [PASSED] SVIDEO
[06:08:53] [PASSED] LVDS
[06:08:53] [PASSED] Component
[06:08:53] [PASSED] DIN
[06:08:53] [PASSED] DP
[06:08:53] [PASSED] HDMI-A
[06:08:53] [PASSED] HDMI-B
[06:08:53] [PASSED] TV
[06:08:53] [PASSED] eDP
[06:08:53] [PASSED] Virtual
[06:08:53] [PASSED] DSI
[06:08:53] [PASSED] DPI
[06:08:53] [PASSED] Writeback
[06:08:53] [PASSED] SPI
[06:08:53] [PASSED] USB
[06:08:53] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[06:08:53] ======== drm_test_drm_connector_dynamic_init_name =========
[06:08:53] [PASSED] Unknown
[06:08:53] [PASSED] VGA
[06:08:53] [PASSED] DVI-I
[06:08:53] [PASSED] DVI-D
[06:08:53] [PASSED] DVI-A
[06:08:53] [PASSED] Composite
[06:08:53] [PASSED] SVIDEO
[06:08:53] [PASSED] LVDS
[06:08:53] [PASSED] Component
[06:08:53] [PASSED] DIN
[06:08:53] [PASSED] DP
[06:08:53] [PASSED] HDMI-A
[06:08:53] [PASSED] HDMI-B
[06:08:53] [PASSED] TV
[06:08:53] [PASSED] eDP
[06:08:53] [PASSED] Virtual
[06:08:53] [PASSED] DSI
[06:08:53] [PASSED] DPI
[06:08:53] [PASSED] Writeback
[06:08:53] [PASSED] SPI
[06:08:53] [PASSED] USB
[06:08:53] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[06:08:53] =========== [PASSED] drm_connector_dynamic_init ============
[06:08:53] ==== drm_connector_dynamic_register_early (4 subtests) =====
[06:08:53] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[06:08:53] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[06:08:53] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[06:08:53] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[06:08:53] ====== [PASSED] drm_connector_dynamic_register_early =======
[06:08:53] ======= drm_connector_dynamic_register (7 subtests) ========
[06:08:53] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[06:08:53] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[06:08:53] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[06:08:53] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[06:08:53] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[06:08:53] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[06:08:53] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[06:08:53] ========= [PASSED] drm_connector_dynamic_register ==========
[06:08:53] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[06:08:53] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[06:08:53] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[06:08:53] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[06:08:53] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[06:08:53] ========== drm_test_get_tv_mode_from_name_valid ===========
[06:08:53] [PASSED] NTSC
[06:08:53] [PASSED] NTSC-443
[06:08:53] [PASSED] NTSC-J
[06:08:53] [PASSED] PAL
[06:08:53] [PASSED] PAL-M
[06:08:53] [PASSED] PAL-N
[06:08:53] [PASSED] SECAM
[06:08:53] [PASSED] Mono
[06:08:53] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[06:08:53] [PASSED] drm_test_get_tv_mode_from_name_truncated
[06:08:53] ============ [PASSED] drm_get_tv_mode_from_name ============
[06:08:53] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[06:08:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[06:08:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[06:08:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[06:08:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[06:08:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[06:08:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[06:08:53] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[06:08:53] [PASSED] VIC 96
[06:08:53] [PASSED] VIC 97
[06:08:53] [PASSED] VIC 101
[06:08:53] [PASSED] VIC 102
[06:08:53] [PASSED] VIC 106
[06:08:53] [PASSED] VIC 107
[06:08:53] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[06:08:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[06:08:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[06:08:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[06:08:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[06:08:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[06:08:53] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[06:08:53] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[06:08:53] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[06:08:53] [PASSED] Automatic
[06:08:53] [PASSED] Full
[06:08:53] [PASSED] Limited 16:235
[06:08:53] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[06:08:53] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[06:08:53] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[06:08:53] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[06:08:53] === drm_test_drm_hdmi_connector_get_output_format_name ====
[06:08:53] [PASSED] RGB
[06:08:53] [PASSED] YUV 4:2:0
[06:08:53] [PASSED] YUV 4:2:2
[06:08:53] [PASSED] YUV 4:4:4
[06:08:53] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[06:08:53] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[06:08:53] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[06:08:53] ============= drm_damage_helper (21 subtests) ==============
[06:08:53] [PASSED] drm_test_damage_iter_no_damage
[06:08:53] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[06:08:53] [PASSED] drm_test_damage_iter_no_damage_src_moved
[06:08:53] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[06:08:53] [PASSED] drm_test_damage_iter_no_damage_not_visible
[06:08:53] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[06:08:53] [PASSED] drm_test_damage_iter_no_damage_no_fb
[06:08:53] [PASSED] drm_test_damage_iter_simple_damage
[06:08:53] [PASSED] drm_test_damage_iter_single_damage
[06:08:53] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[06:08:53] [PASSED] drm_test_damage_iter_single_damage_outside_src
[06:08:53] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[06:08:53] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[06:08:53] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[06:08:53] [PASSED] drm_test_damage_iter_single_damage_src_moved
[06:08:53] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[06:08:53] [PASSED] drm_test_damage_iter_damage
[06:08:53] [PASSED] drm_test_damage_iter_damage_one_intersect
[06:08:53] [PASSED] drm_test_damage_iter_damage_one_outside
[06:08:53] [PASSED] drm_test_damage_iter_damage_src_moved
[06:08:53] [PASSED] drm_test_damage_iter_damage_not_visible
[06:08:53] ================ [PASSED] drm_damage_helper ================
[06:08:53] ============== drm_dp_mst_helper (3 subtests) ==============
[06:08:53] ============== drm_test_dp_mst_calc_pbn_mode ==============
[06:08:53] [PASSED] Clock 154000 BPP 30 DSC disabled
[06:08:53] [PASSED] Clock 234000 BPP 30 DSC disabled
[06:08:53] [PASSED] Clock 297000 BPP 24 DSC disabled
[06:08:53] [PASSED] Clock 332880 BPP 24 DSC enabled
[06:08:53] [PASSED] Clock 324540 BPP 24 DSC enabled
[06:08:53] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[06:08:53] ============== drm_test_dp_mst_calc_pbn_div ===============
[06:08:53] [PASSED] Link rate 2000000 lane count 4
[06:08:53] [PASSED] Link rate 2000000 lane count 2
[06:08:53] [PASSED] Link rate 2000000 lane count 1
[06:08:53] [PASSED] Link rate 1350000 lane count 4
[06:08:53] [PASSED] Link rate 1350000 lane count 2
[06:08:53] [PASSED] Link rate 1350000 lane count 1
[06:08:53] [PASSED] Link rate 1000000 lane count 4
[06:08:53] [PASSED] Link rate 1000000 lane count 2
[06:08:53] [PASSED] Link rate 1000000 lane count 1
[06:08:53] [PASSED] Link rate 810000 lane count 4
[06:08:53] [PASSED] Link rate 810000 lane count 2
[06:08:53] [PASSED] Link rate 810000 lane count 1
[06:08:53] [PASSED] Link rate 540000 lane count 4
[06:08:53] [PASSED] Link rate 540000 lane count 2
[06:08:53] [PASSED] Link rate 540000 lane count 1
[06:08:53] [PASSED] Link rate 270000 lane count 4
[06:08:53] [PASSED] Link rate 270000 lane count 2
[06:08:53] [PASSED] Link rate 270000 lane count 1
[06:08:53] [PASSED] Link rate 162000 lane count 4
[06:08:53] [PASSED] Link rate 162000 lane count 2
[06:08:53] [PASSED] Link rate 162000 lane count 1
[06:08:53] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[06:08:53] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[06:08:53] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[06:08:53] [PASSED] DP_POWER_UP_PHY with port number
[06:08:53] [PASSED] DP_POWER_DOWN_PHY with port number
[06:08:53] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[06:08:53] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[06:08:53] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[06:08:53] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[06:08:53] [PASSED] DP_QUERY_PAYLOAD with port number
[06:08:53] [PASSED] DP_QUERY_PAYLOAD with VCPI
[06:08:53] [PASSED] DP_REMOTE_DPCD_READ with port number
[06:08:53] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[06:08:53] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[06:08:53] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[06:08:53] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[06:08:53] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[06:08:53] [PASSED] DP_REMOTE_I2C_READ with port number
[06:08:53] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[06:08:53] [PASSED] DP_REMOTE_I2C_READ with transactions array
[06:08:53] [PASSED] DP_REMOTE_I2C_WRITE with port number
[06:08:53] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[06:08:53] [PASSED] DP_REMOTE_I2C_WRITE with data array
[06:08:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[06:08:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[06:08:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[06:08:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[06:08:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[06:08:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[06:08:53] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[06:08:53] ================ [PASSED] drm_dp_mst_helper ================
[06:08:53] ================== drm_exec (7 subtests) ===================
[06:08:53] [PASSED] sanitycheck
[06:08:53] [PASSED] test_lock
[06:08:53] [PASSED] test_lock_unlock
[06:08:53] [PASSED] test_duplicates
[06:08:53] [PASSED] test_prepare
[06:08:53] [PASSED] test_prepare_array
[06:08:53] [PASSED] test_multiple_loops
[06:08:53] ==================== [PASSED] drm_exec =====================
[06:08:53] =========== drm_format_helper_test (17 subtests) ===========
[06:08:53] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[06:08:53] [PASSED] single_pixel_source_buffer
[06:08:53] [PASSED] single_pixel_clip_rectangle
[06:08:53] [PASSED] well_known_colors
[06:08:53] [PASSED] destination_pitch
[06:08:53] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[06:08:53] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[06:08:53] [PASSED] single_pixel_source_buffer
[06:08:53] [PASSED] single_pixel_clip_rectangle
[06:08:53] [PASSED] well_known_colors
[06:08:53] [PASSED] destination_pitch
[06:08:53] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[06:08:53] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[06:08:53] [PASSED] single_pixel_source_buffer
[06:08:53] [PASSED] single_pixel_clip_rectangle
[06:08:53] [PASSED] well_known_colors
[06:08:53] [PASSED] destination_pitch
[06:08:53] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[06:08:53] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[06:08:53] [PASSED] single_pixel_source_buffer
[06:08:53] [PASSED] single_pixel_clip_rectangle
[06:08:53] [PASSED] well_known_colors
[06:08:53] [PASSED] destination_pitch
[06:08:53] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[06:08:53] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[06:08:53] [PASSED] single_pixel_source_buffer
[06:08:53] [PASSED] single_pixel_clip_rectangle
[06:08:53] [PASSED] well_known_colors
[06:08:53] [PASSED] destination_pitch
[06:08:53] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[06:08:53] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[06:08:53] [PASSED] single_pixel_source_buffer
[06:08:53] [PASSED] single_pixel_clip_rectangle
[06:08:53] [PASSED] well_known_colors
[06:08:53] [PASSED] destination_pitch
[06:08:53] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[06:08:53] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[06:08:53] [PASSED] single_pixel_source_buffer
[06:08:53] [PASSED] single_pixel_clip_rectangle
[06:08:53] [PASSED] well_known_colors
[06:08:53] [PASSED] destination_pitch
[06:08:53] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[06:08:53] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[06:08:53] [PASSED] single_pixel_source_buffer
[06:08:53] [PASSED] single_pixel_clip_rectangle
[06:08:53] [PASSED] well_known_colors
[06:08:53] [PASSED] destination_pitch
[06:08:53] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[06:08:53] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[06:08:53] [PASSED] single_pixel_source_buffer
[06:08:53] [PASSED] single_pixel_clip_rectangle
[06:08:53] [PASSED] well_known_colors
[06:08:53] [PASSED] destination_pitch
[06:08:53] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[06:08:53] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[06:08:53] [PASSED] single_pixel_source_buffer
[06:08:53] [PASSED] single_pixel_clip_rectangle
[06:08:53] [PASSED] well_known_colors
[06:08:53] [PASSED] destination_pitch
[06:08:53] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[06:08:53] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[06:08:53] [PASSED] single_pixel_source_buffer
[06:08:53] [PASSED] single_pixel_clip_rectangle
[06:08:53] [PASSED] well_known_colors
[06:08:53] [PASSED] destination_pitch
[06:08:53] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[06:08:53] ============== drm_test_fb_xrgb8888_to_mono ===============
[06:08:53] [PASSED] single_pixel_source_buffer
[06:08:53] [PASSED] single_pixel_clip_rectangle
[06:08:53] [PASSED] well_known_colors
[06:08:53] [PASSED] destination_pitch
[06:08:53] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[06:08:53] ==================== drm_test_fb_swab =====================
[06:08:53] [PASSED] single_pixel_source_buffer
[06:08:53] [PASSED] single_pixel_clip_rectangle
[06:08:53] [PASSED] well_known_colors
[06:08:53] [PASSED] destination_pitch
[06:08:53] ================ [PASSED] drm_test_fb_swab =================
[06:08:53] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[06:08:53] [PASSED] single_pixel_source_buffer
[06:08:53] [PASSED] single_pixel_clip_rectangle
[06:08:53] [PASSED] well_known_colors
[06:08:53] [PASSED] destination_pitch
[06:08:53] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[06:08:53] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[06:08:53] [PASSED] single_pixel_source_buffer
[06:08:53] [PASSED] single_pixel_clip_rectangle
[06:08:53] [PASSED] well_known_colors
[06:08:53] [PASSED] destination_pitch
[06:08:53] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[06:08:53] ================= drm_test_fb_clip_offset =================
[06:08:53] [PASSED] pass through
[06:08:53] [PASSED] horizontal offset
[06:08:53] [PASSED] vertical offset
[06:08:53] [PASSED] horizontal and vertical offset
[06:08:53] [PASSED] horizontal offset (custom pitch)
[06:08:53] [PASSED] vertical offset (custom pitch)
[06:08:53] [PASSED] horizontal and vertical offset (custom pitch)
[06:08:53] ============= [PASSED] drm_test_fb_clip_offset =============
[06:08:53] =================== drm_test_fb_memcpy ====================
[06:08:53] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[06:08:53] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[06:08:53] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[06:08:53] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[06:08:53] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[06:08:53] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[06:08:53] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[06:08:53] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[06:08:53] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[06:08:53] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[06:08:53] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[06:08:53] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[06:08:53] =============== [PASSED] drm_test_fb_memcpy ================
[06:08:53] ============= [PASSED] drm_format_helper_test ==============
[06:08:53] ================= drm_format (18 subtests) =================
[06:08:53] [PASSED] drm_test_format_block_width_invalid
[06:08:53] [PASSED] drm_test_format_block_width_one_plane
[06:08:53] [PASSED] drm_test_format_block_width_two_plane
[06:08:53] [PASSED] drm_test_format_block_width_three_plane
[06:08:53] [PASSED] drm_test_format_block_width_tiled
[06:08:53] [PASSED] drm_test_format_block_height_invalid
[06:08:53] [PASSED] drm_test_format_block_height_one_plane
[06:08:53] [PASSED] drm_test_format_block_height_two_plane
[06:08:53] [PASSED] drm_test_format_block_height_three_plane
[06:08:53] [PASSED] drm_test_format_block_height_tiled
[06:08:53] [PASSED] drm_test_format_min_pitch_invalid
[06:08:53] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[06:08:53] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[06:08:53] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[06:08:53] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[06:08:53] [PASSED] drm_test_format_min_pitch_two_plane
[06:08:53] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[06:08:53] [PASSED] drm_test_format_min_pitch_tiled
[06:08:53] =================== [PASSED] drm_format ====================
[06:08:53] ============== drm_framebuffer (10 subtests) ===============
[06:08:53] ========== drm_test_framebuffer_check_src_coords ==========
[06:08:53] [PASSED] Success: source fits into fb
[06:08:53] [PASSED] Fail: overflowing fb with x-axis coordinate
[06:08:53] [PASSED] Fail: overflowing fb with y-axis coordinate
[06:08:53] [PASSED] Fail: overflowing fb with source width
[06:08:53] [PASSED] Fail: overflowing fb with source height
[06:08:53] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[06:08:53] [PASSED] drm_test_framebuffer_cleanup
[06:08:53] =============== drm_test_framebuffer_create ===============
[06:08:53] [PASSED] ABGR8888 normal sizes
[06:08:53] [PASSED] ABGR8888 max sizes
[06:08:53] [PASSED] ABGR8888 pitch greater than min required
[06:08:53] [PASSED] ABGR8888 pitch less than min required
[06:08:53] [PASSED] ABGR8888 Invalid width
[06:08:53] [PASSED] ABGR8888 Invalid buffer handle
[06:08:53] [PASSED] No pixel format
[06:08:53] [PASSED] ABGR8888 Width 0
[06:08:53] [PASSED] ABGR8888 Height 0
[06:08:53] [PASSED] ABGR8888 Out of bound height * pitch combination
[06:08:53] [PASSED] ABGR8888 Large buffer offset
[06:08:53] [PASSED] ABGR8888 Buffer offset for inexistent plane
[06:08:53] [PASSED] ABGR8888 Invalid flag
[06:08:53] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[06:08:53] [PASSED] ABGR8888 Valid buffer modifier
[06:08:53] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[06:08:53] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[06:08:53] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[06:08:53] [PASSED] NV12 Normal sizes
[06:08:53] [PASSED] NV12 Max sizes
[06:08:53] [PASSED] NV12 Invalid pitch
[06:08:53] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[06:08:53] [PASSED] NV12 different modifier per-plane
[06:08:53] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[06:08:53] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[06:08:53] [PASSED] NV12 Modifier for inexistent plane
[06:08:53] [PASSED] NV12 Handle for inexistent plane
[06:08:53] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[06:08:53] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[06:08:53] [PASSED] YVU420 Normal sizes
[06:08:53] [PASSED] YVU420 Max sizes
[06:08:53] [PASSED] YVU420 Invalid pitch
[06:08:53] [PASSED] YVU420 Different pitches
[06:08:53] [PASSED] YVU420 Different buffer offsets/pitches
[06:08:53] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[06:08:53] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[06:08:53] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[06:08:53] [PASSED] YVU420 Valid modifier
[06:08:53] [PASSED] YVU420 Different modifiers per plane
[06:08:53] [PASSED] YVU420 Modifier for inexistent plane
[06:08:53] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[06:08:53] [PASSED] X0L2 Normal sizes
[06:08:53] [PASSED] X0L2 Max sizes
[06:08:53] [PASSED] X0L2 Invalid pitch
[06:08:53] [PASSED] X0L2 Pitch greater than minimum required
[06:08:53] [PASSED] X0L2 Handle for inexistent plane
[06:08:53] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[06:08:53] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[06:08:53] [PASSED] X0L2 Valid modifier
[06:08:53] [PASSED] X0L2 Modifier for inexistent plane
[06:08:53] =========== [PASSED] drm_test_framebuffer_create ===========
[06:08:53] [PASSED] drm_test_framebuffer_free
[06:08:53] [PASSED] drm_test_framebuffer_init
[06:08:53] [PASSED] drm_test_framebuffer_init_bad_format
[06:08:53] [PASSED] drm_test_framebuffer_init_dev_mismatch
[06:08:53] [PASSED] drm_test_framebuffer_lookup
[06:08:53] [PASSED] drm_test_framebuffer_lookup_inexistent
[06:08:53] [PASSED] drm_test_framebuffer_modifiers_not_supported
[06:08:53] ================= [PASSED] drm_framebuffer =================
[06:08:53] ================ drm_gem_shmem (8 subtests) ================
[06:08:53] [PASSED] drm_gem_shmem_test_obj_create
[06:08:53] [PASSED] drm_gem_shmem_test_obj_create_private
[06:08:53] [PASSED] drm_gem_shmem_test_pin_pages
[06:08:53] [PASSED] drm_gem_shmem_test_vmap
[06:08:53] [PASSED] drm_gem_shmem_test_get_pages_sgt
[06:08:53] [PASSED] drm_gem_shmem_test_get_sg_table
[06:08:53] [PASSED] drm_gem_shmem_test_madvise
[06:08:53] [PASSED] drm_gem_shmem_test_purge
[06:08:53] ================== [PASSED] drm_gem_shmem ==================
[06:08:53] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[06:08:53] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[06:08:53] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[06:08:53] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[06:08:53] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[06:08:53] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[06:08:53] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[06:08:53] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[06:08:53] [PASSED] Automatic
[06:08:53] [PASSED] Full
[06:08:53] [PASSED] Limited 16:235
[06:08:53] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[06:08:53] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[06:08:53] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[06:08:53] [PASSED] drm_test_check_disable_connector
[06:08:53] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[06:08:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[06:08:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[06:08:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[06:08:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[06:08:53] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[06:08:53] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[06:08:53] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[06:08:53] [PASSED] drm_test_check_output_bpc_dvi
[06:08:53] [PASSED] drm_test_check_output_bpc_format_vic_1
[06:08:53] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[06:08:53] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[06:08:53] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[06:08:53] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[06:08:53] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[06:08:53] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[06:08:53] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[06:08:53] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[06:08:53] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[06:08:53] [PASSED] drm_test_check_broadcast_rgb_value
[06:08:53] [PASSED] drm_test_check_bpc_8_value
[06:08:53] [PASSED] drm_test_check_bpc_10_value
[06:08:53] [PASSED] drm_test_check_bpc_12_value
[06:08:53] [PASSED] drm_test_check_format_value
[06:08:53] [PASSED] drm_test_check_tmds_char_value
[06:08:53] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[06:08:53] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[06:08:53] [PASSED] drm_test_check_mode_valid
[06:08:53] [PASSED] drm_test_check_mode_valid_reject
[06:08:53] [PASSED] drm_test_check_mode_valid_reject_rate
[06:08:53] [PASSED] drm_test_check_mode_valid_reject_max_clock
[06:08:53] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[06:08:53] ================= drm_managed (2 subtests) =================
[06:08:53] [PASSED] drm_test_managed_release_action
[06:08:53] [PASSED] drm_test_managed_run_action
[06:08:53] =================== [PASSED] drm_managed ===================
[06:08:53] =================== drm_mm (6 subtests) ====================
[06:08:53] [PASSED] drm_test_mm_init
[06:08:53] [PASSED] drm_test_mm_debug
[06:08:53] [PASSED] drm_test_mm_align32
[06:08:53] [PASSED] drm_test_mm_align64
[06:08:53] [PASSED] drm_test_mm_lowest
[06:08:53] [PASSED] drm_test_mm_highest
[06:08:53] ===================== [PASSED] drm_mm ======================
[06:08:53] ============= drm_modes_analog_tv (5 subtests) =============
[06:08:53] [PASSED] drm_test_modes_analog_tv_mono_576i
[06:08:53] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[06:08:53] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[06:08:53] [PASSED] drm_test_modes_analog_tv_pal_576i
[06:08:53] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[06:08:53] =============== [PASSED] drm_modes_analog_tv ===============
[06:08:53] ============== drm_plane_helper (2 subtests) ===============
[06:08:53] =============== drm_test_check_plane_state ================
[06:08:53] [PASSED] clipping_simple
[06:08:53] [PASSED] clipping_rotate_reflect
[06:08:53] [PASSED] positioning_simple
[06:08:53] [PASSED] upscaling
[06:08:53] [PASSED] downscaling
[06:08:53] [PASSED] rounding1
[06:08:53] [PASSED] rounding2
[06:08:53] [PASSED] rounding3
[06:08:53] [PASSED] rounding4
[06:08:53] =========== [PASSED] drm_test_check_plane_state ============
[06:08:53] =========== drm_test_check_invalid_plane_state ============
[06:08:53] [PASSED] positioning_invalid
[06:08:53] [PASSED] upscaling_invalid
[06:08:53] [PASSED] downscaling_invalid
[06:08:53] ======= [PASSED] drm_test_check_invalid_plane_state ========
[06:08:53] ================ [PASSED] drm_plane_helper =================
[06:08:53] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[06:08:53] ====== drm_test_connector_helper_tv_get_modes_check =======
[06:08:53] [PASSED] None
[06:08:53] [PASSED] PAL
[06:08:53] [PASSED] NTSC
[06:08:53] [PASSED] Both, NTSC Default
[06:08:53] [PASSED] Both, PAL Default
[06:08:53] [PASSED] Both, NTSC Default, with PAL on command-line
[06:08:53] [PASSED] Both, PAL Default, with NTSC on command-line
[06:08:53] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[06:08:53] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[06:08:53] ================== drm_rect (9 subtests) ===================
[06:08:53] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[06:08:53] [PASSED] drm_test_rect_clip_scaled_not_clipped
[06:08:53] [PASSED] drm_test_rect_clip_scaled_clipped
[06:08:53] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[06:08:53] ================= drm_test_rect_intersect =================
[06:08:53] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[06:08:53] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[06:08:53] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[06:08:53] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[06:08:53] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[06:08:53] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[06:08:53] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[06:08:53] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[06:08:53] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[06:08:53] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[06:08:53] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[06:08:53] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[06:08:53] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[06:08:53] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[06:08:53] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[06:08:53] ============= [PASSED] drm_test_rect_intersect =============
[06:08:53] ================ drm_test_rect_calc_hscale ================
[06:08:53] [PASSED] normal use
[06:08:53] [PASSED] out of max range
[06:08:53] [PASSED] out of min range
[06:08:53] [PASSED] zero dst
[06:08:53] [PASSED] negative src
[06:08:53] [PASSED] negative dst
[06:08:53] ============ [PASSED] drm_test_rect_calc_hscale ============
[06:08:53] ================ drm_test_rect_calc_vscale ================
[06:08:53] [PASSED] normal use
[06:08:53] [PASSED] out of max range
[06:08:53] [PASSED] out of min range
[06:08:53] [PASSED] zero dst
[06:08:53] [PASSED] negative src
[06:08:53] [PASSED] negative dst
[06:08:53] ============ [PASSED] drm_test_rect_calc_vscale ============
[06:08:53] ================== drm_test_rect_rotate ===================
[06:08:53] [PASSED] reflect-x
[06:08:53] [PASSED] reflect-y
[06:08:53] [PASSED] rotate-0
[06:08:53] [PASSED] rotate-90
[06:08:53] [PASSED] rotate-180
[06:08:53] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[06:08:53] ============== [PASSED] drm_test_rect_rotate ===============
[06:08:53] ================ drm_test_rect_rotate_inv =================
[06:08:53] [PASSED] reflect-x
[06:08:53] [PASSED] reflect-y
[06:08:53] [PASSED] rotate-0
[06:08:53] [PASSED] rotate-90
[06:08:53] [PASSED] rotate-180
[06:08:53] [PASSED] rotate-270
[06:08:53] ============ [PASSED] drm_test_rect_rotate_inv =============
[06:08:53] ==================== [PASSED] drm_rect =====================
[06:08:53] ============ drm_sysfb_modeset_test (1 subtest) ============
[06:08:53] ============ drm_test_sysfb_build_fourcc_list =============
[06:08:53] [PASSED] no native formats
[06:08:53] [PASSED] XRGB8888 as native format
[06:08:53] [PASSED] remove duplicates
[06:08:53] [PASSED] convert alpha formats
[06:08:53] [PASSED] random formats
[06:08:53] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[06:08:53] ============= [PASSED] drm_sysfb_modeset_test ==============
[06:08:53] ============================================================
[06:08:53] Testing complete. Ran 616 tests: passed: 616
[06:08:53] Elapsed time: 23.398s total, 1.650s configuring, 21.577s building, 0.143s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[06:08:54] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:08:55] 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
[06:09:03] Starting KUnit Kernel (1/1)...
[06:09:03] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:09:03] ================= ttm_device (5 subtests) ==================
[06:09:03] [PASSED] ttm_device_init_basic
[06:09:03] [PASSED] ttm_device_init_multiple
[06:09:03] [PASSED] ttm_device_fini_basic
[06:09:03] [PASSED] ttm_device_init_no_vma_man
[06:09:03] ================== ttm_device_init_pools ==================
[06:09:03] [PASSED] No DMA allocations, no DMA32 required
[06:09:03] [PASSED] DMA allocations, DMA32 required
[06:09:03] [PASSED] No DMA allocations, DMA32 required
[06:09:03] [PASSED] DMA allocations, no DMA32 required
[06:09:03] ============== [PASSED] ttm_device_init_pools ==============
[06:09:03] =================== [PASSED] ttm_device ====================
[06:09:03] ================== ttm_pool (8 subtests) ===================
[06:09:03] ================== ttm_pool_alloc_basic ===================
[06:09:03] [PASSED] One page
[06:09:03] [PASSED] More than one page
[06:09:03] [PASSED] Above the allocation limit
[06:09:03] [PASSED] One page, with coherent DMA mappings enabled
[06:09:03] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[06:09:03] ============== [PASSED] ttm_pool_alloc_basic ===============
[06:09:03] ============== ttm_pool_alloc_basic_dma_addr ==============
[06:09:03] [PASSED] One page
[06:09:03] [PASSED] More than one page
[06:09:03] [PASSED] Above the allocation limit
[06:09:03] [PASSED] One page, with coherent DMA mappings enabled
[06:09:03] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[06:09:03] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[06:09:03] [PASSED] ttm_pool_alloc_order_caching_match
[06:09:03] [PASSED] ttm_pool_alloc_caching_mismatch
[06:09:03] [PASSED] ttm_pool_alloc_order_mismatch
[06:09:03] [PASSED] ttm_pool_free_dma_alloc
[06:09:03] [PASSED] ttm_pool_free_no_dma_alloc
[06:09:03] [PASSED] ttm_pool_fini_basic
[06:09:03] ==================== [PASSED] ttm_pool =====================
[06:09:03] ================ ttm_resource (8 subtests) =================
[06:09:03] ================= ttm_resource_init_basic =================
[06:09:03] [PASSED] Init resource in TTM_PL_SYSTEM
[06:09:03] [PASSED] Init resource in TTM_PL_VRAM
[06:09:03] [PASSED] Init resource in a private placement
[06:09:03] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[06:09:03] ============= [PASSED] ttm_resource_init_basic =============
[06:09:03] [PASSED] ttm_resource_init_pinned
[06:09:03] [PASSED] ttm_resource_fini_basic
[06:09:03] [PASSED] ttm_resource_manager_init_basic
[06:09:03] [PASSED] ttm_resource_manager_usage_basic
[06:09:03] [PASSED] ttm_resource_manager_set_used_basic
[06:09:03] [PASSED] ttm_sys_man_alloc_basic
[06:09:03] [PASSED] ttm_sys_man_free_basic
[06:09:03] ================== [PASSED] ttm_resource ===================
[06:09:03] =================== ttm_tt (15 subtests) ===================
[06:09:03] ==================== ttm_tt_init_basic ====================
[06:09:03] [PASSED] Page-aligned size
[06:09:03] [PASSED] Extra pages requested
[06:09:03] ================ [PASSED] ttm_tt_init_basic ================
[06:09:03] [PASSED] ttm_tt_init_misaligned
[06:09:03] [PASSED] ttm_tt_fini_basic
[06:09:03] [PASSED] ttm_tt_fini_sg
[06:09:03] [PASSED] ttm_tt_fini_shmem
[06:09:03] [PASSED] ttm_tt_create_basic
[06:09:03] [PASSED] ttm_tt_create_invalid_bo_type
[06:09:03] [PASSED] ttm_tt_create_ttm_exists
[06:09:03] [PASSED] ttm_tt_create_failed
[06:09:03] [PASSED] ttm_tt_destroy_basic
[06:09:03] [PASSED] ttm_tt_populate_null_ttm
[06:09:03] [PASSED] ttm_tt_populate_populated_ttm
[06:09:03] [PASSED] ttm_tt_unpopulate_basic
[06:09:03] [PASSED] ttm_tt_unpopulate_empty_ttm
[06:09:03] [PASSED] ttm_tt_swapin_basic
[06:09:03] ===================== [PASSED] ttm_tt ======================
[06:09:03] =================== ttm_bo (14 subtests) ===================
[06:09:03] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[06:09:03] [PASSED] Cannot be interrupted and sleeps
[06:09:03] [PASSED] Cannot be interrupted, locks straight away
[06:09:03] [PASSED] Can be interrupted, sleeps
[06:09:03] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[06:09:03] [PASSED] ttm_bo_reserve_locked_no_sleep
[06:09:03] [PASSED] ttm_bo_reserve_no_wait_ticket
[06:09:03] [PASSED] ttm_bo_reserve_double_resv
[06:09:03] [PASSED] ttm_bo_reserve_interrupted
[06:09:03] [PASSED] ttm_bo_reserve_deadlock
[06:09:03] [PASSED] ttm_bo_unreserve_basic
[06:09:03] [PASSED] ttm_bo_unreserve_pinned
[06:09:03] [PASSED] ttm_bo_unreserve_bulk
[06:09:03] [PASSED] ttm_bo_put_basic
[06:09:03] [PASSED] ttm_bo_put_shared_resv
[06:09:03] [PASSED] ttm_bo_pin_basic
[06:09:03] [PASSED] ttm_bo_pin_unpin_resource
[06:09:03] [PASSED] ttm_bo_multiple_pin_one_unpin
[06:09:03] ===================== [PASSED] ttm_bo ======================
[06:09:03] ============== ttm_bo_validate (22 subtests) ===============
[06:09:03] ============== ttm_bo_init_reserved_sys_man ===============
[06:09:03] [PASSED] Buffer object for userspace
[06:09:03] [PASSED] Kernel buffer object
[06:09:03] [PASSED] Shared buffer object
[06:09:03] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[06:09:03] ============== ttm_bo_init_reserved_mock_man ==============
[06:09:03] [PASSED] Buffer object for userspace
[06:09:03] [PASSED] Kernel buffer object
[06:09:03] [PASSED] Shared buffer object
[06:09:03] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[06:09:03] [PASSED] ttm_bo_init_reserved_resv
[06:09:03] ================== ttm_bo_validate_basic ==================
[06:09:03] [PASSED] Buffer object for userspace
[06:09:03] [PASSED] Kernel buffer object
[06:09:03] [PASSED] Shared buffer object
[06:09:03] ============== [PASSED] ttm_bo_validate_basic ==============
[06:09:03] [PASSED] ttm_bo_validate_invalid_placement
[06:09:03] ============= ttm_bo_validate_same_placement ==============
[06:09:03] [PASSED] System manager
[06:09:03] [PASSED] VRAM manager
[06:09:03] ========= [PASSED] ttm_bo_validate_same_placement ==========
[06:09:03] [PASSED] ttm_bo_validate_failed_alloc
[06:09:03] [PASSED] ttm_bo_validate_pinned
[06:09:03] [PASSED] ttm_bo_validate_busy_placement
[06:09:03] ================ ttm_bo_validate_multihop =================
[06:09:03] [PASSED] Buffer object for userspace
[06:09:03] [PASSED] Kernel buffer object
[06:09:03] [PASSED] Shared buffer object
[06:09:03] ============ [PASSED] ttm_bo_validate_multihop =============
[06:09:03] ========== ttm_bo_validate_no_placement_signaled ==========
[06:09:03] [PASSED] Buffer object in system domain, no page vector
[06:09:03] [PASSED] Buffer object in system domain with an existing page vector
[06:09:03] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[06:09:03] ======== ttm_bo_validate_no_placement_not_signaled ========
[06:09:03] [PASSED] Buffer object for userspace
[06:09:03] [PASSED] Kernel buffer object
[06:09:03] [PASSED] Shared buffer object
[06:09:03] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[06:09:03] [PASSED] ttm_bo_validate_move_fence_signaled
[06:09:03] ========= ttm_bo_validate_move_fence_not_signaled =========
[06:09:03] [PASSED] Waits for GPU
[06:09:03] [PASSED] Tries to lock straight away
[06:09:03] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[06:09:03] [PASSED] ttm_bo_validate_swapout
[06:09:03] [PASSED] ttm_bo_validate_happy_evict
[06:09:03] [PASSED] ttm_bo_validate_all_pinned_evict
[06:09:03] [PASSED] ttm_bo_validate_allowed_only_evict
[06:09:03] [PASSED] ttm_bo_validate_deleted_evict
[06:09:03] [PASSED] ttm_bo_validate_busy_domain_evict
[06:09:03] [PASSED] ttm_bo_validate_evict_gutting
[06:09:03] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[06:09:03] ================= [PASSED] ttm_bo_validate =================
[06:09:03] ============================================================
[06:09:03] Testing complete. Ran 102 tests: passed: 102
[06:09:04] Elapsed time: 9.942s total, 1.671s configuring, 7.603s building, 0.547s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for drm/i915/display: Use the recomended min_hblank values
2025-06-25 5:34 [PATCH v3] drm/i915/display: Use the recomended min_hblank values Arun R Murthy
2025-06-25 6:09 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-06-25 6:46 ` Patchwork
2025-06-25 7:01 ` ✗ i915.CI.BAT: failure " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-06-25 6:46 UTC (permalink / raw)
To: Arun R Murthy; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 961 bytes --]
== Series Details ==
Series: drm/i915/display: Use the recomended min_hblank values
URL : https://patchwork.freedesktop.org/series/150727/
State : success
== Summary ==
CI Bug Log - changes from xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19_BAT -> xe-pw-150727v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 8)
------------------------------
Missing (1): bat-adlp-vm
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19 -> xe-pw-150727v1
IGT_8424: 68588b3c89a1bbe08c54d21c4d3d2e509957c795 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19: bd57aee20daefb7b0dfe9017663668c92115ff19
xe-pw-150727v1: 150727v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/index.html
[-- Attachment #2: Type: text/html, Size: 1509 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.BAT: failure for drm/i915/display: Use the recomended min_hblank values
2025-06-25 5:34 [PATCH v3] drm/i915/display: Use the recomended min_hblank values Arun R Murthy
2025-06-25 6:09 ` ✓ CI.KUnit: success for " Patchwork
2025-06-25 6:46 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-06-25 7:01 ` Patchwork
2025-06-25 17:29 ` [PATCH v3] " Imre Deak
2025-06-26 2:55 ` ✓ Xe.CI.Full: success for " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-06-25 7:01 UTC (permalink / raw)
To: Arun R Murthy; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 7206 bytes --]
== Series Details ==
Series: drm/i915/display: Use the recomended min_hblank values
URL : https://patchwork.freedesktop.org/series/150726/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16753 -> Patchwork_150726v1
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_150726v1 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_150726v1, 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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/index.html
Participating hosts (44 -> 42)
------------------------------
Missing (2): fi-glk-j4005 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_150726v1:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@guc_hang:
- bat-arlh-2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16753/bat-arlh-2/igt@i915_selftest@live@guc_hang.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/bat-arlh-2/igt@i915_selftest@live@guc_hang.html
Known issues
------------
Here are the changes found in Patchwork_150726v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16753/bat-mtlp-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/bat-mtlp-8/igt@i915_selftest@live.html
- bat-arlh-2: [PASS][5] -> [INCOMPLETE][6] ([i915#14046] / [i915#14393])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16753/bat-arlh-2/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/bat-arlh-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@active:
- bat-dg2-14: NOTRUN -> [INCOMPLETE][7] ([i915#14201])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/bat-dg2-14/igt@i915_selftest@live@active.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: NOTRUN -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-dg2-11: [PASS][9] -> [DMESG-FAIL][10] ([i915#12061]) +1 other test dmesg-fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16753/bat-dg2-11/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/bat-dg2-11/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-bsw-nick: [INCOMPLETE][11] ([i915#12904]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16753/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@fbdev@info:
- fi-ivb-3770: [SKIP][13] ([i915#1849]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16753/fi-ivb-3770/igt@fbdev@info.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/fi-ivb-3770/igt@fbdev@info.html
* igt@fbdev@read:
- fi-ivb-3770: [SKIP][15] -> [PASS][16] +3 other tests pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16753/fi-ivb-3770/igt@fbdev@read.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/fi-ivb-3770/igt@fbdev@read.html
* igt@i915_pm_rpm@module-reload:
- bat-dg2-9: [ABORT][17] ([i915#14385]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16753/bat-dg2-9/igt@i915_pm_rpm@module-reload.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/bat-dg2-9/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-arlh-3: [INCOMPLETE][19] ([i915#14393]) -> [PASS][20] +1 other test pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16753/bat-arlh-3/igt@i915_selftest@live.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/bat-arlh-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@sanitycheck:
- bat-dg2-14: [ABORT][21] ([i915#14201]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16753/bat-dg2-14/igt@i915_selftest@live@sanitycheck.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/bat-dg2-14/igt@i915_selftest@live@sanitycheck.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-dg2-14: [ABORT][23] ([i915#14201]) -> [INCOMPLETE][24] ([i915#14201] / [i915#14393])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16753/bat-dg2-14/igt@i915_selftest@live.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/bat-dg2-14/igt@i915_selftest@live.html
- bat-atsm-1: [DMESG-FAIL][25] ([i915#12061] / [i915#13929]) -> [DMESG-FAIL][26] ([i915#12061] / [i915#14204])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16753/bat-atsm-1/igt@i915_selftest@live.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/bat-atsm-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@mman:
- bat-atsm-1: [DMESG-FAIL][27] ([i915#13929]) -> [DMESG-FAIL][28] ([i915#14204])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16753/bat-atsm-1/igt@i915_selftest@live@mman.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/bat-atsm-1/igt@i915_selftest@live@mman.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929
[i915#14046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14046
[i915#14201]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14201
[i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204
[i915#14385]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14385
[i915#14393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14393
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
Build changes
-------------
* Linux: CI_DRM_16753 -> Patchwork_150726v1
CI-20190529: 20190529
CI_DRM_16753: bd57aee20daefb7b0dfe9017663668c92115ff19 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8424: 68588b3c89a1bbe08c54d21c4d3d2e509957c795 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_150726v1: bd57aee20daefb7b0dfe9017663668c92115ff19 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_150726v1/index.html
[-- Attachment #2: Type: text/html, Size: 8940 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3] drm/i915/display: Use the recomended min_hblank values
2025-06-25 5:34 [PATCH v3] drm/i915/display: Use the recomended min_hblank values Arun R Murthy
` (2 preceding siblings ...)
2025-06-25 7:01 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-06-25 17:29 ` Imre Deak
2025-07-28 6:49 ` Murthy, Arun R
2025-06-26 2:55 ` ✓ Xe.CI.Full: success for " Patchwork
4 siblings, 1 reply; 7+ messages in thread
From: Imre Deak @ 2025-06-25 17:29 UTC (permalink / raw)
To: Arun R Murthy; +Cc: jani.nikula, intel-gfx, intel-xe
On Wed, Jun 25, 2025 at 11:04:07AM +0530, Arun R Murthy wrote:
> Use recommended values as per wa_14021694213 to compare with the
> calculated value and choose minimum of them.
>
> v2: corrected checkpatch warning and retain the restriction for
> min_hblank (Jani)
> v3: use calculated value to compare with recomended value and choose
> minimum of them (Imre)
>
> Bspec: 74379
> Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
> ---
> Changes in v3:
> - EDITME: describe what is new in this series revision.
> - EDITME: use bulletpoints and terse descriptions.
> - Link to v2: https://lore.kernel.org/r/20250624-min_hblank-v2-1-9110a9342d8c@intel.com
>
> Changes in v2:
> - EDITME: describe what is new in this series revision.
> - EDITME: use bulletpoints and terse descriptions.
> - Link to v1: https://lore.kernel.org/r/20250624-min_hblank-v1-1-5c100e4a8b05@intel.com
The above 'Changes in vx' templates could be removed imo.
> ---
> drivers/gpu/drm/i915/display/intel_dp.c | 17 ++++++++++++++++-
> 1 file changed, 16 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index f48912f308df7fd26c9d089e8f1bd096bfc8df95..c55315fb74734fded40695bae40dd19f71a9786f 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -3175,7 +3175,22 @@ int intel_dp_compute_min_hblank(struct intel_crtc_state *crtc_state,
> */
> min_hblank = min_hblank - 2;
>
> - min_hblank = min(10, min_hblank);
> + /*
> + * min_hblank formula is undergoing a change, to avoid underrun use the
> + * recomended value in spec to compare with the calculated one and use the
> + * minimum value
> + */
> + if (intel_dp_is_uhbr(crtc_state)) {
> + if (crtc_state->dsc.compression_enable &&
> + crtc_state->output_format == INTEL_OUTPUT_FORMAT_YCBCR420 &&
> + crtc_state->pipe_bpp == 18)
The bspec page describes this format as YUV420 at 6 bpp. Not sure how
that would align with pipe_bpp == 18 (which is 6 _bpc_). Bspec could
also refer to the compressed bpp, however the driver's minimum
compressed bpp is 8. Could you clarify which bpp bspec refers to?
> + min_hblank = min(2, min_hblank);
> + else
> + min_hblank = min(3, min_hblank);
> + } else {
> + min_hblank = min(10, min_hblank);
> + }
> +
> crtc_state->min_hblank = min_hblank;
>
> return 0;
>
> ---
> base-commit: da56936fad6f5e1d5f0cef8b50277bfb071eefe7
> change-id: 20250624-min_hblank-8af8d2626ff8
>
> Best regards,
> --
> Arun R Murthy <arun.r.murthy@intel.com>
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.Full: success for drm/i915/display: Use the recomended min_hblank values
2025-06-25 5:34 [PATCH v3] drm/i915/display: Use the recomended min_hblank values Arun R Murthy
` (3 preceding siblings ...)
2025-06-25 17:29 ` [PATCH v3] " Imre Deak
@ 2025-06-26 2:55 ` Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-06-26 2:55 UTC (permalink / raw)
To: Murthy, Arun R; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 51630 bytes --]
== Series Details ==
Series: drm/i915/display: Use the recomended min_hblank values
URL : https://patchwork.freedesktop.org/series/150727/
State : success
== Summary ==
CI Bug Log - changes from xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19_FULL -> xe-pw-150727v1_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19_FULL and xe-pw-150727v1_FULL:
### New IGT tests (8) ###
* igt@kms_cursor_crc@cursor-alpha-opaque@pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.41] s
* igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.41] s
* igt@kms_cursor_crc@cursor-dpms@pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.84] s
* igt@kms_cursor_crc@cursor-size-change@pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.61] s
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [4.26] s
* igt@kms_pipe_crc_basic@disable-crc-after-crtc@pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
* igt@kms_pipe_crc_basic@disable-crc-after-crtc@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.32] s
* igt@kms_pipe_crc_basic@disable-crc-after-crtc@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.34] s
Known issues
------------
Here are the changes found in xe-pw-150727v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][1] ([Intel XE#3767]) +31 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-c-hdmi-a-1:
- shard-adlp: [PASS][2] -> [DMESG-WARN][3] ([Intel XE#4543]) +1 other test dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-adlp-3/igt@kms_async_flips@invalid-async-flip-atomic@pipe-c-hdmi-a-1.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-adlp-4/igt@kms_async_flips@invalid-async-flip-atomic@pipe-c-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +5 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-2/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#607])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2314] / [Intel XE#2894])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#367])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#367])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#787]) +174 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-433/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-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +7 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#2907])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#455] / [Intel XE#787]) +26 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#3432]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][16] -> [INCOMPLETE][17] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [PASS][18] -> [DMESG-WARN][19] ([Intel XE#1727] / [Intel XE#3113])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#306])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-464/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-max:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2325])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#373])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-434/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2252]) +5 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][24] ([Intel XE#1178])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-433/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][25] ([Intel XE#1178])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2320]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#308])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2321])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#2291]) +5 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][31] -> [FAIL][32] ([Intel XE#4633])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#4494])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#4354])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-2/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#4422])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#4156])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-2/igt@kms_fbcon_fbt@fbc.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2374])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#2316]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-2/igt@kms_flip@2x-flip-vs-panning.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [PASS][40] -> [FAIL][41] ([Intel XE#2882] / [Intel XE#5338]) +2 other tests fail
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ac-dp2-hdmi-a3.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible@a-hdmi-a2:
- shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#3098])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-432/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-hdmi-a2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
- shard-dg2-set2: NOTRUN -> [FAIL][43] ([Intel XE#301] / [Intel XE#3321])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2:
- shard-dg2-set2: NOTRUN -> [FAIL][44] ([Intel XE#301]) +1 other test fail
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3:
- shard-bmg: [PASS][45] -> [FAIL][46] ([Intel XE#3321]) +1 other test fail
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2-set2: [PASS][47] -> [INCOMPLETE][48] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-dg2-434/igt@kms_flip@flip-vs-suspend@d-dp4.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-436/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@c-edp1:
- shard-lnl: [PASS][49] -> [FAIL][50] ([Intel XE#5337] / [Intel XE#886])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-edp1.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-lnl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2293] / [Intel XE#2380])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2293])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#455]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#4141]) +8 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#651]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2311]) +17 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2313]) +18 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#653]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#3374] / [Intel XE#3544])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#3012])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#4090])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#870])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-432/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2938])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2391])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2392])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#1489]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-psr-sprite-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#2850] / [Intel XE#929])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-464/igt@kms_psr@fbc-psr-sprite-blt.html
* igt@kms_psr@psr2-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-2/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2414])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_setmode@basic:
- shard-adlp: [PASS][71] -> [FAIL][72] ([Intel XE#2883]) +2 other tests fail
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-adlp-9/igt@kms_setmode@basic.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-adlp-9/igt@kms_setmode@basic.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2450])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1499])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#1126])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eu_stall@unprivileged-access:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#5308])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-432/igt@xe_eu_stall@unprivileged-access.html
* igt@xe_eudebug@basic-exec-queues:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#4837]) +6 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-2/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#4837]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-464/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2322]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: [PASS][80] -> [SKIP][81] ([Intel XE#1392]) +7 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-dg2-433/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#288]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [PASS][83] -> [DMESG-WARN][84] ([Intel XE#3876])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#4943]) +17 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-many-mmap-remap-ro:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#4915]) +40 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-464/igt@xe_exec_system_allocator@threads-many-mmap-remap-ro.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
- shard-lnl: [PASS][87] -> [FAIL][88] ([Intel XE#5018])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: NOTRUN -> [ABORT][89] ([Intel XE#4917])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-464/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2229])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_oa@oa-exponents@ccs-0:
- shard-lnl: [PASS][91] -> [TIMEOUT][92] ([Intel XE#5339] / [Intel XE#5342]) +1 other test timeout
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-lnl-4/igt@xe_oa@oa-exponents@ccs-0.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-lnl-5/igt@xe_oa@oa-exponents@ccs-0.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2541] / [Intel XE#3573])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-464/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2236])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][95] ([Intel XE#1173])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-464/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2284])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2284])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-434/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-adlp: [PASS][98] -> [DMESG-WARN][99] ([Intel XE#2953] / [Intel XE#4173]) +4 other tests dmesg-warn
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-adlp-8/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-adlp-1/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [PASS][100] -> [FAIL][101] ([Intel XE#5166]) +1 other test fail
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-dg2-433/igt@xe_pmu@gt-frequency.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-435/igt@xe_pmu@gt-frequency.html
* igt@xe_pxp@pxp-stale-bo-exec-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#4733])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#944])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-464/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#944]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#4130]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-2/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#4130])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-464/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
#### Possible fixes ####
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-adlp: [DMESG-FAIL][107] ([Intel XE#4543]) -> [PASS][108] +3 other tests pass
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][109] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][111] ([Intel XE#3862]) -> [PASS][112] +1 other test pass
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][113] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][115] ([Intel XE#3124]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][117] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [SKIP][119] ([Intel XE#2291]) -> [PASS][120] +1 other test pass
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][121] ([Intel XE#2882] / [Intel XE#5338]) -> [PASS][122] +2 other tests pass
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [SKIP][123] ([Intel XE#2316]) -> [PASS][124] +5 other tests pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-dpms-on-nop-interruptible:
- shard-adlp: [DMESG-WARN][125] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][126] +1 other test pass
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-adlp-4/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-adlp-9/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2-set2: [FAIL][127] ([Intel XE#301]) -> [PASS][128] +1 other test pass
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
- shard-lnl: [FAIL][129] ([Intel XE#886]) -> [PASS][130] +2 other tests pass
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-lnl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y:
- shard-adlp: [FAIL][131] ([Intel XE#1874]) -> [PASS][132] +1 other test pass
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [SKIP][133] ([Intel XE#3012]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-7/igt@kms_joiner@basic-force-big-joiner.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-dg2-set2: [SKIP][135] ([Intel XE#1392]) -> [PASS][136] +5 other tests pass
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-435/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_reset@gt-reset-stress:
- shard-adlp: [DMESG-WARN][137] ([Intel XE#4812]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-adlp-4/igt@xe_exec_reset@gt-reset-stress.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-adlp-4/igt@xe_exec_reset@gt-reset-stress.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
- shard-lnl: [FAIL][139] ([Intel XE#5018]) -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][141] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][142] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
- shard-dg2-set2: [INCOMPLETE][143] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [INCOMPLETE][144] ([Intel XE#3124])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][145] ([Intel XE#1178]) -> [SKIP][146] ([Intel XE#2341]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-2/igt@kms_content_protection@legacy.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-5/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][147] ([Intel XE#2341]) -> [FAIL][148] ([Intel XE#1178])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-5/igt@kms_content_protection@lic-type-0.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-lnl: [FAIL][149] ([Intel XE#886]) -> [FAIL][150] ([Intel XE#5337] / [Intel XE#886])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-lnl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][151] ([Intel XE#2311]) -> [SKIP][152] ([Intel XE#2312]) +12 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][153] ([Intel XE#4141]) -> [SKIP][154] ([Intel XE#2312]) +7 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
- shard-bmg: [SKIP][155] ([Intel XE#2312]) -> [SKIP][156] ([Intel XE#4141]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][157] ([Intel XE#2312]) -> [SKIP][158] ([Intel XE#2311]) +9 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][159] ([Intel XE#2313]) -> [SKIP][160] ([Intel XE#2312]) +11 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][161] ([Intel XE#2312]) -> [SKIP][162] ([Intel XE#2313]) +9 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][163] ([Intel XE#4596]) -> [SKIP][164] ([Intel XE#5021])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][165] ([Intel XE#2426]) -> [FAIL][166] ([Intel XE#1729])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][167] ([Intel XE#2509]) -> [SKIP][168] ([Intel XE#2426])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [SKIP][169] ([Intel XE#1061]) -> [FAIL][170] ([Intel XE#1173])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19/shard-dg2-432/igt@xe_peer2peer@read.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/shard-dg2-464/igt@xe_peer2peer@read.html
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[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#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
[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#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4812]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4812
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[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#5166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5166
[Intel XE#5308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5308
[Intel XE#5337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5337
[Intel XE#5338]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5338
[Intel XE#5339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5339
[Intel XE#5342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5342
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[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
Build changes
-------------
* Linux: xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19 -> xe-pw-150727v1
IGT_8424: 68588b3c89a1bbe08c54d21c4d3d2e509957c795 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3302-bd57aee20daefb7b0dfe9017663668c92115ff19: bd57aee20daefb7b0dfe9017663668c92115ff19
xe-pw-150727v1: 150727v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150727v1/index.html
[-- Attachment #2: Type: text/html, Size: 60480 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3] drm/i915/display: Use the recomended min_hblank values
2025-06-25 17:29 ` [PATCH v3] " Imre Deak
@ 2025-07-28 6:49 ` Murthy, Arun R
0 siblings, 0 replies; 7+ messages in thread
From: Murthy, Arun R @ 2025-07-28 6:49 UTC (permalink / raw)
To: imre.deak; +Cc: jani.nikula, intel-gfx, intel-xe
On 25-06-2025 22:59, Imre Deak wrote:
> On Wed, Jun 25, 2025 at 11:04:07AM +0530, Arun R Murthy wrote:
>> Use recommended values as per wa_14021694213 to compare with the
>> calculated value and choose minimum of them.
>>
>> v2: corrected checkpatch warning and retain the restriction for
>> min_hblank (Jani)
>> v3: use calculated value to compare with recomended value and choose
>> minimum of them (Imre)
>>
>> Bspec: 74379
>> Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
>> ---
>> Changes in v3:
>> - EDITME: describe what is new in this series revision.
>> - EDITME: use bulletpoints and terse descriptions.
>> - Link to v2: https://lore.kernel.org/r/20250624-min_hblank-v2-1-9110a9342d8c@intel.com
>>
>> Changes in v2:
>> - EDITME: describe what is new in this series revision.
>> - EDITME: use bulletpoints and terse descriptions.
>> - Link to v1: https://lore.kernel.org/r/20250624-min_hblank-v1-1-5c100e4a8b05@intel.com
> The above 'Changes in vx' templates could be removed imo.
>
>> ---
>> drivers/gpu/drm/i915/display/intel_dp.c | 17 ++++++++++++++++-
>> 1 file changed, 16 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
>> index f48912f308df7fd26c9d089e8f1bd096bfc8df95..c55315fb74734fded40695bae40dd19f71a9786f 100644
>> --- a/drivers/gpu/drm/i915/display/intel_dp.c
>> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
>> @@ -3175,7 +3175,22 @@ int intel_dp_compute_min_hblank(struct intel_crtc_state *crtc_state,
>> */
>> min_hblank = min_hblank - 2;
>>
>> - min_hblank = min(10, min_hblank);
>> + /*
>> + * min_hblank formula is undergoing a change, to avoid underrun use the
>> + * recomended value in spec to compare with the calculated one and use the
>> + * minimum value
>> + */
>> + if (intel_dp_is_uhbr(crtc_state)) {
>> + if (crtc_state->dsc.compression_enable &&
>> + crtc_state->output_format == INTEL_OUTPUT_FORMAT_YCBCR420 &&
>> + crtc_state->pipe_bpp == 18)
> The bspec page describes this format as YUV420 at 6 bpp. Not sure how
> that would align with pipe_bpp == 18 (which is 6 _bpc_). Bspec could
> also refer to the compressed bpp, however the driver's minimum
> compressed bpp is 8. Could you clarify which bpp bspec refers to?
Here since the check if for DSC, its compressed bpp and even though
driver's minimum bpc is 8 as per the calculations for bpc 6 min_hblank
should be 2.
Thanks and Regards,
Arun R Murthy
-------------------
>
>> + min_hblank = min(2, min_hblank);
>> + else
>> + min_hblank = min(3, min_hblank);
>> + } else {
>> + min_hblank = min(10, min_hblank);
>> + }
>> +
>> crtc_state->min_hblank = min_hblank;
>>
>> return 0;
>>
>> ---
>> base-commit: da56936fad6f5e1d5f0cef8b50277bfb071eefe7
>> change-id: 20250624-min_hblank-8af8d2626ff8
>>
>> Best regards,
>> --
>> Arun R Murthy <arun.r.murthy@intel.com>
>>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-07-28 6:49 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-25 5:34 [PATCH v3] drm/i915/display: Use the recomended min_hblank values Arun R Murthy
2025-06-25 6:09 ` ✓ CI.KUnit: success for " Patchwork
2025-06-25 6:46 ` ✓ Xe.CI.BAT: " Patchwork
2025-06-25 7:01 ` ✗ i915.CI.BAT: failure " Patchwork
2025-06-25 17:29 ` [PATCH v3] " Imre Deak
2025-07-28 6:49 ` Murthy, Arun R
2025-06-26 2:55 ` ✓ Xe.CI.Full: success for " Patchwork
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.