* [PATCH v2 0/2] drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc
@ 2026-09-02 10:54 Mika Kahola
2026-09-02 10:54 ` [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes Mika Kahola
` (6 more replies)
0 siblings, 7 replies; 16+ messages in thread
From: Mika Kahola @ 2026-09-02 10:54 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Mika Kahola
This is v2 of [1], with the following changes
- drop the patch "drm/i915/display: Flush frontbuffer tracking on flipq completion"
due to unnecessary addition
- updates on flipq eligibility
[1] https://lore.kernel.org/intel-xe/20260807121540.2032283-1-mika.kahola@intel.com/
Mika Kahola (2):
drm/i915/display: Reject flipq for pipe or timing changes
drm/i915/display: Reset use_flipq when duplicating crtc state
drivers/gpu/drm/i915/display/intel_atomic.c | 1 +
drivers/gpu/drm/i915/display/intel_display.c | 43 ++++++++++++++++----
2 files changed, 37 insertions(+), 7 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes
2026-09-02 10:54 [PATCH v2 0/2] drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc Mika Kahola
@ 2026-09-02 10:54 ` Mika Kahola
2026-09-02 11:07 ` sashiko-bot
` (3 more replies)
2026-09-02 10:54 ` [PATCH v2 2/2] drm/i915/display: Reset use_flipq when duplicating crtc state Mika Kahola
` (5 subsequent siblings)
6 siblings, 4 replies; 16+ messages in thread
From: Mika Kahola @ 2026-09-02 10:54 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Mika Kahola
Our flipq eligibility check let pipe, M/N and LRR changes through.
Reject those too, alongside the existing async flip/VRR/PSR/color/
modeset/fastset exclusions.
v2:
- Drop the single-plane restriction, plane count doesn't matter (Ville)
- Drop the update_wm_pre/post check, dead code for flipq-capable hw (Ville)
- Drop the active/enabled planes check (Ville)
Assisted-by: Copilot:claude-sonnet-5
Signed-off-by: Mika Kahola <mika.kahola@intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 43 ++++++++++++++++----
1 file changed, 36 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 553c60d452dd..f4b76a9547e3 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -7369,6 +7369,41 @@ static void intel_atomic_prepare_plane_clear_colors(struct intel_atomic_state *s
}
}
+static bool intel_flipq_commit_is_eligible(struct intel_atomic_state *state,
+ struct intel_crtc *crtc)
+{
+ struct intel_display *display = to_intel_display(state);
+ const struct intel_crtc_state *new_crtc_state =
+ intel_atomic_get_new_crtc_state(state, crtc);
+
+ if (!intel_flipq_supported(display))
+ return false;
+
+ if (intel_crtc_needs_modeset(new_crtc_state) ||
+ intel_crtc_needs_fastset(new_crtc_state) ||
+ intel_crtc_needs_color_update(new_crtc_state))
+ return false;
+
+ if (!new_crtc_state->update_planes)
+ return false;
+
+ if (new_crtc_state->do_async_flip ||
+ new_crtc_state->vrr.enable ||
+ new_crtc_state->has_psr)
+ return false;
+
+ /*
+ * Flipq is only suitable for simple queued plane updates that do
+ * not require additional pipe or timing programming.
+ */
+ if (new_crtc_state->update_pipe ||
+ new_crtc_state->update_m_n ||
+ new_crtc_state->update_lrr)
+ return false;
+
+ return true;
+}
+
static void intel_atomic_dsb_prepare(struct intel_atomic_state *state,
struct intel_crtc *crtc)
{
@@ -7384,13 +7419,7 @@ static void intel_atomic_dsb_prepare(struct intel_atomic_state *state,
/* FIXME deal with everything */
new_crtc_state->use_flipq =
- intel_flipq_supported(display) &&
- !new_crtc_state->do_async_flip &&
- !new_crtc_state->vrr.enable &&
- !new_crtc_state->has_psr &&
- !intel_crtc_needs_modeset(new_crtc_state) &&
- !intel_crtc_needs_fastset(new_crtc_state) &&
- !intel_crtc_needs_color_update(new_crtc_state);
+ intel_flipq_commit_is_eligible(state, crtc);
new_crtc_state->use_dsb =
!new_crtc_state->use_flipq &&
--
2.43.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v2 2/2] drm/i915/display: Reset use_flipq when duplicating crtc state
2026-09-02 10:54 [PATCH v2 0/2] drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc Mika Kahola
2026-09-02 10:54 ` [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes Mika Kahola
@ 2026-09-02 10:54 ` Mika Kahola
2026-09-02 13:33 ` Ville Syrjälä
2026-09-02 11:26 ` ✓ CI.KUnit: success for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev2) Patchwork
` (4 subsequent siblings)
6 siblings, 1 reply; 16+ messages in thread
From: Mika Kahola @ 2026-09-02 10:54 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Mika Kahola
intel_crtc_duplicate_state() resets use_dsb to false but not
use_flipq, letting a stale true value survive into the new state.
Reset use_flipq alongside use_dsb.
Signed-off-by: Mika Kahola <mika.kahola@intel.com>
---
drivers/gpu/drm/i915/display/intel_atomic.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/i915/display/intel_atomic.c b/drivers/gpu/drm/i915/display/intel_atomic.c
index 9d0d47c79dd1..b66c2d4ba2b3 100644
--- a/drivers/gpu/drm/i915/display/intel_atomic.c
+++ b/drivers/gpu/drm/i915/display/intel_atomic.c
@@ -276,6 +276,7 @@ intel_crtc_duplicate_state(struct drm_crtc *crtc)
crtc_state->dsb_color = NULL;
crtc_state->dsb_commit = NULL;
crtc_state->use_dsb = false;
+ crtc_state->use_flipq = false;
return &crtc_state->uapi;
}
--
2.43.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes
2026-09-02 10:54 ` [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes Mika Kahola
@ 2026-09-02 11:07 ` sashiko-bot
2026-09-02 11:55 ` [PATCH v2 1/2] drm/i915/display: Reject flipq for commits with no plane updates Mika Kahola
` (2 subsequent siblings)
3 siblings, 0 replies; 16+ messages in thread
From: sashiko-bot @ 2026-09-02 11:07 UTC (permalink / raw)
To: Mika Kahola; +Cc: intel-gfx, intel-xe
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] Dead code in intel_flipq_commit_is_eligible() due to redundant pipe/timing update checks.
--
commit 6779c5cb91fea91170f2e668dc4b0daaf17635f8
Author: Mika Kahola <mika.kahola@intel.com>
drm/i915/display: Reject flipq for pipe or timing changes
This commit introduces intel_flipq_commit_is_eligible() to check if a
commit can use flipq. It explicitly rejects pipe, M/N, and LRR updates in
addition to the existing exclusions.
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> index fc30a455bed36..a2f5c3005dec1 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
[ ... ]
> +static bool intel_flipq_commit_is_eligible(struct intel_atomic_state *state,
> + struct intel_crtc *crtc)
> +{
> + struct intel_display *display = to_intel_display(state);
> + const struct intel_crtc_state *new_crtc_state =
> + intel_atomic_get_new_crtc_state(state, crtc);
> +
> + if (!intel_flipq_supported(display))
> + return false;
> +
> + if (intel_crtc_needs_modeset(new_crtc_state) ||
> + intel_crtc_needs_fastset(new_crtc_state) ||
> + intel_crtc_needs_color_update(new_crtc_state))
> + return false;
[ ... ]
> + /*
> + * Flipq is only suitable for simple queued plane updates that do
> + * not require additional pipe or timing programming.
> + */
> + if (new_crtc_state->update_pipe ||
> + new_crtc_state->update_m_n ||
> + new_crtc_state->update_lrr)
> + return false;
[Severity: Low]
Are these final checks reachable?
Since intel_crtc_needs_fastset() directly evaluates to
new_crtc_state->update_pipe, any commit where update_pipe is true will return
early from the first set of checks in this function.
Additionally, any commit requiring M/N or LRR changes is initially evaluated
as a full modeset. If the commit is later downgraded from a full modeset to a
fastset, new_crtc_state->update_pipe is unconditionally set to true.
Therefore, if update_m_n or update_lrr is true, the commit is guaranteed to
either be a full modeset (intel_crtc_needs_modeset() == true) or a fastset
(intel_crtc_needs_fastset() == true). This appears to make this final block of
code structurally unreachable.
Can these redundant checks be removed, or is there a specific case where they
can still be evaluated?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260902105448.809455-1-mika.kahola@intel.com?part=1
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ CI.KUnit: success for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev2)
2026-09-02 10:54 [PATCH v2 0/2] drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc Mika Kahola
2026-09-02 10:54 ` [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes Mika Kahola
2026-09-02 10:54 ` [PATCH v2 2/2] drm/i915/display: Reset use_flipq when duplicating crtc state Mika Kahola
@ 2026-09-02 11:26 ` Patchwork
2026-09-02 12:13 ` ✓ CI.KUnit: success for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev3) Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-09-02 11:26 UTC (permalink / raw)
To: Mika Kahola; +Cc: intel-xe
== Series Details ==
Series: drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev2)
URL : https://patchwork.freedesktop.org/series/171792/
State : success
== Summary ==
+ trap cleanup EXIT
+ kunitconfigs=('/kernel/drivers/gpu/tests/.kunitconfig' '/kernel/drivers/gpu/drm/xe/.kunitconfig' '/kernel/drivers/gpu/drm/tests/.kunitconfig' '/kernel/drivers/gpu/drm/ttm/tests/.kunitconfig' '/kernel/drivers/dma-buf/.kunitconfig')
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/tests/.kunitconfig
[11:24:20] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:24:24] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[11:24:45] Starting KUnit Kernel (1/1)...
[11:24:45] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:24:45] ============= refcount_interrupt (4 subtests) ==============
[11:24:45] [PASSED] test_single_irq_change
[11:24:45] [PASSED] test_nested_irq_change
[11:24:45] [PASSED] test_multiple_irq_change
[11:24:45] [PASSED] test_irq_save
[11:24:45] =============== [PASSED] refcount_interrupt ================
[11:24:45] ================= gpu_buddy (14 subtests) ==================
[11:24:45] [PASSED] gpu_test_buddy_alloc_limit
[11:24:45] [PASSED] gpu_test_buddy_alloc_optimistic
[11:24:45] [PASSED] gpu_test_buddy_alloc_pessimistic
[11:24:45] [PASSED] gpu_test_buddy_alloc_pathological
[11:24:45] [PASSED] gpu_test_buddy_alloc_contiguous
[11:24:45] [PASSED] gpu_test_buddy_alloc_clear
[11:24:45] [PASSED] gpu_test_buddy_alloc_range
[11:24:45] [PASSED] gpu_test_buddy_alloc_range_bias
[11:24:46] [PASSED] gpu_test_buddy_fragmentation_performance
[11:24:47] [PASSED] gpu_test_buddy_dirty_tracker_performance
[11:24:47] [PASSED] gpu_test_buddy_alloc_exceeds_max_order
[11:24:47] [PASSED] gpu_test_buddy_offset_aligned_allocation
[11:24:47] [PASSED] gpu_test_buddy_subtree_offset_alignment_stress
[11:24:47] [PASSED] gpu_test_buddy_addr_to_block
[11:24:47] ==================== [PASSED] gpu_buddy ====================
[11:24:47] ============================================================
[11:24:47] Testing complete. Ran 18 tests: passed: 18
[11:24:47] Elapsed time: 26.896s total, 4.388s configuring, 20.541s building, 1.903s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/xe/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[11:24:47] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:24:49] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[11:25:23] Starting KUnit Kernel (1/1)...
[11:25:23] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:25:23] ============= refcount_interrupt (4 subtests) ==============
[11:25:23] [PASSED] test_single_irq_change
[11:25:23] [PASSED] test_nested_irq_change
[11:25:23] [PASSED] test_multiple_irq_change
[11:25:23] [PASSED] test_irq_save
[11:25:23] =============== [PASSED] refcount_interrupt ================
[11:25:23] ================== guc_buf (11 subtests) ===================
[11:25:23] [PASSED] test_smallest
[11:25:23] [PASSED] test_largest
[11:25:23] [PASSED] test_granular
[11:25:23] [PASSED] test_unique
[11:25:23] [PASSED] test_overlap
[11:25:23] [PASSED] test_reusable
[11:25:23] [PASSED] test_too_big
[11:25:23] [PASSED] test_flush
[11:25:23] [PASSED] test_lookup
[11:25:23] [PASSED] test_data
[11:25:23] [PASSED] test_class
[11:25:23] ===================== [PASSED] guc_buf =====================
[11:25:23] =================== guc_dbm (7 subtests) ===================
[11:25:23] [PASSED] test_empty
[11:25:23] [PASSED] test_default
[11:25:23] ======================== test_size ========================
[11:25:23] [PASSED] 4
[11:25:23] [PASSED] 8
[11:25:23] [PASSED] 32
[11:25:23] [PASSED] 256
[11:25:23] ==================== [PASSED] test_size ====================
[11:25:23] ======================= test_reuse ========================
[11:25:23] [PASSED] 4
[11:25:23] [PASSED] 8
[11:25:23] [PASSED] 32
[11:25:23] [PASSED] 256
[11:25:23] =================== [PASSED] test_reuse ====================
[11:25:23] =================== test_range_overlap ====================
[11:25:23] [PASSED] 4
[11:25:23] [PASSED] 8
[11:25:23] [PASSED] 32
[11:25:23] [PASSED] 256
[11:25:23] =============== [PASSED] test_range_overlap ================
[11:25:23] =================== test_range_compact ====================
[11:25:23] [PASSED] 4
[11:25:23] [PASSED] 8
[11:25:23] [PASSED] 32
[11:25:23] [PASSED] 256
[11:25:23] =============== [PASSED] test_range_compact ================
[11:25:23] ==================== test_range_spare =====================
[11:25:23] [PASSED] 4
[11:25:23] [PASSED] 8
[11:25:23] [PASSED] 32
[11:25:23] [PASSED] 256
[11:25:23] ================ [PASSED] test_range_spare =================
[11:25:23] ===================== [PASSED] guc_dbm =====================
[11:25:23] =================== guc_idm (6 subtests) ===================
[11:25:23] [PASSED] bad_init
[11:25:23] [PASSED] no_init
[11:25:23] [PASSED] init_fini
[11:25:23] [PASSED] check_used
[11:25:23] [PASSED] check_quota
[11:25:23] [PASSED] check_all
[11:25:23] ===================== [PASSED] guc_idm =====================
[11:25:23] =============== guc_klv_helpers (9 subtests) ===============
[11:25:23] [PASSED] test_count
[11:25:23] [PASSED] test_encode_u32
[11:25:23] [PASSED] test_encode_u64
[11:25:23] [PASSED] test_encode_string
[11:25:23] [PASSED] test_encode_object_raw
[11:25:23] [PASSED] test_encode_object_klv
[11:25:23] [PASSED] test_encode_object_nested
[11:25:23] [PASSED] test_encode_object_basic
[11:25:23] [PASSED] test_print
[11:25:23] ================= [PASSED] guc_klv_helpers =================
[11:25:23] =================== xe_log (4 subtests) ====================
[11:25:23] [PASSED] demo_cper
[11:25:23] [PASSED] demo_dmesg
[11:25:23] ======================= test_dmesg ========================
[11:25:23] [PASSED] test_fatal
[11:25:23] [PASSED] test_fatal_tile
[11:25:23] [PASSED] test_fatal_gt
[11:25:23] [PASSED] test_fatal_comp
[11:25:23] [PASSED] test_fatal_comp_tile
[11:25:23] [PASSED] test_fatal_comp_gt
[11:25:23] [PASSED] test_fatal_all
[11:25:23] [PASSED] test_recoverable
[11:25:23] [PASSED] test_recoverable_tile
[11:25:23] [PASSED] test_recoverable_gt
[11:25:23] [PASSED] test_recoverable_comp
[11:25:23] [PASSED] test_recoverable_comp_tile
[11:25:23] [PASSED] test_recoverable_comp_gt
[11:25:23] [PASSED] test_recoverable_all
[11:25:23] [PASSED] test_info
[11:25:23] [PASSED] test_info_tile
[11:25:23] [PASSED] test_info_gt
[11:25:23] [PASSED] test_info_err
[11:25:23] [PASSED] test_info_comp
[11:25:23] [PASSED] test_info_comp_tile
[11:25:23] [PASSED] test_info_comp_gt
[11:25:23] [PASSED] test_info_all
[11:25:23] [PASSED] test_hw_fatal
[11:25:23] [PASSED] test_hw_recoverable
[11:25:23] [PASSED] test_hw_corrected
[11:25:23] [PASSED] test_hw_informational
[11:25:23] =================== [PASSED] test_dmesg ====================
[11:25:23] ====================== test_invalid =======================
[11:25:23] [SKIPPED] no-component no-location no-warn (requires CONFIG_DRM_XE_DEBUG)
[11:25:23] [SKIPPED] reserved location (requires CONFIG_DRM_XE_DEBUG)
[11:25:23] [SKIPPED] unknown location (requires CONFIG_DRM_XE_DEBUG)
[11:25:23] [SKIPPED] nonzero-device-id location (requires CONFIG_DRM_XE_DEBUG)
[11:25:23] [SKIPPED] invalid-tile-id location (requires CONFIG_DRM_XE_DEBUG)
[11:25:23] [SKIPPED] invalid-gt-id location (requires CONFIG_DRM_XE_DEBUG)
[11:25:23] [SKIPPED] unknown component class (requires CONFIG_DRM_XE_DEBUG)
[11:25:23] [SKIPPED] unknown system component (requires CONFIG_DRM_XE_DEBUG)
[11:25:23] [SKIPPED] unknown hardware component (requires CONFIG_DRM_XE_DEBUG)
[11:25:23] [SKIPPED] unknown component and location (requires CONFIG_DRM_XE_DEBUG)
[11:25:23] ================== [SKIPPED] test_invalid ==================
[11:25:23] ===================== [PASSED] xe_log ======================
[11:25:23] ================== no_relay (3 subtests) ===================
[11:25:23] [PASSED] xe_drops_guc2pf_if_not_ready
[11:25:23] [PASSED] xe_drops_guc2vf_if_not_ready
[11:25:23] [PASSED] xe_rejects_send_if_not_ready
[11:25:23] ==================== [PASSED] no_relay =====================
[11:25:23] ================== pf_relay (14 subtests) ==================
[11:25:23] [PASSED] pf_rejects_guc2pf_too_short
[11:25:23] [PASSED] pf_rejects_guc2pf_too_long
[11:25:23] [PASSED] pf_rejects_guc2pf_no_payload
[11:25:23] [PASSED] pf_fails_no_payload
[11:25:23] [PASSED] pf_fails_bad_origin
[11:25:23] [PASSED] pf_fails_bad_type
[11:25:23] [PASSED] pf_txn_reports_error
[11:25:23] [PASSED] pf_txn_sends_pf2guc
[11:25:23] [PASSED] pf_sends_pf2guc
[11:25:23] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[11:25:23] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[11:25:23] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[11:25:23] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[11:25:23] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[11:25:23] ==================== [PASSED] pf_relay =====================
[11:25:23] ================== vf_relay (3 subtests) ===================
[11:25:23] [PASSED] vf_rejects_guc2vf_too_short
[11:25:23] [PASSED] vf_rejects_guc2vf_too_long
[11:25:23] [PASSED] vf_rejects_guc2vf_no_payload
[11:25:23] ==================== [PASSED] vf_relay =====================
[11:25:23] ================ pf_gt_config (9 subtests) =================
[11:25:23] [PASSED] fair_contexts_1vf
[11:25:23] [PASSED] fair_doorbells_1vf
[11:25:23] [PASSED] fair_ggtt_1vf
[11:25:23] ====================== fair_vram_1vf ======================
[11:25:23] [PASSED] 3.50 GiB
[11:25:23] [PASSED] 11.5 GiB
[11:25:23] [PASSED] 15.5 GiB
[11:25:23] [PASSED] 31.5 GiB
[11:25:23] [PASSED] 63.5 GiB
[11:25:23] [PASSED] 1.91 GiB
[11:25:23] ================== [PASSED] fair_vram_1vf ==================
[11:25:23] ================ fair_vram_1vf_admin_only =================
[11:25:23] [PASSED] 3.50 GiB
[11:25:23] [PASSED] 11.5 GiB
[11:25:23] [PASSED] 15.5 GiB
[11:25:23] [PASSED] 31.5 GiB
[11:25:23] [PASSED] 63.5 GiB
[11:25:23] [PASSED] 1.91 GiB
[11:25:23] ============ [PASSED] fair_vram_1vf_admin_only =============
[11:25:23] ====================== fair_contexts ======================
[11:25:23] [PASSED] 1 VF
[11:25:23] [PASSED] 2 VFs
[11:25:23] [PASSED] 3 VFs
[11:25:23] [PASSED] 4 VFs
[11:25:23] [PASSED] 5 VFs
[11:25:23] [PASSED] 6 VFs
[11:25:23] [PASSED] 7 VFs
[11:25:23] [PASSED] 8 VFs
[11:25:23] [PASSED] 9 VFs
[11:25:23] [PASSED] 10 VFs
[11:25:23] [PASSED] 11 VFs
[11:25:23] [PASSED] 12 VFs
[11:25:23] [PASSED] 13 VFs
[11:25:23] [PASSED] 14 VFs
[11:25:23] [PASSED] 15 VFs
[11:25:23] [PASSED] 16 VFs
[11:25:23] [PASSED] 17 VFs
[11:25:23] [PASSED] 18 VFs
[11:25:23] [PASSED] 19 VFs
[11:25:23] [PASSED] 20 VFs
[11:25:23] [PASSED] 21 VFs
[11:25:23] [PASSED] 22 VFs
[11:25:23] [PASSED] 23 VFs
[11:25:23] [PASSED] 24 VFs
[11:25:23] [PASSED] 25 VFs
[11:25:23] [PASSED] 26 VFs
[11:25:23] [PASSED] 27 VFs
[11:25:23] [PASSED] 28 VFs
[11:25:23] [PASSED] 29 VFs
[11:25:23] [PASSED] 30 VFs
[11:25:23] [PASSED] 31 VFs
[11:25:23] [PASSED] 32 VFs
[11:25:23] [PASSED] 33 VFs
[11:25:23] [PASSED] 34 VFs
[11:25:23] [PASSED] 35 VFs
[11:25:23] [PASSED] 36 VFs
[11:25:23] [PASSED] 37 VFs
[11:25:23] [PASSED] 38 VFs
[11:25:23] [PASSED] 39 VFs
[11:25:23] [PASSED] 40 VFs
[11:25:23] [PASSED] 41 VFs
[11:25:23] [PASSED] 42 VFs
[11:25:23] [PASSED] 43 VFs
[11:25:23] [PASSED] 44 VFs
[11:25:23] [PASSED] 45 VFs
[11:25:23] [PASSED] 46 VFs
[11:25:23] [PASSED] 47 VFs
[11:25:23] [PASSED] 48 VFs
[11:25:23] [PASSED] 49 VFs
[11:25:23] [PASSED] 50 VFs
[11:25:23] [PASSED] 51 VFs
[11:25:23] [PASSED] 52 VFs
[11:25:23] [PASSED] 53 VFs
[11:25:23] [PASSED] 54 VFs
[11:25:23] [PASSED] 55 VFs
[11:25:23] [PASSED] 56 VFs
[11:25:23] [PASSED] 57 VFs
[11:25:23] [PASSED] 58 VFs
[11:25:23] [PASSED] 59 VFs
[11:25:23] [PASSED] 60 VFs
[11:25:23] [PASSED] 61 VFs
[11:25:23] [PASSED] 62 VFs
[11:25:23] [PASSED] 63 VFs
[11:25:23] ================== [PASSED] fair_contexts ==================
[11:25:23] ===================== fair_doorbells ======================
[11:25:23] [PASSED] 1 VF
[11:25:23] [PASSED] 2 VFs
[11:25:23] [PASSED] 3 VFs
[11:25:23] [PASSED] 4 VFs
[11:25:23] [PASSED] 5 VFs
[11:25:23] [PASSED] 6 VFs
[11:25:23] [PASSED] 7 VFs
[11:25:23] [PASSED] 8 VFs
[11:25:23] [PASSED] 9 VFs
[11:25:23] [PASSED] 10 VFs
[11:25:23] [PASSED] 11 VFs
[11:25:23] [PASSED] 12 VFs
[11:25:23] [PASSED] 13 VFs
[11:25:23] [PASSED] 14 VFs
[11:25:23] [PASSED] 15 VFs
[11:25:23] [PASSED] 16 VFs
[11:25:23] [PASSED] 17 VFs
[11:25:23] [PASSED] 18 VFs
[11:25:23] [PASSED] 19 VFs
[11:25:23] [PASSED] 20 VFs
[11:25:23] [PASSED] 21 VFs
[11:25:23] [PASSED] 22 VFs
[11:25:23] [PASSED] 23 VFs
[11:25:23] [PASSED] 24 VFs
[11:25:23] [PASSED] 25 VFs
[11:25:23] [PASSED] 26 VFs
[11:25:23] [PASSED] 27 VFs
[11:25:23] [PASSED] 28 VFs
[11:25:23] [PASSED] 29 VFs
[11:25:23] [PASSED] 30 VFs
[11:25:23] [PASSED] 31 VFs
[11:25:23] [PASSED] 32 VFs
[11:25:23] [PASSED] 33 VFs
[11:25:23] [PASSED] 34 VFs
[11:25:23] [PASSED] 35 VFs
[11:25:23] [PASSED] 36 VFs
[11:25:23] [PASSED] 37 VFs
[11:25:23] [PASSED] 38 VFs
[11:25:23] [PASSED] 39 VFs
[11:25:23] [PASSED] 40 VFs
[11:25:23] [PASSED] 41 VFs
[11:25:23] [PASSED] 42 VFs
[11:25:23] [PASSED] 43 VFs
[11:25:23] [PASSED] 44 VFs
[11:25:23] [PASSED] 45 VFs
[11:25:23] [PASSED] 46 VFs
[11:25:23] [PASSED] 47 VFs
[11:25:23] [PASSED] 48 VFs
[11:25:23] [PASSED] 49 VFs
[11:25:23] [PASSED] 50 VFs
[11:25:23] [PASSED] 51 VFs
[11:25:23] [PASSED] 52 VFs
[11:25:23] [PASSED] 53 VFs
[11:25:23] [PASSED] 54 VFs
[11:25:23] [PASSED] 55 VFs
[11:25:23] [PASSED] 56 VFs
[11:25:23] [PASSED] 57 VFs
[11:25:23] [PASSED] 58 VFs
[11:25:23] [PASSED] 59 VFs
[11:25:23] [PASSED] 60 VFs
[11:25:23] [PASSED] 61 VFs
[11:25:23] [PASSED] 62 VFs
[11:25:23] [PASSED] 63 VFs
[11:25:23] ================= [PASSED] fair_doorbells ==================
[11:25:23] ======================== fair_ggtt ========================
[11:25:23] [PASSED] 1 VF
[11:25:23] [PASSED] 2 VFs
[11:25:23] [PASSED] 3 VFs
[11:25:23] [PASSED] 4 VFs
[11:25:23] [PASSED] 5 VFs
[11:25:23] [PASSED] 6 VFs
[11:25:23] [PASSED] 7 VFs
[11:25:23] [PASSED] 8 VFs
[11:25:23] [PASSED] 9 VFs
[11:25:23] [PASSED] 10 VFs
[11:25:23] [PASSED] 11 VFs
[11:25:23] [PASSED] 12 VFs
[11:25:23] [PASSED] 13 VFs
[11:25:23] [PASSED] 14 VFs
[11:25:23] [PASSED] 15 VFs
[11:25:23] [PASSED] 16 VFs
[11:25:23] [PASSED] 17 VFs
[11:25:23] [PASSED] 18 VFs
[11:25:23] [PASSED] 19 VFs
[11:25:23] [PASSED] 20 VFs
[11:25:23] [PASSED] 21 VFs
[11:25:23] [PASSED] 22 VFs
[11:25:23] [PASSED] 23 VFs
[11:25:23] [PASSED] 24 VFs
[11:25:23] [PASSED] 25 VFs
[11:25:23] [PASSED] 26 VFs
[11:25:23] [PASSED] 27 VFs
[11:25:23] [PASSED] 28 VFs
[11:25:23] [PASSED] 29 VFs
[11:25:23] [PASSED] 30 VFs
[11:25:23] [PASSED] 31 VFs
[11:25:23] [PASSED] 32 VFs
[11:25:23] [PASSED] 33 VFs
[11:25:23] [PASSED] 34 VFs
[11:25:23] [PASSED] 35 VFs
[11:25:23] [PASSED] 36 VFs
[11:25:23] [PASSED] 37 VFs
[11:25:24] [PASSED] 38 VFs
[11:25:24] [PASSED] 39 VFs
[11:25:24] [PASSED] 40 VFs
[11:25:24] [PASSED] 41 VFs
[11:25:24] [PASSED] 42 VFs
[11:25:24] [PASSED] 43 VFs
[11:25:24] [PASSED] 44 VFs
[11:25:24] [PASSED] 45 VFs
[11:25:24] [PASSED] 46 VFs
[11:25:24] [PASSED] 47 VFs
[11:25:24] [PASSED] 48 VFs
[11:25:24] [PASSED] 49 VFs
[11:25:24] [PASSED] 50 VFs
[11:25:24] [PASSED] 51 VFs
[11:25:24] [PASSED] 52 VFs
[11:25:24] [PASSED] 53 VFs
[11:25:24] [PASSED] 54 VFs
[11:25:24] [PASSED] 55 VFs
[11:25:24] [PASSED] 56 VFs
[11:25:24] [PASSED] 57 VFs
[11:25:24] [PASSED] 58 VFs
[11:25:24] [PASSED] 59 VFs
[11:25:24] [PASSED] 60 VFs
[11:25:24] [PASSED] 61 VFs
[11:25:24] [PASSED] 62 VFs
[11:25:24] [PASSED] 63 VFs
[11:25:24] ==================== [PASSED] fair_ggtt ====================
[11:25:24] ======================== fair_vram ========================
[11:25:24] [PASSED] 1 VF
[11:25:24] [PASSED] 2 VFs
[11:25:24] [PASSED] 3 VFs
[11:25:24] [PASSED] 4 VFs
[11:25:24] [PASSED] 5 VFs
[11:25:24] [PASSED] 6 VFs
[11:25:24] [PASSED] 7 VFs
[11:25:24] [PASSED] 8 VFs
[11:25:24] [PASSED] 9 VFs
[11:25:24] [PASSED] 10 VFs
[11:25:24] [PASSED] 11 VFs
[11:25:24] [PASSED] 12 VFs
[11:25:24] [PASSED] 13 VFs
[11:25:24] [PASSED] 14 VFs
[11:25:24] [PASSED] 15 VFs
[11:25:24] [PASSED] 16 VFs
[11:25:24] [PASSED] 17 VFs
[11:25:24] [PASSED] 18 VFs
[11:25:24] [PASSED] 19 VFs
[11:25:24] [PASSED] 20 VFs
[11:25:24] [PASSED] 21 VFs
[11:25:24] [PASSED] 22 VFs
[11:25:24] [PASSED] 23 VFs
[11:25:24] [PASSED] 24 VFs
[11:25:24] [PASSED] 25 VFs
[11:25:24] [PASSED] 26 VFs
[11:25:24] [PASSED] 27 VFs
[11:25:24] [PASSED] 28 VFs
[11:25:24] [PASSED] 29 VFs
[11:25:24] [PASSED] 30 VFs
[11:25:24] [PASSED] 31 VFs
[11:25:24] [PASSED] 32 VFs
[11:25:24] [PASSED] 33 VFs
[11:25:24] [PASSED] 34 VFs
[11:25:24] [PASSED] 35 VFs
[11:25:24] [PASSED] 36 VFs
[11:25:24] [PASSED] 37 VFs
[11:25:24] [PASSED] 38 VFs
[11:25:24] [PASSED] 39 VFs
[11:25:24] [PASSED] 40 VFs
[11:25:24] [PASSED] 41 VFs
[11:25:24] [PASSED] 42 VFs
[11:25:24] [PASSED] 43 VFs
[11:25:24] [PASSED] 44 VFs
[11:25:24] [PASSED] 45 VFs
[11:25:24] [PASSED] 46 VFs
[11:25:24] [PASSED] 47 VFs
[11:25:24] [PASSED] 48 VFs
[11:25:24] [PASSED] 49 VFs
[11:25:24] [PASSED] 50 VFs
[11:25:24] [PASSED] 51 VFs
[11:25:24] [PASSED] 52 VFs
[11:25:24] [PASSED] 53 VFs
[11:25:24] [PASSED] 54 VFs
[11:25:24] [PASSED] 55 VFs
[11:25:24] [PASSED] 56 VFs
[11:25:24] [PASSED] 57 VFs
[11:25:24] [PASSED] 58 VFs
[11:25:24] [PASSED] 59 VFs
[11:25:24] [PASSED] 60 VFs
[11:25:24] [PASSED] 61 VFs
[11:25:24] [PASSED] 62 VFs
[11:25:24] [PASSED] 63 VFs
[11:25:24] ==================== [PASSED] fair_vram ====================
[11:25:24] ================== [PASSED] pf_gt_config ===================
[11:25:24] ===================== lmtt (1 subtest) =====================
[11:25:24] ======================== test_ops =========================
[11:25:24] [PASSED] 2-level
[11:25:24] [PASSED] multi-level
[11:25:24] ==================== [PASSED] test_ops =====================
[11:25:24] ====================== [PASSED] lmtt =======================
[11:25:24] ================= sriov_packet (1 subtest) =================
[11:25:24] [PASSED] test_descriptor_init
[11:25:24] ================== [PASSED] sriov_packet ===================
[11:25:24] ================= pf_service (11 subtests) =================
[11:25:24] [PASSED] pf_negotiate_any
[11:25:24] [PASSED] pf_negotiate_base_match
[11:25:24] [PASSED] pf_negotiate_base_newer
[11:25:24] [PASSED] pf_negotiate_base_next
[11:25:24] [SKIPPED] pf_negotiate_base_older (no older minor)
[11:25:24] [PASSED] pf_negotiate_base_prev
[11:25:24] [PASSED] pf_negotiate_latest_match
[11:25:24] [PASSED] pf_negotiate_latest_newer
[11:25:24] [PASSED] pf_negotiate_latest_next
[11:25:24] [SKIPPED] pf_negotiate_latest_older (no older minor)
[11:25:24] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[11:25:24] =================== [PASSED] pf_service ====================
[11:25:24] ================= xe_guc_g2g (2 subtests) ==================
[11:25:24] ============== xe_live_guc_g2g_kunit_default ==============
[11:25:24] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[11:25:24] ============== xe_live_guc_g2g_kunit_allmem ===============
[11:25:24] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[11:25:24] =================== [SKIPPED] xe_guc_g2g ===================
[11:25:24] =================== xe_mocs (2 subtests) ===================
[11:25:24] ================ xe_live_mocs_kernel_kunit ================
[11:25:24] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[11:25:24] ================ xe_live_mocs_reset_kunit =================
[11:25:24] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[11:25:24] ==================== [SKIPPED] xe_mocs =====================
[11:25:24] ================= xe_migrate (2 subtests) ==================
[11:25:24] ================= xe_migrate_sanity_kunit =================
[11:25:24] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[11:25:24] ================== xe_validate_ccs_kunit ==================
[11:25:24] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[11:25:24] =================== [SKIPPED] xe_migrate ===================
[11:25:24] ================== xe_dma_buf (1 subtest) ==================
[11:25:24] ==================== xe_dma_buf_kunit =====================
[11:25:24] ================ [SKIPPED] xe_dma_buf_kunit ================
[11:25:24] =================== [SKIPPED] xe_dma_buf ===================
[11:25:24] ================= xe_bo_shrink (1 subtest) =================
[11:25:24] =================== xe_bo_shrink_kunit ====================
[11:25:24] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[11:25:24] ================== [SKIPPED] xe_bo_shrink ==================
[11:25:24] ==================== xe_bo (2 subtests) ====================
[11:25:24] ================== xe_ccs_migrate_kunit ===================
[11:25:24] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[11:25:24] ==================== xe_bo_evict_kunit ====================
[11:25:24] =============== [SKIPPED] xe_bo_evict_kunit ================
[11:25:24] ===================== [SKIPPED] xe_bo ======================
[11:25:24] =================== xe_any (9 subtests) ====================
[11:25:24] [PASSED] test_to_xe
[11:25:24] [PASSED] test_to_dev
[11:25:24] [PASSED] test_to_pdev
[11:25:24] [PASSED] test_to_drm
[11:25:24] [PASSED] test_if_pdev
[11:25:24] [PASSED] test_if_xe
[11:25:24] [PASSED] test_if_tile
[11:25:24] [PASSED] test_if_gt
[11:25:24] [PASSED] test_to_id
[11:25:24] ===================== [PASSED] xe_any ======================
[11:25:24] ==================== args (13 subtests) ====================
[11:25:24] [PASSED] count_args_test
[11:25:24] [PASSED] call_args_example
[11:25:24] [PASSED] call_args_test
[11:25:24] [PASSED] drop_first_arg_example
[11:25:24] [PASSED] drop_first_arg_test
[11:25:24] [PASSED] first_arg_example
[11:25:24] [PASSED] first_arg_test
[11:25:24] [PASSED] last_arg_example
[11:25:24] [PASSED] last_arg_test
[11:25:24] [PASSED] pick_arg_example
[11:25:24] [PASSED] if_args_example
[11:25:24] [PASSED] if_args_test
[11:25:24] [PASSED] sep_comma_example
[11:25:24] ====================== [PASSED] args =======================
[11:25:24] =================== xe_pci (3 subtests) ====================
[11:25:24] ==================== check_graphics_ip ====================
[11:25:24] [PASSED] 12.00 Xe_LP
[11:25:24] [PASSED] 12.10 Xe_LP+
[11:25:24] [PASSED] 12.55 Xe_HPG
[11:25:24] [PASSED] 12.60 Xe_HPC
[11:25:24] [PASSED] 12.70 Xe_LPG
[11:25:24] [PASSED] 12.71 Xe_LPG
[11:25:24] [PASSED] 12.74 Xe_LPG+
[11:25:24] [PASSED] 20.01 Xe2_HPG
[11:25:24] [PASSED] 20.02 Xe2_HPG
[11:25:24] [PASSED] 20.04 Xe2_LPG
[11:25:24] [PASSED] 30.00 Xe3_LPG
[11:25:24] [PASSED] 30.01 Xe3_LPG
[11:25:24] [PASSED] 30.03 Xe3_LPG
[11:25:24] [PASSED] 30.04 Xe3_LPG
[11:25:24] [PASSED] 30.05 Xe3_LPG
[11:25:24] [PASSED] 35.10 Xe3p_LPG
[11:25:24] [PASSED] 35.11 Xe3p_XPC
[11:25:24] ================ [PASSED] check_graphics_ip ================
[11:25:24] ===================== check_media_ip ======================
[11:25:24] [PASSED] 12.00 Xe_M
[11:25:24] [PASSED] 12.55 Xe_HPM
[11:25:24] [PASSED] 13.00 Xe_LPM+
[11:25:24] [PASSED] 13.01 Xe2_HPM
[11:25:24] [PASSED] 20.00 Xe2_LPM
[11:25:24] [PASSED] 30.00 Xe3_LPM
[11:25:24] [PASSED] 30.02 Xe3_LPM
[11:25:24] [PASSED] 35.00 Xe3p_LPM
[11:25:24] [PASSED] 35.03 Xe3p_HPM
[11:25:24] ================= [PASSED] check_media_ip ==================
[11:25:24] =================== check_platform_desc ===================
[11:25:24] [PASSED] 0x9A60 (TIGERLAKE)
[11:25:24] [PASSED] 0x9A68 (TIGERLAKE)
[11:25:24] [PASSED] 0x9A70 (TIGERLAKE)
[11:25:24] [PASSED] 0x9A40 (TIGERLAKE)
[11:25:24] [PASSED] 0x9A49 (TIGERLAKE)
[11:25:24] [PASSED] 0x9A59 (TIGERLAKE)
[11:25:24] [PASSED] 0x9A78 (TIGERLAKE)
[11:25:24] [PASSED] 0x9AC0 (TIGERLAKE)
[11:25:24] [PASSED] 0x9AC9 (TIGERLAKE)
[11:25:24] [PASSED] 0x9AD9 (TIGERLAKE)
[11:25:24] [PASSED] 0x9AF8 (TIGERLAKE)
[11:25:24] [PASSED] 0x4C80 (ROCKETLAKE)
[11:25:24] [PASSED] 0x4C8A (ROCKETLAKE)
[11:25:24] [PASSED] 0x4C8B (ROCKETLAKE)
[11:25:24] [PASSED] 0x4C8C (ROCKETLAKE)
[11:25:24] [PASSED] 0x4C90 (ROCKETLAKE)
[11:25:24] [PASSED] 0x4C9A (ROCKETLAKE)
[11:25:24] [PASSED] 0x4680 (ALDERLAKE_S)
[11:25:24] [PASSED] 0x4682 (ALDERLAKE_S)
[11:25:24] [PASSED] 0x4688 (ALDERLAKE_S)
[11:25:24] [PASSED] 0x468A (ALDERLAKE_S)
[11:25:24] [PASSED] 0x468B (ALDERLAKE_S)
[11:25:24] [PASSED] 0x4690 (ALDERLAKE_S)
[11:25:24] [PASSED] 0x4692 (ALDERLAKE_S)
[11:25:24] [PASSED] 0x4693 (ALDERLAKE_S)
[11:25:24] [PASSED] 0x46A0 (ALDERLAKE_P)
[11:25:24] [PASSED] 0x46A1 (ALDERLAKE_P)
[11:25:24] [PASSED] 0x46A2 (ALDERLAKE_P)
[11:25:24] [PASSED] 0x46A3 (ALDERLAKE_P)
[11:25:24] [PASSED] 0x46A6 (ALDERLAKE_P)
[11:25:24] [PASSED] 0x46A8 (ALDERLAKE_P)
[11:25:24] [PASSED] 0x46AA (ALDERLAKE_P)
[11:25:24] [PASSED] 0x462A (ALDERLAKE_P)
[11:25:24] [PASSED] 0x4626 (ALDERLAKE_P)
[11:25:24] [PASSED] 0x4628 (ALDERLAKE_P)
[11:25:24] [PASSED] 0x46B0 (ALDERLAKE_P)
[11:25:24] [PASSED] 0x46B1 (ALDERLAKE_P)
[11:25:24] [PASSED] 0x46B2 (ALDERLAKE_P)
[11:25:24] [PASSED] 0x46B3 (ALDERLAKE_P)
[11:25:24] [PASSED] 0x46C0 (ALDERLAKE_P)
[11:25:24] [PASSED] 0x46C1 (ALDERLAKE_P)
[11:25:24] [PASSED] 0x46C2 (ALDERLAKE_P)
[11:25:24] [PASSED] 0x46C3 (ALDERLAKE_P)
[11:25:24] [PASSED] 0x46D0 (ALDERLAKE_N)
[11:25:24] [PASSED] 0x46D1 (ALDERLAKE_N)
[11:25:24] [PASSED] 0x46D2 (ALDERLAKE_N)
[11:25:24] [PASSED] 0x46D3 (ALDERLAKE_N)
[11:25:24] [PASSED] 0x46D4 (ALDERLAKE_N)
[11:25:24] [PASSED] 0xA721 (ALDERLAKE_P)
[11:25:24] [PASSED] 0xA7A1 (ALDERLAKE_P)
[11:25:24] [PASSED] 0xA7A9 (ALDERLAKE_P)
[11:25:24] [PASSED] 0xA7AC (ALDERLAKE_P)
[11:25:24] [PASSED] 0xA7AD (ALDERLAKE_P)
[11:25:24] [PASSED] 0xA720 (ALDERLAKE_P)
[11:25:24] [PASSED] 0xA7A0 (ALDERLAKE_P)
[11:25:24] [PASSED] 0xA7A8 (ALDERLAKE_P)
[11:25:24] [PASSED] 0xA7AA (ALDERLAKE_P)
[11:25:24] [PASSED] 0xA7AB (ALDERLAKE_P)
[11:25:24] [PASSED] 0xA780 (ALDERLAKE_S)
[11:25:24] [PASSED] 0xA781 (ALDERLAKE_S)
[11:25:24] [PASSED] 0xA782 (ALDERLAKE_S)
[11:25:24] [PASSED] 0xA783 (ALDERLAKE_S)
[11:25:24] [PASSED] 0xA788 (ALDERLAKE_S)
[11:25:24] [PASSED] 0xA789 (ALDERLAKE_S)
[11:25:24] [PASSED] 0xA78A (ALDERLAKE_S)
[11:25:24] [PASSED] 0xA78B (ALDERLAKE_S)
[11:25:24] [PASSED] 0x4905 (DG1)
[11:25:24] [PASSED] 0x4906 (DG1)
[11:25:24] [PASSED] 0x4907 (DG1)
[11:25:24] [PASSED] 0x4908 (DG1)
[11:25:24] [PASSED] 0x4909 (DG1)
[11:25:24] [PASSED] 0x56C0 (DG2)
[11:25:24] [PASSED] 0x56C2 (DG2)
[11:25:24] [PASSED] 0x56C1 (DG2)
[11:25:24] [PASSED] 0x7D51 (METEORLAKE)
[11:25:24] [PASSED] 0x7DD1 (METEORLAKE)
[11:25:24] [PASSED] 0x7D41 (METEORLAKE)
[11:25:24] [PASSED] 0x7D67 (METEORLAKE)
[11:25:24] [PASSED] 0xB640 (METEORLAKE)
[11:25:24] [PASSED] 0x56A0 (DG2)
[11:25:24] [PASSED] 0x56A1 (DG2)
[11:25:24] [PASSED] 0x56A2 (DG2)
[11:25:24] [PASSED] 0x56BE (DG2)
[11:25:24] [PASSED] 0x56BF (DG2)
[11:25:24] [PASSED] 0x5690 (DG2)
[11:25:24] [PASSED] 0x5691 (DG2)
[11:25:24] [PASSED] 0x5692 (DG2)
[11:25:24] [PASSED] 0x56A5 (DG2)
[11:25:24] [PASSED] 0x56A6 (DG2)
[11:25:24] [PASSED] 0x56B0 (DG2)
[11:25:24] [PASSED] 0x56B1 (DG2)
[11:25:24] [PASSED] 0x56BA (DG2)
[11:25:24] [PASSED] 0x56BB (DG2)
[11:25:24] [PASSED] 0x56BC (DG2)
[11:25:24] [PASSED] 0x56BD (DG2)
[11:25:24] [PASSED] 0x5693 (DG2)
[11:25:24] [PASSED] 0x5694 (DG2)
[11:25:24] [PASSED] 0x5695 (DG2)
[11:25:24] [PASSED] 0x56A3 (DG2)
[11:25:24] [PASSED] 0x56A4 (DG2)
[11:25:24] [PASSED] 0x56B2 (DG2)
[11:25:24] [PASSED] 0x56B3 (DG2)
[11:25:24] [PASSED] 0x5696 (DG2)
[11:25:24] [PASSED] 0x5697 (DG2)
[11:25:24] [PASSED] 0xB69 (PVC)
[11:25:24] [PASSED] 0xB6E (PVC)
[11:25:24] [PASSED] 0xBD4 (PVC)
[11:25:24] [PASSED] 0xBD5 (PVC)
[11:25:24] [PASSED] 0xBD6 (PVC)
[11:25:24] [PASSED] 0xBD7 (PVC)
[11:25:24] [PASSED] 0xBD8 (PVC)
[11:25:24] [PASSED] 0xBD9 (PVC)
[11:25:24] [PASSED] 0xBDA (PVC)
[11:25:24] [PASSED] 0xBDB (PVC)
[11:25:24] [PASSED] 0xBE0 (PVC)
[11:25:24] [PASSED] 0xBE1 (PVC)
[11:25:24] [PASSED] 0xBE5 (PVC)
[11:25:24] [PASSED] 0x7D40 (METEORLAKE)
[11:25:24] [PASSED] 0x7D45 (METEORLAKE)
[11:25:24] [PASSED] 0x7D55 (METEORLAKE)
[11:25:24] [PASSED] 0x7D60 (METEORLAKE)
[11:25:24] [PASSED] 0x7DD5 (METEORLAKE)
[11:25:24] [PASSED] 0x6420 (LUNARLAKE)
[11:25:24] [PASSED] 0x64A0 (LUNARLAKE)
[11:25:24] [PASSED] 0x64B0 (LUNARLAKE)
[11:25:24] [PASSED] 0xE202 (BATTLEMAGE)
[11:25:24] [PASSED] 0xE209 (BATTLEMAGE)
[11:25:24] [PASSED] 0xE20B (BATTLEMAGE)
[11:25:24] [PASSED] 0xE20C (BATTLEMAGE)
[11:25:24] [PASSED] 0xE20D (BATTLEMAGE)
[11:25:24] [PASSED] 0xE210 (BATTLEMAGE)
[11:25:24] [PASSED] 0xE211 (BATTLEMAGE)
[11:25:24] [PASSED] 0xE212 (BATTLEMAGE)
[11:25:24] [PASSED] 0xE216 (BATTLEMAGE)
[11:25:24] [PASSED] 0xE220 (BATTLEMAGE)
[11:25:24] [PASSED] 0xE221 (BATTLEMAGE)
[11:25:24] [PASSED] 0xE222 (BATTLEMAGE)
[11:25:24] [PASSED] 0xE223 (BATTLEMAGE)
[11:25:24] [PASSED] 0xB080 (PANTHERLAKE)
[11:25:24] [PASSED] 0xB081 (PANTHERLAKE)
[11:25:24] [PASSED] 0xB082 (PANTHERLAKE)
[11:25:24] [PASSED] 0xB083 (PANTHERLAKE)
[11:25:24] [PASSED] 0xB084 (PANTHERLAKE)
[11:25:24] [PASSED] 0xB085 (PANTHERLAKE)
[11:25:24] [PASSED] 0xB086 (PANTHERLAKE)
[11:25:24] [PASSED] 0xB087 (PANTHERLAKE)
[11:25:24] [PASSED] 0xB08F (PANTHERLAKE)
[11:25:24] [PASSED] 0xB090 (PANTHERLAKE)
[11:25:24] [PASSED] 0xB0A0 (PANTHERLAKE)
[11:25:24] [PASSED] 0xB0B0 (PANTHERLAKE)
[11:25:24] [PASSED] 0xFD80 (PANTHERLAKE)
[11:25:24] [PASSED] 0xFD81 (PANTHERLAKE)
[11:25:24] [PASSED] 0xD740 (NOVALAKE_S)
[11:25:24] [PASSED] 0xD741 (NOVALAKE_S)
[11:25:24] [PASSED] 0xD742 (NOVALAKE_S)
[11:25:24] [PASSED] 0xD743 (NOVALAKE_S)
[11:25:24] [PASSED] 0xD745 (NOVALAKE_S)
[11:25:24] [PASSED] 0xD74A (NOVALAKE_S)
[11:25:24] [PASSED] 0xD74B (NOVALAKE_S)
[11:25:24] [PASSED] 0x674C (CRESCENTISLAND)
[11:25:24] [PASSED] 0x674D (CRESCENTISLAND)
[11:25:24] [PASSED] 0x674E (CRESCENTISLAND)
[11:25:24] [PASSED] 0x674F (CRESCENTISLAND)
[11:25:24] [PASSED] 0x6750 (CRESCENTISLAND)
[11:25:24] [PASSED] 0xD750 (NOVALAKE_P)
[11:25:24] [PASSED] 0xD751 (NOVALAKE_P)
[11:25:24] [PASSED] 0xD752 (NOVALAKE_P)
[11:25:24] [PASSED] 0xD753 (NOVALAKE_P)
[11:25:24] [PASSED] 0xD754 (NOVALAKE_P)
[11:25:24] [PASSED] 0xD755 (NOVALAKE_P)
[11:25:24] [PASSED] 0xD756 (NOVALAKE_P)
[11:25:24] [PASSED] 0xD757 (NOVALAKE_P)
[11:25:24] [PASSED] 0xD75F (NOVALAKE_P)
[11:25:24] =============== [PASSED] check_platform_desc ===============
[11:25:24] ===================== [PASSED] xe_pci ======================
[11:25:24] ============= xe_rtp_tables_test (5 subtests) ==============
[11:25:24] ================== xe_rtp_table_gt_test ===================
[11:25:24] [PASSED] gt_was/14011060649
[11:25:24] [PASSED] gt_was/14011059788
[11:25:24] [PASSED] gt_was/14015795083
[11:25:24] [PASSED] gt_was/16021867713
[11:25:24] [PASSED] gt_was/14019449301
[11:25:24] [PASSED] gt_was/16028005424
[11:25:24] [PASSED] gt_was/14026578760
[11:25:24] [PASSED] gt_was/1409420604
[11:25:24] [PASSED] gt_was/1408615072
[11:25:24] [PASSED] gt_was/22010523718
[11:25:24] [PASSED] gt_was/14011006942
[11:25:24] [PASSED] gt_was/14014830051
[11:25:24] [PASSED] gt_was/18018781329
[11:25:24] [PASSED] gt_was/1509235366
[11:25:24] [PASSED] gt_was/18018781329
[11:25:24] [PASSED] gt_was/16016694945
[11:25:24] [PASSED] gt_was/14018575942
[11:25:24] [PASSED] gt_was/22016670082
[11:25:24] [PASSED] gt_was/22016670082
[11:25:24] [PASSED] gt_was/14017421178
[11:25:24] [PASSED] gt_was/16025250150
[11:25:24] [PASSED] gt_was/14021871409
[11:25:24] [PASSED] gt_was/16021865536
[11:25:24] [PASSED] gt_was/14021486841
[11:25:24] [PASSED] gt_was/14025160223
[11:25:24] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[11:25:24] [PASSED] gt_was/14025635424
[11:25:24] [PASSED] gt_was/16028005424
[11:25:24] ============== [PASSED] xe_rtp_table_gt_test ===============
[11:25:24] ================== xe_rtp_table_gt_test ===================
[11:25:24] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[11:25:24] [PASSED] gt_tunings/Tuning: 32B Access Enable
[11:25:24] [PASSED] gt_tunings/Tuning: L3 cache
[11:25:24] [PASSED] gt_tunings/Tuning: L3 cache - media
[11:25:24] [PASSED] gt_tunings/Tuning: Compression Overfetch
[11:25:24] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[11:25:24] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[11:25:24] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[11:25:24] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[11:25:24] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[11:25:24] [PASSED] gt_tunings/Tuning: Stateless compression control
[11:25:24] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[11:25:24] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[11:25:24] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[11:25:24] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[11:25:24] ============== [PASSED] xe_rtp_table_gt_test ===============
[11:25:24] ================== xe_rtp_table_oob_test ==================
[11:25:24] [PASSED] oob_was/1607983814
[11:25:24] [PASSED] oob_was/16010904313
[11:25:24] [PASSED] oob_was/18022495364
[11:25:24] [PASSED] oob_was/22012773006
[11:25:24] [PASSED] oob_was/14014475959
[11:25:24] [PASSED] oob_was/22011391025
[11:25:24] [PASSED] oob_was/22012727170
[11:25:24] [PASSED] oob_was/22012727685
[11:25:24] [PASSED] oob_was/22016596838
[11:25:24] [PASSED] oob_was/18020744125
[11:25:24] [PASSED] oob_was/1409600907
[11:25:24] [PASSED] oob_was/22014953428
[11:25:24] [PASSED] oob_was/16017236439
[11:25:24] [PASSED] oob_was/14019821291
[11:25:24] [PASSED] oob_was/14015076503
[11:25:24] [PASSED] oob_was/14018913170
[11:25:24] [PASSED] oob_was/14018094691
[11:25:24] [PASSED] oob_was/18024947630
[11:25:24] [PASSED] oob_was/16022287689
[11:25:24] [PASSED] oob_was/13011645652
[11:25:24] [PASSED] oob_was/14022293748
[11:25:24] [PASSED] oob_was/22019794406
[11:25:24] [PASSED] oob_was/22019338487
[11:25:24] [PASSED] oob_was/16023588340
[11:25:24] [PASSED] oob_was/14019789679
[11:25:24] [PASSED] oob_was/14022866841
[11:25:24] [PASSED] oob_was/16021333562
[11:25:24] [PASSED] oob_was/14016712196
[11:25:24] [PASSED] oob_was/14015568240
[11:25:24] [PASSED] oob_was/18013179988
[11:25:24] [PASSED] oob_was/1508761755
[11:25:24] [PASSED] oob_was/16023105232
[11:25:24] [PASSED] oob_was/16026508708
[11:25:24] [PASSED] oob_was/14020001231
[11:25:24] [PASSED] oob_was/16023683509
[11:25:24] [PASSED] oob_was/14025515070
[11:25:24] [PASSED] oob_was/15015404425_disable
[11:25:24] [PASSED] oob_was/16026007364
[11:25:24] [PASSED] oob_was/14020316580
[11:25:24] [PASSED] oob_was/14025883347
[11:25:24] [PASSED] oob_was/16029380221
[11:25:24] [PASSED] oob_was/22022079272
[11:25:24] [PASSED] oob_was/16029897822
[11:25:24] [PASSED] oob_was/14027054324
[11:25:24] ============== [PASSED] xe_rtp_table_oob_test ==============
[11:25:24] ================ xe_rtp_table_dev_oob_test ================
[11:25:24] [PASSED] device_oob_was/22010954014
[11:25:24] [PASSED] device_oob_was/15015404425
[11:25:24] [PASSED] device_oob_was/22019338487_display
[11:25:24] [PASSED] device_oob_was/14022085890
[11:25:24] [PASSED] device_oob_was/14026539277
[11:25:24] [PASSED] device_oob_was/14026633728
[11:25:24] [PASSED] device_oob_was/14026746987
[11:25:24] [PASSED] device_oob_was/14026779378
[11:25:24] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[11:25:24] ========== xe_rtp_table_missing_upper_bound_test ==========
[11:25:24] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[11:25:24] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[11:25:24] [PASSED] register_whitelist/1806527549
[11:25:24] [PASSED] register_whitelist/allow_read_ctx_timestamp
[11:25:24] [PASSED] register_whitelist/allow_read_queue_timestamp
[11:25:24] [PASSED] register_whitelist/16014440446
[11:25:24] [PASSED] register_whitelist/16017236439
[11:25:24] [PASSED] register_whitelist/16020183090
[11:25:24] [PASSED] register_whitelist/14024997852
[11:25:24] [PASSED] register_whitelist/14024997852
[11:25:24] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[11:25:24] =============== [PASSED] xe_rtp_tables_test ================
[11:25:24] =================== xe_rtp (3 subtests) ====================
[11:25:24] =================== xe_rtp_rules_tests ====================
[11:25:24] [PASSED] no
[11:25:24] [PASSED] yes
[11:25:24] [PASSED] no-and-no
[11:25:24] [PASSED] no-and-yes
[11:25:24] [PASSED] yes-and-no
[11:25:24] [PASSED] yes-and-yes
[11:25:24] [PASSED] no-or-no
[11:25:24] [PASSED] no-or-yes
[11:25:24] [PASSED] yes-or-no
[11:25:24] [PASSED] yes-or-yes
[11:25:24] [PASSED] no-yes-or-yes-no
[11:25:24] [PASSED] no-yes-or-yes-yes
[11:25:24] [PASSED] yes-yes-or-no-yes
[11:25:24] [PASSED] yes-yes-or-yes-yes
[11:25:24] [PASSED] no-no-or-yes-or-no
[11:25:24] [PASSED] or
[11:25:24] [PASSED] or-yes
[11:25:24] [PASSED] or-no
[11:25:24] [PASSED] yes-or
[11:25:24] [PASSED] no-or
[11:25:24] [PASSED] no-or-or-yes
[11:25:24] [PASSED] yes-or-or-no
[11:25:24] [PASSED] no-or-or-no
[11:25:24] [PASSED] missing-context-engine-class
[11:25:24] [PASSED] missing-context-engine-class-or-yes
[11:25:24] [PASSED] missing-context-engine-class-or-or-yes
[11:25:24] =============== [PASSED] xe_rtp_rules_tests ================
[11:25:24] =============== xe_rtp_process_to_sr_tests ================
[11:25:24] [PASSED] coalesce-same-reg
[11:25:24] [PASSED] coalesce-same-reg-literal-and-func
[11:25:24] [PASSED] no-match-no-add
[11:25:24] [PASSED] two-regs-two-entries
[11:25:24] [PASSED] clr-one-set-other
[11:25:24] [PASSED] set-field
[11:25:24] [PASSED] conflict-duplicate
[11:25:24] [PASSED] conflict-not-disjoint
[11:25:24] [PASSED] conflict-not-disjoint-literal-and-func
[11:25:24] [PASSED] conflict-reg-type
[11:25:24] [PASSED] bad-mcr-reg-forced-to-regular
[11:25:24] [PASSED] bad-regular-reg-forced-to-mcr
[11:25:24] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[11:25:24] ================== xe_rtp_process_tests ===================
[11:25:24] [PASSED] active1
[11:25:24] [PASSED] active2
[11:25:24] [PASSED] active-inactive
[11:25:24] [PASSED] inactive-active
[11:25:24] [PASSED] inactive-active-inactive
[11:25:24] [PASSED] inactive-inactive-inactive
[11:25:24] ============== [PASSED] xe_rtp_process_tests ===============
[11:25:24] ===================== [PASSED] xe_rtp ======================
[11:25:24] ==================== xe_wa (1 subtest) =====================
[11:25:24] ======================== xe_wa_gt =========================
[11:25:24] [PASSED] TIGERLAKE B0
[11:25:24] [PASSED] DG1 A0
[11:25:24] [PASSED] DG1 B0
[11:25:24] [PASSED] ALDERLAKE_S A0
[11:25:24] [PASSED] ALDERLAKE_S B0
[11:25:24] [PASSED] ALDERLAKE_S C0
[11:25:24] [PASSED] ALDERLAKE_S D0
[11:25:24] [PASSED] ALDERLAKE_P A0
[11:25:24] [PASSED] ALDERLAKE_P B0
[11:25:24] [PASSED] ALDERLAKE_P C0
[11:25:24] [PASSED] ALDERLAKE_S RPLS D0
[11:25:24] [PASSED] ALDERLAKE_P RPLU E0
[11:25:24] [PASSED] DG2 G10 C0
[11:25:24] [PASSED] DG2 G11 B1
[11:25:24] [PASSED] DG2 G12 A1
[11:25:24] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[11:25:24] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[11:25:24] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[11:25:24] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[11:25:24] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[11:25:24] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[11:25:24] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[11:25:24] ==================== [PASSED] xe_wa_gt =====================
[11:25:24] ====================== [PASSED] xe_wa ======================
[11:25:24] ============================================================
[11:25:24] Testing complete. Ran 793 tests: passed: 765, skipped: 28
[11:25:24] Elapsed time: 36.718s total, 1.818s configuring, 34.184s building, 0.694s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[11:25:24] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:25:26] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[11:25:51] Starting KUnit Kernel (1/1)...
[11:25:51] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:25:51] ============= refcount_interrupt (4 subtests) ==============
[11:25:51] [PASSED] test_single_irq_change
[11:25:51] [PASSED] test_nested_irq_change
[11:25:51] [PASSED] test_multiple_irq_change
[11:25:51] [PASSED] test_irq_save
[11:25:51] =============== [PASSED] refcount_interrupt ================
[11:25:51] ============ drm_test_pick_cmdline (2 subtests) ============
[11:25:51] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[11:25:51] =============== drm_test_pick_cmdline_named ===============
[11:25:51] [PASSED] NTSC
[11:25:51] [PASSED] NTSC-J
[11:25:51] [PASSED] PAL
[11:25:51] [PASSED] PAL-M
[11:25:51] =========== [PASSED] drm_test_pick_cmdline_named ===========
[11:25:51] ============== [PASSED] drm_test_pick_cmdline ==============
[11:25:51] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[11:25:51] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[11:25:51] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[11:25:51] =========== drm_validate_clone_mode (2 subtests) ===========
[11:25:51] ============== drm_test_check_in_clone_mode ===============
[11:25:51] [PASSED] in_clone_mode
[11:25:51] [PASSED] not_in_clone_mode
[11:25:51] ========== [PASSED] drm_test_check_in_clone_mode ===========
[11:25:51] =============== drm_test_check_valid_clones ===============
[11:25:51] [PASSED] not_in_clone_mode
[11:25:51] [PASSED] valid_clone
[11:25:51] [PASSED] invalid_clone
[11:25:51] =========== [PASSED] drm_test_check_valid_clones ===========
[11:25:51] ============= [PASSED] drm_validate_clone_mode =============
[11:25:51] ============= drm_validate_modeset (1 subtest) =============
[11:25:51] [PASSED] drm_test_check_connector_changed_modeset
[11:25:51] ============== [PASSED] drm_validate_modeset ===============
[11:25:51] ====== drm_test_bridge_get_current_state (1 subtest) =======
[11:25:51] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[11:25:51] ======== [PASSED] drm_test_bridge_get_current_state ========
[11:25:51] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[11:25:51] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[11:25:51] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[11:25:51] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[11:25:51] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[11:25:51] ============== drm_bridge_alloc (2 subtests) ===============
[11:25:51] [PASSED] drm_test_drm_bridge_alloc_basic
[11:25:51] [PASSED] drm_test_drm_bridge_alloc_get_put
[11:25:51] ================ [PASSED] drm_bridge_alloc =================
[11:25:51] ============= drm_bridge_bus_fmt (5 subtests) ==============
[11:25:51] [PASSED] drm_test_bridge_rgb_yuv_rgb
[11:25:51] [PASSED] drm_test_bridge_must_convert_to_yuv444
[11:25:51] [PASSED] drm_test_bridge_hdmi_auto_rgb
[11:25:51] [PASSED] drm_test_bridge_auto_first
[11:25:51] [PASSED] drm_test_bridge_rgb_yuv_no_path
[11:25:51] =============== [PASSED] drm_bridge_bus_fmt ================
[11:25:51] ============= drm_cmdline_parser (40 subtests) =============
[11:25:51] [PASSED] drm_test_cmdline_force_d_only
[11:25:51] [PASSED] drm_test_cmdline_force_D_only_dvi
[11:25:51] [PASSED] drm_test_cmdline_force_D_only_hdmi
[11:25:51] [PASSED] drm_test_cmdline_force_D_only_not_digital
[11:25:51] [PASSED] drm_test_cmdline_force_e_only
[11:25:51] [PASSED] drm_test_cmdline_res
[11:25:51] [PASSED] drm_test_cmdline_res_vesa
[11:25:51] [PASSED] drm_test_cmdline_res_vesa_rblank
[11:25:51] [PASSED] drm_test_cmdline_res_rblank
[11:25:51] [PASSED] drm_test_cmdline_res_bpp
[11:25:51] [PASSED] drm_test_cmdline_res_refresh
[11:25:51] [PASSED] drm_test_cmdline_res_bpp_refresh
[11:25:51] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[11:25:51] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[11:25:51] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[11:25:51] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[11:25:51] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[11:25:51] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[11:25:51] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[11:25:51] [PASSED] drm_test_cmdline_res_margins_force_on
[11:25:51] [PASSED] drm_test_cmdline_res_vesa_margins
[11:25:51] [PASSED] drm_test_cmdline_name
[11:25:51] [PASSED] drm_test_cmdline_name_bpp
[11:25:51] [PASSED] drm_test_cmdline_name_option
[11:25:51] [PASSED] drm_test_cmdline_name_bpp_option
[11:25:51] [PASSED] drm_test_cmdline_rotate_0
[11:25:51] [PASSED] drm_test_cmdline_rotate_90
[11:25:51] [PASSED] drm_test_cmdline_rotate_180
[11:25:51] [PASSED] drm_test_cmdline_rotate_270
[11:25:51] [PASSED] drm_test_cmdline_hmirror
[11:25:51] [PASSED] drm_test_cmdline_vmirror
[11:25:51] [PASSED] drm_test_cmdline_margin_options
[11:25:51] [PASSED] drm_test_cmdline_multiple_options
[11:25:51] [PASSED] drm_test_cmdline_bpp_extra_and_option
[11:25:51] [PASSED] drm_test_cmdline_extra_and_option
[11:25:51] [PASSED] drm_test_cmdline_freestanding_options
[11:25:51] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[11:25:51] [PASSED] drm_test_cmdline_panel_orientation
[11:25:51] ================ drm_test_cmdline_invalid =================
[11:25:51] [PASSED] margin_only
[11:25:51] [PASSED] interlace_only
[11:25:51] [PASSED] res_missing_x
[11:25:51] [PASSED] res_missing_y
[11:25:51] [PASSED] res_bad_y
[11:25:51] [PASSED] res_missing_y_bpp
[11:25:51] [PASSED] res_bad_bpp
[11:25:51] [PASSED] res_bad_refresh
[11:25:51] [PASSED] res_bpp_refresh_force_on_off
[11:25:51] [PASSED] res_invalid_mode
[11:25:51] [PASSED] res_bpp_wrong_place_mode
[11:25:51] [PASSED] name_bpp_refresh
[11:25:51] [PASSED] name_refresh
[11:25:51] [PASSED] name_refresh_wrong_mode
[11:25:51] [PASSED] name_refresh_invalid_mode
[11:25:51] [PASSED] rotate_multiple
[11:25:51] [PASSED] rotate_invalid_val
[11:25:51] [PASSED] rotate_truncated
[11:25:51] [PASSED] invalid_option
[11:25:51] [PASSED] invalid_tv_option
[11:25:51] [PASSED] truncated_tv_option
[11:25:51] ============ [PASSED] drm_test_cmdline_invalid =============
[11:25:51] =============== drm_test_cmdline_tv_options ===============
[11:25:51] [PASSED] NTSC
[11:25:51] [PASSED] NTSC_443
[11:25:51] [PASSED] NTSC_J
[11:25:51] [PASSED] PAL
[11:25:51] [PASSED] PAL_M
[11:25:51] [PASSED] PAL_N
[11:25:51] [PASSED] SECAM
[11:25:51] [PASSED] MONO_525
[11:25:51] [PASSED] MONO_625
[11:25:51] =========== [PASSED] drm_test_cmdline_tv_options ===========
[11:25:51] =============== [PASSED] drm_cmdline_parser ================
[11:25:51] ========== drmm_connector_hdmi_init (20 subtests) ==========
[11:25:51] [PASSED] drm_test_connector_hdmi_init_valid
[11:25:51] [PASSED] drm_test_connector_hdmi_init_bpc_8
[11:25:51] [PASSED] drm_test_connector_hdmi_init_bpc_10
[11:25:51] [PASSED] drm_test_connector_hdmi_init_bpc_12
[11:25:51] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[11:25:51] [PASSED] drm_test_connector_hdmi_init_bpc_null
[11:25:51] [PASSED] drm_test_connector_hdmi_init_formats_empty
[11:25:51] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[11:25:51] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[11:25:51] [PASSED] supported_formats=0x9 yuv420_allowed=1
[11:25:51] [PASSED] supported_formats=0x9 yuv420_allowed=0
[11:25:51] [PASSED] supported_formats=0x5 yuv420_allowed=1
[11:25:51] [PASSED] supported_formats=0x5 yuv420_allowed=0
[11:25:51] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[11:25:51] [PASSED] drm_test_connector_hdmi_init_null_ddc
[11:25:51] [PASSED] drm_test_connector_hdmi_init_null_product
[11:25:51] [PASSED] drm_test_connector_hdmi_init_null_vendor
[11:25:51] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[11:25:51] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[11:25:51] [PASSED] drm_test_connector_hdmi_init_product_valid
[11:25:51] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[11:25:51] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[11:25:51] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[11:25:51] ========= drm_test_connector_hdmi_init_type_valid =========
[11:25:51] [PASSED] HDMI-A
[11:25:51] [PASSED] HDMI-B
[11:25:51] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[11:25:51] ======== drm_test_connector_hdmi_init_type_invalid ========
[11:25:51] [PASSED] Unknown
[11:25:51] [PASSED] VGA
[11:25:51] [PASSED] DVI-I
[11:25:51] [PASSED] DVI-D
[11:25:51] [PASSED] DVI-A
[11:25:51] [PASSED] Composite
[11:25:51] [PASSED] SVIDEO
[11:25:51] [PASSED] LVDS
[11:25:51] [PASSED] Component
[11:25:51] [PASSED] DIN
[11:25:51] [PASSED] DP
[11:25:51] [PASSED] TV
[11:25:51] [PASSED] eDP
[11:25:51] [PASSED] Virtual
[11:25:51] [PASSED] DSI
[11:25:51] [PASSED] DPI
[11:25:51] [PASSED] Writeback
[11:25:51] [PASSED] SPI
[11:25:51] [PASSED] USB
[11:25:51] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[11:25:51] ============ [PASSED] drmm_connector_hdmi_init =============
[11:25:51] ============= drmm_connector_init (3 subtests) =============
[11:25:51] [PASSED] drm_test_drmm_connector_init
[11:25:51] [PASSED] drm_test_drmm_connector_init_null_ddc
[11:25:51] ========= drm_test_drmm_connector_init_type_valid =========
[11:25:51] [PASSED] Unknown
[11:25:51] [PASSED] VGA
[11:25:51] [PASSED] DVI-I
[11:25:51] [PASSED] DVI-D
[11:25:51] [PASSED] DVI-A
[11:25:51] [PASSED] Composite
[11:25:51] [PASSED] SVIDEO
[11:25:51] [PASSED] LVDS
[11:25:51] [PASSED] Component
[11:25:51] [PASSED] DIN
[11:25:51] [PASSED] DP
[11:25:51] [PASSED] HDMI-A
[11:25:51] [PASSED] HDMI-B
[11:25:51] [PASSED] TV
[11:25:51] [PASSED] eDP
[11:25:51] [PASSED] Virtual
[11:25:51] [PASSED] DSI
[11:25:51] [PASSED] DPI
[11:25:51] [PASSED] Writeback
[11:25:51] [PASSED] SPI
[11:25:51] [PASSED] USB
[11:25:51] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[11:25:51] =============== [PASSED] drmm_connector_init ===============
[11:25:51] ========= drm_connector_dynamic_init (6 subtests) ==========
[11:25:51] [PASSED] drm_test_drm_connector_dynamic_init
[11:25:51] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[11:25:51] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[11:25:51] [PASSED] drm_test_drm_connector_dynamic_init_properties
[11:25:51] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[11:25:51] [PASSED] Unknown
[11:25:51] [PASSED] VGA
[11:25:51] [PASSED] DVI-I
[11:25:51] [PASSED] DVI-D
[11:25:51] [PASSED] DVI-A
[11:25:51] [PASSED] Composite
[11:25:51] [PASSED] SVIDEO
[11:25:51] [PASSED] LVDS
[11:25:51] [PASSED] Component
[11:25:51] [PASSED] DIN
[11:25:51] [PASSED] DP
[11:25:51] [PASSED] HDMI-A
[11:25:51] [PASSED] HDMI-B
[11:25:51] [PASSED] TV
[11:25:51] [PASSED] eDP
[11:25:51] [PASSED] Virtual
[11:25:51] [PASSED] DSI
[11:25:51] [PASSED] DPI
[11:25:51] [PASSED] Writeback
[11:25:51] [PASSED] SPI
[11:25:51] [PASSED] USB
[11:25:51] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[11:25:51] ======== drm_test_drm_connector_dynamic_init_name =========
[11:25:51] [PASSED] Unknown
[11:25:51] [PASSED] VGA
[11:25:51] [PASSED] DVI-I
[11:25:51] [PASSED] DVI-D
[11:25:51] [PASSED] DVI-A
[11:25:51] [PASSED] Composite
[11:25:51] [PASSED] SVIDEO
[11:25:51] [PASSED] LVDS
[11:25:51] [PASSED] Component
[11:25:51] [PASSED] DIN
[11:25:51] [PASSED] DP
[11:25:51] [PASSED] HDMI-A
[11:25:51] [PASSED] HDMI-B
[11:25:51] [PASSED] TV
[11:25:51] [PASSED] eDP
[11:25:51] [PASSED] Virtual
[11:25:51] [PASSED] DSI
[11:25:51] [PASSED] DPI
[11:25:51] [PASSED] Writeback
[11:25:51] [PASSED] SPI
[11:25:51] [PASSED] USB
[11:25:51] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[11:25:51] =========== [PASSED] drm_connector_dynamic_init ============
[11:25:51] ==== drm_connector_dynamic_register_early (4 subtests) =====
[11:25:51] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[11:25:51] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[11:25:51] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[11:25:51] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[11:25:51] ====== [PASSED] drm_connector_dynamic_register_early =======
[11:25:51] ======= drm_connector_dynamic_register (7 subtests) ========
[11:25:51] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[11:25:51] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[11:25:51] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[11:25:51] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[11:25:51] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[11:25:51] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[11:25:51] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[11:25:51] ========= [PASSED] drm_connector_dynamic_register ==========
[11:25:51] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[11:25:51] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[11:25:51] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[11:25:51] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[11:25:51] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[11:25:51] ========== drm_test_get_tv_mode_from_name_valid ===========
[11:25:51] [PASSED] NTSC
[11:25:51] [PASSED] NTSC-443
[11:25:51] [PASSED] NTSC-J
[11:25:51] [PASSED] PAL
[11:25:51] [PASSED] PAL-M
[11:25:51] [PASSED] PAL-N
[11:25:51] [PASSED] SECAM
[11:25:51] [PASSED] Mono
[11:25:51] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[11:25:51] [PASSED] drm_test_get_tv_mode_from_name_truncated
[11:25:51] ============ [PASSED] drm_get_tv_mode_from_name ============
[11:25:51] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[11:25:51] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[11:25:51] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[11:25:51] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[11:25:51] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[11:25:51] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[11:25:51] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[11:25:51] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[11:25:51] [PASSED] VIC 96
[11:25:51] [PASSED] VIC 97
[11:25:51] [PASSED] VIC 101
[11:25:51] [PASSED] VIC 102
[11:25:51] [PASSED] VIC 106
[11:25:51] [PASSED] VIC 107
[11:25:51] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[11:25:51] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[11:25:51] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[11:25:51] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[11:25:51] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[11:25:51] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[11:25:51] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[11:25:51] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[11:25:51] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[11:25:51] [PASSED] Automatic
[11:25:51] [PASSED] Full
[11:25:51] [PASSED] Limited 16:235
[11:25:51] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[11:25:51] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[11:25:51] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[11:25:51] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[11:25:51] === drm_test_drm_hdmi_connector_get_output_format_name ====
[11:25:51] [PASSED] RGB
[11:25:51] [PASSED] YUV 4:2:0
[11:25:51] [PASSED] YUV 4:2:2
[11:25:51] [PASSED] YUV 4:4:4
[11:25:51] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[11:25:51] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[11:25:51] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[11:25:51] ============= drm_damage_helper (21 subtests) ==============
[11:25:51] [PASSED] drm_test_damage_iter_no_damage
[11:25:51] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[11:25:51] [PASSED] drm_test_damage_iter_no_damage_src_moved
[11:25:51] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[11:25:51] [PASSED] drm_test_damage_iter_no_damage_not_visible
[11:25:51] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[11:25:51] [PASSED] drm_test_damage_iter_no_damage_no_fb
[11:25:51] [PASSED] drm_test_damage_iter_simple_damage
[11:25:51] [PASSED] drm_test_damage_iter_single_damage
[11:25:51] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[11:25:51] [PASSED] drm_test_damage_iter_single_damage_outside_src
[11:25:51] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[11:25:51] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[11:25:51] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[11:25:51] [PASSED] drm_test_damage_iter_single_damage_src_moved
[11:25:51] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[11:25:51] [PASSED] drm_test_damage_iter_damage
[11:25:51] [PASSED] drm_test_damage_iter_damage_one_intersect
[11:25:51] [PASSED] drm_test_damage_iter_damage_one_outside
[11:25:51] [PASSED] drm_test_damage_iter_damage_src_moved
[11:25:51] [PASSED] drm_test_damage_iter_damage_not_visible
[11:25:51] ================ [PASSED] drm_damage_helper ================
[11:25:51] ============== drm_dp_mst_helper (3 subtests) ==============
[11:25:51] ============== drm_test_dp_mst_calc_pbn_mode ==============
[11:25:51] [PASSED] Clock 154000 BPP 30 DSC disabled
[11:25:51] [PASSED] Clock 234000 BPP 30 DSC disabled
[11:25:51] [PASSED] Clock 297000 BPP 24 DSC disabled
[11:25:51] [PASSED] Clock 332880 BPP 24 DSC enabled
[11:25:51] [PASSED] Clock 324540 BPP 24 DSC enabled
[11:25:51] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[11:25:51] ============== drm_test_dp_mst_calc_pbn_div ===============
[11:25:51] [PASSED] Link rate 2000000 lane count 4
[11:25:51] [PASSED] Link rate 2000000 lane count 2
[11:25:51] [PASSED] Link rate 2000000 lane count 1
[11:25:51] [PASSED] Link rate 1350000 lane count 4
[11:25:51] [PASSED] Link rate 1350000 lane count 2
[11:25:51] [PASSED] Link rate 1350000 lane count 1
[11:25:51] [PASSED] Link rate 1000000 lane count 4
[11:25:51] [PASSED] Link rate 1000000 lane count 2
[11:25:51] [PASSED] Link rate 1000000 lane count 1
[11:25:51] [PASSED] Link rate 810000 lane count 4
[11:25:51] [PASSED] Link rate 810000 lane count 2
[11:25:51] [PASSED] Link rate 810000 lane count 1
[11:25:51] [PASSED] Link rate 540000 lane count 4
[11:25:51] [PASSED] Link rate 540000 lane count 2
[11:25:51] [PASSED] Link rate 540000 lane count 1
[11:25:51] [PASSED] Link rate 270000 lane count 4
[11:25:51] [PASSED] Link rate 270000 lane count 2
[11:25:51] [PASSED] Link rate 270000 lane count 1
[11:25:51] [PASSED] Link rate 162000 lane count 4
[11:25:51] [PASSED] Link rate 162000 lane count 2
[11:25:51] [PASSED] Link rate 162000 lane count 1
[11:25:51] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[11:25:51] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[11:25:51] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[11:25:51] [PASSED] DP_POWER_UP_PHY with port number
[11:25:51] [PASSED] DP_POWER_DOWN_PHY with port number
[11:25:51] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[11:25:51] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[11:25:51] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[11:25:51] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[11:25:51] [PASSED] DP_QUERY_PAYLOAD with port number
[11:25:51] [PASSED] DP_QUERY_PAYLOAD with VCPI
[11:25:51] [PASSED] DP_REMOTE_DPCD_READ with port number
[11:25:51] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[11:25:51] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[11:25:51] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[11:25:51] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[11:25:51] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[11:25:51] [PASSED] DP_REMOTE_I2C_READ with port number
[11:25:51] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[11:25:51] [PASSED] DP_REMOTE_I2C_READ with transactions array
[11:25:51] [PASSED] DP_REMOTE_I2C_WRITE with port number
[11:25:51] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[11:25:51] [PASSED] DP_REMOTE_I2C_WRITE with data array
[11:25:51] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[11:25:51] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[11:25:51] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[11:25:51] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[11:25:51] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[11:25:51] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[11:25:51] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[11:25:51] ================ [PASSED] drm_dp_mst_helper ================
[11:25:51] ================== drm_exec (7 subtests) ===================
[11:25:51] [PASSED] sanitycheck
[11:25:51] [PASSED] test_lock
[11:25:51] [PASSED] test_lock_unlock
[11:25:51] [PASSED] test_duplicates
[11:25:51] [PASSED] test_prepare
[11:25:51] [PASSED] test_prepare_array
[11:25:51] [PASSED] test_multiple_loops
[11:25:51] ==================== [PASSED] drm_exec =====================
[11:25:51] =========== drm_format_helper_test (17 subtests) ===========
[11:25:51] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[11:25:51] [PASSED] single_pixel_source_buffer
[11:25:51] [PASSED] single_pixel_clip_rectangle
[11:25:51] [PASSED] well_known_colors
[11:25:51] [PASSED] destination_pitch
[11:25:51] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[11:25:51] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[11:25:51] [PASSED] single_pixel_source_buffer
[11:25:51] [PASSED] single_pixel_clip_rectangle
[11:25:51] [PASSED] well_known_colors
[11:25:51] [PASSED] destination_pitch
[11:25:51] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[11:25:51] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[11:25:51] [PASSED] single_pixel_source_buffer
[11:25:51] [PASSED] single_pixel_clip_rectangle
[11:25:51] [PASSED] well_known_colors
[11:25:51] [PASSED] destination_pitch
[11:25:51] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[11:25:51] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[11:25:51] [PASSED] single_pixel_source_buffer
[11:25:51] [PASSED] single_pixel_clip_rectangle
[11:25:51] [PASSED] well_known_colors
[11:25:51] [PASSED] destination_pitch
[11:25:51] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[11:25:51] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[11:25:51] [PASSED] single_pixel_source_buffer
[11:25:51] [PASSED] single_pixel_clip_rectangle
[11:25:51] [PASSED] well_known_colors
[11:25:51] [PASSED] destination_pitch
[11:25:51] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[11:25:51] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[11:25:51] [PASSED] single_pixel_source_buffer
[11:25:51] [PASSED] single_pixel_clip_rectangle
[11:25:51] [PASSED] well_known_colors
[11:25:51] [PASSED] destination_pitch
[11:25:51] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[11:25:51] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[11:25:51] [PASSED] single_pixel_source_buffer
[11:25:51] [PASSED] single_pixel_clip_rectangle
[11:25:51] [PASSED] well_known_colors
[11:25:51] [PASSED] destination_pitch
[11:25:51] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[11:25:51] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[11:25:51] [PASSED] single_pixel_source_buffer
[11:25:51] [PASSED] single_pixel_clip_rectangle
[11:25:51] [PASSED] well_known_colors
[11:25:51] [PASSED] destination_pitch
[11:25:51] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[11:25:51] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[11:25:51] [PASSED] single_pixel_source_buffer
[11:25:51] [PASSED] single_pixel_clip_rectangle
[11:25:51] [PASSED] well_known_colors
[11:25:51] [PASSED] destination_pitch
[11:25:51] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[11:25:51] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[11:25:51] [PASSED] single_pixel_source_buffer
[11:25:51] [PASSED] single_pixel_clip_rectangle
[11:25:51] [PASSED] well_known_colors
[11:25:51] [PASSED] destination_pitch
[11:25:51] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[11:25:51] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[11:25:51] [PASSED] single_pixel_source_buffer
[11:25:51] [PASSED] single_pixel_clip_rectangle
[11:25:51] [PASSED] well_known_colors
[11:25:51] [PASSED] destination_pitch
[11:25:51] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[11:25:51] ============== drm_test_fb_xrgb8888_to_mono ===============
[11:25:51] [PASSED] single_pixel_source_buffer
[11:25:51] [PASSED] single_pixel_clip_rectangle
[11:25:51] [PASSED] well_known_colors
[11:25:51] [PASSED] destination_pitch
[11:25:51] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[11:25:51] ==================== drm_test_fb_swab =====================
[11:25:51] [PASSED] single_pixel_source_buffer
[11:25:51] [PASSED] single_pixel_clip_rectangle
[11:25:51] [PASSED] well_known_colors
[11:25:51] [PASSED] destination_pitch
[11:25:51] ================ [PASSED] drm_test_fb_swab =================
[11:25:51] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[11:25:51] [PASSED] single_pixel_source_buffer
[11:25:51] [PASSED] single_pixel_clip_rectangle
[11:25:51] [PASSED] well_known_colors
[11:25:51] [PASSED] destination_pitch
[11:25:51] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[11:25:51] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[11:25:51] [PASSED] single_pixel_source_buffer
[11:25:51] [PASSED] single_pixel_clip_rectangle
[11:25:51] [PASSED] well_known_colors
[11:25:51] [PASSED] destination_pitch
[11:25:51] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[11:25:51] ================= drm_test_fb_clip_offset =================
[11:25:51] [PASSED] pass through
[11:25:51] [PASSED] horizontal offset
[11:25:51] [PASSED] vertical offset
[11:25:51] [PASSED] horizontal and vertical offset
[11:25:51] [PASSED] horizontal offset (custom pitch)
[11:25:51] [PASSED] vertical offset (custom pitch)
[11:25:51] [PASSED] horizontal and vertical offset (custom pitch)
[11:25:51] ============= [PASSED] drm_test_fb_clip_offset =============
[11:25:51] =================== drm_test_fb_memcpy ====================
[11:25:51] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[11:25:51] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[11:25:51] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[11:25:51] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[11:25:51] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[11:25:51] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[11:25:51] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[11:25:51] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[11:25:51] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[11:25:51] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[11:25:51] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[11:25:51] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[11:25:51] =============== [PASSED] drm_test_fb_memcpy ================
[11:25:51] ============= [PASSED] drm_format_helper_test ==============
[11:25:51] ================= drm_format (18 subtests) =================
[11:25:51] [PASSED] drm_test_format_block_width_invalid
[11:25:51] [PASSED] drm_test_format_block_width_one_plane
[11:25:51] [PASSED] drm_test_format_block_width_two_plane
[11:25:51] [PASSED] drm_test_format_block_width_three_plane
[11:25:51] [PASSED] drm_test_format_block_width_tiled
[11:25:51] [PASSED] drm_test_format_block_height_invalid
[11:25:51] [PASSED] drm_test_format_block_height_one_plane
[11:25:51] [PASSED] drm_test_format_block_height_two_plane
[11:25:51] [PASSED] drm_test_format_block_height_three_plane
[11:25:51] [PASSED] drm_test_format_block_height_tiled
[11:25:51] [PASSED] drm_test_format_min_pitch_invalid
[11:25:51] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[11:25:51] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[11:25:51] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[11:25:51] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[11:25:51] [PASSED] drm_test_format_min_pitch_two_plane
[11:25:51] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[11:25:51] [PASSED] drm_test_format_min_pitch_tiled
[11:25:51] =================== [PASSED] drm_format ====================
[11:25:51] ============== drm_framebuffer (10 subtests) ===============
[11:25:51] ========== drm_test_framebuffer_check_src_coords ==========
[11:25:51] [PASSED] Success: source fits into fb
[11:25:51] [PASSED] Fail: overflowing fb with x-axis coordinate
[11:25:51] [PASSED] Fail: overflowing fb with y-axis coordinate
[11:25:51] [PASSED] Fail: overflowing fb with source width
[11:25:51] [PASSED] Fail: overflowing fb with source height
[11:25:51] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[11:25:51] [PASSED] drm_test_framebuffer_cleanup
[11:25:51] =============== drm_test_framebuffer_create ===============
[11:25:51] [PASSED] ABGR8888 normal sizes
[11:25:51] [PASSED] ABGR8888 max sizes
[11:25:51] [PASSED] ABGR8888 pitch greater than min required
[11:25:51] [PASSED] ABGR8888 pitch less than min required
[11:25:51] [PASSED] ABGR8888 Invalid width
[11:25:51] [PASSED] ABGR8888 Invalid buffer handle
[11:25:51] [PASSED] No pixel format
[11:25:51] [PASSED] ABGR8888 Width 0
[11:25:51] [PASSED] ABGR8888 Height 0
[11:25:51] [PASSED] ABGR8888 Out of bound height * pitch combination
[11:25:51] [PASSED] ABGR8888 Large buffer offset
[11:25:51] [PASSED] ABGR8888 Buffer offset for inexistent plane
[11:25:51] [PASSED] ABGR8888 Invalid flag
[11:25:51] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[11:25:51] [PASSED] ABGR8888 Valid buffer modifier
[11:25:51] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[11:25:51] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[11:25:51] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[11:25:51] [PASSED] NV12 Normal sizes
[11:25:51] [PASSED] NV12 Max sizes
[11:25:51] [PASSED] NV12 Invalid pitch
[11:25:51] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[11:25:51] [PASSED] NV12 different modifier per-plane
[11:25:51] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[11:25:51] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[11:25:51] [PASSED] NV12 Modifier for inexistent plane
[11:25:51] [PASSED] NV12 Handle for inexistent plane
[11:25:51] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[11:25:51] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[11:25:51] [PASSED] YVU420 Normal sizes
[11:25:51] [PASSED] YVU420 Max sizes
[11:25:51] [PASSED] YVU420 Invalid pitch
[11:25:51] [PASSED] YVU420 Different pitches
[11:25:51] [PASSED] YVU420 Different buffer offsets/pitches
[11:25:51] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[11:25:51] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[11:25:51] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[11:25:51] [PASSED] YVU420 Valid modifier
[11:25:51] [PASSED] YVU420 Different modifiers per plane
[11:25:51] [PASSED] YVU420 Modifier for inexistent plane
[11:25:51] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[11:25:51] [PASSED] X0L2 Normal sizes
[11:25:51] [PASSED] X0L2 Max sizes
[11:25:51] [PASSED] X0L2 Invalid pitch
[11:25:51] [PASSED] X0L2 Pitch greater than minimum required
[11:25:51] [PASSED] X0L2 Handle for inexistent plane
[11:25:51] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[11:25:51] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[11:25:51] [PASSED] X0L2 Valid modifier
[11:25:51] [PASSED] X0L2 Modifier for inexistent plane
[11:25:51] =========== [PASSED] drm_test_framebuffer_create ===========
[11:25:51] [PASSED] drm_test_framebuffer_free
[11:25:51] [PASSED] drm_test_framebuffer_init
[11:25:51] [PASSED] drm_test_framebuffer_init_bad_format
[11:25:51] [PASSED] drm_test_framebuffer_init_dev_mismatch
[11:25:51] [PASSED] drm_test_framebuffer_lookup
[11:25:51] [PASSED] drm_test_framebuffer_lookup_inexistent
[11:25:51] [PASSED] drm_test_framebuffer_modifiers_not_supported
[11:25:51] ================= [PASSED] drm_framebuffer =================
[11:25:51] ================ drm_gem_shmem (8 subtests) ================
[11:25:51] [PASSED] drm_gem_shmem_test_obj_create
[11:25:51] [PASSED] drm_gem_shmem_test_obj_create_private
[11:25:51] [PASSED] drm_gem_shmem_test_pin_pages
[11:25:51] [PASSED] drm_gem_shmem_test_vmap
[11:25:51] [PASSED] drm_gem_shmem_test_get_sg_table
[11:25:51] [PASSED] drm_gem_shmem_test_get_pages_sgt
[11:25:51] [PASSED] drm_gem_shmem_test_madvise
[11:25:51] [PASSED] drm_gem_shmem_test_purge
[11:25:51] ================== [PASSED] drm_gem_shmem ==================
[11:25:51] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[11:25:51] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[11:25:51] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[11:25:51] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[11:25:51] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[11:25:51] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[11:25:51] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[11:25:51] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[11:25:51] [PASSED] Automatic
[11:25:51] [PASSED] Full
[11:25:51] [PASSED] Limited 16:235
[11:25:51] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[11:25:51] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[11:25:51] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[11:25:51] [PASSED] drm_test_check_disable_connector
[11:25:51] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[11:25:51] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[11:25:51] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[11:25:51] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[11:25:51] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[11:25:51] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[11:25:51] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[11:25:51] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[11:25:51] [PASSED] drm_test_check_output_bpc_dvi
[11:25:51] [PASSED] drm_test_check_output_bpc_format_vic_1
[11:25:51] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[11:25:51] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[11:25:51] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[11:25:51] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[11:25:51] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[11:25:51] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[11:25:51] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[11:25:51] ============ drm_test_check_hdmi_color_format =============
[11:25:51] [PASSED] AUTO -> RGB
[11:25:51] [PASSED] YCBCR422 -> YUV422
[11:25:51] [PASSED] YCBCR420 -> YUV420
[11:25:51] [PASSED] YCBCR444 -> YUV444
[11:25:51] [PASSED] RGB -> RGB
[11:25:51] ======== [PASSED] drm_test_check_hdmi_color_format =========
[11:25:51] ======== drm_test_check_hdmi_color_format_420_only ========
[11:25:51] [PASSED] RGB should fail
[11:25:51] [PASSED] YUV444 should fail
[11:25:51] [PASSED] YUV422 should fail
[11:25:51] [PASSED] YUV420 should work
[11:25:51] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[11:25:51] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[11:25:51] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[11:25:51] [PASSED] drm_test_check_broadcast_rgb_value
[11:25:51] [PASSED] drm_test_check_bpc_8_value
[11:25:51] [PASSED] drm_test_check_bpc_10_value
[11:25:51] [PASSED] drm_test_check_bpc_12_value
[11:25:51] [PASSED] drm_test_check_format_value
[11:25:51] [PASSED] drm_test_check_tmds_char_value
[11:25:51] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[11:25:51] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[11:25:51] [PASSED] drm_test_check_mode_valid
[11:25:51] [PASSED] drm_test_check_mode_valid_reject
[11:25:51] [PASSED] drm_test_check_mode_valid_reject_rate
[11:25:51] [PASSED] drm_test_check_mode_valid_reject_max_clock
[11:25:51] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[11:25:51] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[11:25:51] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[11:25:51] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[11:25:51] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[11:25:51] [PASSED] drm_test_check_infoframes
[11:25:51] [PASSED] drm_test_check_reject_avi_infoframe
[11:25:51] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[11:25:51] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[11:25:51] [PASSED] drm_test_check_reject_audio_infoframe
[11:25:51] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[11:25:51] ================= drm_managed (2 subtests) =================
[11:25:51] [PASSED] drm_test_managed_release_action
[11:25:51] [PASSED] drm_test_managed_run_action
[11:25:51] =================== [PASSED] drm_managed ===================
[11:25:51] =================== drm_mm (6 subtests) ====================
[11:25:51] [PASSED] drm_test_mm_init
[11:25:51] [PASSED] drm_test_mm_debug
[11:25:51] [PASSED] drm_test_mm_align32
[11:25:51] [PASSED] drm_test_mm_align64
[11:25:51] [PASSED] drm_test_mm_lowest
[11:25:51] [PASSED] drm_test_mm_highest
[11:25:51] ===================== [PASSED] drm_mm ======================
[11:25:51] ============= drm_modes_analog_tv (5 subtests) =============
[11:25:51] [PASSED] drm_test_modes_analog_tv_mono_576i
[11:25:51] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[11:25:51] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[11:25:51] [PASSED] drm_test_modes_analog_tv_pal_576i
[11:25:51] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[11:25:51] =============== [PASSED] drm_modes_analog_tv ===============
[11:25:51] ============== drm_plane_helper (2 subtests) ===============
[11:25:51] =============== drm_test_check_plane_state ================
[11:25:51] [PASSED] clipping_simple
[11:25:51] [PASSED] clipping_rotate_reflect
[11:25:51] [PASSED] positioning_simple
[11:25:51] [PASSED] upscaling
[11:25:51] [PASSED] downscaling
[11:25:51] [PASSED] rounding1
[11:25:51] [PASSED] rounding2
[11:25:51] [PASSED] rounding3
[11:25:51] [PASSED] rounding4
[11:25:51] =========== [PASSED] drm_test_check_plane_state ============
[11:25:51] =========== drm_test_check_invalid_plane_state ============
[11:25:51] [PASSED] positioning_invalid
[11:25:51] [PASSED] upscaling_invalid
[11:25:51] [PASSED] downscaling_invalid
[11:25:51] ======= [PASSED] drm_test_check_invalid_plane_state ========
[11:25:51] ================ [PASSED] drm_plane_helper =================
[11:25:51] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[11:25:51] ====== drm_test_connector_helper_tv_get_modes_check =======
[11:25:51] [PASSED] None
[11:25:51] [PASSED] PAL
[11:25:51] [PASSED] NTSC
[11:25:51] [PASSED] Both, NTSC Default
[11:25:51] [PASSED] Both, PAL Default
[11:25:51] [PASSED] Both, NTSC Default, with PAL on command-line
[11:25:51] [PASSED] Both, PAL Default, with NTSC on command-line
[11:25:51] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[11:25:51] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[11:25:51] ================== drm_rect (9 subtests) ===================
[11:25:51] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[11:25:51] [PASSED] drm_test_rect_clip_scaled_not_clipped
[11:25:51] [PASSED] drm_test_rect_clip_scaled_clipped
[11:25:51] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[11:25:51] ================= drm_test_rect_intersect =================
[11:25:51] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[11:25:51] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[11:25:51] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[11:25:51] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[11:25:51] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[11:25:51] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[11:25:51] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[11:25:51] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[11:25:51] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[11:25:51] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[11:25:51] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[11:25:51] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[11:25:51] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[11:25:51] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[11:25:51] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[11:25:51] ============= [PASSED] drm_test_rect_intersect =============
[11:25:51] ================ drm_test_rect_calc_hscale ================
[11:25:51] [PASSED] normal use
[11:25:51] [PASSED] out of max range
[11:25:51] [PASSED] out of min range
[11:25:51] [PASSED] zero dst
[11:25:51] [PASSED] negative src
[11:25:51] [PASSED] negative dst
[11:25:51] ============ [PASSED] drm_test_rect_calc_hscale ============
[11:25:51] ================ drm_test_rect_calc_vscale ================
[11:25:51] [PASSED] normal use
[11:25:51] [PASSED] out of max range
[11:25:51] [PASSED] out of min range
[11:25:51] [PASSED] zero dst
[11:25:51] [PASSED] negative src
[11:25:51] [PASSED] negative dst
[11:25:51] ============ [PASSED] drm_test_rect_calc_vscale ============
[11:25:51] ================== drm_test_rect_rotate ===================
[11:25:51] [PASSED] reflect-x
[11:25:51] [PASSED] reflect-y
[11:25:51] [PASSED] rotate-0
[11:25:51] [PASSED] rotate-90
[11:25:51] [PASSED] rotate-180
[11:25:51] [PASSED] rotate-270
[11:25:51] ============== [PASSED] drm_test_rect_rotate ===============
[11:25:51] ================ drm_test_rect_rotate_inv =================
[11:25:51] [PASSED] reflect-x
[11:25:51] [PASSED] reflect-y
[11:25:51] [PASSED] rotate-0
[11:25:51] [PASSED] rotate-90
[11:25:51] [PASSED] rotate-180
[11:25:51] [PASSED] rotate-270
[11:25:51] ============ [PASSED] drm_test_rect_rotate_inv =============
[11:25:51] ==================== [PASSED] drm_rect =====================
[11:25:51] ============ drm_sysfb_modeset_test (1 subtest) ============
[11:25:51] ============ drm_test_sysfb_build_fourcc_list =============
[11:25:51] [PASSED] no native formats
[11:25:51] [PASSED] XRGB8888 as native format
[11:25:51] [PASSED] remove duplicates
[11:25:51] [PASSED] convert alpha formats
[11:25:51] [PASSED] random formats
[11:25:51] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[11:25:51] ============= [PASSED] drm_sysfb_modeset_test ==============
[11:25:51] ================== drm_fixp (2 subtests) ===================
[11:25:51] [PASSED] drm_test_int2fixp
[11:25:51] [PASSED] drm_test_sm2fixp
[11:25:51] ==================== [PASSED] drm_fixp =====================
[11:25:51] ============================================================
[11:25:51] Testing complete. Ran 641 tests: passed: 641
[11:25:51] Elapsed time: 27.180s total, 1.856s configuring, 25.159s building, 0.140s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[11:25:51] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:25:53] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[11:26:03] Starting KUnit Kernel (1/1)...
[11:26:03] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:26:03] ============= refcount_interrupt (4 subtests) ==============
[11:26:03] [PASSED] test_single_irq_change
[11:26:03] [PASSED] test_nested_irq_change
[11:26:03] [PASSED] test_multiple_irq_change
[11:26:03] [PASSED] test_irq_save
[11:26:03] =============== [PASSED] refcount_interrupt ================
[11:26:03] ================= ttm_device (5 subtests) ==================
[11:26:03] [PASSED] ttm_device_init_basic
[11:26:03] [PASSED] ttm_device_init_multiple
[11:26:03] [PASSED] ttm_device_fini_basic
[11:26:03] [PASSED] ttm_device_init_no_vma_man
[11:26:03] ================== ttm_device_init_pools ==================
[11:26:03] [PASSED] No DMA allocations, no DMA32 required
[11:26:03] [PASSED] DMA allocations, DMA32 required
[11:26:03] [PASSED] No DMA allocations, DMA32 required
[11:26:03] [PASSED] DMA allocations, no DMA32 required
[11:26:03] ============== [PASSED] ttm_device_init_pools ==============
[11:26:03] =================== [PASSED] ttm_device ====================
[11:26:03] ================== ttm_pool (8 subtests) ===================
[11:26:03] ================== ttm_pool_alloc_basic ===================
[11:26:03] [PASSED] One page
[11:26:03] [PASSED] More than one page
[11:26:03] [PASSED] Above the allocation limit
[11:26:03] [PASSED] One page, with coherent DMA mappings enabled
[11:26:03] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[11:26:03] ============== [PASSED] ttm_pool_alloc_basic ===============
[11:26:03] ============== ttm_pool_alloc_basic_dma_addr ==============
[11:26:03] [PASSED] One page
[11:26:03] [PASSED] More than one page
[11:26:03] [PASSED] Above the allocation limit
[11:26:03] [PASSED] One page, with coherent DMA mappings enabled
[11:26:03] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[11:26:03] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[11:26:03] [PASSED] ttm_pool_alloc_order_caching_match
[11:26:03] [PASSED] ttm_pool_alloc_caching_mismatch
[11:26:03] [PASSED] ttm_pool_alloc_order_mismatch
[11:26:03] [PASSED] ttm_pool_free_dma_alloc
[11:26:03] [PASSED] ttm_pool_free_no_dma_alloc
[11:26:03] [PASSED] ttm_pool_fini_basic
[11:26:03] ==================== [PASSED] ttm_pool =====================
[11:26:03] ================ ttm_resource (8 subtests) =================
[11:26:03] ================= ttm_resource_init_basic =================
[11:26:03] [PASSED] Init resource in TTM_PL_SYSTEM
[11:26:03] [PASSED] Init resource in TTM_PL_VRAM
[11:26:03] [PASSED] Init resource in a private placement
[11:26:03] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[11:26:03] ============= [PASSED] ttm_resource_init_basic =============
[11:26:03] [PASSED] ttm_resource_init_pinned
[11:26:03] [PASSED] ttm_resource_fini_basic
[11:26:03] [PASSED] ttm_resource_manager_init_basic
[11:26:03] [PASSED] ttm_resource_manager_usage_basic
[11:26:03] [PASSED] ttm_resource_manager_set_used_basic
[11:26:03] [PASSED] ttm_sys_man_alloc_basic
[11:26:03] [PASSED] ttm_sys_man_free_basic
[11:26:03] ================== [PASSED] ttm_resource ===================
[11:26:03] =================== ttm_tt (15 subtests) ===================
[11:26:03] ==================== ttm_tt_init_basic ====================
[11:26:03] [PASSED] Page-aligned size
[11:26:03] [PASSED] Extra pages requested
[11:26:03] ================ [PASSED] ttm_tt_init_basic ================
[11:26:03] [PASSED] ttm_tt_init_misaligned
[11:26:03] [PASSED] ttm_tt_fini_basic
[11:26:03] [PASSED] ttm_tt_fini_sg
[11:26:03] [PASSED] ttm_tt_fini_shmem
[11:26:03] [PASSED] ttm_tt_create_basic
[11:26:03] [PASSED] ttm_tt_create_invalid_bo_type
[11:26:03] [PASSED] ttm_tt_create_ttm_exists
[11:26:03] [PASSED] ttm_tt_create_failed
[11:26:03] [PASSED] ttm_tt_destroy_basic
[11:26:03] [PASSED] ttm_tt_populate_null_ttm
[11:26:03] [PASSED] ttm_tt_populate_populated_ttm
[11:26:03] [PASSED] ttm_tt_unpopulate_basic
[11:26:03] [PASSED] ttm_tt_unpopulate_empty_ttm
[11:26:03] [PASSED] ttm_tt_swapin_basic
[11:26:03] ===================== [PASSED] ttm_tt ======================
[11:26:03] =================== ttm_bo (14 subtests) ===================
[11:26:03] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[11:26:03] [PASSED] Cannot be interrupted and sleeps
[11:26:03] [PASSED] Cannot be interrupted, locks straight away
[11:26:03] [PASSED] Can be interrupted, sleeps
[11:26:03] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[11:26:03] [PASSED] ttm_bo_reserve_locked_no_sleep
[11:26:03] [PASSED] ttm_bo_reserve_no_wait_ticket
[11:26:03] [PASSED] ttm_bo_reserve_double_resv
[11:26:03] [PASSED] ttm_bo_reserve_interrupted
[11:26:03] [PASSED] ttm_bo_reserve_deadlock
[11:26:03] [PASSED] ttm_bo_unreserve_basic
[11:26:03] [PASSED] ttm_bo_unreserve_pinned
[11:26:03] [PASSED] ttm_bo_unreserve_bulk
[11:26:03] [PASSED] ttm_bo_fini_basic
[11:26:03] [PASSED] ttm_bo_fini_shared_resv
[11:26:03] [PASSED] ttm_bo_pin_basic
[11:26:03] [PASSED] ttm_bo_pin_unpin_resource
[11:26:03] [PASSED] ttm_bo_multiple_pin_one_unpin
[11:26:03] ===================== [PASSED] ttm_bo ======================
[11:26:03] ============== ttm_bo_validate (22 subtests) ===============
[11:26:03] ============== ttm_bo_init_reserved_sys_man ===============
[11:26:03] [PASSED] Buffer object for userspace
[11:26:03] [PASSED] Kernel buffer object
[11:26:03] [PASSED] Shared buffer object
[11:26:03] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[11:26:03] ============== ttm_bo_init_reserved_mock_man ==============
[11:26:03] [PASSED] Buffer object for userspace
[11:26:03] [PASSED] Kernel buffer object
[11:26:03] [PASSED] Shared buffer object
[11:26:03] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[11:26:03] [PASSED] ttm_bo_init_reserved_resv
[11:26:03] ================== ttm_bo_validate_basic ==================
[11:26:03] [PASSED] Buffer object for userspace
[11:26:03] [PASSED] Kernel buffer object
[11:26:03] [PASSED] Shared buffer object
[11:26:03] ============== [PASSED] ttm_bo_validate_basic ==============
[11:26:03] [PASSED] ttm_bo_validate_invalid_placement
[11:26:03] ============= ttm_bo_validate_same_placement ==============
[11:26:03] [PASSED] System manager
[11:26:03] [PASSED] VRAM manager
[11:26:03] ========= [PASSED] ttm_bo_validate_same_placement ==========
[11:26:03] [PASSED] ttm_bo_validate_failed_alloc
[11:26:03] [PASSED] ttm_bo_validate_pinned
[11:26:03] [PASSED] ttm_bo_validate_busy_placement
[11:26:03] ================ ttm_bo_validate_multihop =================
[11:26:03] [PASSED] Buffer object for userspace
[11:26:03] [PASSED] Kernel buffer object
[11:26:03] [PASSED] Shared buffer object
[11:26:03] ============ [PASSED] ttm_bo_validate_multihop =============
[11:26:03] ========== ttm_bo_validate_no_placement_signaled ==========
[11:26:03] [PASSED] Buffer object in system domain, no page vector
[11:26:03] [PASSED] Buffer object in system domain with an existing page vector
[11:26:03] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[11:26:03] ======== ttm_bo_validate_no_placement_not_signaled ========
[11:26:03] [PASSED] Buffer object for userspace
[11:26:03] [PASSED] Kernel buffer object
[11:26:03] [PASSED] Shared buffer object
[11:26:03] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[11:26:03] [PASSED] ttm_bo_validate_move_fence_signaled
[11:26:03] ========= ttm_bo_validate_move_fence_not_signaled =========
[11:26:03] [PASSED] Waits for GPU
[11:26:03] [PASSED] Tries to lock straight away
[11:26:03] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[11:26:03] [PASSED] ttm_bo_validate_swapout
[11:26:03] [PASSED] ttm_bo_validate_happy_evict
[11:26:03] [PASSED] ttm_bo_validate_all_pinned_evict
[11:26:03] [PASSED] ttm_bo_validate_allowed_only_evict
[11:26:03] [PASSED] ttm_bo_validate_deleted_evict
[11:26:03] [PASSED] ttm_bo_validate_busy_domain_evict
[11:26:03] [PASSED] ttm_bo_validate_evict_gutting
[11:26:03] [PASSED] ttm_bo_validate_recrusive_evict
[11:26:03] ================= [PASSED] ttm_bo_validate =================
[11:26:03] ============================================================
[11:26:03] Testing complete. Ran 106 tests: passed: 106
[11:26:03] Elapsed time: 12.139s total, 1.845s configuring, 10.079s building, 0.183s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/dma-buf/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/dma-buf/.kunitconfig
[11:26:03] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:26:05] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[11:26:14] Starting KUnit Kernel (1/1)...
[11:26:14] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:26:14] ============= refcount_interrupt (4 subtests) ==============
[11:26:14] [PASSED] test_single_irq_change
[11:26:14] [PASSED] test_nested_irq_change
[11:26:14] [PASSED] test_multiple_irq_change
[11:26:14] [PASSED] test_irq_save
[11:26:14] =============== [PASSED] refcount_interrupt ================
[11:26:14] =============== dma-buf-fence (12 subtests) ================
[11:26:14] [PASSED] test_sanitycheck
[11:26:14] [PASSED] test_signaling
[11:26:14] [PASSED] test_add_callback
[11:26:14] [PASSED] test_late_add_callback
[11:26:14] [PASSED] test_rm_callback
[11:26:14] [PASSED] test_late_rm_callback
[11:26:14] [PASSED] test_status
[11:26:14] [PASSED] test_error
[11:26:14] [PASSED] test_wait
[11:26:14] [PASSED] test_wait_timeout
[11:26:14] [PASSED] test_stub
[11:26:14] [SKIPPED] test_race_signal_callback (requires at least 2 CPUs)
[11:26:14] ================== [PASSED] dma-buf-fence ==================
[11:26:14] ============ dma-buf-fence-chain (11 subtests) =============
[11:26:14] [PASSED] test_sanitycheck
[11:26:14] [PASSED] test_find_seqno
[11:26:14] [PASSED] test_find_signaled
[11:26:14] [PASSED] test_find_out_of_order
[11:26:19] [PASSED] test_find_gap
[11:26:19] [PASSED] test_find_race
[11:26:19] [PASSED] test_signal_forward
[11:26:19] [PASSED] test_signal_backward
[11:26:19] [PASSED] test_wait_forward
[11:26:19] [PASSED] test_wait_backward
[11:26:19] [PASSED] test_wait_random
[11:26:19] =============== [PASSED] dma-buf-fence-chain ===============
[11:26:19] ============ dma-buf-fence-unwrap (10 subtests) ============
[11:26:19] [PASSED] test_sanitycheck
[11:26:19] [PASSED] test_unwrap_array
[11:26:19] [PASSED] test_unwrap_chain
[11:26:19] [PASSED] test_unwrap_chain_array
[11:26:19] [PASSED] test_unwrap_merge
[11:26:19] [PASSED] test_unwrap_merge_duplicate
[11:26:19] [PASSED] test_unwrap_merge_seqno
[11:26:19] [PASSED] test_unwrap_merge_order
[11:26:19] [PASSED] test_unwrap_merge_complex
[11:26:19] [PASSED] test_unwrap_merge_complex_seqno
[11:26:19] ============== [PASSED] dma-buf-fence-unwrap ===============
[11:26:19] ================ dma-buf-resv (5 subtests) =================
[11:26:19] [PASSED] test_sanitycheck
[11:26:19] ===================== test_signaling ======================
[11:26:19] [PASSED] kernel
[11:26:19] [PASSED] write
[11:26:19] [PASSED] read
[11:26:19] [PASSED] bookkeep
[11:26:19] ================= [PASSED] test_signaling ==================
[11:26:19] ====================== test_for_each ======================
[11:26:19] [PASSED] kernel
[11:26:19] [PASSED] write
[11:26:19] [PASSED] read
[11:26:19] [PASSED] bookkeep
[11:26:19] ================== [PASSED] test_for_each ==================
[11:26:19] ================= test_for_each_unlocked ==================
[11:26:19] [PASSED] kernel
[11:26:19] [PASSED] write
[11:26:19] [PASSED] read
[11:26:19] [PASSED] bookkeep
[11:26:19] ============= [PASSED] test_for_each_unlocked ==============
[11:26:19] ===================== test_get_fences =====================
[11:26:19] [PASSED] kernel
[11:26:19] [PASSED] write
[11:26:19] [PASSED] read
[11:26:19] [PASSED] bookkeep
[11:26:19] ================= [PASSED] test_get_fences =================
[11:26:19] ================== [PASSED] dma-buf-resv ===================
[11:26:19] ============================================================
[11:26:19] Testing complete. Ran 54 tests: passed: 53, skipped: 1
[11:26:19] Elapsed time: 15.872s total, 1.786s configuring, 8.765s building, 5.276s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v2 1/2] drm/i915/display: Reject flipq for commits with no plane updates
2026-09-02 10:54 ` [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes Mika Kahola
2026-09-02 11:07 ` sashiko-bot
@ 2026-09-02 11:55 ` Mika Kahola
2026-09-02 11:59 ` [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes Jani Nikula
2026-09-02 12:27 ` Ville Syrjälä
3 siblings, 0 replies; 16+ messages in thread
From: Mika Kahola @ 2026-09-02 11:55 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Mika Kahola
flipq is pointless without an actual plane update to queue. Reject it.
v2:
- Drop the single-plane restriction, plane count doesn't matter (Ville)
- Drop the update_wm_pre/post check, dead code for flipq-capable hw (Ville)
- Drop the active/enabled planes check (Ville)
- Drop the update_pipe/update_m_n/update_lrr check -- unreachable,
intel_crtc_needs_fastset() above is exactly update_pipe, and
update_m_n/update_lrr can only be set alongside it or a full modeset,
both already excluded (Sashiko AI review)
- Drop the intel_flipq_commit_is_eligible() helper -- with the above
gone, all that's left is one extra check, not worth its own function
for a single call site
Assisted-by: Copilot:claude-sonnet-5
Signed-off-by: Mika Kahola <mika.kahola@intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 553c60d452dd..9272fe573ae2 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -7385,6 +7385,7 @@ static void intel_atomic_dsb_prepare(struct intel_atomic_state *state,
/* FIXME deal with everything */
new_crtc_state->use_flipq =
intel_flipq_supported(display) &&
+ new_crtc_state->update_planes &&
!new_crtc_state->do_async_flip &&
!new_crtc_state->vrr.enable &&
!new_crtc_state->has_psr &&
--
2.43.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes
2026-09-02 10:54 ` [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes Mika Kahola
2026-09-02 11:07 ` sashiko-bot
2026-09-02 11:55 ` [PATCH v2 1/2] drm/i915/display: Reject flipq for commits with no plane updates Mika Kahola
@ 2026-09-02 11:59 ` Jani Nikula
2026-09-02 12:24 ` Kahola, Mika
2026-09-02 12:27 ` Ville Syrjälä
3 siblings, 1 reply; 16+ messages in thread
From: Jani Nikula @ 2026-09-02 11:59 UTC (permalink / raw)
To: Mika Kahola, intel-gfx, intel-xe; +Cc: ville.syrjala, Mika Kahola
On Wed, 02 Sep 2026, Mika Kahola <mika.kahola@intel.com> wrote:
> Our flipq eligibility check let pipe, M/N and LRR changes through.
> Reject those too, alongside the existing async flip/VRR/PSR/color/
> modeset/fastset exclusions.
Why?
>
> v2:
> - Drop the single-plane restriction, plane count doesn't matter (Ville)
> - Drop the update_wm_pre/post check, dead code for flipq-capable hw (Ville)
> - Drop the active/enabled planes check (Ville)
>
> Assisted-by: Copilot:claude-sonnet-5
> Signed-off-by: Mika Kahola <mika.kahola@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_display.c | 43 ++++++++++++++++----
> 1 file changed, 36 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> index 553c60d452dd..f4b76a9547e3 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -7369,6 +7369,41 @@ static void intel_atomic_prepare_plane_clear_colors(struct intel_atomic_state *s
> }
> }
>
> +static bool intel_flipq_commit_is_eligible(struct intel_atomic_state *state,
> + struct intel_crtc *crtc)
> +{
> + struct intel_display *display = to_intel_display(state);
> + const struct intel_crtc_state *new_crtc_state =
> + intel_atomic_get_new_crtc_state(state, crtc);
> +
> + if (!intel_flipq_supported(display))
> + return false;
> +
> + if (intel_crtc_needs_modeset(new_crtc_state) ||
> + intel_crtc_needs_fastset(new_crtc_state) ||
> + intel_crtc_needs_color_update(new_crtc_state))
> + return false;
> +
> + if (!new_crtc_state->update_planes)
> + return false;
> +
> + if (new_crtc_state->do_async_flip ||
> + new_crtc_state->vrr.enable ||
> + new_crtc_state->has_psr)
> + return false;
> +
> + /*
> + * Flipq is only suitable for simple queued plane updates that do
> + * not require additional pipe or timing programming.
> + */
> + if (new_crtc_state->update_pipe ||
> + new_crtc_state->update_m_n ||
> + new_crtc_state->update_lrr)
> + return false;
> +
> + return true;
> +}
> +
> static void intel_atomic_dsb_prepare(struct intel_atomic_state *state,
> struct intel_crtc *crtc)
> {
> @@ -7384,13 +7419,7 @@ static void intel_atomic_dsb_prepare(struct intel_atomic_state *state,
>
> /* FIXME deal with everything */
> new_crtc_state->use_flipq =
> - intel_flipq_supported(display) &&
> - !new_crtc_state->do_async_flip &&
> - !new_crtc_state->vrr.enable &&
> - !new_crtc_state->has_psr &&
> - !intel_crtc_needs_modeset(new_crtc_state) &&
> - !intel_crtc_needs_fastset(new_crtc_state) &&
> - !intel_crtc_needs_color_update(new_crtc_state);
> + intel_flipq_commit_is_eligible(state, crtc);
>
> new_crtc_state->use_dsb =
> !new_crtc_state->use_flipq &&
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ CI.KUnit: success for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev3)
2026-09-02 10:54 [PATCH v2 0/2] drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc Mika Kahola
` (2 preceding siblings ...)
2026-09-02 11:26 ` ✓ CI.KUnit: success for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev2) Patchwork
@ 2026-09-02 12:13 ` Patchwork
2026-09-02 12:19 ` ✗ Xe.CI.BAT: failure for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev2) Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-09-02 12:13 UTC (permalink / raw)
To: Mika Kahola; +Cc: intel-xe
== Series Details ==
Series: drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev3)
URL : https://patchwork.freedesktop.org/series/171792/
State : success
== Summary ==
+ trap cleanup EXIT
+ kunitconfigs=('/kernel/drivers/gpu/tests/.kunitconfig' '/kernel/drivers/gpu/drm/xe/.kunitconfig' '/kernel/drivers/gpu/drm/tests/.kunitconfig' '/kernel/drivers/gpu/drm/ttm/tests/.kunitconfig' '/kernel/drivers/dma-buf/.kunitconfig')
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/tests/.kunitconfig
[12:11:25] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:11:30] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:11:50] Starting KUnit Kernel (1/1)...
[12:11:50] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:11:50] ============= refcount_interrupt (4 subtests) ==============
[12:11:50] [PASSED] test_single_irq_change
[12:11:50] [PASSED] test_nested_irq_change
[12:11:50] [PASSED] test_multiple_irq_change
[12:11:50] [PASSED] test_irq_save
[12:11:50] =============== [PASSED] refcount_interrupt ================
[12:11:50] ================= gpu_buddy (14 subtests) ==================
[12:11:50] [PASSED] gpu_test_buddy_alloc_limit
[12:11:50] [PASSED] gpu_test_buddy_alloc_optimistic
[12:11:50] [PASSED] gpu_test_buddy_alloc_pessimistic
[12:11:50] [PASSED] gpu_test_buddy_alloc_pathological
[12:11:50] [PASSED] gpu_test_buddy_alloc_contiguous
[12:11:50] [PASSED] gpu_test_buddy_alloc_clear
[12:11:50] [PASSED] gpu_test_buddy_alloc_range
[12:11:50] [PASSED] gpu_test_buddy_alloc_range_bias
[12:11:51] [PASSED] gpu_test_buddy_fragmentation_performance
[12:11:52] [PASSED] gpu_test_buddy_dirty_tracker_performance
[12:11:52] [PASSED] gpu_test_buddy_alloc_exceeds_max_order
[12:11:52] [PASSED] gpu_test_buddy_offset_aligned_allocation
[12:11:52] [PASSED] gpu_test_buddy_subtree_offset_alignment_stress
[12:11:52] [PASSED] gpu_test_buddy_addr_to_block
[12:11:52] ==================== [PASSED] gpu_buddy ====================
[12:11:52] ============================================================
[12:11:52] Testing complete. Ran 18 tests: passed: 18
[12:11:52] Elapsed time: 26.180s total, 4.357s configuring, 19.906s building, 1.885s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/xe/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[12:11:52] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:11:54] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:12:27] Starting KUnit Kernel (1/1)...
[12:12:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:12:27] ============= refcount_interrupt (4 subtests) ==============
[12:12:27] [PASSED] test_single_irq_change
[12:12:27] [PASSED] test_nested_irq_change
[12:12:27] [PASSED] test_multiple_irq_change
[12:12:27] [PASSED] test_irq_save
[12:12:27] =============== [PASSED] refcount_interrupt ================
[12:12:27] ================== guc_buf (11 subtests) ===================
[12:12:27] [PASSED] test_smallest
[12:12:27] [PASSED] test_largest
[12:12:28] [PASSED] test_granular
[12:12:28] [PASSED] test_unique
[12:12:28] [PASSED] test_overlap
[12:12:28] [PASSED] test_reusable
[12:12:28] [PASSED] test_too_big
[12:12:28] [PASSED] test_flush
[12:12:28] [PASSED] test_lookup
[12:12:28] [PASSED] test_data
[12:12:28] [PASSED] test_class
[12:12:28] ===================== [PASSED] guc_buf =====================
[12:12:28] =================== guc_dbm (7 subtests) ===================
[12:12:28] [PASSED] test_empty
[12:12:28] [PASSED] test_default
[12:12:28] ======================== test_size ========================
[12:12:28] [PASSED] 4
[12:12:28] [PASSED] 8
[12:12:28] [PASSED] 32
[12:12:28] [PASSED] 256
[12:12:28] ==================== [PASSED] test_size ====================
[12:12:28] ======================= test_reuse ========================
[12:12:28] [PASSED] 4
[12:12:28] [PASSED] 8
[12:12:28] [PASSED] 32
[12:12:28] [PASSED] 256
[12:12:28] =================== [PASSED] test_reuse ====================
[12:12:28] =================== test_range_overlap ====================
[12:12:28] [PASSED] 4
[12:12:28] [PASSED] 8
[12:12:28] [PASSED] 32
[12:12:28] [PASSED] 256
[12:12:28] =============== [PASSED] test_range_overlap ================
[12:12:28] =================== test_range_compact ====================
[12:12:28] [PASSED] 4
[12:12:28] [PASSED] 8
[12:12:28] [PASSED] 32
[12:12:28] [PASSED] 256
[12:12:28] =============== [PASSED] test_range_compact ================
[12:12:28] ==================== test_range_spare =====================
[12:12:28] [PASSED] 4
[12:12:28] [PASSED] 8
[12:12:28] [PASSED] 32
[12:12:28] [PASSED] 256
[12:12:28] ================ [PASSED] test_range_spare =================
[12:12:28] ===================== [PASSED] guc_dbm =====================
[12:12:28] =================== guc_idm (6 subtests) ===================
[12:12:28] [PASSED] bad_init
[12:12:28] [PASSED] no_init
[12:12:28] [PASSED] init_fini
[12:12:28] [PASSED] check_used
[12:12:28] [PASSED] check_quota
[12:12:28] [PASSED] check_all
[12:12:28] ===================== [PASSED] guc_idm =====================
[12:12:28] =============== guc_klv_helpers (9 subtests) ===============
[12:12:28] [PASSED] test_count
[12:12:28] [PASSED] test_encode_u32
[12:12:28] [PASSED] test_encode_u64
[12:12:28] [PASSED] test_encode_string
[12:12:28] [PASSED] test_encode_object_raw
[12:12:28] [PASSED] test_encode_object_klv
[12:12:28] [PASSED] test_encode_object_nested
[12:12:28] [PASSED] test_encode_object_basic
[12:12:28] [PASSED] test_print
[12:12:28] ================= [PASSED] guc_klv_helpers =================
[12:12:28] =================== xe_log (4 subtests) ====================
[12:12:28] [PASSED] demo_cper
[12:12:28] [PASSED] demo_dmesg
[12:12:28] ======================= test_dmesg ========================
[12:12:28] [PASSED] test_fatal
[12:12:28] [PASSED] test_fatal_tile
[12:12:28] [PASSED] test_fatal_gt
[12:12:28] [PASSED] test_fatal_comp
[12:12:28] [PASSED] test_fatal_comp_tile
[12:12:28] [PASSED] test_fatal_comp_gt
[12:12:28] [PASSED] test_fatal_all
[12:12:28] [PASSED] test_recoverable
[12:12:28] [PASSED] test_recoverable_tile
[12:12:28] [PASSED] test_recoverable_gt
[12:12:28] [PASSED] test_recoverable_comp
[12:12:28] [PASSED] test_recoverable_comp_tile
[12:12:28] [PASSED] test_recoverable_comp_gt
[12:12:28] [PASSED] test_recoverable_all
[12:12:28] [PASSED] test_info
[12:12:28] [PASSED] test_info_tile
[12:12:28] [PASSED] test_info_gt
[12:12:28] [PASSED] test_info_err
[12:12:28] [PASSED] test_info_comp
[12:12:28] [PASSED] test_info_comp_tile
[12:12:28] [PASSED] test_info_comp_gt
[12:12:28] [PASSED] test_info_all
[12:12:28] [PASSED] test_hw_fatal
[12:12:28] [PASSED] test_hw_recoverable
[12:12:28] [PASSED] test_hw_corrected
[12:12:28] [PASSED] test_hw_informational
[12:12:28] =================== [PASSED] test_dmesg ====================
[12:12:28] ====================== test_invalid =======================
[12:12:28] [SKIPPED] no-component no-location no-warn (requires CONFIG_DRM_XE_DEBUG)
[12:12:28] [SKIPPED] reserved location (requires CONFIG_DRM_XE_DEBUG)
[12:12:28] [SKIPPED] unknown location (requires CONFIG_DRM_XE_DEBUG)
[12:12:28] [SKIPPED] nonzero-device-id location (requires CONFIG_DRM_XE_DEBUG)
[12:12:28] [SKIPPED] invalid-tile-id location (requires CONFIG_DRM_XE_DEBUG)
[12:12:28] [SKIPPED] invalid-gt-id location (requires CONFIG_DRM_XE_DEBUG)
[12:12:28] [SKIPPED] unknown component class (requires CONFIG_DRM_XE_DEBUG)
[12:12:28] [SKIPPED] unknown system component (requires CONFIG_DRM_XE_DEBUG)
[12:12:28] [SKIPPED] unknown hardware component (requires CONFIG_DRM_XE_DEBUG)
[12:12:28] [SKIPPED] unknown component and location (requires CONFIG_DRM_XE_DEBUG)
[12:12:28] ================== [SKIPPED] test_invalid ==================
[12:12:28] ===================== [PASSED] xe_log ======================
[12:12:28] ================== no_relay (3 subtests) ===================
[12:12:28] [PASSED] xe_drops_guc2pf_if_not_ready
[12:12:28] [PASSED] xe_drops_guc2vf_if_not_ready
[12:12:28] [PASSED] xe_rejects_send_if_not_ready
[12:12:28] ==================== [PASSED] no_relay =====================
[12:12:28] ================== pf_relay (14 subtests) ==================
[12:12:28] [PASSED] pf_rejects_guc2pf_too_short
[12:12:28] [PASSED] pf_rejects_guc2pf_too_long
[12:12:28] [PASSED] pf_rejects_guc2pf_no_payload
[12:12:28] [PASSED] pf_fails_no_payload
[12:12:28] [PASSED] pf_fails_bad_origin
[12:12:28] [PASSED] pf_fails_bad_type
[12:12:28] [PASSED] pf_txn_reports_error
[12:12:28] [PASSED] pf_txn_sends_pf2guc
[12:12:28] [PASSED] pf_sends_pf2guc
[12:12:28] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[12:12:28] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[12:12:28] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[12:12:28] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[12:12:28] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[12:12:28] ==================== [PASSED] pf_relay =====================
[12:12:28] ================== vf_relay (3 subtests) ===================
[12:12:28] [PASSED] vf_rejects_guc2vf_too_short
[12:12:28] [PASSED] vf_rejects_guc2vf_too_long
[12:12:28] [PASSED] vf_rejects_guc2vf_no_payload
[12:12:28] ==================== [PASSED] vf_relay =====================
[12:12:28] ================ pf_gt_config (9 subtests) =================
[12:12:28] [PASSED] fair_contexts_1vf
[12:12:28] [PASSED] fair_doorbells_1vf
[12:12:28] [PASSED] fair_ggtt_1vf
[12:12:28] ====================== fair_vram_1vf ======================
[12:12:28] [PASSED] 3.50 GiB
[12:12:28] [PASSED] 11.5 GiB
[12:12:28] [PASSED] 15.5 GiB
[12:12:28] [PASSED] 31.5 GiB
[12:12:28] [PASSED] 63.5 GiB
[12:12:28] [PASSED] 1.91 GiB
[12:12:28] ================== [PASSED] fair_vram_1vf ==================
[12:12:28] ================ fair_vram_1vf_admin_only =================
[12:12:28] [PASSED] 3.50 GiB
[12:12:28] [PASSED] 11.5 GiB
[12:12:28] [PASSED] 15.5 GiB
[12:12:28] [PASSED] 31.5 GiB
[12:12:28] [PASSED] 63.5 GiB
[12:12:28] [PASSED] 1.91 GiB
[12:12:28] ============ [PASSED] fair_vram_1vf_admin_only =============
[12:12:28] ====================== fair_contexts ======================
[12:12:28] [PASSED] 1 VF
[12:12:28] [PASSED] 2 VFs
[12:12:28] [PASSED] 3 VFs
[12:12:28] [PASSED] 4 VFs
[12:12:28] [PASSED] 5 VFs
[12:12:28] [PASSED] 6 VFs
[12:12:28] [PASSED] 7 VFs
[12:12:28] [PASSED] 8 VFs
[12:12:28] [PASSED] 9 VFs
[12:12:28] [PASSED] 10 VFs
[12:12:28] [PASSED] 11 VFs
[12:12:28] [PASSED] 12 VFs
[12:12:28] [PASSED] 13 VFs
[12:12:28] [PASSED] 14 VFs
[12:12:28] [PASSED] 15 VFs
[12:12:28] [PASSED] 16 VFs
[12:12:28] [PASSED] 17 VFs
[12:12:28] [PASSED] 18 VFs
[12:12:28] [PASSED] 19 VFs
[12:12:28] [PASSED] 20 VFs
[12:12:28] [PASSED] 21 VFs
[12:12:28] [PASSED] 22 VFs
[12:12:28] [PASSED] 23 VFs
[12:12:28] [PASSED] 24 VFs
[12:12:28] [PASSED] 25 VFs
[12:12:28] [PASSED] 26 VFs
[12:12:28] [PASSED] 27 VFs
[12:12:28] [PASSED] 28 VFs
[12:12:28] [PASSED] 29 VFs
[12:12:28] [PASSED] 30 VFs
[12:12:28] [PASSED] 31 VFs
[12:12:28] [PASSED] 32 VFs
[12:12:28] [PASSED] 33 VFs
[12:12:28] [PASSED] 34 VFs
[12:12:28] [PASSED] 35 VFs
[12:12:28] [PASSED] 36 VFs
[12:12:28] [PASSED] 37 VFs
[12:12:28] [PASSED] 38 VFs
[12:12:28] [PASSED] 39 VFs
[12:12:28] [PASSED] 40 VFs
[12:12:28] [PASSED] 41 VFs
[12:12:28] [PASSED] 42 VFs
[12:12:28] [PASSED] 43 VFs
[12:12:28] [PASSED] 44 VFs
[12:12:28] [PASSED] 45 VFs
[12:12:28] [PASSED] 46 VFs
[12:12:28] [PASSED] 47 VFs
[12:12:28] [PASSED] 48 VFs
[12:12:28] [PASSED] 49 VFs
[12:12:28] [PASSED] 50 VFs
[12:12:28] [PASSED] 51 VFs
[12:12:28] [PASSED] 52 VFs
[12:12:28] [PASSED] 53 VFs
[12:12:28] [PASSED] 54 VFs
[12:12:28] [PASSED] 55 VFs
[12:12:28] [PASSED] 56 VFs
[12:12:28] [PASSED] 57 VFs
[12:12:28] [PASSED] 58 VFs
[12:12:28] [PASSED] 59 VFs
[12:12:28] [PASSED] 60 VFs
[12:12:28] [PASSED] 61 VFs
[12:12:28] [PASSED] 62 VFs
[12:12:28] [PASSED] 63 VFs
[12:12:28] ================== [PASSED] fair_contexts ==================
[12:12:28] ===================== fair_doorbells ======================
[12:12:28] [PASSED] 1 VF
[12:12:28] [PASSED] 2 VFs
[12:12:28] [PASSED] 3 VFs
[12:12:28] [PASSED] 4 VFs
[12:12:28] [PASSED] 5 VFs
[12:12:28] [PASSED] 6 VFs
[12:12:28] [PASSED] 7 VFs
[12:12:28] [PASSED] 8 VFs
[12:12:28] [PASSED] 9 VFs
[12:12:28] [PASSED] 10 VFs
[12:12:28] [PASSED] 11 VFs
[12:12:28] [PASSED] 12 VFs
[12:12:28] [PASSED] 13 VFs
[12:12:28] [PASSED] 14 VFs
[12:12:28] [PASSED] 15 VFs
[12:12:28] [PASSED] 16 VFs
[12:12:28] [PASSED] 17 VFs
[12:12:28] [PASSED] 18 VFs
[12:12:28] [PASSED] 19 VFs
[12:12:28] [PASSED] 20 VFs
[12:12:28] [PASSED] 21 VFs
[12:12:28] [PASSED] 22 VFs
[12:12:28] [PASSED] 23 VFs
[12:12:28] [PASSED] 24 VFs
[12:12:28] [PASSED] 25 VFs
[12:12:28] [PASSED] 26 VFs
[12:12:28] [PASSED] 27 VFs
[12:12:28] [PASSED] 28 VFs
[12:12:28] [PASSED] 29 VFs
[12:12:28] [PASSED] 30 VFs
[12:12:28] [PASSED] 31 VFs
[12:12:28] [PASSED] 32 VFs
[12:12:28] [PASSED] 33 VFs
[12:12:28] [PASSED] 34 VFs
[12:12:28] [PASSED] 35 VFs
[12:12:28] [PASSED] 36 VFs
[12:12:28] [PASSED] 37 VFs
[12:12:28] [PASSED] 38 VFs
[12:12:28] [PASSED] 39 VFs
[12:12:28] [PASSED] 40 VFs
[12:12:28] [PASSED] 41 VFs
[12:12:28] [PASSED] 42 VFs
[12:12:28] [PASSED] 43 VFs
[12:12:28] [PASSED] 44 VFs
[12:12:28] [PASSED] 45 VFs
[12:12:28] [PASSED] 46 VFs
[12:12:28] [PASSED] 47 VFs
[12:12:28] [PASSED] 48 VFs
[12:12:28] [PASSED] 49 VFs
[12:12:28] [PASSED] 50 VFs
[12:12:28] [PASSED] 51 VFs
[12:12:28] [PASSED] 52 VFs
[12:12:28] [PASSED] 53 VFs
[12:12:28] [PASSED] 54 VFs
[12:12:28] [PASSED] 55 VFs
[12:12:28] [PASSED] 56 VFs
[12:12:28] [PASSED] 57 VFs
[12:12:28] [PASSED] 58 VFs
[12:12:28] [PASSED] 59 VFs
[12:12:28] [PASSED] 60 VFs
[12:12:28] [PASSED] 61 VFs
[12:12:28] [PASSED] 62 VFs
[12:12:28] [PASSED] 63 VFs
[12:12:28] ================= [PASSED] fair_doorbells ==================
[12:12:28] ======================== fair_ggtt ========================
[12:12:28] [PASSED] 1 VF
[12:12:28] [PASSED] 2 VFs
[12:12:28] [PASSED] 3 VFs
[12:12:28] [PASSED] 4 VFs
[12:12:28] [PASSED] 5 VFs
[12:12:28] [PASSED] 6 VFs
[12:12:28] [PASSED] 7 VFs
[12:12:28] [PASSED] 8 VFs
[12:12:28] [PASSED] 9 VFs
[12:12:28] [PASSED] 10 VFs
[12:12:28] [PASSED] 11 VFs
[12:12:28] [PASSED] 12 VFs
[12:12:28] [PASSED] 13 VFs
[12:12:28] [PASSED] 14 VFs
[12:12:28] [PASSED] 15 VFs
[12:12:28] [PASSED] 16 VFs
[12:12:28] [PASSED] 17 VFs
[12:12:28] [PASSED] 18 VFs
[12:12:28] [PASSED] 19 VFs
[12:12:28] [PASSED] 20 VFs
[12:12:28] [PASSED] 21 VFs
[12:12:28] [PASSED] 22 VFs
[12:12:28] [PASSED] 23 VFs
[12:12:28] [PASSED] 24 VFs
[12:12:28] [PASSED] 25 VFs
[12:12:28] [PASSED] 26 VFs
[12:12:28] [PASSED] 27 VFs
[12:12:28] [PASSED] 28 VFs
[12:12:28] [PASSED] 29 VFs
[12:12:28] [PASSED] 30 VFs
[12:12:28] [PASSED] 31 VFs
[12:12:28] [PASSED] 32 VFs
[12:12:28] [PASSED] 33 VFs
[12:12:28] [PASSED] 34 VFs
[12:12:28] [PASSED] 35 VFs
[12:12:28] [PASSED] 36 VFs
[12:12:28] [PASSED] 37 VFs
[12:12:28] [PASSED] 38 VFs
[12:12:28] [PASSED] 39 VFs
[12:12:28] [PASSED] 40 VFs
[12:12:28] [PASSED] 41 VFs
[12:12:28] [PASSED] 42 VFs
[12:12:28] [PASSED] 43 VFs
[12:12:28] [PASSED] 44 VFs
[12:12:28] [PASSED] 45 VFs
[12:12:28] [PASSED] 46 VFs
[12:12:28] [PASSED] 47 VFs
[12:12:28] [PASSED] 48 VFs
[12:12:28] [PASSED] 49 VFs
[12:12:28] [PASSED] 50 VFs
[12:12:28] [PASSED] 51 VFs
[12:12:28] [PASSED] 52 VFs
[12:12:28] [PASSED] 53 VFs
[12:12:28] [PASSED] 54 VFs
[12:12:28] [PASSED] 55 VFs
[12:12:28] [PASSED] 56 VFs
[12:12:28] [PASSED] 57 VFs
[12:12:28] [PASSED] 58 VFs
[12:12:28] [PASSED] 59 VFs
[12:12:28] [PASSED] 60 VFs
[12:12:28] [PASSED] 61 VFs
[12:12:28] [PASSED] 62 VFs
[12:12:28] [PASSED] 63 VFs
[12:12:28] ==================== [PASSED] fair_ggtt ====================
[12:12:28] ======================== fair_vram ========================
[12:12:28] [PASSED] 1 VF
[12:12:28] [PASSED] 2 VFs
[12:12:28] [PASSED] 3 VFs
[12:12:28] [PASSED] 4 VFs
[12:12:28] [PASSED] 5 VFs
[12:12:28] [PASSED] 6 VFs
[12:12:28] [PASSED] 7 VFs
[12:12:28] [PASSED] 8 VFs
[12:12:28] [PASSED] 9 VFs
[12:12:28] [PASSED] 10 VFs
[12:12:28] [PASSED] 11 VFs
[12:12:28] [PASSED] 12 VFs
[12:12:28] [PASSED] 13 VFs
[12:12:28] [PASSED] 14 VFs
[12:12:28] [PASSED] 15 VFs
[12:12:28] [PASSED] 16 VFs
[12:12:28] [PASSED] 17 VFs
[12:12:28] [PASSED] 18 VFs
[12:12:28] [PASSED] 19 VFs
[12:12:28] [PASSED] 20 VFs
[12:12:28] [PASSED] 21 VFs
[12:12:28] [PASSED] 22 VFs
[12:12:28] [PASSED] 23 VFs
[12:12:28] [PASSED] 24 VFs
[12:12:28] [PASSED] 25 VFs
[12:12:28] [PASSED] 26 VFs
[12:12:28] [PASSED] 27 VFs
[12:12:28] [PASSED] 28 VFs
[12:12:28] [PASSED] 29 VFs
[12:12:28] [PASSED] 30 VFs
[12:12:28] [PASSED] 31 VFs
[12:12:28] [PASSED] 32 VFs
[12:12:28] [PASSED] 33 VFs
[12:12:28] [PASSED] 34 VFs
[12:12:28] [PASSED] 35 VFs
[12:12:28] [PASSED] 36 VFs
[12:12:28] [PASSED] 37 VFs
[12:12:28] [PASSED] 38 VFs
[12:12:28] [PASSED] 39 VFs
[12:12:28] [PASSED] 40 VFs
[12:12:28] [PASSED] 41 VFs
[12:12:28] [PASSED] 42 VFs
[12:12:28] [PASSED] 43 VFs
[12:12:28] [PASSED] 44 VFs
[12:12:28] [PASSED] 45 VFs
[12:12:28] [PASSED] 46 VFs
[12:12:28] [PASSED] 47 VFs
[12:12:28] [PASSED] 48 VFs
[12:12:28] [PASSED] 49 VFs
[12:12:28] [PASSED] 50 VFs
[12:12:28] [PASSED] 51 VFs
[12:12:28] [PASSED] 52 VFs
[12:12:28] [PASSED] 53 VFs
[12:12:28] [PASSED] 54 VFs
[12:12:28] [PASSED] 55 VFs
[12:12:28] [PASSED] 56 VFs
[12:12:28] [PASSED] 57 VFs
[12:12:28] [PASSED] 58 VFs
[12:12:28] [PASSED] 59 VFs
[12:12:28] [PASSED] 60 VFs
[12:12:28] [PASSED] 61 VFs
[12:12:28] [PASSED] 62 VFs
[12:12:28] [PASSED] 63 VFs
[12:12:28] ==================== [PASSED] fair_vram ====================
[12:12:28] ================== [PASSED] pf_gt_config ===================
[12:12:28] ===================== lmtt (1 subtest) =====================
[12:12:28] ======================== test_ops =========================
[12:12:28] [PASSED] 2-level
[12:12:28] [PASSED] multi-level
[12:12:28] ==================== [PASSED] test_ops =====================
[12:12:28] ====================== [PASSED] lmtt =======================
[12:12:28] ================= sriov_packet (1 subtest) =================
[12:12:28] [PASSED] test_descriptor_init
[12:12:28] ================== [PASSED] sriov_packet ===================
[12:12:28] ================= pf_service (11 subtests) =================
[12:12:28] [PASSED] pf_negotiate_any
[12:12:28] [PASSED] pf_negotiate_base_match
[12:12:28] [PASSED] pf_negotiate_base_newer
[12:12:28] [PASSED] pf_negotiate_base_next
[12:12:28] [SKIPPED] pf_negotiate_base_older (no older minor)
[12:12:28] [PASSED] pf_negotiate_base_prev
[12:12:28] [PASSED] pf_negotiate_latest_match
[12:12:28] [PASSED] pf_negotiate_latest_newer
[12:12:28] [PASSED] pf_negotiate_latest_next
[12:12:28] [SKIPPED] pf_negotiate_latest_older (no older minor)
[12:12:28] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[12:12:28] =================== [PASSED] pf_service ====================
[12:12:28] ================= xe_guc_g2g (2 subtests) ==================
[12:12:28] ============== xe_live_guc_g2g_kunit_default ==============
[12:12:28] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[12:12:28] ============== xe_live_guc_g2g_kunit_allmem ===============
[12:12:28] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[12:12:28] =================== [SKIPPED] xe_guc_g2g ===================
[12:12:28] =================== xe_mocs (2 subtests) ===================
[12:12:28] ================ xe_live_mocs_kernel_kunit ================
[12:12:28] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[12:12:28] ================ xe_live_mocs_reset_kunit =================
[12:12:28] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[12:12:28] ==================== [SKIPPED] xe_mocs =====================
[12:12:28] ================= xe_migrate (2 subtests) ==================
[12:12:28] ================= xe_migrate_sanity_kunit =================
[12:12:28] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[12:12:28] ================== xe_validate_ccs_kunit ==================
[12:12:28] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[12:12:28] =================== [SKIPPED] xe_migrate ===================
[12:12:28] ================== xe_dma_buf (1 subtest) ==================
[12:12:28] ==================== xe_dma_buf_kunit =====================
[12:12:28] ================ [SKIPPED] xe_dma_buf_kunit ================
[12:12:28] =================== [SKIPPED] xe_dma_buf ===================
[12:12:28] ================= xe_bo_shrink (1 subtest) =================
[12:12:28] =================== xe_bo_shrink_kunit ====================
[12:12:28] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[12:12:28] ================== [SKIPPED] xe_bo_shrink ==================
[12:12:28] ==================== xe_bo (2 subtests) ====================
[12:12:28] ================== xe_ccs_migrate_kunit ===================
[12:12:28] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[12:12:28] ==================== xe_bo_evict_kunit ====================
[12:12:28] =============== [SKIPPED] xe_bo_evict_kunit ================
[12:12:28] ===================== [SKIPPED] xe_bo ======================
[12:12:28] =================== xe_any (9 subtests) ====================
[12:12:28] [PASSED] test_to_xe
[12:12:28] [PASSED] test_to_dev
[12:12:28] [PASSED] test_to_pdev
[12:12:28] [PASSED] test_to_drm
[12:12:28] [PASSED] test_if_pdev
[12:12:28] [PASSED] test_if_xe
[12:12:28] [PASSED] test_if_tile
[12:12:28] [PASSED] test_if_gt
[12:12:28] [PASSED] test_to_id
[12:12:28] ===================== [PASSED] xe_any ======================
[12:12:28] ==================== args (13 subtests) ====================
[12:12:28] [PASSED] count_args_test
[12:12:28] [PASSED] call_args_example
[12:12:28] [PASSED] call_args_test
[12:12:28] [PASSED] drop_first_arg_example
[12:12:28] [PASSED] drop_first_arg_test
[12:12:28] [PASSED] first_arg_example
[12:12:28] [PASSED] first_arg_test
[12:12:28] [PASSED] last_arg_example
[12:12:28] [PASSED] last_arg_test
[12:12:28] [PASSED] pick_arg_example
[12:12:28] [PASSED] if_args_example
[12:12:28] [PASSED] if_args_test
[12:12:28] [PASSED] sep_comma_example
[12:12:28] ====================== [PASSED] args =======================
[12:12:28] =================== xe_pci (3 subtests) ====================
[12:12:28] ==================== check_graphics_ip ====================
[12:12:28] [PASSED] 12.00 Xe_LP
[12:12:28] [PASSED] 12.10 Xe_LP+
[12:12:28] [PASSED] 12.55 Xe_HPG
[12:12:28] [PASSED] 12.60 Xe_HPC
[12:12:28] [PASSED] 12.70 Xe_LPG
[12:12:28] [PASSED] 12.71 Xe_LPG
[12:12:28] [PASSED] 12.74 Xe_LPG+
[12:12:28] [PASSED] 20.01 Xe2_HPG
[12:12:28] [PASSED] 20.02 Xe2_HPG
[12:12:28] [PASSED] 20.04 Xe2_LPG
[12:12:28] [PASSED] 30.00 Xe3_LPG
[12:12:28] [PASSED] 30.01 Xe3_LPG
[12:12:28] [PASSED] 30.03 Xe3_LPG
[12:12:28] [PASSED] 30.04 Xe3_LPG
[12:12:28] [PASSED] 30.05 Xe3_LPG
[12:12:28] [PASSED] 35.10 Xe3p_LPG
[12:12:28] [PASSED] 35.11 Xe3p_XPC
[12:12:28] ================ [PASSED] check_graphics_ip ================
[12:12:28] ===================== check_media_ip ======================
[12:12:28] [PASSED] 12.00 Xe_M
[12:12:28] [PASSED] 12.55 Xe_HPM
[12:12:28] [PASSED] 13.00 Xe_LPM+
[12:12:28] [PASSED] 13.01 Xe2_HPM
[12:12:28] [PASSED] 20.00 Xe2_LPM
[12:12:28] [PASSED] 30.00 Xe3_LPM
[12:12:28] [PASSED] 30.02 Xe3_LPM
[12:12:28] [PASSED] 35.00 Xe3p_LPM
[12:12:28] [PASSED] 35.03 Xe3p_HPM
[12:12:28] ================= [PASSED] check_media_ip ==================
[12:12:28] =================== check_platform_desc ===================
[12:12:28] [PASSED] 0x9A60 (TIGERLAKE)
[12:12:28] [PASSED] 0x9A68 (TIGERLAKE)
[12:12:28] [PASSED] 0x9A70 (TIGERLAKE)
[12:12:28] [PASSED] 0x9A40 (TIGERLAKE)
[12:12:28] [PASSED] 0x9A49 (TIGERLAKE)
[12:12:28] [PASSED] 0x9A59 (TIGERLAKE)
[12:12:28] [PASSED] 0x9A78 (TIGERLAKE)
[12:12:28] [PASSED] 0x9AC0 (TIGERLAKE)
[12:12:28] [PASSED] 0x9AC9 (TIGERLAKE)
[12:12:28] [PASSED] 0x9AD9 (TIGERLAKE)
[12:12:28] [PASSED] 0x9AF8 (TIGERLAKE)
[12:12:28] [PASSED] 0x4C80 (ROCKETLAKE)
[12:12:28] [PASSED] 0x4C8A (ROCKETLAKE)
[12:12:28] [PASSED] 0x4C8B (ROCKETLAKE)
[12:12:28] [PASSED] 0x4C8C (ROCKETLAKE)
[12:12:28] [PASSED] 0x4C90 (ROCKETLAKE)
[12:12:28] [PASSED] 0x4C9A (ROCKETLAKE)
[12:12:28] [PASSED] 0x4680 (ALDERLAKE_S)
[12:12:28] [PASSED] 0x4682 (ALDERLAKE_S)
[12:12:28] [PASSED] 0x4688 (ALDERLAKE_S)
[12:12:28] [PASSED] 0x468A (ALDERLAKE_S)
[12:12:28] [PASSED] 0x468B (ALDERLAKE_S)
[12:12:28] [PASSED] 0x4690 (ALDERLAKE_S)
[12:12:28] [PASSED] 0x4692 (ALDERLAKE_S)
[12:12:28] [PASSED] 0x4693 (ALDERLAKE_S)
[12:12:28] [PASSED] 0x46A0 (ALDERLAKE_P)
[12:12:28] [PASSED] 0x46A1 (ALDERLAKE_P)
[12:12:28] [PASSED] 0x46A2 (ALDERLAKE_P)
[12:12:28] [PASSED] 0x46A3 (ALDERLAKE_P)
[12:12:28] [PASSED] 0x46A6 (ALDERLAKE_P)
[12:12:28] [PASSED] 0x46A8 (ALDERLAKE_P)
[12:12:28] [PASSED] 0x46AA (ALDERLAKE_P)
[12:12:28] [PASSED] 0x462A (ALDERLAKE_P)
[12:12:28] [PASSED] 0x4626 (ALDERLAKE_P)
[12:12:28] [PASSED] 0x4628 (ALDERLAKE_P)
[12:12:28] [PASSED] 0x46B0 (ALDERLAKE_P)
[12:12:28] [PASSED] 0x46B1 (ALDERLAKE_P)
[12:12:28] [PASSED] 0x46B2 (ALDERLAKE_P)
[12:12:28] [PASSED] 0x46B3 (ALDERLAKE_P)
[12:12:28] [PASSED] 0x46C0 (ALDERLAKE_P)
[12:12:28] [PASSED] 0x46C1 (ALDERLAKE_P)
[12:12:28] [PASSED] 0x46C2 (ALDERLAKE_P)
[12:12:28] [PASSED] 0x46C3 (ALDERLAKE_P)
[12:12:28] [PASSED] 0x46D0 (ALDERLAKE_N)
[12:12:28] [PASSED] 0x46D1 (ALDERLAKE_N)
[12:12:28] [PASSED] 0x46D2 (ALDERLAKE_N)
[12:12:28] [PASSED] 0x46D3 (ALDERLAKE_N)
[12:12:28] [PASSED] 0x46D4 (ALDERLAKE_N)
[12:12:28] [PASSED] 0xA721 (ALDERLAKE_P)
[12:12:28] [PASSED] 0xA7A1 (ALDERLAKE_P)
[12:12:28] [PASSED] 0xA7A9 (ALDERLAKE_P)
[12:12:28] [PASSED] 0xA7AC (ALDERLAKE_P)
[12:12:28] [PASSED] 0xA7AD (ALDERLAKE_P)
[12:12:28] [PASSED] 0xA720 (ALDERLAKE_P)
[12:12:28] [PASSED] 0xA7A0 (ALDERLAKE_P)
[12:12:28] [PASSED] 0xA7A8 (ALDERLAKE_P)
[12:12:28] [PASSED] 0xA7AA (ALDERLAKE_P)
[12:12:28] [PASSED] 0xA7AB (ALDERLAKE_P)
[12:12:28] [PASSED] 0xA780 (ALDERLAKE_S)
[12:12:28] [PASSED] 0xA781 (ALDERLAKE_S)
[12:12:28] [PASSED] 0xA782 (ALDERLAKE_S)
[12:12:28] [PASSED] 0xA783 (ALDERLAKE_S)
[12:12:28] [PASSED] 0xA788 (ALDERLAKE_S)
[12:12:28] [PASSED] 0xA789 (ALDERLAKE_S)
[12:12:28] [PASSED] 0xA78A (ALDERLAKE_S)
[12:12:28] [PASSED] 0xA78B (ALDERLAKE_S)
[12:12:28] [PASSED] 0x4905 (DG1)
[12:12:28] [PASSED] 0x4906 (DG1)
[12:12:28] [PASSED] 0x4907 (DG1)
[12:12:28] [PASSED] 0x4908 (DG1)
[12:12:28] [PASSED] 0x4909 (DG1)
[12:12:28] [PASSED] 0x56C0 (DG2)
[12:12:28] [PASSED] 0x56C2 (DG2)
[12:12:28] [PASSED] 0x56C1 (DG2)
[12:12:28] [PASSED] 0x7D51 (METEORLAKE)
[12:12:28] [PASSED] 0x7DD1 (METEORLAKE)
[12:12:28] [PASSED] 0x7D41 (METEORLAKE)
[12:12:28] [PASSED] 0x7D67 (METEORLAKE)
[12:12:28] [PASSED] 0xB640 (METEORLAKE)
[12:12:28] [PASSED] 0x56A0 (DG2)
[12:12:28] [PASSED] 0x56A1 (DG2)
[12:12:28] [PASSED] 0x56A2 (DG2)
[12:12:28] [PASSED] 0x56BE (DG2)
[12:12:28] [PASSED] 0x56BF (DG2)
[12:12:28] [PASSED] 0x5690 (DG2)
[12:12:28] [PASSED] 0x5691 (DG2)
[12:12:28] [PASSED] 0x5692 (DG2)
[12:12:28] [PASSED] 0x56A5 (DG2)
[12:12:28] [PASSED] 0x56A6 (DG2)
[12:12:28] [PASSED] 0x56B0 (DG2)
[12:12:28] [PASSED] 0x56B1 (DG2)
[12:12:28] [PASSED] 0x56BA (DG2)
[12:12:28] [PASSED] 0x56BB (DG2)
[12:12:28] [PASSED] 0x56BC (DG2)
[12:12:28] [PASSED] 0x56BD (DG2)
[12:12:28] [PASSED] 0x5693 (DG2)
[12:12:28] [PASSED] 0x5694 (DG2)
[12:12:28] [PASSED] 0x5695 (DG2)
[12:12:28] [PASSED] 0x56A3 (DG2)
[12:12:28] [PASSED] 0x56A4 (DG2)
[12:12:28] [PASSED] 0x56B2 (DG2)
[12:12:28] [PASSED] 0x56B3 (DG2)
[12:12:28] [PASSED] 0x5696 (DG2)
[12:12:28] [PASSED] 0x5697 (DG2)
[12:12:28] [PASSED] 0xB69 (PVC)
[12:12:28] [PASSED] 0xB6E (PVC)
[12:12:28] [PASSED] 0xBD4 (PVC)
[12:12:28] [PASSED] 0xBD5 (PVC)
[12:12:28] [PASSED] 0xBD6 (PVC)
[12:12:28] [PASSED] 0xBD7 (PVC)
[12:12:28] [PASSED] 0xBD8 (PVC)
[12:12:28] [PASSED] 0xBD9 (PVC)
[12:12:28] [PASSED] 0xBDA (PVC)
[12:12:28] [PASSED] 0xBDB (PVC)
[12:12:28] [PASSED] 0xBE0 (PVC)
[12:12:28] [PASSED] 0xBE1 (PVC)
[12:12:28] [PASSED] 0xBE5 (PVC)
[12:12:28] [PASSED] 0x7D40 (METEORLAKE)
[12:12:28] [PASSED] 0x7D45 (METEORLAKE)
[12:12:28] [PASSED] 0x7D55 (METEORLAKE)
[12:12:28] [PASSED] 0x7D60 (METEORLAKE)
[12:12:28] [PASSED] 0x7DD5 (METEORLAKE)
[12:12:28] [PASSED] 0x6420 (LUNARLAKE)
[12:12:28] [PASSED] 0x64A0 (LUNARLAKE)
[12:12:28] [PASSED] 0x64B0 (LUNARLAKE)
[12:12:28] [PASSED] 0xE202 (BATTLEMAGE)
[12:12:28] [PASSED] 0xE209 (BATTLEMAGE)
[12:12:28] [PASSED] 0xE20B (BATTLEMAGE)
[12:12:28] [PASSED] 0xE20C (BATTLEMAGE)
[12:12:28] [PASSED] 0xE20D (BATTLEMAGE)
[12:12:28] [PASSED] 0xE210 (BATTLEMAGE)
[12:12:28] [PASSED] 0xE211 (BATTLEMAGE)
[12:12:28] [PASSED] 0xE212 (BATTLEMAGE)
[12:12:28] [PASSED] 0xE216 (BATTLEMAGE)
[12:12:28] [PASSED] 0xE220 (BATTLEMAGE)
[12:12:28] [PASSED] 0xE221 (BATTLEMAGE)
[12:12:28] [PASSED] 0xE222 (BATTLEMAGE)
[12:12:28] [PASSED] 0xE223 (BATTLEMAGE)
[12:12:28] [PASSED] 0xB080 (PANTHERLAKE)
[12:12:28] [PASSED] 0xB081 (PANTHERLAKE)
[12:12:28] [PASSED] 0xB082 (PANTHERLAKE)
[12:12:28] [PASSED] 0xB083 (PANTHERLAKE)
[12:12:28] [PASSED] 0xB084 (PANTHERLAKE)
[12:12:28] [PASSED] 0xB085 (PANTHERLAKE)
[12:12:28] [PASSED] 0xB086 (PANTHERLAKE)
[12:12:28] [PASSED] 0xB087 (PANTHERLAKE)
[12:12:28] [PASSED] 0xB08F (PANTHERLAKE)
[12:12:28] [PASSED] 0xB090 (PANTHERLAKE)
[12:12:28] [PASSED] 0xB0A0 (PANTHERLAKE)
[12:12:28] [PASSED] 0xB0B0 (PANTHERLAKE)
[12:12:28] [PASSED] 0xFD80 (PANTHERLAKE)
[12:12:28] [PASSED] 0xFD81 (PANTHERLAKE)
[12:12:28] [PASSED] 0xD740 (NOVALAKE_S)
[12:12:28] [PASSED] 0xD741 (NOVALAKE_S)
[12:12:28] [PASSED] 0xD742 (NOVALAKE_S)
[12:12:28] [PASSED] 0xD743 (NOVALAKE_S)
[12:12:28] [PASSED] 0xD745 (NOVALAKE_S)
[12:12:28] [PASSED] 0xD74A (NOVALAKE_S)
[12:12:28] [PASSED] 0xD74B (NOVALAKE_S)
[12:12:28] [PASSED] 0x674C (CRESCENTISLAND)
[12:12:28] [PASSED] 0x674D (CRESCENTISLAND)
[12:12:28] [PASSED] 0x674E (CRESCENTISLAND)
[12:12:28] [PASSED] 0x674F (CRESCENTISLAND)
[12:12:28] [PASSED] 0x6750 (CRESCENTISLAND)
[12:12:28] [PASSED] 0xD750 (NOVALAKE_P)
[12:12:28] [PASSED] 0xD751 (NOVALAKE_P)
[12:12:28] [PASSED] 0xD752 (NOVALAKE_P)
[12:12:28] [PASSED] 0xD753 (NOVALAKE_P)
[12:12:28] [PASSED] 0xD754 (NOVALAKE_P)
[12:12:28] [PASSED] 0xD755 (NOVALAKE_P)
[12:12:28] [PASSED] 0xD756 (NOVALAKE_P)
[12:12:28] [PASSED] 0xD757 (NOVALAKE_P)
[12:12:28] [PASSED] 0xD75F (NOVALAKE_P)
[12:12:28] =============== [PASSED] check_platform_desc ===============
[12:12:28] ===================== [PASSED] xe_pci ======================
[12:12:28] ============= xe_rtp_tables_test (5 subtests) ==============
[12:12:28] ================== xe_rtp_table_gt_test ===================
[12:12:28] [PASSED] gt_was/14011060649
[12:12:28] [PASSED] gt_was/14011059788
[12:12:28] [PASSED] gt_was/14015795083
[12:12:28] [PASSED] gt_was/16021867713
[12:12:28] [PASSED] gt_was/14019449301
[12:12:28] [PASSED] gt_was/16028005424
[12:12:28] [PASSED] gt_was/14026578760
[12:12:28] [PASSED] gt_was/1409420604
[12:12:28] [PASSED] gt_was/1408615072
[12:12:28] [PASSED] gt_was/22010523718
[12:12:28] [PASSED] gt_was/14011006942
[12:12:28] [PASSED] gt_was/14014830051
[12:12:28] [PASSED] gt_was/18018781329
[12:12:28] [PASSED] gt_was/1509235366
[12:12:28] [PASSED] gt_was/18018781329
[12:12:28] [PASSED] gt_was/16016694945
[12:12:28] [PASSED] gt_was/14018575942
[12:12:28] [PASSED] gt_was/22016670082
[12:12:28] [PASSED] gt_was/22016670082
[12:12:28] [PASSED] gt_was/14017421178
[12:12:28] [PASSED] gt_was/16025250150
[12:12:28] [PASSED] gt_was/14021871409
[12:12:28] [PASSED] gt_was/16021865536
[12:12:28] [PASSED] gt_was/14021486841
[12:12:28] [PASSED] gt_was/14025160223
[12:12:28] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[12:12:28] [PASSED] gt_was/14025635424
[12:12:28] [PASSED] gt_was/16028005424
[12:12:28] ============== [PASSED] xe_rtp_table_gt_test ===============
[12:12:28] ================== xe_rtp_table_gt_test ===================
[12:12:28] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[12:12:28] [PASSED] gt_tunings/Tuning: 32B Access Enable
[12:12:28] [PASSED] gt_tunings/Tuning: L3 cache
[12:12:28] [PASSED] gt_tunings/Tuning: L3 cache - media
[12:12:28] [PASSED] gt_tunings/Tuning: Compression Overfetch
[12:12:28] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[12:12:28] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[12:12:28] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[12:12:28] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[12:12:28] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[12:12:28] [PASSED] gt_tunings/Tuning: Stateless compression control
[12:12:28] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[12:12:28] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[12:12:28] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[12:12:28] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[12:12:28] ============== [PASSED] xe_rtp_table_gt_test ===============
[12:12:28] ================== xe_rtp_table_oob_test ==================
[12:12:28] [PASSED] oob_was/1607983814
[12:12:28] [PASSED] oob_was/16010904313
[12:12:28] [PASSED] oob_was/18022495364
[12:12:28] [PASSED] oob_was/22012773006
[12:12:28] [PASSED] oob_was/14014475959
[12:12:28] [PASSED] oob_was/22011391025
[12:12:28] [PASSED] oob_was/22012727170
[12:12:28] [PASSED] oob_was/22012727685
[12:12:28] [PASSED] oob_was/22016596838
[12:12:28] [PASSED] oob_was/18020744125
[12:12:28] [PASSED] oob_was/1409600907
[12:12:28] [PASSED] oob_was/22014953428
[12:12:28] [PASSED] oob_was/16017236439
[12:12:28] [PASSED] oob_was/14019821291
[12:12:28] [PASSED] oob_was/14015076503
[12:12:28] [PASSED] oob_was/14018913170
[12:12:28] [PASSED] oob_was/14018094691
[12:12:28] [PASSED] oob_was/18024947630
[12:12:28] [PASSED] oob_was/16022287689
[12:12:28] [PASSED] oob_was/13011645652
[12:12:28] [PASSED] oob_was/14022293748
[12:12:28] [PASSED] oob_was/22019794406
[12:12:28] [PASSED] oob_was/22019338487
[12:12:28] [PASSED] oob_was/16023588340
[12:12:28] [PASSED] oob_was/14019789679
[12:12:28] [PASSED] oob_was/14022866841
[12:12:28] [PASSED] oob_was/16021333562
[12:12:28] [PASSED] oob_was/14016712196
[12:12:28] [PASSED] oob_was/14015568240
[12:12:28] [PASSED] oob_was/18013179988
[12:12:28] [PASSED] oob_was/1508761755
[12:12:28] [PASSED] oob_was/16023105232
[12:12:28] [PASSED] oob_was/16026508708
[12:12:28] [PASSED] oob_was/14020001231
[12:12:28] [PASSED] oob_was/16023683509
[12:12:28] [PASSED] oob_was/14025515070
[12:12:28] [PASSED] oob_was/15015404425_disable
[12:12:28] [PASSED] oob_was/16026007364
[12:12:28] [PASSED] oob_was/14020316580
[12:12:28] [PASSED] oob_was/14025883347
[12:12:28] [PASSED] oob_was/16029380221
[12:12:28] [PASSED] oob_was/22022079272
[12:12:28] [PASSED] oob_was/16029897822
[12:12:28] [PASSED] oob_was/14027054324
[12:12:28] ============== [PASSED] xe_rtp_table_oob_test ==============
[12:12:28] ================ xe_rtp_table_dev_oob_test ================
[12:12:28] [PASSED] device_oob_was/22010954014
[12:12:28] [PASSED] device_oob_was/15015404425
[12:12:28] [PASSED] device_oob_was/22019338487_display
[12:12:28] [PASSED] device_oob_was/14022085890
[12:12:28] [PASSED] device_oob_was/14026539277
[12:12:28] [PASSED] device_oob_was/14026633728
[12:12:28] [PASSED] device_oob_was/14026746987
[12:12:28] [PASSED] device_oob_was/14026779378
[12:12:28] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[12:12:28] ========== xe_rtp_table_missing_upper_bound_test ==========
[12:12:28] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[12:12:28] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[12:12:28] [PASSED] register_whitelist/1806527549
[12:12:28] [PASSED] register_whitelist/allow_read_ctx_timestamp
[12:12:28] [PASSED] register_whitelist/allow_read_queue_timestamp
[12:12:28] [PASSED] register_whitelist/16014440446
[12:12:28] [PASSED] register_whitelist/16017236439
[12:12:28] [PASSED] register_whitelist/16020183090
[12:12:28] [PASSED] register_whitelist/14024997852
[12:12:28] [PASSED] register_whitelist/14024997852
[12:12:28] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[12:12:28] =============== [PASSED] xe_rtp_tables_test ================
[12:12:28] =================== xe_rtp (3 subtests) ====================
[12:12:28] =================== xe_rtp_rules_tests ====================
[12:12:28] [PASSED] no
[12:12:28] [PASSED] yes
[12:12:28] [PASSED] no-and-no
[12:12:28] [PASSED] no-and-yes
[12:12:28] [PASSED] yes-and-no
[12:12:28] [PASSED] yes-and-yes
[12:12:28] [PASSED] no-or-no
[12:12:28] [PASSED] no-or-yes
[12:12:28] [PASSED] yes-or-no
[12:12:28] [PASSED] yes-or-yes
[12:12:28] [PASSED] no-yes-or-yes-no
[12:12:28] [PASSED] no-yes-or-yes-yes
[12:12:28] [PASSED] yes-yes-or-no-yes
[12:12:28] [PASSED] yes-yes-or-yes-yes
[12:12:28] [PASSED] no-no-or-yes-or-no
[12:12:28] [PASSED] or
[12:12:28] [PASSED] or-yes
[12:12:28] [PASSED] or-no
[12:12:28] [PASSED] yes-or
[12:12:28] [PASSED] no-or
[12:12:28] [PASSED] no-or-or-yes
[12:12:28] [PASSED] yes-or-or-no
[12:12:28] [PASSED] no-or-or-no
[12:12:28] [PASSED] missing-context-engine-class
[12:12:28] [PASSED] missing-context-engine-class-or-yes
[12:12:28] [PASSED] missing-context-engine-class-or-or-yes
[12:12:28] =============== [PASSED] xe_rtp_rules_tests ================
[12:12:28] =============== xe_rtp_process_to_sr_tests ================
[12:12:28] [PASSED] coalesce-same-reg
[12:12:28] [PASSED] coalesce-same-reg-literal-and-func
[12:12:28] [PASSED] no-match-no-add
[12:12:28] [PASSED] two-regs-two-entries
[12:12:28] [PASSED] clr-one-set-other
[12:12:28] [PASSED] set-field
[12:12:28] [PASSED] conflict-duplicate
[12:12:28] [PASSED] conflict-not-disjoint
[12:12:28] [PASSED] conflict-not-disjoint-literal-and-func
[12:12:28] [PASSED] conflict-reg-type
[12:12:28] [PASSED] bad-mcr-reg-forced-to-regular
[12:12:28] [PASSED] bad-regular-reg-forced-to-mcr
[12:12:28] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[12:12:28] ================== xe_rtp_process_tests ===================
[12:12:28] [PASSED] active1
[12:12:28] [PASSED] active2
[12:12:28] [PASSED] active-inactive
[12:12:28] [PASSED] inactive-active
[12:12:28] [PASSED] inactive-active-inactive
[12:12:28] [PASSED] inactive-inactive-inactive
[12:12:28] ============== [PASSED] xe_rtp_process_tests ===============
[12:12:28] ===================== [PASSED] xe_rtp ======================
[12:12:28] ==================== xe_wa (1 subtest) =====================
[12:12:28] ======================== xe_wa_gt =========================
[12:12:28] [PASSED] TIGERLAKE B0
[12:12:28] [PASSED] DG1 A0
[12:12:28] [PASSED] DG1 B0
[12:12:28] [PASSED] ALDERLAKE_S A0
[12:12:28] [PASSED] ALDERLAKE_S B0
[12:12:28] [PASSED] ALDERLAKE_S C0
[12:12:28] [PASSED] ALDERLAKE_S D0
[12:12:28] [PASSED] ALDERLAKE_P A0
[12:12:28] [PASSED] ALDERLAKE_P B0
[12:12:28] [PASSED] ALDERLAKE_P C0
[12:12:28] [PASSED] ALDERLAKE_S RPLS D0
[12:12:28] [PASSED] ALDERLAKE_P RPLU E0
[12:12:28] [PASSED] DG2 G10 C0
[12:12:28] [PASSED] DG2 G11 B1
[12:12:28] [PASSED] DG2 G12 A1
[12:12:28] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:12:28] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:12:28] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[12:12:28] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[12:12:28] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[12:12:28] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[12:12:28] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[12:12:28] ==================== [PASSED] xe_wa_gt =====================
[12:12:28] ====================== [PASSED] xe_wa ======================
[12:12:28] ============================================================
[12:12:28] Testing complete. Ran 793 tests: passed: 765, skipped: 28
[12:12:28] Elapsed time: 36.210s total, 1.821s configuring, 33.673s building, 0.688s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[12:12:28] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:12:30] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:12:55] Starting KUnit Kernel (1/1)...
[12:12:55] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:12:55] ============= refcount_interrupt (4 subtests) ==============
[12:12:55] [PASSED] test_single_irq_change
[12:12:55] [PASSED] test_nested_irq_change
[12:12:55] [PASSED] test_multiple_irq_change
[12:12:55] [PASSED] test_irq_save
[12:12:55] =============== [PASSED] refcount_interrupt ================
[12:12:55] ============ drm_test_pick_cmdline (2 subtests) ============
[12:12:55] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[12:12:55] =============== drm_test_pick_cmdline_named ===============
[12:12:55] [PASSED] NTSC
[12:12:55] [PASSED] NTSC-J
[12:12:55] [PASSED] PAL
[12:12:55] [PASSED] PAL-M
[12:12:55] =========== [PASSED] drm_test_pick_cmdline_named ===========
[12:12:55] ============== [PASSED] drm_test_pick_cmdline ==============
[12:12:55] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[12:12:55] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[12:12:55] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[12:12:55] =========== drm_validate_clone_mode (2 subtests) ===========
[12:12:55] ============== drm_test_check_in_clone_mode ===============
[12:12:55] [PASSED] in_clone_mode
[12:12:55] [PASSED] not_in_clone_mode
[12:12:55] ========== [PASSED] drm_test_check_in_clone_mode ===========
[12:12:55] =============== drm_test_check_valid_clones ===============
[12:12:55] [PASSED] not_in_clone_mode
[12:12:55] [PASSED] valid_clone
[12:12:55] [PASSED] invalid_clone
[12:12:55] =========== [PASSED] drm_test_check_valid_clones ===========
[12:12:55] ============= [PASSED] drm_validate_clone_mode =============
[12:12:55] ============= drm_validate_modeset (1 subtest) =============
[12:12:55] [PASSED] drm_test_check_connector_changed_modeset
[12:12:55] ============== [PASSED] drm_validate_modeset ===============
[12:12:55] ====== drm_test_bridge_get_current_state (1 subtest) =======
[12:12:55] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[12:12:55] ======== [PASSED] drm_test_bridge_get_current_state ========
[12:12:55] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[12:12:55] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[12:12:55] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[12:12:55] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[12:12:55] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[12:12:55] ============== drm_bridge_alloc (2 subtests) ===============
[12:12:55] [PASSED] drm_test_drm_bridge_alloc_basic
[12:12:55] [PASSED] drm_test_drm_bridge_alloc_get_put
[12:12:55] ================ [PASSED] drm_bridge_alloc =================
[12:12:55] ============= drm_bridge_bus_fmt (5 subtests) ==============
[12:12:55] [PASSED] drm_test_bridge_rgb_yuv_rgb
[12:12:55] [PASSED] drm_test_bridge_must_convert_to_yuv444
[12:12:55] [PASSED] drm_test_bridge_hdmi_auto_rgb
[12:12:55] [PASSED] drm_test_bridge_auto_first
[12:12:55] [PASSED] drm_test_bridge_rgb_yuv_no_path
[12:12:55] =============== [PASSED] drm_bridge_bus_fmt ================
[12:12:55] ============= drm_cmdline_parser (40 subtests) =============
[12:12:55] [PASSED] drm_test_cmdline_force_d_only
[12:12:55] [PASSED] drm_test_cmdline_force_D_only_dvi
[12:12:55] [PASSED] drm_test_cmdline_force_D_only_hdmi
[12:12:55] [PASSED] drm_test_cmdline_force_D_only_not_digital
[12:12:55] [PASSED] drm_test_cmdline_force_e_only
[12:12:55] [PASSED] drm_test_cmdline_res
[12:12:55] [PASSED] drm_test_cmdline_res_vesa
[12:12:55] [PASSED] drm_test_cmdline_res_vesa_rblank
[12:12:55] [PASSED] drm_test_cmdline_res_rblank
[12:12:55] [PASSED] drm_test_cmdline_res_bpp
[12:12:55] [PASSED] drm_test_cmdline_res_refresh
[12:12:55] [PASSED] drm_test_cmdline_res_bpp_refresh
[12:12:55] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[12:12:55] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[12:12:55] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[12:12:55] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[12:12:55] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[12:12:55] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[12:12:55] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[12:12:55] [PASSED] drm_test_cmdline_res_margins_force_on
[12:12:55] [PASSED] drm_test_cmdline_res_vesa_margins
[12:12:55] [PASSED] drm_test_cmdline_name
[12:12:55] [PASSED] drm_test_cmdline_name_bpp
[12:12:55] [PASSED] drm_test_cmdline_name_option
[12:12:55] [PASSED] drm_test_cmdline_name_bpp_option
[12:12:55] [PASSED] drm_test_cmdline_rotate_0
[12:12:55] [PASSED] drm_test_cmdline_rotate_90
[12:12:55] [PASSED] drm_test_cmdline_rotate_180
[12:12:55] [PASSED] drm_test_cmdline_rotate_270
[12:12:55] [PASSED] drm_test_cmdline_hmirror
[12:12:55] [PASSED] drm_test_cmdline_vmirror
[12:12:55] [PASSED] drm_test_cmdline_margin_options
[12:12:55] [PASSED] drm_test_cmdline_multiple_options
[12:12:55] [PASSED] drm_test_cmdline_bpp_extra_and_option
[12:12:55] [PASSED] drm_test_cmdline_extra_and_option
[12:12:55] [PASSED] drm_test_cmdline_freestanding_options
[12:12:55] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[12:12:55] [PASSED] drm_test_cmdline_panel_orientation
[12:12:55] ================ drm_test_cmdline_invalid =================
[12:12:55] [PASSED] margin_only
[12:12:55] [PASSED] interlace_only
[12:12:55] [PASSED] res_missing_x
[12:12:55] [PASSED] res_missing_y
[12:12:55] [PASSED] res_bad_y
[12:12:55] [PASSED] res_missing_y_bpp
[12:12:55] [PASSED] res_bad_bpp
[12:12:55] [PASSED] res_bad_refresh
[12:12:55] [PASSED] res_bpp_refresh_force_on_off
[12:12:55] [PASSED] res_invalid_mode
[12:12:55] [PASSED] res_bpp_wrong_place_mode
[12:12:55] [PASSED] name_bpp_refresh
[12:12:55] [PASSED] name_refresh
[12:12:55] [PASSED] name_refresh_wrong_mode
[12:12:55] [PASSED] name_refresh_invalid_mode
[12:12:55] [PASSED] rotate_multiple
[12:12:55] [PASSED] rotate_invalid_val
[12:12:55] [PASSED] rotate_truncated
[12:12:55] [PASSED] invalid_option
[12:12:55] [PASSED] invalid_tv_option
[12:12:55] [PASSED] truncated_tv_option
[12:12:55] ============ [PASSED] drm_test_cmdline_invalid =============
[12:12:55] =============== drm_test_cmdline_tv_options ===============
[12:12:55] [PASSED] NTSC
[12:12:55] [PASSED] NTSC_443
[12:12:55] [PASSED] NTSC_J
[12:12:55] [PASSED] PAL
[12:12:55] [PASSED] PAL_M
[12:12:55] [PASSED] PAL_N
[12:12:55] [PASSED] SECAM
[12:12:55] [PASSED] MONO_525
[12:12:55] [PASSED] MONO_625
[12:12:55] =========== [PASSED] drm_test_cmdline_tv_options ===========
[12:12:55] =============== [PASSED] drm_cmdline_parser ================
[12:12:55] ========== drmm_connector_hdmi_init (20 subtests) ==========
[12:12:55] [PASSED] drm_test_connector_hdmi_init_valid
[12:12:55] [PASSED] drm_test_connector_hdmi_init_bpc_8
[12:12:55] [PASSED] drm_test_connector_hdmi_init_bpc_10
[12:12:55] [PASSED] drm_test_connector_hdmi_init_bpc_12
[12:12:55] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[12:12:55] [PASSED] drm_test_connector_hdmi_init_bpc_null
[12:12:55] [PASSED] drm_test_connector_hdmi_init_formats_empty
[12:12:55] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[12:12:55] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:12:55] [PASSED] supported_formats=0x9 yuv420_allowed=1
[12:12:55] [PASSED] supported_formats=0x9 yuv420_allowed=0
[12:12:55] [PASSED] supported_formats=0x5 yuv420_allowed=1
[12:12:55] [PASSED] supported_formats=0x5 yuv420_allowed=0
[12:12:55] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:12:55] [PASSED] drm_test_connector_hdmi_init_null_ddc
[12:12:55] [PASSED] drm_test_connector_hdmi_init_null_product
[12:12:55] [PASSED] drm_test_connector_hdmi_init_null_vendor
[12:12:55] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[12:12:55] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[12:12:55] [PASSED] drm_test_connector_hdmi_init_product_valid
[12:12:55] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[12:12:55] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[12:12:55] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[12:12:55] ========= drm_test_connector_hdmi_init_type_valid =========
[12:12:55] [PASSED] HDMI-A
[12:12:55] [PASSED] HDMI-B
[12:12:55] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[12:12:55] ======== drm_test_connector_hdmi_init_type_invalid ========
[12:12:55] [PASSED] Unknown
[12:12:55] [PASSED] VGA
[12:12:55] [PASSED] DVI-I
[12:12:55] [PASSED] DVI-D
[12:12:55] [PASSED] DVI-A
[12:12:55] [PASSED] Composite
[12:12:55] [PASSED] SVIDEO
[12:12:55] [PASSED] LVDS
[12:12:55] [PASSED] Component
[12:12:55] [PASSED] DIN
[12:12:55] [PASSED] DP
[12:12:55] [PASSED] TV
[12:12:55] [PASSED] eDP
[12:12:55] [PASSED] Virtual
[12:12:55] [PASSED] DSI
[12:12:55] [PASSED] DPI
[12:12:55] [PASSED] Writeback
[12:12:55] [PASSED] SPI
[12:12:55] [PASSED] USB
[12:12:55] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[12:12:55] ============ [PASSED] drmm_connector_hdmi_init =============
[12:12:55] ============= drmm_connector_init (3 subtests) =============
[12:12:55] [PASSED] drm_test_drmm_connector_init
[12:12:55] [PASSED] drm_test_drmm_connector_init_null_ddc
[12:12:55] ========= drm_test_drmm_connector_init_type_valid =========
[12:12:55] [PASSED] Unknown
[12:12:55] [PASSED] VGA
[12:12:55] [PASSED] DVI-I
[12:12:55] [PASSED] DVI-D
[12:12:55] [PASSED] DVI-A
[12:12:55] [PASSED] Composite
[12:12:55] [PASSED] SVIDEO
[12:12:55] [PASSED] LVDS
[12:12:55] [PASSED] Component
[12:12:55] [PASSED] DIN
[12:12:55] [PASSED] DP
[12:12:55] [PASSED] HDMI-A
[12:12:55] [PASSED] HDMI-B
[12:12:55] [PASSED] TV
[12:12:55] [PASSED] eDP
[12:12:55] [PASSED] Virtual
[12:12:55] [PASSED] DSI
[12:12:55] [PASSED] DPI
[12:12:55] [PASSED] Writeback
[12:12:55] [PASSED] SPI
[12:12:55] [PASSED] USB
[12:12:55] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[12:12:55] =============== [PASSED] drmm_connector_init ===============
[12:12:55] ========= drm_connector_dynamic_init (6 subtests) ==========
[12:12:55] [PASSED] drm_test_drm_connector_dynamic_init
[12:12:55] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[12:12:55] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[12:12:55] [PASSED] drm_test_drm_connector_dynamic_init_properties
[12:12:55] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[12:12:55] [PASSED] Unknown
[12:12:55] [PASSED] VGA
[12:12:55] [PASSED] DVI-I
[12:12:55] [PASSED] DVI-D
[12:12:55] [PASSED] DVI-A
[12:12:55] [PASSED] Composite
[12:12:55] [PASSED] SVIDEO
[12:12:55] [PASSED] LVDS
[12:12:55] [PASSED] Component
[12:12:55] [PASSED] DIN
[12:12:55] [PASSED] DP
[12:12:55] [PASSED] HDMI-A
[12:12:55] [PASSED] HDMI-B
[12:12:55] [PASSED] TV
[12:12:55] [PASSED] eDP
[12:12:55] [PASSED] Virtual
[12:12:55] [PASSED] DSI
[12:12:55] [PASSED] DPI
[12:12:55] [PASSED] Writeback
[12:12:55] [PASSED] SPI
[12:12:55] [PASSED] USB
[12:12:55] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[12:12:55] ======== drm_test_drm_connector_dynamic_init_name =========
[12:12:55] [PASSED] Unknown
[12:12:55] [PASSED] VGA
[12:12:55] [PASSED] DVI-I
[12:12:55] [PASSED] DVI-D
[12:12:55] [PASSED] DVI-A
[12:12:55] [PASSED] Composite
[12:12:55] [PASSED] SVIDEO
[12:12:55] [PASSED] LVDS
[12:12:55] [PASSED] Component
[12:12:55] [PASSED] DIN
[12:12:55] [PASSED] DP
[12:12:55] [PASSED] HDMI-A
[12:12:55] [PASSED] HDMI-B
[12:12:55] [PASSED] TV
[12:12:55] [PASSED] eDP
[12:12:55] [PASSED] Virtual
[12:12:55] [PASSED] DSI
[12:12:55] [PASSED] DPI
[12:12:55] [PASSED] Writeback
[12:12:55] [PASSED] SPI
[12:12:55] [PASSED] USB
[12:12:55] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[12:12:55] =========== [PASSED] drm_connector_dynamic_init ============
[12:12:55] ==== drm_connector_dynamic_register_early (4 subtests) =====
[12:12:55] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[12:12:55] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[12:12:55] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[12:12:55] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[12:12:55] ====== [PASSED] drm_connector_dynamic_register_early =======
[12:12:55] ======= drm_connector_dynamic_register (7 subtests) ========
[12:12:55] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[12:12:55] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[12:12:55] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[12:12:55] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[12:12:55] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[12:12:55] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[12:12:55] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[12:12:55] ========= [PASSED] drm_connector_dynamic_register ==========
[12:12:55] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[12:12:55] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[12:12:55] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[12:12:55] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[12:12:55] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[12:12:55] ========== drm_test_get_tv_mode_from_name_valid ===========
[12:12:55] [PASSED] NTSC
[12:12:55] [PASSED] NTSC-443
[12:12:55] [PASSED] NTSC-J
[12:12:55] [PASSED] PAL
[12:12:55] [PASSED] PAL-M
[12:12:55] [PASSED] PAL-N
[12:12:55] [PASSED] SECAM
[12:12:55] [PASSED] Mono
[12:12:55] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[12:12:55] [PASSED] drm_test_get_tv_mode_from_name_truncated
[12:12:55] ============ [PASSED] drm_get_tv_mode_from_name ============
[12:12:55] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[12:12:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[12:12:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[12:12:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[12:12:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[12:12:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[12:12:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[12:12:55] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[12:12:55] [PASSED] VIC 96
[12:12:55] [PASSED] VIC 97
[12:12:55] [PASSED] VIC 101
[12:12:55] [PASSED] VIC 102
[12:12:55] [PASSED] VIC 106
[12:12:55] [PASSED] VIC 107
[12:12:55] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[12:12:55] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[12:12:55] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[12:12:55] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[12:12:55] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[12:12:55] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[12:12:55] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[12:12:55] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[12:12:55] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[12:12:55] [PASSED] Automatic
[12:12:55] [PASSED] Full
[12:12:55] [PASSED] Limited 16:235
[12:12:55] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[12:12:55] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[12:12:55] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[12:12:55] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[12:12:55] === drm_test_drm_hdmi_connector_get_output_format_name ====
[12:12:55] [PASSED] RGB
[12:12:55] [PASSED] YUV 4:2:0
[12:12:55] [PASSED] YUV 4:2:2
[12:12:55] [PASSED] YUV 4:4:4
[12:12:55] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[12:12:55] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[12:12:55] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[12:12:55] ============= drm_damage_helper (21 subtests) ==============
[12:12:55] [PASSED] drm_test_damage_iter_no_damage
[12:12:55] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[12:12:55] [PASSED] drm_test_damage_iter_no_damage_src_moved
[12:12:55] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[12:12:55] [PASSED] drm_test_damage_iter_no_damage_not_visible
[12:12:55] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[12:12:55] [PASSED] drm_test_damage_iter_no_damage_no_fb
[12:12:55] [PASSED] drm_test_damage_iter_simple_damage
[12:12:55] [PASSED] drm_test_damage_iter_single_damage
[12:12:55] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[12:12:55] [PASSED] drm_test_damage_iter_single_damage_outside_src
[12:12:55] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[12:12:55] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[12:12:55] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[12:12:55] [PASSED] drm_test_damage_iter_single_damage_src_moved
[12:12:55] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[12:12:55] [PASSED] drm_test_damage_iter_damage
[12:12:55] [PASSED] drm_test_damage_iter_damage_one_intersect
[12:12:55] [PASSED] drm_test_damage_iter_damage_one_outside
[12:12:55] [PASSED] drm_test_damage_iter_damage_src_moved
[12:12:55] [PASSED] drm_test_damage_iter_damage_not_visible
[12:12:55] ================ [PASSED] drm_damage_helper ================
[12:12:55] ============== drm_dp_mst_helper (3 subtests) ==============
[12:12:55] ============== drm_test_dp_mst_calc_pbn_mode ==============
[12:12:55] [PASSED] Clock 154000 BPP 30 DSC disabled
[12:12:55] [PASSED] Clock 234000 BPP 30 DSC disabled
[12:12:55] [PASSED] Clock 297000 BPP 24 DSC disabled
[12:12:55] [PASSED] Clock 332880 BPP 24 DSC enabled
[12:12:55] [PASSED] Clock 324540 BPP 24 DSC enabled
[12:12:55] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[12:12:55] ============== drm_test_dp_mst_calc_pbn_div ===============
[12:12:55] [PASSED] Link rate 2000000 lane count 4
[12:12:55] [PASSED] Link rate 2000000 lane count 2
[12:12:55] [PASSED] Link rate 2000000 lane count 1
[12:12:55] [PASSED] Link rate 1350000 lane count 4
[12:12:55] [PASSED] Link rate 1350000 lane count 2
[12:12:55] [PASSED] Link rate 1350000 lane count 1
[12:12:55] [PASSED] Link rate 1000000 lane count 4
[12:12:55] [PASSED] Link rate 1000000 lane count 2
[12:12:55] [PASSED] Link rate 1000000 lane count 1
[12:12:55] [PASSED] Link rate 810000 lane count 4
[12:12:55] [PASSED] Link rate 810000 lane count 2
[12:12:55] [PASSED] Link rate 810000 lane count 1
[12:12:55] [PASSED] Link rate 540000 lane count 4
[12:12:55] [PASSED] Link rate 540000 lane count 2
[12:12:55] [PASSED] Link rate 540000 lane count 1
[12:12:55] [PASSED] Link rate 270000 lane count 4
[12:12:55] [PASSED] Link rate 270000 lane count 2
[12:12:55] [PASSED] Link rate 270000 lane count 1
[12:12:55] [PASSED] Link rate 162000 lane count 4
[12:12:55] [PASSED] Link rate 162000 lane count 2
[12:12:55] [PASSED] Link rate 162000 lane count 1
[12:12:55] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[12:12:55] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[12:12:55] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[12:12:55] [PASSED] DP_POWER_UP_PHY with port number
[12:12:55] [PASSED] DP_POWER_DOWN_PHY with port number
[12:12:55] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[12:12:55] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[12:12:55] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[12:12:55] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[12:12:55] [PASSED] DP_QUERY_PAYLOAD with port number
[12:12:55] [PASSED] DP_QUERY_PAYLOAD with VCPI
[12:12:55] [PASSED] DP_REMOTE_DPCD_READ with port number
[12:12:55] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[12:12:55] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[12:12:55] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[12:12:55] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[12:12:55] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[12:12:55] [PASSED] DP_REMOTE_I2C_READ with port number
[12:12:55] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[12:12:55] [PASSED] DP_REMOTE_I2C_READ with transactions array
[12:12:55] [PASSED] DP_REMOTE_I2C_WRITE with port number
[12:12:55] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[12:12:55] [PASSED] DP_REMOTE_I2C_WRITE with data array
[12:12:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[12:12:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[12:12:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[12:12:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[12:12:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[12:12:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[12:12:55] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[12:12:55] ================ [PASSED] drm_dp_mst_helper ================
[12:12:55] ================== drm_exec (7 subtests) ===================
[12:12:55] [PASSED] sanitycheck
[12:12:55] [PASSED] test_lock
[12:12:55] [PASSED] test_lock_unlock
[12:12:55] [PASSED] test_duplicates
[12:12:55] [PASSED] test_prepare
[12:12:55] [PASSED] test_prepare_array
[12:12:55] [PASSED] test_multiple_loops
[12:12:55] ==================== [PASSED] drm_exec =====================
[12:12:55] =========== drm_format_helper_test (17 subtests) ===========
[12:12:55] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[12:12:55] [PASSED] single_pixel_source_buffer
[12:12:55] [PASSED] single_pixel_clip_rectangle
[12:12:55] [PASSED] well_known_colors
[12:12:55] [PASSED] destination_pitch
[12:12:55] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[12:12:55] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[12:12:55] [PASSED] single_pixel_source_buffer
[12:12:55] [PASSED] single_pixel_clip_rectangle
[12:12:55] [PASSED] well_known_colors
[12:12:55] [PASSED] destination_pitch
[12:12:55] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[12:12:55] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[12:12:55] [PASSED] single_pixel_source_buffer
[12:12:55] [PASSED] single_pixel_clip_rectangle
[12:12:55] [PASSED] well_known_colors
[12:12:55] [PASSED] destination_pitch
[12:12:55] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[12:12:55] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[12:12:55] [PASSED] single_pixel_source_buffer
[12:12:55] [PASSED] single_pixel_clip_rectangle
[12:12:55] [PASSED] well_known_colors
[12:12:55] [PASSED] destination_pitch
[12:12:55] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[12:12:55] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[12:12:55] [PASSED] single_pixel_source_buffer
[12:12:55] [PASSED] single_pixel_clip_rectangle
[12:12:55] [PASSED] well_known_colors
[12:12:55] [PASSED] destination_pitch
[12:12:55] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[12:12:55] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[12:12:55] [PASSED] single_pixel_source_buffer
[12:12:55] [PASSED] single_pixel_clip_rectangle
[12:12:55] [PASSED] well_known_colors
[12:12:55] [PASSED] destination_pitch
[12:12:55] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[12:12:55] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[12:12:55] [PASSED] single_pixel_source_buffer
[12:12:55] [PASSED] single_pixel_clip_rectangle
[12:12:55] [PASSED] well_known_colors
[12:12:55] [PASSED] destination_pitch
[12:12:55] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[12:12:55] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[12:12:55] [PASSED] single_pixel_source_buffer
[12:12:55] [PASSED] single_pixel_clip_rectangle
[12:12:55] [PASSED] well_known_colors
[12:12:55] [PASSED] destination_pitch
[12:12:55] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[12:12:55] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[12:12:55] [PASSED] single_pixel_source_buffer
[12:12:55] [PASSED] single_pixel_clip_rectangle
[12:12:55] [PASSED] well_known_colors
[12:12:55] [PASSED] destination_pitch
[12:12:55] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[12:12:55] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[12:12:55] [PASSED] single_pixel_source_buffer
[12:12:55] [PASSED] single_pixel_clip_rectangle
[12:12:55] [PASSED] well_known_colors
[12:12:55] [PASSED] destination_pitch
[12:12:55] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[12:12:55] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[12:12:55] [PASSED] single_pixel_source_buffer
[12:12:55] [PASSED] single_pixel_clip_rectangle
[12:12:55] [PASSED] well_known_colors
[12:12:55] [PASSED] destination_pitch
[12:12:55] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[12:12:55] ============== drm_test_fb_xrgb8888_to_mono ===============
[12:12:55] [PASSED] single_pixel_source_buffer
[12:12:55] [PASSED] single_pixel_clip_rectangle
[12:12:55] [PASSED] well_known_colors
[12:12:55] [PASSED] destination_pitch
[12:12:55] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[12:12:55] ==================== drm_test_fb_swab =====================
[12:12:55] [PASSED] single_pixel_source_buffer
[12:12:55] [PASSED] single_pixel_clip_rectangle
[12:12:55] [PASSED] well_known_colors
[12:12:55] [PASSED] destination_pitch
[12:12:55] ================ [PASSED] drm_test_fb_swab =================
[12:12:55] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[12:12:55] [PASSED] single_pixel_source_buffer
[12:12:55] [PASSED] single_pixel_clip_rectangle
[12:12:55] [PASSED] well_known_colors
[12:12:55] [PASSED] destination_pitch
[12:12:55] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[12:12:55] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[12:12:55] [PASSED] single_pixel_source_buffer
[12:12:55] [PASSED] single_pixel_clip_rectangle
[12:12:55] [PASSED] well_known_colors
[12:12:55] [PASSED] destination_pitch
[12:12:55] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[12:12:55] ================= drm_test_fb_clip_offset =================
[12:12:55] [PASSED] pass through
[12:12:55] [PASSED] horizontal offset
[12:12:55] [PASSED] vertical offset
[12:12:55] [PASSED] horizontal and vertical offset
[12:12:55] [PASSED] horizontal offset (custom pitch)
[12:12:55] [PASSED] vertical offset (custom pitch)
[12:12:55] [PASSED] horizontal and vertical offset (custom pitch)
[12:12:55] ============= [PASSED] drm_test_fb_clip_offset =============
[12:12:55] =================== drm_test_fb_memcpy ====================
[12:12:55] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[12:12:55] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[12:12:55] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[12:12:55] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[12:12:55] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[12:12:55] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[12:12:55] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[12:12:55] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[12:12:55] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[12:12:55] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[12:12:55] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[12:12:55] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[12:12:55] =============== [PASSED] drm_test_fb_memcpy ================
[12:12:55] ============= [PASSED] drm_format_helper_test ==============
[12:12:55] ================= drm_format (18 subtests) =================
[12:12:55] [PASSED] drm_test_format_block_width_invalid
[12:12:55] [PASSED] drm_test_format_block_width_one_plane
[12:12:55] [PASSED] drm_test_format_block_width_two_plane
[12:12:55] [PASSED] drm_test_format_block_width_three_plane
[12:12:55] [PASSED] drm_test_format_block_width_tiled
[12:12:55] [PASSED] drm_test_format_block_height_invalid
[12:12:55] [PASSED] drm_test_format_block_height_one_plane
[12:12:55] [PASSED] drm_test_format_block_height_two_plane
[12:12:55] [PASSED] drm_test_format_block_height_three_plane
[12:12:55] [PASSED] drm_test_format_block_height_tiled
[12:12:55] [PASSED] drm_test_format_min_pitch_invalid
[12:12:55] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[12:12:55] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[12:12:55] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[12:12:55] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[12:12:55] [PASSED] drm_test_format_min_pitch_two_plane
[12:12:55] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[12:12:55] [PASSED] drm_test_format_min_pitch_tiled
[12:12:55] =================== [PASSED] drm_format ====================
[12:12:55] ============== drm_framebuffer (10 subtests) ===============
[12:12:55] ========== drm_test_framebuffer_check_src_coords ==========
[12:12:55] [PASSED] Success: source fits into fb
[12:12:55] [PASSED] Fail: overflowing fb with x-axis coordinate
[12:12:55] [PASSED] Fail: overflowing fb with y-axis coordinate
[12:12:55] [PASSED] Fail: overflowing fb with source width
[12:12:55] [PASSED] Fail: overflowing fb with source height
[12:12:55] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[12:12:55] [PASSED] drm_test_framebuffer_cleanup
[12:12:55] =============== drm_test_framebuffer_create ===============
[12:12:55] [PASSED] ABGR8888 normal sizes
[12:12:55] [PASSED] ABGR8888 max sizes
[12:12:55] [PASSED] ABGR8888 pitch greater than min required
[12:12:55] [PASSED] ABGR8888 pitch less than min required
[12:12:55] [PASSED] ABGR8888 Invalid width
[12:12:55] [PASSED] ABGR8888 Invalid buffer handle
[12:12:55] [PASSED] No pixel format
[12:12:55] [PASSED] ABGR8888 Width 0
[12:12:55] [PASSED] ABGR8888 Height 0
[12:12:55] [PASSED] ABGR8888 Out of bound height * pitch combination
[12:12:55] [PASSED] ABGR8888 Large buffer offset
[12:12:55] [PASSED] ABGR8888 Buffer offset for inexistent plane
[12:12:55] [PASSED] ABGR8888 Invalid flag
[12:12:55] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[12:12:55] [PASSED] ABGR8888 Valid buffer modifier
[12:12:55] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[12:12:55] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[12:12:55] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[12:12:55] [PASSED] NV12 Normal sizes
[12:12:55] [PASSED] NV12 Max sizes
[12:12:55] [PASSED] NV12 Invalid pitch
[12:12:55] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[12:12:55] [PASSED] NV12 different modifier per-plane
[12:12:55] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[12:12:55] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[12:12:55] [PASSED] NV12 Modifier for inexistent plane
[12:12:55] [PASSED] NV12 Handle for inexistent plane
[12:12:55] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[12:12:55] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[12:12:55] [PASSED] YVU420 Normal sizes
[12:12:55] [PASSED] YVU420 Max sizes
[12:12:55] [PASSED] YVU420 Invalid pitch
[12:12:55] [PASSED] YVU420 Different pitches
[12:12:55] [PASSED] YVU420 Different buffer offsets/pitches
[12:12:55] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[12:12:55] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[12:12:55] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[12:12:55] [PASSED] YVU420 Valid modifier
[12:12:55] [PASSED] YVU420 Different modifiers per plane
[12:12:55] [PASSED] YVU420 Modifier for inexistent plane
[12:12:55] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[12:12:55] [PASSED] X0L2 Normal sizes
[12:12:55] [PASSED] X0L2 Max sizes
[12:12:55] [PASSED] X0L2 Invalid pitch
[12:12:55] [PASSED] X0L2 Pitch greater than minimum required
[12:12:55] [PASSED] X0L2 Handle for inexistent plane
[12:12:55] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[12:12:55] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[12:12:55] [PASSED] X0L2 Valid modifier
[12:12:55] [PASSED] X0L2 Modifier for inexistent plane
[12:12:55] =========== [PASSED] drm_test_framebuffer_create ===========
[12:12:55] [PASSED] drm_test_framebuffer_free
[12:12:55] [PASSED] drm_test_framebuffer_init
[12:12:55] [PASSED] drm_test_framebuffer_init_bad_format
[12:12:55] [PASSED] drm_test_framebuffer_init_dev_mismatch
[12:12:55] [PASSED] drm_test_framebuffer_lookup
[12:12:55] [PASSED] drm_test_framebuffer_lookup_inexistent
[12:12:55] [PASSED] drm_test_framebuffer_modifiers_not_supported
[12:12:55] ================= [PASSED] drm_framebuffer =================
[12:12:55] ================ drm_gem_shmem (8 subtests) ================
[12:12:55] [PASSED] drm_gem_shmem_test_obj_create
[12:12:55] [PASSED] drm_gem_shmem_test_obj_create_private
[12:12:55] [PASSED] drm_gem_shmem_test_pin_pages
[12:12:55] [PASSED] drm_gem_shmem_test_vmap
[12:12:55] [PASSED] drm_gem_shmem_test_get_sg_table
[12:12:55] [PASSED] drm_gem_shmem_test_get_pages_sgt
[12:12:55] [PASSED] drm_gem_shmem_test_madvise
[12:12:55] [PASSED] drm_gem_shmem_test_purge
[12:12:55] ================== [PASSED] drm_gem_shmem ==================
[12:12:55] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[12:12:55] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[12:12:55] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[12:12:55] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[12:12:55] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[12:12:55] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[12:12:55] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[12:12:55] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[12:12:55] [PASSED] Automatic
[12:12:55] [PASSED] Full
[12:12:55] [PASSED] Limited 16:235
[12:12:55] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[12:12:55] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[12:12:55] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[12:12:55] [PASSED] drm_test_check_disable_connector
[12:12:55] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[12:12:55] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[12:12:55] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[12:12:55] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[12:12:55] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[12:12:55] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[12:12:55] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[12:12:55] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[12:12:55] [PASSED] drm_test_check_output_bpc_dvi
[12:12:55] [PASSED] drm_test_check_output_bpc_format_vic_1
[12:12:55] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[12:12:55] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[12:12:55] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[12:12:55] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[12:12:55] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[12:12:55] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[12:12:55] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[12:12:55] ============ drm_test_check_hdmi_color_format =============
[12:12:55] [PASSED] AUTO -> RGB
[12:12:55] [PASSED] YCBCR422 -> YUV422
[12:12:55] [PASSED] YCBCR420 -> YUV420
[12:12:55] [PASSED] YCBCR444 -> YUV444
[12:12:55] [PASSED] RGB -> RGB
[12:12:55] ======== [PASSED] drm_test_check_hdmi_color_format =========
[12:12:55] ======== drm_test_check_hdmi_color_format_420_only ========
[12:12:55] [PASSED] RGB should fail
[12:12:55] [PASSED] YUV444 should fail
[12:12:55] [PASSED] YUV422 should fail
[12:12:55] [PASSED] YUV420 should work
[12:12:55] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[12:12:55] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[12:12:55] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[12:12:55] [PASSED] drm_test_check_broadcast_rgb_value
[12:12:55] [PASSED] drm_test_check_bpc_8_value
[12:12:55] [PASSED] drm_test_check_bpc_10_value
[12:12:55] [PASSED] drm_test_check_bpc_12_value
[12:12:55] [PASSED] drm_test_check_format_value
[12:12:55] [PASSED] drm_test_check_tmds_char_value
[12:12:55] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[12:12:55] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[12:12:55] [PASSED] drm_test_check_mode_valid
[12:12:55] [PASSED] drm_test_check_mode_valid_reject
[12:12:55] [PASSED] drm_test_check_mode_valid_reject_rate
[12:12:55] [PASSED] drm_test_check_mode_valid_reject_max_clock
[12:12:55] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[12:12:55] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[12:12:55] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[12:12:55] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[12:12:55] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[12:12:55] [PASSED] drm_test_check_infoframes
[12:12:55] [PASSED] drm_test_check_reject_avi_infoframe
[12:12:55] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[12:12:55] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[12:12:55] [PASSED] drm_test_check_reject_audio_infoframe
[12:12:55] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[12:12:55] ================= drm_managed (2 subtests) =================
[12:12:55] [PASSED] drm_test_managed_release_action
[12:12:55] [PASSED] drm_test_managed_run_action
[12:12:55] =================== [PASSED] drm_managed ===================
[12:12:55] =================== drm_mm (6 subtests) ====================
[12:12:55] [PASSED] drm_test_mm_init
[12:12:55] [PASSED] drm_test_mm_debug
[12:12:55] [PASSED] drm_test_mm_align32
[12:12:55] [PASSED] drm_test_mm_align64
[12:12:55] [PASSED] drm_test_mm_lowest
[12:12:55] [PASSED] drm_test_mm_highest
[12:12:55] ===================== [PASSED] drm_mm ======================
[12:12:55] ============= drm_modes_analog_tv (5 subtests) =============
[12:12:55] [PASSED] drm_test_modes_analog_tv_mono_576i
[12:12:55] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[12:12:55] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[12:12:55] [PASSED] drm_test_modes_analog_tv_pal_576i
[12:12:55] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[12:12:55] =============== [PASSED] drm_modes_analog_tv ===============
[12:12:55] ============== drm_plane_helper (2 subtests) ===============
[12:12:55] =============== drm_test_check_plane_state ================
[12:12:55] [PASSED] clipping_simple
[12:12:55] [PASSED] clipping_rotate_reflect
[12:12:55] [PASSED] positioning_simple
[12:12:55] [PASSED] upscaling
[12:12:55] [PASSED] downscaling
[12:12:55] [PASSED] rounding1
[12:12:55] [PASSED] rounding2
[12:12:55] [PASSED] rounding3
[12:12:55] [PASSED] rounding4
[12:12:55] =========== [PASSED] drm_test_check_plane_state ============
[12:12:55] =========== drm_test_check_invalid_plane_state ============
[12:12:55] [PASSED] positioning_invalid
[12:12:55] [PASSED] upscaling_invalid
[12:12:55] [PASSED] downscaling_invalid
[12:12:55] ======= [PASSED] drm_test_check_invalid_plane_state ========
[12:12:55] ================ [PASSED] drm_plane_helper =================
[12:12:55] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[12:12:55] ====== drm_test_connector_helper_tv_get_modes_check =======
[12:12:55] [PASSED] None
[12:12:55] [PASSED] PAL
[12:12:55] [PASSED] NTSC
[12:12:55] [PASSED] Both, NTSC Default
[12:12:55] [PASSED] Both, PAL Default
[12:12:55] [PASSED] Both, NTSC Default, with PAL on command-line
[12:12:55] [PASSED] Both, PAL Default, with NTSC on command-line
[12:12:55] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[12:12:55] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[12:12:55] ================== drm_rect (9 subtests) ===================
[12:12:55] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[12:12:55] [PASSED] drm_test_rect_clip_scaled_not_clipped
[12:12:55] [PASSED] drm_test_rect_clip_scaled_clipped
[12:12:55] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[12:12:55] ================= drm_test_rect_intersect =================
[12:12:55] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[12:12:55] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[12:12:55] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[12:12:55] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[12:12:55] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[12:12:55] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[12:12:55] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[12:12:55] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[12:12:55] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[12:12:55] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[12:12:55] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[12:12:55] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[12:12:55] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[12:12:55] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[12:12:55] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[12:12:55] ============= [PASSED] drm_test_rect_intersect =============
[12:12:55] ================ drm_test_rect_calc_hscale ================
[12:12:55] [PASSED] normal use
[12:12:55] [PASSED] out of max range
[12:12:55] [PASSED] out of min range
[12:12:55] [PASSED] zero dst
[12:12:55] [PASSED] negative src
[12:12:55] [PASSED] negative dst
[12:12:55] ============ [PASSED] drm_test_rect_calc_hscale ============
[12:12:55] ================ drm_test_rect_calc_vscale ================
[12:12:55] [PASSED] normal use
[12:12:55] [PASSED] out of max range
[12:12:55] [PASSED] out of min range
[12:12:55] [PASSED] zero dst
[12:12:55] [PASSED] negative src
[12:12:55] [PASSED] negative dst
[12:12:55] ============ [PASSED] drm_test_rect_calc_vscale ============
[12:12:55] ================== drm_test_rect_rotate ===================
[12:12:55] [PASSED] reflect-x
[12:12:55] [PASSED] reflect-y
[12:12:55] [PASSED] rotate-0
[12:12:55] [PASSED] rotate-90
[12:12:55] [PASSED] rotate-180
[12:12:55] [PASSED] rotate-270
[12:12:55] ============== [PASSED] drm_test_rect_rotate ===============
[12:12:55] ================ drm_test_rect_rotate_inv =================
[12:12:55] [PASSED] reflect-x
[12:12:55] [PASSED] reflect-y
[12:12:55] [PASSED] rotate-0
[12:12:55] [PASSED] rotate-90
[12:12:55] [PASSED] rotate-180
[12:12:55] [PASSED] rotate-270
[12:12:55] ============ [PASSED] drm_test_rect_rotate_inv =============
[12:12:55] ==================== [PASSED] drm_rect =====================
[12:12:55] ============ drm_sysfb_modeset_test (1 subtest) ============
[12:12:55] ============ drm_test_sysfb_build_fourcc_list =============
[12:12:55] [PASSED] no native formats
[12:12:55] [PASSED] XRGB8888 as native format
[12:12:55] [PASSED] remove duplicates
[12:12:55] [PASSED] convert alpha formats
[12:12:55] [PASSED] random formats
[12:12:55] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[12:12:55] ============= [PASSED] drm_sysfb_modeset_test ==============
[12:12:55] ================== drm_fixp (2 subtests) ===================
[12:12:55] [PASSED] drm_test_int2fixp
[12:12:55] [PASSED] drm_test_sm2fixp
[12:12:55] ==================== [PASSED] drm_fixp =====================
[12:12:55] ============================================================
[12:12:55] Testing complete. Ran 641 tests: passed: 641
[12:12:55] Elapsed time: 27.093s total, 1.843s configuring, 25.032s building, 0.197s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[12:12:55] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:12:57] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:13:07] Starting KUnit Kernel (1/1)...
[12:13:07] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:13:07] ============= refcount_interrupt (4 subtests) ==============
[12:13:07] [PASSED] test_single_irq_change
[12:13:07] [PASSED] test_nested_irq_change
[12:13:07] [PASSED] test_multiple_irq_change
[12:13:07] [PASSED] test_irq_save
[12:13:07] =============== [PASSED] refcount_interrupt ================
[12:13:07] ================= ttm_device (5 subtests) ==================
[12:13:07] [PASSED] ttm_device_init_basic
[12:13:07] [PASSED] ttm_device_init_multiple
[12:13:07] [PASSED] ttm_device_fini_basic
[12:13:07] [PASSED] ttm_device_init_no_vma_man
[12:13:07] ================== ttm_device_init_pools ==================
[12:13:07] [PASSED] No DMA allocations, no DMA32 required
[12:13:07] [PASSED] DMA allocations, DMA32 required
[12:13:07] [PASSED] No DMA allocations, DMA32 required
[12:13:07] [PASSED] DMA allocations, no DMA32 required
[12:13:07] ============== [PASSED] ttm_device_init_pools ==============
[12:13:07] =================== [PASSED] ttm_device ====================
[12:13:07] ================== ttm_pool (8 subtests) ===================
[12:13:07] ================== ttm_pool_alloc_basic ===================
[12:13:07] [PASSED] One page
[12:13:07] [PASSED] More than one page
[12:13:07] [PASSED] Above the allocation limit
[12:13:07] [PASSED] One page, with coherent DMA mappings enabled
[12:13:07] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:13:07] ============== [PASSED] ttm_pool_alloc_basic ===============
[12:13:07] ============== ttm_pool_alloc_basic_dma_addr ==============
[12:13:07] [PASSED] One page
[12:13:07] [PASSED] More than one page
[12:13:07] [PASSED] Above the allocation limit
[12:13:07] [PASSED] One page, with coherent DMA mappings enabled
[12:13:07] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:13:07] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[12:13:07] [PASSED] ttm_pool_alloc_order_caching_match
[12:13:07] [PASSED] ttm_pool_alloc_caching_mismatch
[12:13:07] [PASSED] ttm_pool_alloc_order_mismatch
[12:13:07] [PASSED] ttm_pool_free_dma_alloc
[12:13:07] [PASSED] ttm_pool_free_no_dma_alloc
[12:13:07] [PASSED] ttm_pool_fini_basic
[12:13:07] ==================== [PASSED] ttm_pool =====================
[12:13:07] ================ ttm_resource (8 subtests) =================
[12:13:07] ================= ttm_resource_init_basic =================
[12:13:07] [PASSED] Init resource in TTM_PL_SYSTEM
[12:13:07] [PASSED] Init resource in TTM_PL_VRAM
[12:13:07] [PASSED] Init resource in a private placement
[12:13:07] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[12:13:07] ============= [PASSED] ttm_resource_init_basic =============
[12:13:07] [PASSED] ttm_resource_init_pinned
[12:13:07] [PASSED] ttm_resource_fini_basic
[12:13:07] [PASSED] ttm_resource_manager_init_basic
[12:13:07] [PASSED] ttm_resource_manager_usage_basic
[12:13:07] [PASSED] ttm_resource_manager_set_used_basic
[12:13:07] [PASSED] ttm_sys_man_alloc_basic
[12:13:07] [PASSED] ttm_sys_man_free_basic
[12:13:07] ================== [PASSED] ttm_resource ===================
[12:13:07] =================== ttm_tt (15 subtests) ===================
[12:13:07] ==================== ttm_tt_init_basic ====================
[12:13:07] [PASSED] Page-aligned size
[12:13:07] [PASSED] Extra pages requested
[12:13:07] ================ [PASSED] ttm_tt_init_basic ================
[12:13:07] [PASSED] ttm_tt_init_misaligned
[12:13:07] [PASSED] ttm_tt_fini_basic
[12:13:07] [PASSED] ttm_tt_fini_sg
[12:13:07] [PASSED] ttm_tt_fini_shmem
[12:13:07] [PASSED] ttm_tt_create_basic
[12:13:07] [PASSED] ttm_tt_create_invalid_bo_type
[12:13:07] [PASSED] ttm_tt_create_ttm_exists
[12:13:07] [PASSED] ttm_tt_create_failed
[12:13:07] [PASSED] ttm_tt_destroy_basic
[12:13:07] [PASSED] ttm_tt_populate_null_ttm
[12:13:07] [PASSED] ttm_tt_populate_populated_ttm
[12:13:07] [PASSED] ttm_tt_unpopulate_basic
[12:13:07] [PASSED] ttm_tt_unpopulate_empty_ttm
[12:13:07] [PASSED] ttm_tt_swapin_basic
[12:13:07] ===================== [PASSED] ttm_tt ======================
[12:13:07] =================== ttm_bo (14 subtests) ===================
[12:13:07] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[12:13:07] [PASSED] Cannot be interrupted and sleeps
[12:13:07] [PASSED] Cannot be interrupted, locks straight away
[12:13:07] [PASSED] Can be interrupted, sleeps
[12:13:07] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[12:13:07] [PASSED] ttm_bo_reserve_locked_no_sleep
[12:13:07] [PASSED] ttm_bo_reserve_no_wait_ticket
[12:13:07] [PASSED] ttm_bo_reserve_double_resv
[12:13:07] [PASSED] ttm_bo_reserve_interrupted
[12:13:07] [PASSED] ttm_bo_reserve_deadlock
[12:13:07] [PASSED] ttm_bo_unreserve_basic
[12:13:07] [PASSED] ttm_bo_unreserve_pinned
[12:13:07] [PASSED] ttm_bo_unreserve_bulk
[12:13:07] [PASSED] ttm_bo_fini_basic
[12:13:07] [PASSED] ttm_bo_fini_shared_resv
[12:13:07] [PASSED] ttm_bo_pin_basic
[12:13:07] [PASSED] ttm_bo_pin_unpin_resource
[12:13:07] [PASSED] ttm_bo_multiple_pin_one_unpin
[12:13:07] ===================== [PASSED] ttm_bo ======================
[12:13:07] ============== ttm_bo_validate (22 subtests) ===============
[12:13:07] ============== ttm_bo_init_reserved_sys_man ===============
[12:13:07] [PASSED] Buffer object for userspace
[12:13:07] [PASSED] Kernel buffer object
[12:13:07] [PASSED] Shared buffer object
[12:13:07] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[12:13:07] ============== ttm_bo_init_reserved_mock_man ==============
[12:13:07] [PASSED] Buffer object for userspace
[12:13:07] [PASSED] Kernel buffer object
[12:13:07] [PASSED] Shared buffer object
[12:13:07] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[12:13:07] [PASSED] ttm_bo_init_reserved_resv
[12:13:07] ================== ttm_bo_validate_basic ==================
[12:13:07] [PASSED] Buffer object for userspace
[12:13:07] [PASSED] Kernel buffer object
[12:13:07] [PASSED] Shared buffer object
[12:13:07] ============== [PASSED] ttm_bo_validate_basic ==============
[12:13:07] [PASSED] ttm_bo_validate_invalid_placement
[12:13:07] ============= ttm_bo_validate_same_placement ==============
[12:13:07] [PASSED] System manager
[12:13:07] [PASSED] VRAM manager
[12:13:07] ========= [PASSED] ttm_bo_validate_same_placement ==========
[12:13:07] [PASSED] ttm_bo_validate_failed_alloc
[12:13:07] [PASSED] ttm_bo_validate_pinned
[12:13:07] [PASSED] ttm_bo_validate_busy_placement
[12:13:07] ================ ttm_bo_validate_multihop =================
[12:13:07] [PASSED] Buffer object for userspace
[12:13:07] [PASSED] Kernel buffer object
[12:13:07] [PASSED] Shared buffer object
[12:13:07] ============ [PASSED] ttm_bo_validate_multihop =============
[12:13:07] ========== ttm_bo_validate_no_placement_signaled ==========
[12:13:07] [PASSED] Buffer object in system domain, no page vector
[12:13:07] [PASSED] Buffer object in system domain with an existing page vector
[12:13:07] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[12:13:07] ======== ttm_bo_validate_no_placement_not_signaled ========
[12:13:07] [PASSED] Buffer object for userspace
[12:13:07] [PASSED] Kernel buffer object
[12:13:07] [PASSED] Shared buffer object
[12:13:07] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[12:13:07] [PASSED] ttm_bo_validate_move_fence_signaled
[12:13:07] ========= ttm_bo_validate_move_fence_not_signaled =========
[12:13:07] [PASSED] Waits for GPU
[12:13:07] [PASSED] Tries to lock straight away
[12:13:07] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[12:13:07] [PASSED] ttm_bo_validate_swapout
[12:13:07] [PASSED] ttm_bo_validate_happy_evict
[12:13:07] [PASSED] ttm_bo_validate_all_pinned_evict
[12:13:07] [PASSED] ttm_bo_validate_allowed_only_evict
[12:13:07] [PASSED] ttm_bo_validate_deleted_evict
[12:13:07] [PASSED] ttm_bo_validate_busy_domain_evict
[12:13:07] [PASSED] ttm_bo_validate_evict_gutting
[12:13:07] [PASSED] ttm_bo_validate_recrusive_evict
[12:13:07] ================= [PASSED] ttm_bo_validate =================
[12:13:07] ============================================================
[12:13:07] Testing complete. Ran 106 tests: passed: 106
[12:13:08] Elapsed time: 12.160s total, 1.809s configuring, 10.086s building, 0.227s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/dma-buf/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/dma-buf/.kunitconfig
[12:13:08] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:13:09] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:13:18] Starting KUnit Kernel (1/1)...
[12:13:18] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:13:18] ============= refcount_interrupt (4 subtests) ==============
[12:13:18] [PASSED] test_single_irq_change
[12:13:18] [PASSED] test_nested_irq_change
[12:13:18] [PASSED] test_multiple_irq_change
[12:13:18] [PASSED] test_irq_save
[12:13:18] =============== [PASSED] refcount_interrupt ================
[12:13:18] =============== dma-buf-fence (12 subtests) ================
[12:13:18] [PASSED] test_sanitycheck
[12:13:18] [PASSED] test_signaling
[12:13:18] [PASSED] test_add_callback
[12:13:18] [PASSED] test_late_add_callback
[12:13:18] [PASSED] test_rm_callback
[12:13:18] [PASSED] test_late_rm_callback
[12:13:18] [PASSED] test_status
[12:13:18] [PASSED] test_error
[12:13:18] [PASSED] test_wait
[12:13:18] [PASSED] test_wait_timeout
[12:13:18] [PASSED] test_stub
[12:13:18] [SKIPPED] test_race_signal_callback (requires at least 2 CPUs)
[12:13:18] ================== [PASSED] dma-buf-fence ==================
[12:13:18] ============ dma-buf-fence-chain (11 subtests) =============
[12:13:18] [PASSED] test_sanitycheck
[12:13:18] [PASSED] test_find_seqno
[12:13:18] [PASSED] test_find_signaled
[12:13:18] [PASSED] test_find_out_of_order
[12:13:23] [PASSED] test_find_gap
[12:13:23] [PASSED] test_find_race
[12:13:23] [PASSED] test_signal_forward
[12:13:23] [PASSED] test_signal_backward
[12:13:23] [PASSED] test_wait_forward
[12:13:23] [PASSED] test_wait_backward
[12:13:23] [PASSED] test_wait_random
[12:13:23] =============== [PASSED] dma-buf-fence-chain ===============
[12:13:23] ============ dma-buf-fence-unwrap (10 subtests) ============
[12:13:23] [PASSED] test_sanitycheck
[12:13:23] [PASSED] test_unwrap_array
[12:13:23] [PASSED] test_unwrap_chain
[12:13:23] [PASSED] test_unwrap_chain_array
[12:13:23] [PASSED] test_unwrap_merge
[12:13:23] [PASSED] test_unwrap_merge_duplicate
[12:13:23] [PASSED] test_unwrap_merge_seqno
[12:13:23] [PASSED] test_unwrap_merge_order
[12:13:23] [PASSED] test_unwrap_merge_complex
[12:13:23] [PASSED] test_unwrap_merge_complex_seqno
[12:13:23] ============== [PASSED] dma-buf-fence-unwrap ===============
[12:13:23] ================ dma-buf-resv (5 subtests) =================
[12:13:23] [PASSED] test_sanitycheck
[12:13:23] ===================== test_signaling ======================
[12:13:23] [PASSED] kernel
[12:13:23] [PASSED] write
[12:13:23] [PASSED] read
[12:13:23] [PASSED] bookkeep
[12:13:23] ================= [PASSED] test_signaling ==================
[12:13:23] ====================== test_for_each ======================
[12:13:23] [PASSED] kernel
[12:13:23] [PASSED] write
[12:13:23] [PASSED] read
[12:13:23] [PASSED] bookkeep
[12:13:23] ================== [PASSED] test_for_each ==================
[12:13:23] ================= test_for_each_unlocked ==================
[12:13:23] [PASSED] kernel
[12:13:23] [PASSED] write
[12:13:23] [PASSED] read
[12:13:23] [PASSED] bookkeep
[12:13:23] ============= [PASSED] test_for_each_unlocked ==============
[12:13:23] ===================== test_get_fences =====================
[12:13:23] [PASSED] kernel
[12:13:23] [PASSED] write
[12:13:23] [PASSED] read
[12:13:23] [PASSED] bookkeep
[12:13:23] ================= [PASSED] test_get_fences =================
[12:13:23] ================== [PASSED] dma-buf-resv ===================
[12:13:23] ============================================================
[12:13:23] Testing complete. Ran 54 tests: passed: 53, skipped: 1
[12:13:23] Elapsed time: 15.730s total, 1.776s configuring, 8.631s building, 5.271s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ Xe.CI.BAT: failure for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev2)
2026-09-02 10:54 [PATCH v2 0/2] drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc Mika Kahola
` (3 preceding siblings ...)
2026-09-02 12:13 ` ✓ CI.KUnit: success for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev3) Patchwork
@ 2026-09-02 12:19 ` Patchwork
2026-09-02 12:59 ` ✓ Xe.CI.BAT: success for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev3) Patchwork
2026-09-02 22:42 ` ✓ Xe.CI.FULL: " Patchwork
6 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-09-02 12:19 UTC (permalink / raw)
To: Mika Kahola; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2281 bytes --]
== Series Details ==
Series: drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev2)
URL : https://patchwork.freedesktop.org/series/171792/
State : failure
== Summary ==
CI Bug Log - changes from xe-5672-f6e82e1b1b96ea7150f101ce93f139e1ff131d67_BAT -> xe-pw-171792v2_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-171792v2_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-171792v2_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (12 -> 10)
------------------------------
Missing (2): bat-bmg-2 bat-nvls-1
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-171792v2_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_waitfence@engine:
- bat-ptl-2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5672-f6e82e1b1b96ea7150f101ce93f139e1ff131d67/bat-ptl-2/igt@xe_waitfence@engine.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v2/bat-ptl-2/igt@xe_waitfence@engine.html
Known issues
------------
Here are the changes found in xe-pw-171792v2_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_waitfence@engine:
- bat-wcl-1: [FAIL][3] ([Intel XE#9103]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5672-f6e82e1b1b96ea7150f101ce93f139e1ff131d67/bat-wcl-1/igt@xe_waitfence@engine.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v2/bat-wcl-1/igt@xe_waitfence@engine.html
[Intel XE#9103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9103
Build changes
-------------
* Linux: xe-5672-f6e82e1b1b96ea7150f101ce93f139e1ff131d67 -> xe-pw-171792v2
IGT_9079: 9079
xe-5672-f6e82e1b1b96ea7150f101ce93f139e1ff131d67: f6e82e1b1b96ea7150f101ce93f139e1ff131d67
xe-pw-171792v2: 171792v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v2/index.html
[-- Attachment #2: Type: text/html, Size: 2887 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* RE: [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes
2026-09-02 11:59 ` [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes Jani Nikula
@ 2026-09-02 12:24 ` Kahola, Mika
0 siblings, 0 replies; 16+ messages in thread
From: Kahola, Mika @ 2026-09-02 12:24 UTC (permalink / raw)
To: Jani Nikula, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org
Cc: ville.syrjala@linux.intel.com
> -----Original Message-----
> From: Jani Nikula <jani.nikula@linux.intel.com>
> Sent: Wednesday, 2 September 2026 15.00
> To: Kahola, Mika <mika.kahola@intel.com>; intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org
> Cc: ville.syrjala@linux.intel.com; Kahola, Mika <mika.kahola@intel.com>
> Subject: Re: [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes
>
> On Wed, 02 Sep 2026, Mika Kahola <mika.kahola@intel.com> wrote:
> > Our flipq eligibility check let pipe, M/N and LRR changes through.
> > Reject those too, alongside the existing async flip/VRR/PSR/color/
> > modeset/fastset exclusions.
>
> Why?
Sashiko spotted that this part we cannot reach
/*
+ * Flipq is only suitable for simple queued plane updates that do
+ * not require additional pipe or timing programming.
+ */
+ if (new_crtc_state->update_pipe ||
+ new_crtc_state->update_m_n ||
+ new_crtc_state->update_lrr)
+ return false;
update_pipe is already checked via intel_crtc_needs_fastset() and if update_pipe is true also the update_lrr and update_m_n are true as well. So the whole patch reduced to one liner checking only the update_planes
https://patchwork.freedesktop.org/patch/750148/?series=171792&rev=3
>
> >
> > v2:
> > - Drop the single-plane restriction, plane count doesn't matter (Ville)
> > - Drop the update_wm_pre/post check, dead code for flipq-capable hw (Ville)
> > - Drop the active/enabled planes check (Ville)
> >
> > Assisted-by: Copilot:claude-sonnet-5
> > Signed-off-by: Mika Kahola <mika.kahola@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_display.c | 43 ++++++++++++++++----
> > 1 file changed, 36 insertions(+), 7 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> > index 553c60d452dd..f4b76a9547e3 100644
> > --- a/drivers/gpu/drm/i915/display/intel_display.c
> > +++ b/drivers/gpu/drm/i915/display/intel_display.c
> > @@ -7369,6 +7369,41 @@ static void intel_atomic_prepare_plane_clear_colors(struct intel_atomic_state *s
> > }
> > }
> >
> > +static bool intel_flipq_commit_is_eligible(struct intel_atomic_state *state,
> > + struct intel_crtc *crtc)
> > +{
> > + struct intel_display *display = to_intel_display(state);
> > + const struct intel_crtc_state *new_crtc_state =
> > + intel_atomic_get_new_crtc_state(state, crtc);
> > +
> > + if (!intel_flipq_supported(display))
> > + return false;
> > +
> > + if (intel_crtc_needs_modeset(new_crtc_state) ||
> > + intel_crtc_needs_fastset(new_crtc_state) ||
> > + intel_crtc_needs_color_update(new_crtc_state))
> > + return false;
> > +
> > + if (!new_crtc_state->update_planes)
> > + return false;
> > +
> > + if (new_crtc_state->do_async_flip ||
> > + new_crtc_state->vrr.enable ||
> > + new_crtc_state->has_psr)
> > + return false;
> > +
> > + /*
> > + * Flipq is only suitable for simple queued plane updates that do
> > + * not require additional pipe or timing programming.
> > + */
> > + if (new_crtc_state->update_pipe ||
> > + new_crtc_state->update_m_n ||
> > + new_crtc_state->update_lrr)
> > + return false;
> > +
> > + return true;
> > +}
> > +
> > static void intel_atomic_dsb_prepare(struct intel_atomic_state *state,
> > struct intel_crtc *crtc)
> > {
> > @@ -7384,13 +7419,7 @@ static void intel_atomic_dsb_prepare(struct intel_atomic_state *state,
> >
> > /* FIXME deal with everything */
> > new_crtc_state->use_flipq =
> > - intel_flipq_supported(display) &&
> > - !new_crtc_state->do_async_flip &&
> > - !new_crtc_state->vrr.enable &&
> > - !new_crtc_state->has_psr &&
> > - !intel_crtc_needs_modeset(new_crtc_state) &&
> > - !intel_crtc_needs_fastset(new_crtc_state) &&
> > - !intel_crtc_needs_color_update(new_crtc_state);
> > + intel_flipq_commit_is_eligible(state, crtc);
> >
> > new_crtc_state->use_dsb =
> > !new_crtc_state->use_flipq &&
>
> --
> Jani Nikula, Intel
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes
2026-09-02 10:54 ` [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes Mika Kahola
` (2 preceding siblings ...)
2026-09-02 11:59 ` [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes Jani Nikula
@ 2026-09-02 12:27 ` Ville Syrjälä
2026-09-02 13:52 ` Kahola, Mika
3 siblings, 1 reply; 16+ messages in thread
From: Ville Syrjälä @ 2026-09-02 12:27 UTC (permalink / raw)
To: Mika Kahola; +Cc: intel-gfx, intel-xe
On Wed, Sep 02, 2026 at 10:54:46AM +0000, Mika Kahola wrote:
> Our flipq eligibility check let pipe, M/N and LRR changes through.
> Reject those too, alongside the existing async flip/VRR/PSR/color/
> modeset/fastset exclusions.
>
> v2:
> - Drop the single-plane restriction, plane count doesn't matter (Ville)
> - Drop the update_wm_pre/post check, dead code for flipq-capable hw (Ville)
> - Drop the active/enabled planes check (Ville)
>
> Assisted-by: Copilot:claude-sonnet-5
> Signed-off-by: Mika Kahola <mika.kahola@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_display.c | 43 ++++++++++++++++----
> 1 file changed, 36 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> index 553c60d452dd..f4b76a9547e3 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -7369,6 +7369,41 @@ static void intel_atomic_prepare_plane_clear_colors(struct intel_atomic_state *s
> }
> }
>
> +static bool intel_flipq_commit_is_eligible(struct intel_atomic_state *state,
> + struct intel_crtc *crtc)
> +{
> + struct intel_display *display = to_intel_display(state);
> + const struct intel_crtc_state *new_crtc_state =
> + intel_atomic_get_new_crtc_state(state, crtc);
> +
> + if (!intel_flipq_supported(display))
> + return false;
> +
> + if (intel_crtc_needs_modeset(new_crtc_state) ||
> + intel_crtc_needs_fastset(new_crtc_state) ||
> + intel_crtc_needs_color_update(new_crtc_state))
> + return false;
> +
> + if (!new_crtc_state->update_planes)
> + return false;
Why?
> +
> + if (new_crtc_state->do_async_flip ||
> + new_crtc_state->vrr.enable ||
> + new_crtc_state->has_psr)
> + return false;
> +
> + /*
> + * Flipq is only suitable for simple queued plane updates that do
> + * not require additional pipe or timing programming.
> + */
> + if (new_crtc_state->update_pipe ||
> + new_crtc_state->update_m_n ||
> + new_crtc_state->update_lrr)
> + return false;
That is all covered by intel_crtc_needs_fastset().
> +
> + return true;
> +}
> +
> static void intel_atomic_dsb_prepare(struct intel_atomic_state *state,
> struct intel_crtc *crtc)
> {
> @@ -7384,13 +7419,7 @@ static void intel_atomic_dsb_prepare(struct intel_atomic_state *state,
>
> /* FIXME deal with everything */
> new_crtc_state->use_flipq =
> - intel_flipq_supported(display) &&
> - !new_crtc_state->do_async_flip &&
> - !new_crtc_state->vrr.enable &&
> - !new_crtc_state->has_psr &&
> - !intel_crtc_needs_modeset(new_crtc_state) &&
> - !intel_crtc_needs_fastset(new_crtc_state) &&
> - !intel_crtc_needs_color_update(new_crtc_state);
> + intel_flipq_commit_is_eligible(state, crtc);
>
> new_crtc_state->use_dsb =
> !new_crtc_state->use_flipq &&
> --
> 2.43.0
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ Xe.CI.BAT: success for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev3)
2026-09-02 10:54 [PATCH v2 0/2] drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc Mika Kahola
` (4 preceding siblings ...)
2026-09-02 12:19 ` ✗ Xe.CI.BAT: failure for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev2) Patchwork
@ 2026-09-02 12:59 ` Patchwork
2026-09-02 22:42 ` ✓ Xe.CI.FULL: " Patchwork
6 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-09-02 12:59 UTC (permalink / raw)
To: Kahola, Mika; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 893 bytes --]
== Series Details ==
Series: drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev3)
URL : https://patchwork.freedesktop.org/series/171792/
State : success
== Summary ==
CI Bug Log - changes from xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93_BAT -> xe-pw-171792v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93 -> xe-pw-171792v3
IGT_9079: 9079
xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93: 69771454478b3dc773dee91f76cef9220ea1ce93
xe-pw-171792v3: 171792v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/index.html
[-- Attachment #2: Type: text/html, Size: 1441 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v2 2/2] drm/i915/display: Reset use_flipq when duplicating crtc state
2026-09-02 10:54 ` [PATCH v2 2/2] drm/i915/display: Reset use_flipq when duplicating crtc state Mika Kahola
@ 2026-09-02 13:33 ` Ville Syrjälä
2026-09-02 14:08 ` Kahola, Mika
0 siblings, 1 reply; 16+ messages in thread
From: Ville Syrjälä @ 2026-09-02 13:33 UTC (permalink / raw)
To: Mika Kahola; +Cc: intel-gfx, intel-xe
On Wed, Sep 02, 2026 at 10:54:47AM +0000, Mika Kahola wrote:
> intel_crtc_duplicate_state() resets use_dsb to false but not
> use_flipq, letting a stale true value survive into the new state.
>
> Reset use_flipq alongside use_dsb.
>
> Signed-off-by: Mika Kahola <mika.kahola@intel.com>
I had the same patch in some series, but that might need a rebase so
let's go with yours.
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_atomic.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_atomic.c b/drivers/gpu/drm/i915/display/intel_atomic.c
> index 9d0d47c79dd1..b66c2d4ba2b3 100644
> --- a/drivers/gpu/drm/i915/display/intel_atomic.c
> +++ b/drivers/gpu/drm/i915/display/intel_atomic.c
> @@ -276,6 +276,7 @@ intel_crtc_duplicate_state(struct drm_crtc *crtc)
> crtc_state->dsb_color = NULL;
> crtc_state->dsb_commit = NULL;
> crtc_state->use_dsb = false;
> + crtc_state->use_flipq = false;
>
> return &crtc_state->uapi;
> }
> --
> 2.43.0
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 16+ messages in thread
* RE: [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes
2026-09-02 12:27 ` Ville Syrjälä
@ 2026-09-02 13:52 ` Kahola, Mika
0 siblings, 0 replies; 16+ messages in thread
From: Kahola, Mika @ 2026-09-02 13:52 UTC (permalink / raw)
To: Ville Syrjälä
Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org
> -----Original Message-----
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Sent: Wednesday, 2 September 2026 15.27
> To: Kahola, Mika <mika.kahola@intel.com>
> Cc: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org
> Subject: Re: [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes
>
> On Wed, Sep 02, 2026 at 10:54:46AM +0000, Mika Kahola wrote:
> > Our flipq eligibility check let pipe, M/N and LRR changes through.
> > Reject those too, alongside the existing async flip/VRR/PSR/color/
> > modeset/fastset exclusions.
> >
> > v2:
> > - Drop the single-plane restriction, plane count doesn't matter (Ville)
> > - Drop the update_wm_pre/post check, dead code for flipq-capable hw (Ville)
> > - Drop the active/enabled planes check (Ville)
> >
> > Assisted-by: Copilot:claude-sonnet-5
> > Signed-off-by: Mika Kahola <mika.kahola@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_display.c | 43 ++++++++++++++++----
> > 1 file changed, 36 insertions(+), 7 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> > index 553c60d452dd..f4b76a9547e3 100644
> > --- a/drivers/gpu/drm/i915/display/intel_display.c
> > +++ b/drivers/gpu/drm/i915/display/intel_display.c
> > @@ -7369,6 +7369,41 @@ static void intel_atomic_prepare_plane_clear_colors(struct intel_atomic_state *s
> > }
> > }
> >
> > +static bool intel_flipq_commit_is_eligible(struct intel_atomic_state *state,
> > + struct intel_crtc *crtc)
> > +{
> > + struct intel_display *display = to_intel_display(state);
> > + const struct intel_crtc_state *new_crtc_state =
> > + intel_atomic_get_new_crtc_state(state, crtc);
> > +
> > + if (!intel_flipq_supported(display))
> > + return false;
> > +
> > + if (intel_crtc_needs_modeset(new_crtc_state) ||
> > + intel_crtc_needs_fastset(new_crtc_state) ||
> > + intel_crtc_needs_color_update(new_crtc_state))
> > + return false;
> > +
> > + if (!new_crtc_state->update_planes)
> > + return false;
>
> Why?
I though of case with joiner where we would have one update_planes true and the other one update_planes false but I searched a bit deeper and it seems I was wrong. No need to check the planes either.
>
> > +
> > + if (new_crtc_state->do_async_flip ||
> > + new_crtc_state->vrr.enable ||
> > + new_crtc_state->has_psr)
> > + return false;
> > +
> > + /*
> > + * Flipq is only suitable for simple queued plane updates that do
> > + * not require additional pipe or timing programming.
> > + */
> > + if (new_crtc_state->update_pipe ||
> > + new_crtc_state->update_m_n ||
> > + new_crtc_state->update_lrr)
> > + return false;
>
> That is all covered by intel_crtc_needs_fastset().
Yes, Sashiko noticed this one too and I dropped these checks.
There is no need for the patch here, so I will drop this.
Thanks for the review!
-Mika-
>
> > +
> > + return true;
> > +}
> > +
> > static void intel_atomic_dsb_prepare(struct intel_atomic_state *state,
> > struct intel_crtc *crtc)
> > {
> > @@ -7384,13 +7419,7 @@ static void intel_atomic_dsb_prepare(struct intel_atomic_state *state,
> >
> > /* FIXME deal with everything */
> > new_crtc_state->use_flipq =
> > - intel_flipq_supported(display) &&
> > - !new_crtc_state->do_async_flip &&
> > - !new_crtc_state->vrr.enable &&
> > - !new_crtc_state->has_psr &&
> > - !intel_crtc_needs_modeset(new_crtc_state) &&
> > - !intel_crtc_needs_fastset(new_crtc_state) &&
> > - !intel_crtc_needs_color_update(new_crtc_state);
> > + intel_flipq_commit_is_eligible(state, crtc);
> >
> > new_crtc_state->use_dsb =
> > !new_crtc_state->use_flipq &&
> > --
> > 2.43.0
>
> --
> Ville Syrjälä
> Intel
^ permalink raw reply [flat|nested] 16+ messages in thread
* RE: [PATCH v2 2/2] drm/i915/display: Reset use_flipq when duplicating crtc state
2026-09-02 13:33 ` Ville Syrjälä
@ 2026-09-02 14:08 ` Kahola, Mika
0 siblings, 0 replies; 16+ messages in thread
From: Kahola, Mika @ 2026-09-02 14:08 UTC (permalink / raw)
To: Ville Syrjälä
Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org
> -----Original Message-----
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Sent: Wednesday, 2 September 2026 16.33
> To: Kahola, Mika <mika.kahola@intel.com>
> Cc: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org
> Subject: Re: [PATCH v2 2/2] drm/i915/display: Reset use_flipq when duplicating crtc state
>
> On Wed, Sep 02, 2026 at 10:54:47AM +0000, Mika Kahola wrote:
> > intel_crtc_duplicate_state() resets use_dsb to false but not
> > use_flipq, letting a stale true value survive into the new state.
> >
> > Reset use_flipq alongside use_dsb.
> >
> > Signed-off-by: Mika Kahola <mika.kahola@intel.com>
>
> I had the same patch in some series, but that might need a rebase so
> let's go with yours.
Ok but thanks for the review!
>
> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> > ---
> > drivers/gpu/drm/i915/display/intel_atomic.c | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_atomic.c b/drivers/gpu/drm/i915/display/intel_atomic.c
> > index 9d0d47c79dd1..b66c2d4ba2b3 100644
> > --- a/drivers/gpu/drm/i915/display/intel_atomic.c
> > +++ b/drivers/gpu/drm/i915/display/intel_atomic.c
> > @@ -276,6 +276,7 @@ intel_crtc_duplicate_state(struct drm_crtc *crtc)
> > crtc_state->dsb_color = NULL;
> > crtc_state->dsb_commit = NULL;
> > crtc_state->use_dsb = false;
> > + crtc_state->use_flipq = false;
> >
> > return &crtc_state->uapi;
> > }
> > --
> > 2.43.0
>
> --
> Ville Syrjälä
> Intel
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ Xe.CI.FULL: success for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev3)
2026-09-02 10:54 [PATCH v2 0/2] drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc Mika Kahola
` (5 preceding siblings ...)
2026-09-02 12:59 ` ✓ Xe.CI.BAT: success for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev3) Patchwork
@ 2026-09-02 22:42 ` Patchwork
6 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-09-02 22:42 UTC (permalink / raw)
To: Mika Kahola; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 18580 bytes --]
== Series Details ==
Series: drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev3)
URL : https://patchwork.freedesktop.org/series/171792/
State : success
== Summary ==
CI Bug Log - changes from xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93_FULL -> xe-pw-171792v3_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-171792v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#7679])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2887])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][4] -> [INCOMPLETE][5] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2252]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2390] / [Intel XE#6974])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2321] / [Intel XE#7355])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2320])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#8265])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [PASS][11] -> [FAIL][12] ([Intel XE#3098]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93/shard-bmg-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-10/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [PASS][13] -> [FAIL][14] ([Intel XE#301])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#7178] / [Intel XE#7351])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2311]) +12 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#4141]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2352] / [Intel XE#7399])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2313]) +9 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#7061])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#3374] / [Intel XE#3544])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#1503])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#4090] / [Intel XE#7443])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#7283])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_pm_dc@dc3co-after-dc6@pr-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#8395] / [Intel XE#8396]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-3/igt@kms_pm_dc@dc3co-after-dc6@pr-xrgb8888.html
* igt@kms_pm_dc@dc3co-after-dc6@psr2-yuv420:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#8396]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-3/igt@kms_pm_dc@dc3co-after-dc6@psr2-yuv420.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7794])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#1489])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute:
- shard-bmg: NOTRUN -> [INCOMPLETE][31] ([Intel XE#6652] / [Intel XE#8983]) +1 other test incomplete
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-3/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-prefetch:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#8374]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-prefetch.html
* igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#8364]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][34] ([Intel XE#7098] / [Intel XE#8159])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_threads@threads-multi-queue-fd-rebind:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#8378]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-fd-rebind.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [PASS][36] -> [ABORT][37] ([Intel XE#8007])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93/shard-bmg-9/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_gpgpu_fill@offset-4x4:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7954])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@xe_gpgpu_fill@offset-4x4.html
* igt@xe_multigpu_svm@mgpu-atomic-op-conflict:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#6964]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-3/igt@xe_multigpu_svm@mgpu-atomic-op-conflict.html
* igt@xe_page_reclaim@binds-large-split:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7793])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@xe_page_reclaim@binds-large-split.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2284] / [Intel XE#7370])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-bmg: [PASS][42] -> [ABORT][43] ([Intel XE#9093])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93/shard-bmg-9/igt@xe_pm@s2idle-d3hot-basic-exec.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-7/igt@xe_pm@s2idle-d3hot-basic-exec.html
#### Possible fixes ####
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][44] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: [FAIL][46] ([Intel XE#7992]) -> [PASS][47]
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93/shard-bmg-10/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_configfs@survivability-mode:
- shard-bmg: [ABORT][48] ([Intel XE#8007]) -> [PASS][49]
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93/shard-bmg-2/igt@xe_configfs@survivability-mode.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-6/igt@xe_configfs@survivability-mode.html
* igt@xe_exec_fault_mode@atomic-many:
- shard-bmg: [FAIL][50] ([Intel XE#8578]) -> [PASS][51]
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93/shard-bmg-5/igt@xe_exec_fault_mode@atomic-many.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-9/igt@xe_exec_fault_mode@atomic-many.html
#### Warnings ####
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][52] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][53] ([Intel XE#301])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-bmg: [ABORT][54] ([Intel XE#8007]) -> [SKIP][55] ([Intel XE#6281] / [Intel XE#7426])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93/shard-bmg-7/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/shard-bmg-3/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7426
[Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794
[Intel XE#7954]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7954
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
[Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
[Intel XE#8578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8578
[Intel XE#8983]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8983
[Intel XE#9093]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9093
Build changes
-------------
* Linux: xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93 -> xe-pw-171792v3
IGT_9079: 9079
xe-5673-69771454478b3dc773dee91f76cef9220ea1ce93: 69771454478b3dc773dee91f76cef9220ea1ce93
xe-pw-171792v3: 171792v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-171792v3/index.html
[-- Attachment #2: Type: text/html, Size: 20504 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2026-09-02 22:42 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-02 10:54 [PATCH v2 0/2] drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc Mika Kahola
2026-09-02 10:54 ` [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes Mika Kahola
2026-09-02 11:07 ` sashiko-bot
2026-09-02 11:55 ` [PATCH v2 1/2] drm/i915/display: Reject flipq for commits with no plane updates Mika Kahola
2026-09-02 11:59 ` [PATCH v2 1/2] drm/i915/display: Reject flipq for pipe or timing changes Jani Nikula
2026-09-02 12:24 ` Kahola, Mika
2026-09-02 12:27 ` Ville Syrjälä
2026-09-02 13:52 ` Kahola, Mika
2026-09-02 10:54 ` [PATCH v2 2/2] drm/i915/display: Reset use_flipq when duplicating crtc state Mika Kahola
2026-09-02 13:33 ` Ville Syrjälä
2026-09-02 14:08 ` Kahola, Mika
2026-09-02 11:26 ` ✓ CI.KUnit: success for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev2) Patchwork
2026-09-02 12:13 ` ✓ CI.KUnit: success for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev3) Patchwork
2026-09-02 12:19 ` ✗ Xe.CI.BAT: failure for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev2) Patchwork
2026-09-02 12:59 ` ✓ Xe.CI.BAT: success for drm/i915/display: fix flipq pipe CRC mismatch in kms_cursor_crc (rev3) Patchwork
2026-09-02 22:42 ` ✓ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox