* [RFC PATCH] drm/i915/psr: Prevent DC entry during active vblank for Panel Replay
@ 2026-04-28 12:39 Dibin Moolakadan Subrahmanian
2026-04-28 12:56 ` Hogander, Jouni
` (8 more replies)
0 siblings, 9 replies; 11+ messages in thread
From: Dibin Moolakadan Subrahmanian @ 2026-04-28 12:39 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jouni.hogander
On PTL+ (display ver >= 30), hold the DMC wakelock while vblank is
enabled for Panel Replay. Older platforms rely on
intel_display_power_set_target_dc_state() for this.
The wakelock is acquired/released at two places:
1) Dynamically when vblank is enabled/disabled via
intel_psr_notify_vblank_enable_disable().
2) In the PSR enable/disable path.
This handles the following ordering scenarios:
1) Panel Replay is enabled before vblank enable arrives.
2) Vblank enable arrives before Panel Replay is updated in
intel_psr_post_plane_update().
---
.../drm/i915/display/intel_display_types.h | 2 +
drivers/gpu/drm/i915/display/intel_psr.c | 55 +++++++++++++++++--
2 files changed, 53 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index c81916761850..f386d6dba9e5 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -1775,6 +1775,8 @@ struct intel_psr {
bool source_panel_replay_support;
bool sink_panel_replay_support;
bool panel_replay_enabled;
+ bool panel_replay_wakelock;
+ bool vblank_enabled;
u32 dc3co_exitline;
u32 dc3co_exit_delay;
struct delayed_work dc3co_work;
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 63c19958a9e3..82bc63054906 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -2192,6 +2192,34 @@ static bool psr_interrupt_error_check(struct intel_dp *intel_dp)
return true;
}
+static void intel_panel_replay_get_wakelock_locked(struct intel_dp *intel_dp)
+{
+ struct intel_display *display = to_intel_display(intel_dp);
+
+ if (DISPLAY_VER(display) < 30)
+ return;
+
+ if (intel_dp->psr.panel_replay_wakelock)
+ return;
+
+ intel_dmc_wl_get_noreg(display);
+ intel_dp->psr.panel_replay_wakelock = true;
+}
+
+static void intel_panel_replay_put_wakelock_locked(struct intel_dp *intel_dp)
+{
+ struct intel_display *display = to_intel_display(intel_dp);
+
+ if (DISPLAY_VER(display) < 30)
+ return;
+
+ if (!intel_dp->psr.panel_replay_wakelock)
+ return;
+
+ intel_dmc_wl_put_noreg(display);
+ intel_dp->psr.panel_replay_wakelock = false;
+}
+
static void intel_psr_enable_locked(struct intel_dp *intel_dp,
const struct intel_crtc_state *crtc_state)
{
@@ -2224,8 +2252,11 @@ static void intel_psr_enable_locked(struct intel_dp *intel_dp,
if (!psr_interrupt_error_check(intel_dp))
return;
- if (intel_dp->psr.panel_replay_enabled)
+ if (intel_dp->psr.panel_replay_enabled) {
+ if (intel_dp->psr.vblank_enabled)
+ intel_panel_replay_get_wakelock_locked(intel_dp);
drm_dbg_kms(display->drm, "Enabling Panel Replay\n");
+ }
else
drm_dbg_kms(display->drm, "Enabling PSR%s\n",
intel_dp->psr.sel_update_enabled ? "2" : "1");
@@ -2344,8 +2375,10 @@ static void intel_psr_disable_locked(struct intel_dp *intel_dp)
if (!intel_dp->psr.enabled)
return;
- if (intel_dp->psr.panel_replay_enabled)
+ if (intel_dp->psr.panel_replay_enabled) {
+ intel_panel_replay_put_wakelock_locked(intel_dp);
drm_dbg_kms(display->drm, "Disabling Panel Replay\n");
+ }
else
drm_dbg_kms(display->drm, "Disabling PSR%s\n",
intel_dp->psr.sel_update_enabled ? "2" : "1");
@@ -4143,9 +4176,24 @@ void intel_psr_notify_vblank_enable_disable(struct intel_display *display,
struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
mutex_lock(&intel_dp->psr.lock);
+ intel_dp->psr.vblank_enabled = enable;
if (intel_dp->psr.panel_replay_enabled) {
+ /*
+ * wakelock handling for panel replay
+ * for older platform rely on intel_display_power_set_target_dc_state().
+ */
+ if (DISPLAY_VER(display) < 30) {
+ mutex_unlock(&intel_dp->psr.lock);
+ break;
+ }
+
+ if (enable)
+ intel_panel_replay_get_wakelock_locked(intel_dp);
+ else
+ intel_panel_replay_put_wakelock_locked(intel_dp);
+
mutex_unlock(&intel_dp->psr.lock);
- break;
+ return;
}
if (intel_dp->psr.enabled && intel_dp->psr.pkg_c_latency_used)
@@ -4154,7 +4202,6 @@ void intel_psr_notify_vblank_enable_disable(struct intel_display *display,
mutex_unlock(&intel_dp->psr.lock);
return;
}
-
/*
* NOTE: intel_display_power_set_target_dc_state is used
* only by PSR * code for DC3CO handling. DC3CO target
--
2.43.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [RFC PATCH] drm/i915/psr: Prevent DC entry during active vblank for Panel Replay
2026-04-28 12:39 [RFC PATCH] drm/i915/psr: Prevent DC entry during active vblank for Panel Replay Dibin Moolakadan Subrahmanian
@ 2026-04-28 12:56 ` Hogander, Jouni
2026-04-28 16:39 ` Dibin Moolakadan Subrahmanian
2026-04-28 14:37 ` ✗ CI.checkpatch: warning for " Patchwork
` (7 subsequent siblings)
8 siblings, 1 reply; 11+ messages in thread
From: Hogander, Jouni @ 2026-04-28 12:56 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Dibin Moolakadan Subrahmanian,
intel-gfx@lists.freedesktop.org
On Tue, 2026-04-28 at 18:09 +0530, Dibin Moolakadan Subrahmanian wrote:
> On PTL+ (display ver >= 30), hold the DMC wakelock while vblank is
> enabled for Panel Replay. Older platforms rely on
> intel_display_power_set_target_dc_state() for this.
>
> The wakelock is acquired/released at two places:
> 1) Dynamically when vblank is enabled/disabled via
> intel_psr_notify_vblank_enable_disable().
> 2) In the PSR enable/disable path.
>
> This handles the following ordering scenarios:
> 1) Panel Replay is enabled before vblank enable arrives.
> 2) Vblank enable arrives before Panel Replay is updated in
> intel_psr_post_plane_update().
As discussed offline I would check if we could just take the wakelock
when VBI is getting enabled.
BR,
Jouni Högander
> ---
> .../drm/i915/display/intel_display_types.h | 2 +
> drivers/gpu/drm/i915/display/intel_psr.c | 55
> +++++++++++++++++--
> 2 files changed, 53 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h
> b/drivers/gpu/drm/i915/display/intel_display_types.h
> index c81916761850..f386d6dba9e5 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> @@ -1775,6 +1775,8 @@ struct intel_psr {
> bool source_panel_replay_support;
> bool sink_panel_replay_support;
> bool panel_replay_enabled;
> + bool panel_replay_wakelock;
> + bool vblank_enabled;
> u32 dc3co_exitline;
> u32 dc3co_exit_delay;
> struct delayed_work dc3co_work;
> diff --git a/drivers/gpu/drm/i915/display/intel_psr.c
> b/drivers/gpu/drm/i915/display/intel_psr.c
> index 63c19958a9e3..82bc63054906 100644
> --- a/drivers/gpu/drm/i915/display/intel_psr.c
> +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> @@ -2192,6 +2192,34 @@ static bool psr_interrupt_error_check(struct
> intel_dp *intel_dp)
> return true;
> }
>
> +static void intel_panel_replay_get_wakelock_locked(struct intel_dp
> *intel_dp)
> +{
> + struct intel_display *display = to_intel_display(intel_dp);
> +
> + if (DISPLAY_VER(display) < 30)
> + return;
> +
> + if (intel_dp->psr.panel_replay_wakelock)
> + return;
> +
> + intel_dmc_wl_get_noreg(display);
> + intel_dp->psr.panel_replay_wakelock = true;
> +}
> +
> +static void intel_panel_replay_put_wakelock_locked(struct intel_dp
> *intel_dp)
> +{
> + struct intel_display *display = to_intel_display(intel_dp);
> +
> + if (DISPLAY_VER(display) < 30)
> + return;
> +
> + if (!intel_dp->psr.panel_replay_wakelock)
> + return;
> +
> + intel_dmc_wl_put_noreg(display);
> + intel_dp->psr.panel_replay_wakelock = false;
> +}
> +
> static void intel_psr_enable_locked(struct intel_dp *intel_dp,
> const struct intel_crtc_state
> *crtc_state)
> {
> @@ -2224,8 +2252,11 @@ static void intel_psr_enable_locked(struct
> intel_dp *intel_dp,
> if (!psr_interrupt_error_check(intel_dp))
> return;
>
> - if (intel_dp->psr.panel_replay_enabled)
> + if (intel_dp->psr.panel_replay_enabled) {
> + if (intel_dp->psr.vblank_enabled)
> + intel_panel_replay_get_wakelock_locked(intel
> _dp);
> drm_dbg_kms(display->drm, "Enabling Panel
> Replay\n");
> + }
> else
> drm_dbg_kms(display->drm, "Enabling PSR%s\n",
> intel_dp->psr.sel_update_enabled ? "2" :
> "1");
> @@ -2344,8 +2375,10 @@ static void intel_psr_disable_locked(struct
> intel_dp *intel_dp)
> if (!intel_dp->psr.enabled)
> return;
>
> - if (intel_dp->psr.panel_replay_enabled)
> + if (intel_dp->psr.panel_replay_enabled) {
> + intel_panel_replay_put_wakelock_locked(intel_dp);
> drm_dbg_kms(display->drm, "Disabling Panel
> Replay\n");
> + }
> else
> drm_dbg_kms(display->drm, "Disabling PSR%s\n",
> intel_dp->psr.sel_update_enabled ? "2" :
> "1");
> @@ -4143,9 +4176,24 @@ void
> intel_psr_notify_vblank_enable_disable(struct intel_display *display,
> struct intel_dp *intel_dp =
> enc_to_intel_dp(encoder);
>
> mutex_lock(&intel_dp->psr.lock);
> + intel_dp->psr.vblank_enabled = enable;
> if (intel_dp->psr.panel_replay_enabled) {
> + /*
> + * wakelock handling for panel replay
> + * for older platform rely on
> intel_display_power_set_target_dc_state().
> + */
> + if (DISPLAY_VER(display) < 30) {
> + mutex_unlock(&intel_dp->psr.lock);
> + break;
> + }
> +
> + if (enable)
> + intel_panel_replay_get_wakelock_lock
> ed(intel_dp);
> + else
> + intel_panel_replay_put_wakelock_lock
> ed(intel_dp);
> +
> mutex_unlock(&intel_dp->psr.lock);
> - break;
> + return;
> }
>
> if (intel_dp->psr.enabled && intel_dp-
> >psr.pkg_c_latency_used)
> @@ -4154,7 +4202,6 @@ void
> intel_psr_notify_vblank_enable_disable(struct intel_display *display,
> mutex_unlock(&intel_dp->psr.lock);
> return;
> }
> -
> /*
> * NOTE: intel_display_power_set_target_dc_state is used
> * only by PSR * code for DC3CO handling. DC3CO target
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ CI.checkpatch: warning for drm/i915/psr: Prevent DC entry during active vblank for Panel Replay
2026-04-28 12:39 [RFC PATCH] drm/i915/psr: Prevent DC entry during active vblank for Panel Replay Dibin Moolakadan Subrahmanian
2026-04-28 12:56 ` Hogander, Jouni
@ 2026-04-28 14:37 ` Patchwork
2026-04-28 14:39 ` ✓ CI.KUnit: success " Patchwork
` (6 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-04-28 14:37 UTC (permalink / raw)
To: Dibin Moolakadan Subrahmanian; +Cc: intel-xe
== Series Details ==
Series: drm/i915/psr: Prevent DC entry during active vblank for Panel Replay
URL : https://patchwork.freedesktop.org/series/165630/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
c8c12e558adaef7a4d125d83b6e1f8824bc13b82
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit bba6277deb5cbc47b31b306dcf78c87beaa0ba0b
Author: Dibin Moolakadan Subrahmanian <dibin.moolakadan.subrahmanian@intel.com>
Date: Tue Apr 28 18:09:51 2026 +0530
drm/i915/psr: Prevent DC entry during active vblank for Panel Replay
On PTL+ (display ver >= 30), hold the DMC wakelock while vblank is
enabled for Panel Replay. Older platforms rely on
intel_display_power_set_target_dc_state() for this.
The wakelock is acquired/released at two places:
1) Dynamically when vblank is enabled/disabled via
intel_psr_notify_vblank_enable_disable().
2) In the PSR enable/disable path.
This handles the following ordering scenarios:
1) Panel Replay is enabled before vblank enable arrives.
2) Vblank enable arrives before Panel Replay is updated in
intel_psr_post_plane_update().
+ /mt/dim checkpatch e066eb26712bca7174e694a358351c50a38661d6 drm-intel
bba6277deb5c drm/i915/psr: Prevent DC entry during active vblank for Panel Replay
-:131: ERROR:MISSING_SIGN_OFF: Missing Signed-off-by: line(s)
total: 1 errors, 0 warnings, 0 checks, 97 lines checked
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ CI.KUnit: success for drm/i915/psr: Prevent DC entry during active vblank for Panel Replay
2026-04-28 12:39 [RFC PATCH] drm/i915/psr: Prevent DC entry during active vblank for Panel Replay Dibin Moolakadan Subrahmanian
2026-04-28 12:56 ` Hogander, Jouni
2026-04-28 14:37 ` ✗ CI.checkpatch: warning for " Patchwork
@ 2026-04-28 14:39 ` Patchwork
2026-04-28 15:33 ` ✓ Xe.CI.BAT: " Patchwork
` (5 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-04-28 14:39 UTC (permalink / raw)
To: Dibin Moolakadan Subrahmanian; +Cc: intel-xe
== Series Details ==
Series: drm/i915/psr: Prevent DC entry during active vblank for Panel Replay
URL : https://patchwork.freedesktop.org/series/165630/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[14:37:57] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:38:02] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[14:38:33] Starting KUnit Kernel (1/1)...
[14:38:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:38:33] ================== guc_buf (11 subtests) ===================
[14:38:33] [PASSED] test_smallest
[14:38:33] [PASSED] test_largest
[14:38:33] [PASSED] test_granular
[14:38:33] [PASSED] test_unique
[14:38:33] [PASSED] test_overlap
[14:38:33] [PASSED] test_reusable
[14:38:33] [PASSED] test_too_big
[14:38:33] [PASSED] test_flush
[14:38:33] [PASSED] test_lookup
[14:38:33] [PASSED] test_data
[14:38:33] [PASSED] test_class
[14:38:33] ===================== [PASSED] guc_buf =====================
[14:38:33] =================== guc_dbm (7 subtests) ===================
[14:38:33] [PASSED] test_empty
[14:38:33] [PASSED] test_default
[14:38:33] ======================== test_size ========================
[14:38:33] [PASSED] 4
[14:38:33] [PASSED] 8
[14:38:33] [PASSED] 32
[14:38:33] [PASSED] 256
[14:38:33] ==================== [PASSED] test_size ====================
[14:38:33] ======================= test_reuse ========================
[14:38:33] [PASSED] 4
[14:38:33] [PASSED] 8
[14:38:33] [PASSED] 32
[14:38:33] [PASSED] 256
[14:38:33] =================== [PASSED] test_reuse ====================
[14:38:33] =================== test_range_overlap ====================
[14:38:33] [PASSED] 4
[14:38:33] [PASSED] 8
[14:38:33] [PASSED] 32
[14:38:33] [PASSED] 256
[14:38:33] =============== [PASSED] test_range_overlap ================
[14:38:33] =================== test_range_compact ====================
[14:38:33] [PASSED] 4
[14:38:33] [PASSED] 8
[14:38:33] [PASSED] 32
[14:38:33] [PASSED] 256
[14:38:33] =============== [PASSED] test_range_compact ================
[14:38:33] ==================== test_range_spare =====================
[14:38:33] [PASSED] 4
[14:38:33] [PASSED] 8
[14:38:33] [PASSED] 32
[14:38:33] [PASSED] 256
[14:38:33] ================ [PASSED] test_range_spare =================
[14:38:33] ===================== [PASSED] guc_dbm =====================
[14:38:33] =================== guc_idm (6 subtests) ===================
[14:38:33] [PASSED] bad_init
[14:38:33] [PASSED] no_init
[14:38:33] [PASSED] init_fini
[14:38:33] [PASSED] check_used
[14:38:33] [PASSED] check_quota
[14:38:33] [PASSED] check_all
[14:38:33] ===================== [PASSED] guc_idm =====================
[14:38:33] ================== no_relay (3 subtests) ===================
[14:38:33] [PASSED] xe_drops_guc2pf_if_not_ready
[14:38:33] [PASSED] xe_drops_guc2vf_if_not_ready
[14:38:33] [PASSED] xe_rejects_send_if_not_ready
[14:38:33] ==================== [PASSED] no_relay =====================
[14:38:33] ================== pf_relay (14 subtests) ==================
[14:38:33] [PASSED] pf_rejects_guc2pf_too_short
[14:38:33] [PASSED] pf_rejects_guc2pf_too_long
[14:38:33] [PASSED] pf_rejects_guc2pf_no_payload
[14:38:33] [PASSED] pf_fails_no_payload
[14:38:33] [PASSED] pf_fails_bad_origin
[14:38:33] [PASSED] pf_fails_bad_type
[14:38:33] [PASSED] pf_txn_reports_error
[14:38:33] [PASSED] pf_txn_sends_pf2guc
[14:38:33] [PASSED] pf_sends_pf2guc
[14:38:33] [SKIPPED] pf_loopback_nop
[14:38:33] [SKIPPED] pf_loopback_echo
[14:38:33] [SKIPPED] pf_loopback_fail
[14:38:33] [SKIPPED] pf_loopback_busy
[14:38:33] [SKIPPED] pf_loopback_retry
[14:38:33] ==================== [PASSED] pf_relay =====================
[14:38:33] ================== vf_relay (3 subtests) ===================
[14:38:33] [PASSED] vf_rejects_guc2vf_too_short
[14:38:33] [PASSED] vf_rejects_guc2vf_too_long
[14:38:33] [PASSED] vf_rejects_guc2vf_no_payload
[14:38:33] ==================== [PASSED] vf_relay =====================
[14:38:33] ================ pf_gt_config (9 subtests) =================
[14:38:33] [PASSED] fair_contexts_1vf
[14:38:33] [PASSED] fair_doorbells_1vf
[14:38:33] [PASSED] fair_ggtt_1vf
[14:38:33] ====================== fair_vram_1vf ======================
[14:38:33] [PASSED] 3.50 GiB
[14:38:33] [PASSED] 11.5 GiB
[14:38:33] [PASSED] 15.5 GiB
[14:38:33] [PASSED] 31.5 GiB
[14:38:33] [PASSED] 63.5 GiB
[14:38:33] [PASSED] 1.91 GiB
[14:38:33] ================== [PASSED] fair_vram_1vf ==================
[14:38:33] ================ fair_vram_1vf_admin_only =================
[14:38:33] [PASSED] 3.50 GiB
[14:38:33] [PASSED] 11.5 GiB
[14:38:33] [PASSED] 15.5 GiB
[14:38:33] [PASSED] 31.5 GiB
[14:38:33] [PASSED] 63.5 GiB
[14:38:33] [PASSED] 1.91 GiB
[14:38:33] ============ [PASSED] fair_vram_1vf_admin_only =============
[14:38:33] ====================== fair_contexts ======================
[14:38:33] [PASSED] 1 VF
[14:38:33] [PASSED] 2 VFs
[14:38:33] [PASSED] 3 VFs
[14:38:33] [PASSED] 4 VFs
[14:38:33] [PASSED] 5 VFs
[14:38:33] [PASSED] 6 VFs
[14:38:33] [PASSED] 7 VFs
[14:38:33] [PASSED] 8 VFs
[14:38:33] [PASSED] 9 VFs
[14:38:33] [PASSED] 10 VFs
[14:38:33] [PASSED] 11 VFs
[14:38:33] [PASSED] 12 VFs
[14:38:33] [PASSED] 13 VFs
[14:38:33] [PASSED] 14 VFs
[14:38:33] [PASSED] 15 VFs
[14:38:33] [PASSED] 16 VFs
[14:38:33] [PASSED] 17 VFs
[14:38:33] [PASSED] 18 VFs
[14:38:33] [PASSED] 19 VFs
[14:38:33] [PASSED] 20 VFs
[14:38:33] [PASSED] 21 VFs
[14:38:33] [PASSED] 22 VFs
[14:38:33] [PASSED] 23 VFs
[14:38:33] [PASSED] 24 VFs
[14:38:33] [PASSED] 25 VFs
[14:38:33] [PASSED] 26 VFs
[14:38:33] [PASSED] 27 VFs
[14:38:33] [PASSED] 28 VFs
[14:38:33] [PASSED] 29 VFs
[14:38:33] [PASSED] 30 VFs
[14:38:33] [PASSED] 31 VFs
[14:38:33] [PASSED] 32 VFs
[14:38:33] [PASSED] 33 VFs
[14:38:33] [PASSED] 34 VFs
[14:38:33] [PASSED] 35 VFs
[14:38:33] [PASSED] 36 VFs
[14:38:33] [PASSED] 37 VFs
[14:38:33] [PASSED] 38 VFs
[14:38:33] [PASSED] 39 VFs
[14:38:33] [PASSED] 40 VFs
[14:38:33] [PASSED] 41 VFs
[14:38:33] [PASSED] 42 VFs
[14:38:33] [PASSED] 43 VFs
[14:38:33] [PASSED] 44 VFs
[14:38:33] [PASSED] 45 VFs
[14:38:33] [PASSED] 46 VFs
[14:38:33] [PASSED] 47 VFs
[14:38:33] [PASSED] 48 VFs
[14:38:33] [PASSED] 49 VFs
[14:38:33] [PASSED] 50 VFs
[14:38:33] [PASSED] 51 VFs
[14:38:33] [PASSED] 52 VFs
[14:38:33] [PASSED] 53 VFs
[14:38:33] [PASSED] 54 VFs
[14:38:33] [PASSED] 55 VFs
[14:38:33] [PASSED] 56 VFs
[14:38:33] [PASSED] 57 VFs
[14:38:33] [PASSED] 58 VFs
[14:38:33] [PASSED] 59 VFs
[14:38:33] [PASSED] 60 VFs
[14:38:33] [PASSED] 61 VFs
[14:38:33] [PASSED] 62 VFs
[14:38:33] [PASSED] 63 VFs
[14:38:33] ================== [PASSED] fair_contexts ==================
[14:38:33] ===================== fair_doorbells ======================
[14:38:33] [PASSED] 1 VF
[14:38:33] [PASSED] 2 VFs
[14:38:33] [PASSED] 3 VFs
[14:38:33] [PASSED] 4 VFs
[14:38:33] [PASSED] 5 VFs
[14:38:33] [PASSED] 6 VFs
[14:38:33] [PASSED] 7 VFs
[14:38:33] [PASSED] 8 VFs
[14:38:33] [PASSED] 9 VFs
[14:38:33] [PASSED] 10 VFs
[14:38:33] [PASSED] 11 VFs
[14:38:33] [PASSED] 12 VFs
[14:38:33] [PASSED] 13 VFs
[14:38:33] [PASSED] 14 VFs
[14:38:33] [PASSED] 15 VFs
[14:38:33] [PASSED] 16 VFs
[14:38:33] [PASSED] 17 VFs
[14:38:33] [PASSED] 18 VFs
[14:38:33] [PASSED] 19 VFs
[14:38:33] [PASSED] 20 VFs
[14:38:33] [PASSED] 21 VFs
[14:38:33] [PASSED] 22 VFs
[14:38:33] [PASSED] 23 VFs
[14:38:33] [PASSED] 24 VFs
[14:38:33] [PASSED] 25 VFs
[14:38:33] [PASSED] 26 VFs
[14:38:33] [PASSED] 27 VFs
[14:38:33] [PASSED] 28 VFs
[14:38:33] [PASSED] 29 VFs
[14:38:33] [PASSED] 30 VFs
[14:38:33] [PASSED] 31 VFs
[14:38:33] [PASSED] 32 VFs
[14:38:33] [PASSED] 33 VFs
[14:38:33] [PASSED] 34 VFs
[14:38:33] [PASSED] 35 VFs
[14:38:33] [PASSED] 36 VFs
[14:38:33] [PASSED] 37 VFs
[14:38:33] [PASSED] 38 VFs
[14:38:33] [PASSED] 39 VFs
[14:38:33] [PASSED] 40 VFs
[14:38:33] [PASSED] 41 VFs
[14:38:33] [PASSED] 42 VFs
[14:38:33] [PASSED] 43 VFs
[14:38:33] [PASSED] 44 VFs
[14:38:33] [PASSED] 45 VFs
[14:38:33] [PASSED] 46 VFs
[14:38:33] [PASSED] 47 VFs
[14:38:33] [PASSED] 48 VFs
[14:38:33] [PASSED] 49 VFs
[14:38:33] [PASSED] 50 VFs
[14:38:33] [PASSED] 51 VFs
[14:38:33] [PASSED] 52 VFs
[14:38:33] [PASSED] 53 VFs
[14:38:33] [PASSED] 54 VFs
[14:38:33] [PASSED] 55 VFs
[14:38:33] [PASSED] 56 VFs
[14:38:33] [PASSED] 57 VFs
[14:38:33] [PASSED] 58 VFs
[14:38:33] [PASSED] 59 VFs
[14:38:33] [PASSED] 60 VFs
[14:38:33] [PASSED] 61 VFs
[14:38:33] [PASSED] 62 VFs
[14:38:33] [PASSED] 63 VFs
[14:38:33] ================= [PASSED] fair_doorbells ==================
[14:38:33] ======================== fair_ggtt ========================
[14:38:33] [PASSED] 1 VF
[14:38:33] [PASSED] 2 VFs
[14:38:33] [PASSED] 3 VFs
[14:38:33] [PASSED] 4 VFs
[14:38:33] [PASSED] 5 VFs
[14:38:33] [PASSED] 6 VFs
[14:38:33] [PASSED] 7 VFs
[14:38:33] [PASSED] 8 VFs
[14:38:33] [PASSED] 9 VFs
[14:38:33] [PASSED] 10 VFs
[14:38:33] [PASSED] 11 VFs
[14:38:33] [PASSED] 12 VFs
[14:38:33] [PASSED] 13 VFs
[14:38:33] [PASSED] 14 VFs
[14:38:33] [PASSED] 15 VFs
[14:38:33] [PASSED] 16 VFs
[14:38:33] [PASSED] 17 VFs
[14:38:33] [PASSED] 18 VFs
[14:38:33] [PASSED] 19 VFs
[14:38:33] [PASSED] 20 VFs
[14:38:33] [PASSED] 21 VFs
[14:38:33] [PASSED] 22 VFs
[14:38:33] [PASSED] 23 VFs
[14:38:33] [PASSED] 24 VFs
[14:38:33] [PASSED] 25 VFs
[14:38:33] [PASSED] 26 VFs
[14:38:33] [PASSED] 27 VFs
[14:38:33] [PASSED] 28 VFs
[14:38:33] [PASSED] 29 VFs
[14:38:33] [PASSED] 30 VFs
[14:38:33] [PASSED] 31 VFs
[14:38:33] [PASSED] 32 VFs
[14:38:33] [PASSED] 33 VFs
[14:38:33] [PASSED] 34 VFs
[14:38:33] [PASSED] 35 VFs
[14:38:33] [PASSED] 36 VFs
[14:38:33] [PASSED] 37 VFs
[14:38:33] [PASSED] 38 VFs
[14:38:33] [PASSED] 39 VFs
[14:38:33] [PASSED] 40 VFs
[14:38:33] [PASSED] 41 VFs
[14:38:33] [PASSED] 42 VFs
[14:38:33] [PASSED] 43 VFs
[14:38:33] [PASSED] 44 VFs
[14:38:33] [PASSED] 45 VFs
[14:38:33] [PASSED] 46 VFs
[14:38:33] [PASSED] 47 VFs
[14:38:33] [PASSED] 48 VFs
[14:38:33] [PASSED] 49 VFs
[14:38:33] [PASSED] 50 VFs
[14:38:33] [PASSED] 51 VFs
[14:38:33] [PASSED] 52 VFs
[14:38:33] [PASSED] 53 VFs
[14:38:33] [PASSED] 54 VFs
[14:38:33] [PASSED] 55 VFs
[14:38:33] [PASSED] 56 VFs
[14:38:33] [PASSED] 57 VFs
[14:38:33] [PASSED] 58 VFs
[14:38:33] [PASSED] 59 VFs
[14:38:33] [PASSED] 60 VFs
[14:38:33] [PASSED] 61 VFs
[14:38:33] [PASSED] 62 VFs
[14:38:33] [PASSED] 63 VFs
[14:38:33] ==================== [PASSED] fair_ggtt ====================
[14:38:33] ======================== fair_vram ========================
[14:38:33] [PASSED] 1 VF
[14:38:33] [PASSED] 2 VFs
[14:38:33] [PASSED] 3 VFs
[14:38:33] [PASSED] 4 VFs
[14:38:33] [PASSED] 5 VFs
[14:38:33] [PASSED] 6 VFs
[14:38:33] [PASSED] 7 VFs
[14:38:33] [PASSED] 8 VFs
[14:38:33] [PASSED] 9 VFs
[14:38:33] [PASSED] 10 VFs
[14:38:33] [PASSED] 11 VFs
[14:38:33] [PASSED] 12 VFs
[14:38:33] [PASSED] 13 VFs
[14:38:33] [PASSED] 14 VFs
[14:38:33] [PASSED] 15 VFs
[14:38:33] [PASSED] 16 VFs
[14:38:33] [PASSED] 17 VFs
[14:38:33] [PASSED] 18 VFs
[14:38:33] [PASSED] 19 VFs
[14:38:33] [PASSED] 20 VFs
[14:38:33] [PASSED] 21 VFs
[14:38:33] [PASSED] 22 VFs
[14:38:33] [PASSED] 23 VFs
[14:38:33] [PASSED] 24 VFs
[14:38:33] [PASSED] 25 VFs
[14:38:33] [PASSED] 26 VFs
[14:38:33] [PASSED] 27 VFs
[14:38:33] [PASSED] 28 VFs
[14:38:33] [PASSED] 29 VFs
[14:38:33] [PASSED] 30 VFs
[14:38:33] [PASSED] 31 VFs
[14:38:33] [PASSED] 32 VFs
[14:38:33] [PASSED] 33 VFs
[14:38:33] [PASSED] 34 VFs
[14:38:33] [PASSED] 35 VFs
[14:38:33] [PASSED] 36 VFs
[14:38:33] [PASSED] 37 VFs
[14:38:33] [PASSED] 38 VFs
[14:38:33] [PASSED] 39 VFs
[14:38:33] [PASSED] 40 VFs
[14:38:33] [PASSED] 41 VFs
[14:38:33] [PASSED] 42 VFs
[14:38:33] [PASSED] 43 VFs
[14:38:33] [PASSED] 44 VFs
[14:38:33] [PASSED] 45 VFs
[14:38:33] [PASSED] 46 VFs
[14:38:33] [PASSED] 47 VFs
[14:38:33] [PASSED] 48 VFs
[14:38:33] [PASSED] 49 VFs
[14:38:33] [PASSED] 50 VFs
[14:38:33] [PASSED] 51 VFs
[14:38:33] [PASSED] 52 VFs
[14:38:33] [PASSED] 53 VFs
[14:38:33] [PASSED] 54 VFs
[14:38:33] [PASSED] 55 VFs
[14:38:33] [PASSED] 56 VFs
[14:38:33] [PASSED] 57 VFs
[14:38:33] [PASSED] 58 VFs
[14:38:33] [PASSED] 59 VFs
[14:38:33] [PASSED] 60 VFs
[14:38:33] [PASSED] 61 VFs
[14:38:33] [PASSED] 62 VFs
[14:38:33] [PASSED] 63 VFs
[14:38:33] ==================== [PASSED] fair_vram ====================
[14:38:33] ================== [PASSED] pf_gt_config ===================
[14:38:33] ===================== lmtt (1 subtest) =====================
[14:38:33] ======================== test_ops =========================
[14:38:33] [PASSED] 2-level
[14:38:33] [PASSED] multi-level
[14:38:33] ==================== [PASSED] test_ops =====================
[14:38:33] ====================== [PASSED] lmtt =======================
[14:38:33] ================= pf_service (11 subtests) =================
[14:38:33] [PASSED] pf_negotiate_any
[14:38:33] [PASSED] pf_negotiate_base_match
[14:38:33] [PASSED] pf_negotiate_base_newer
[14:38:33] [PASSED] pf_negotiate_base_next
[14:38:33] [SKIPPED] pf_negotiate_base_older
[14:38:33] [PASSED] pf_negotiate_base_prev
[14:38:33] [PASSED] pf_negotiate_latest_match
[14:38:33] [PASSED] pf_negotiate_latest_newer
[14:38:33] [PASSED] pf_negotiate_latest_next
[14:38:33] [SKIPPED] pf_negotiate_latest_older
[14:38:33] [SKIPPED] pf_negotiate_latest_prev
[14:38:33] =================== [PASSED] pf_service ====================
[14:38:33] ================= xe_guc_g2g (2 subtests) ==================
[14:38:33] ============== xe_live_guc_g2g_kunit_default ==============
[14:38:33] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[14:38:33] ============== xe_live_guc_g2g_kunit_allmem ===============
[14:38:33] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[14:38:33] =================== [SKIPPED] xe_guc_g2g ===================
[14:38:33] =================== xe_mocs (2 subtests) ===================
[14:38:33] ================ xe_live_mocs_kernel_kunit ================
[14:38:33] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[14:38:33] ================ xe_live_mocs_reset_kunit =================
[14:38:33] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[14:38:33] ==================== [SKIPPED] xe_mocs =====================
[14:38:33] ================= xe_migrate (2 subtests) ==================
[14:38:33] ================= xe_migrate_sanity_kunit =================
[14:38:33] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[14:38:33] ================== xe_validate_ccs_kunit ==================
[14:38:33] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[14:38:33] =================== [SKIPPED] xe_migrate ===================
[14:38:33] ================== xe_dma_buf (1 subtest) ==================
[14:38:33] ==================== xe_dma_buf_kunit =====================
[14:38:33] ================ [SKIPPED] xe_dma_buf_kunit ================
[14:38:33] =================== [SKIPPED] xe_dma_buf ===================
[14:38:33] ================= xe_bo_shrink (1 subtest) =================
[14:38:33] =================== xe_bo_shrink_kunit ====================
[14:38:33] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[14:38:33] ================== [SKIPPED] xe_bo_shrink ==================
[14:38:33] ==================== xe_bo (2 subtests) ====================
[14:38:33] ================== xe_ccs_migrate_kunit ===================
[14:38:33] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[14:38:33] ==================== xe_bo_evict_kunit ====================
[14:38:33] =============== [SKIPPED] xe_bo_evict_kunit ================
[14:38:33] ===================== [SKIPPED] xe_bo ======================
[14:38:33] ==================== args (13 subtests) ====================
[14:38:33] [PASSED] count_args_test
[14:38:33] [PASSED] call_args_example
[14:38:33] [PASSED] call_args_test
[14:38:33] [PASSED] drop_first_arg_example
[14:38:33] [PASSED] drop_first_arg_test
[14:38:33] [PASSED] first_arg_example
[14:38:33] [PASSED] first_arg_test
[14:38:33] [PASSED] last_arg_example
[14:38:33] [PASSED] last_arg_test
[14:38:33] [PASSED] pick_arg_example
[14:38:33] [PASSED] if_args_example
[14:38:33] [PASSED] if_args_test
[14:38:33] [PASSED] sep_comma_example
[14:38:33] ====================== [PASSED] args =======================
[14:38:34] =================== xe_pci (3 subtests) ====================
[14:38:34] ==================== check_graphics_ip ====================
[14:38:34] [PASSED] 12.00 Xe_LP
[14:38:34] [PASSED] 12.10 Xe_LP+
[14:38:34] [PASSED] 12.55 Xe_HPG
[14:38:34] [PASSED] 12.60 Xe_HPC
[14:38:34] [PASSED] 12.70 Xe_LPG
[14:38:34] [PASSED] 12.71 Xe_LPG
[14:38:34] [PASSED] 12.74 Xe_LPG+
[14:38:34] [PASSED] 20.01 Xe2_HPG
[14:38:34] [PASSED] 20.02 Xe2_HPG
[14:38:34] [PASSED] 20.04 Xe2_LPG
[14:38:34] [PASSED] 30.00 Xe3_LPG
[14:38:34] [PASSED] 30.01 Xe3_LPG
[14:38:34] [PASSED] 30.03 Xe3_LPG
[14:38:34] [PASSED] 30.04 Xe3_LPG
[14:38:34] [PASSED] 30.05 Xe3_LPG
[14:38:34] [PASSED] 35.10 Xe3p_LPG
[14:38:34] [PASSED] 35.11 Xe3p_XPC
[14:38:34] ================ [PASSED] check_graphics_ip ================
[14:38:34] ===================== check_media_ip ======================
[14:38:34] [PASSED] 12.00 Xe_M
[14:38:34] [PASSED] 12.55 Xe_HPM
[14:38:34] [PASSED] 13.00 Xe_LPM+
[14:38:34] [PASSED] 13.01 Xe2_HPM
[14:38:34] [PASSED] 20.00 Xe2_LPM
[14:38:34] [PASSED] 30.00 Xe3_LPM
[14:38:34] [PASSED] 30.02 Xe3_LPM
[14:38:34] [PASSED] 35.00 Xe3p_LPM
[14:38:34] [PASSED] 35.03 Xe3p_HPM
[14:38:34] ================= [PASSED] check_media_ip ==================
[14:38:34] =================== check_platform_desc ===================
[14:38:34] [PASSED] 0x9A60 (TIGERLAKE)
[14:38:34] [PASSED] 0x9A68 (TIGERLAKE)
[14:38:34] [PASSED] 0x9A70 (TIGERLAKE)
[14:38:34] [PASSED] 0x9A40 (TIGERLAKE)
[14:38:34] [PASSED] 0x9A49 (TIGERLAKE)
[14:38:34] [PASSED] 0x9A59 (TIGERLAKE)
[14:38:34] [PASSED] 0x9A78 (TIGERLAKE)
[14:38:34] [PASSED] 0x9AC0 (TIGERLAKE)
[14:38:34] [PASSED] 0x9AC9 (TIGERLAKE)
[14:38:34] [PASSED] 0x9AD9 (TIGERLAKE)
[14:38:34] [PASSED] 0x9AF8 (TIGERLAKE)
[14:38:34] [PASSED] 0x4C80 (ROCKETLAKE)
[14:38:34] [PASSED] 0x4C8A (ROCKETLAKE)
[14:38:34] [PASSED] 0x4C8B (ROCKETLAKE)
[14:38:34] [PASSED] 0x4C8C (ROCKETLAKE)
[14:38:34] [PASSED] 0x4C90 (ROCKETLAKE)
[14:38:34] [PASSED] 0x4C9A (ROCKETLAKE)
[14:38:34] [PASSED] 0x4680 (ALDERLAKE_S)
[14:38:34] [PASSED] 0x4682 (ALDERLAKE_S)
[14:38:34] [PASSED] 0x4688 (ALDERLAKE_S)
[14:38:34] [PASSED] 0x468A (ALDERLAKE_S)
[14:38:34] [PASSED] 0x468B (ALDERLAKE_S)
[14:38:34] [PASSED] 0x4690 (ALDERLAKE_S)
[14:38:34] [PASSED] 0x4692 (ALDERLAKE_S)
[14:38:34] [PASSED] 0x4693 (ALDERLAKE_S)
[14:38:34] [PASSED] 0x46A0 (ALDERLAKE_P)
[14:38:34] [PASSED] 0x46A1 (ALDERLAKE_P)
[14:38:34] [PASSED] 0x46A2 (ALDERLAKE_P)
[14:38:34] [PASSED] 0x46A3 (ALDERLAKE_P)
[14:38:34] [PASSED] 0x46A6 (ALDERLAKE_P)
[14:38:34] [PASSED] 0x46A8 (ALDERLAKE_P)
[14:38:34] [PASSED] 0x46AA (ALDERLAKE_P)
[14:38:34] [PASSED] 0x462A (ALDERLAKE_P)
[14:38:34] [PASSED] 0x4626 (ALDERLAKE_P)
[14:38:34] [PASSED] 0x4628 (ALDERLAKE_P)
[14:38:34] [PASSED] 0x46B0 (ALDERLAKE_P)
[14:38:34] [PASSED] 0x46B1 (ALDERLAKE_P)
[14:38:34] [PASSED] 0x46B2 (ALDERLAKE_P)
[14:38:34] [PASSED] 0x46B3 (ALDERLAKE_P)
[14:38:34] [PASSED] 0x46C0 (ALDERLAKE_P)
[14:38:34] [PASSED] 0x46C1 (ALDERLAKE_P)
[14:38:34] [PASSED] 0x46C2 (ALDERLAKE_P)
[14:38:34] [PASSED] 0x46C3 (ALDERLAKE_P)
[14:38:34] [PASSED] 0x46D0 (ALDERLAKE_N)
[14:38:34] [PASSED] 0x46D1 (ALDERLAKE_N)
[14:38:34] [PASSED] 0x46D2 (ALDERLAKE_N)
[14:38:34] [PASSED] 0x46D3 (ALDERLAKE_N)
[14:38:34] [PASSED] 0x46D4 (ALDERLAKE_N)
[14:38:34] [PASSED] 0xA721 (ALDERLAKE_P)
[14:38:34] [PASSED] 0xA7A1 (ALDERLAKE_P)
[14:38:34] [PASSED] 0xA7A9 (ALDERLAKE_P)
[14:38:34] [PASSED] 0xA7AC (ALDERLAKE_P)
[14:38:34] [PASSED] 0xA7AD (ALDERLAKE_P)
[14:38:34] [PASSED] 0xA720 (ALDERLAKE_P)
[14:38:34] [PASSED] 0xA7A0 (ALDERLAKE_P)
[14:38:34] [PASSED] 0xA7A8 (ALDERLAKE_P)
[14:38:34] [PASSED] 0xA7AA (ALDERLAKE_P)
[14:38:34] [PASSED] 0xA7AB (ALDERLAKE_P)
[14:38:34] [PASSED] 0xA780 (ALDERLAKE_S)
[14:38:34] [PASSED] 0xA781 (ALDERLAKE_S)
[14:38:34] [PASSED] 0xA782 (ALDERLAKE_S)
[14:38:34] [PASSED] 0xA783 (ALDERLAKE_S)
[14:38:34] [PASSED] 0xA788 (ALDERLAKE_S)
[14:38:34] [PASSED] 0xA789 (ALDERLAKE_S)
[14:38:34] [PASSED] 0xA78A (ALDERLAKE_S)
[14:38:34] [PASSED] 0xA78B (ALDERLAKE_S)
[14:38:34] [PASSED] 0x4905 (DG1)
[14:38:34] [PASSED] 0x4906 (DG1)
[14:38:34] [PASSED] 0x4907 (DG1)
[14:38:34] [PASSED] 0x4908 (DG1)
[14:38:34] [PASSED] 0x4909 (DG1)
[14:38:34] [PASSED] 0x56C0 (DG2)
[14:38:34] [PASSED] 0x56C2 (DG2)
[14:38:34] [PASSED] 0x56C1 (DG2)
[14:38:34] [PASSED] 0x7D51 (METEORLAKE)
[14:38:34] [PASSED] 0x7DD1 (METEORLAKE)
[14:38:34] [PASSED] 0x7D41 (METEORLAKE)
[14:38:34] [PASSED] 0x7D67 (METEORLAKE)
[14:38:34] [PASSED] 0xB640 (METEORLAKE)
[14:38:34] [PASSED] 0x56A0 (DG2)
[14:38:34] [PASSED] 0x56A1 (DG2)
[14:38:34] [PASSED] 0x56A2 (DG2)
[14:38:34] [PASSED] 0x56BE (DG2)
[14:38:34] [PASSED] 0x56BF (DG2)
[14:38:34] [PASSED] 0x5690 (DG2)
[14:38:34] [PASSED] 0x5691 (DG2)
[14:38:34] [PASSED] 0x5692 (DG2)
[14:38:34] [PASSED] 0x56A5 (DG2)
[14:38:34] [PASSED] 0x56A6 (DG2)
[14:38:34] [PASSED] 0x56B0 (DG2)
[14:38:34] [PASSED] 0x56B1 (DG2)
[14:38:34] [PASSED] 0x56BA (DG2)
[14:38:34] [PASSED] 0x56BB (DG2)
[14:38:34] [PASSED] 0x56BC (DG2)
[14:38:34] [PASSED] 0x56BD (DG2)
[14:38:34] [PASSED] 0x5693 (DG2)
[14:38:34] [PASSED] 0x5694 (DG2)
[14:38:34] [PASSED] 0x5695 (DG2)
[14:38:34] [PASSED] 0x56A3 (DG2)
[14:38:34] [PASSED] 0x56A4 (DG2)
[14:38:34] [PASSED] 0x56B2 (DG2)
[14:38:34] [PASSED] 0x56B3 (DG2)
[14:38:34] [PASSED] 0x5696 (DG2)
[14:38:34] [PASSED] 0x5697 (DG2)
[14:38:34] [PASSED] 0xB69 (PVC)
[14:38:34] [PASSED] 0xB6E (PVC)
[14:38:34] [PASSED] 0xBD4 (PVC)
[14:38:34] [PASSED] 0xBD5 (PVC)
[14:38:34] [PASSED] 0xBD6 (PVC)
[14:38:34] [PASSED] 0xBD7 (PVC)
[14:38:34] [PASSED] 0xBD8 (PVC)
[14:38:34] [PASSED] 0xBD9 (PVC)
[14:38:34] [PASSED] 0xBDA (PVC)
[14:38:34] [PASSED] 0xBDB (PVC)
[14:38:34] [PASSED] 0xBE0 (PVC)
[14:38:34] [PASSED] 0xBE1 (PVC)
[14:38:34] [PASSED] 0xBE5 (PVC)
[14:38:34] [PASSED] 0x7D40 (METEORLAKE)
[14:38:34] [PASSED] 0x7D45 (METEORLAKE)
[14:38:34] [PASSED] 0x7D55 (METEORLAKE)
[14:38:34] [PASSED] 0x7D60 (METEORLAKE)
[14:38:34] [PASSED] 0x7DD5 (METEORLAKE)
[14:38:34] [PASSED] 0x6420 (LUNARLAKE)
[14:38:34] [PASSED] 0x64A0 (LUNARLAKE)
[14:38:34] [PASSED] 0x64B0 (LUNARLAKE)
[14:38:34] [PASSED] 0xE202 (BATTLEMAGE)
[14:38:34] [PASSED] 0xE209 (BATTLEMAGE)
[14:38:34] [PASSED] 0xE20B (BATTLEMAGE)
[14:38:34] [PASSED] 0xE20C (BATTLEMAGE)
[14:38:34] [PASSED] 0xE20D (BATTLEMAGE)
[14:38:34] [PASSED] 0xE210 (BATTLEMAGE)
[14:38:34] [PASSED] 0xE211 (BATTLEMAGE)
[14:38:34] [PASSED] 0xE212 (BATTLEMAGE)
[14:38:34] [PASSED] 0xE216 (BATTLEMAGE)
[14:38:34] [PASSED] 0xE220 (BATTLEMAGE)
[14:38:34] [PASSED] 0xE221 (BATTLEMAGE)
[14:38:34] [PASSED] 0xE222 (BATTLEMAGE)
[14:38:34] [PASSED] 0xE223 (BATTLEMAGE)
[14:38:34] [PASSED] 0xB080 (PANTHERLAKE)
[14:38:34] [PASSED] 0xB081 (PANTHERLAKE)
[14:38:34] [PASSED] 0xB082 (PANTHERLAKE)
[14:38:34] [PASSED] 0xB083 (PANTHERLAKE)
[14:38:34] [PASSED] 0xB084 (PANTHERLAKE)
[14:38:34] [PASSED] 0xB085 (PANTHERLAKE)
[14:38:34] [PASSED] 0xB086 (PANTHERLAKE)
[14:38:34] [PASSED] 0xB087 (PANTHERLAKE)
[14:38:34] [PASSED] 0xB08F (PANTHERLAKE)
[14:38:34] [PASSED] 0xB090 (PANTHERLAKE)
[14:38:34] [PASSED] 0xB0A0 (PANTHERLAKE)
[14:38:34] [PASSED] 0xB0B0 (PANTHERLAKE)
[14:38:34] [PASSED] 0xFD80 (PANTHERLAKE)
[14:38:34] [PASSED] 0xFD81 (PANTHERLAKE)
[14:38:34] [PASSED] 0xD740 (NOVALAKE_S)
[14:38:34] [PASSED] 0xD741 (NOVALAKE_S)
[14:38:34] [PASSED] 0xD742 (NOVALAKE_S)
[14:38:34] [PASSED] 0xD743 (NOVALAKE_S)
[14:38:34] [PASSED] 0xD744 (NOVALAKE_S)
[14:38:34] [PASSED] 0xD745 (NOVALAKE_S)
[14:38:34] [PASSED] 0x674C (CRESCENTISLAND)
[14:38:34] [PASSED] 0xD750 (NOVALAKE_P)
[14:38:34] [PASSED] 0xD751 (NOVALAKE_P)
[14:38:34] [PASSED] 0xD752 (NOVALAKE_P)
[14:38:34] [PASSED] 0xD753 (NOVALAKE_P)
[14:38:34] [PASSED] 0xD754 (NOVALAKE_P)
[14:38:34] [PASSED] 0xD755 (NOVALAKE_P)
[14:38:34] [PASSED] 0xD756 (NOVALAKE_P)
[14:38:34] [PASSED] 0xD757 (NOVALAKE_P)
[14:38:34] [PASSED] 0xD75F (NOVALAKE_P)
[14:38:34] =============== [PASSED] check_platform_desc ===============
[14:38:34] ===================== [PASSED] xe_pci ======================
[14:38:34] =================== xe_rtp (2 subtests) ====================
[14:38:34] =============== xe_rtp_process_to_sr_tests ================
[14:38:34] [PASSED] coalesce-same-reg
[14:38:34] [PASSED] no-match-no-add
[14:38:34] [PASSED] match-or
[14:38:34] [PASSED] match-or-xfail
[14:38:34] [PASSED] no-match-no-add-multiple-rules
[14:38:34] [PASSED] two-regs-two-entries
[14:38:34] [PASSED] clr-one-set-other
[14:38:34] [PASSED] set-field
[14:38:34] [PASSED] conflict-duplicate
[14:38:34] [PASSED] conflict-not-disjoint
[14:38:34] [PASSED] conflict-reg-type
[14:38:34] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[14:38:34] ================== xe_rtp_process_tests ===================
[14:38:34] [PASSED] active1
[14:38:34] [PASSED] active2
[14:38:34] [PASSED] active-inactive
[14:38:34] [PASSED] inactive-active
[14:38:34] [PASSED] inactive-1st_or_active-inactive
[14:38:34] [PASSED] inactive-2nd_or_active-inactive
[14:38:34] [PASSED] inactive-last_or_active-inactive
[14:38:34] [PASSED] inactive-no_or_active-inactive
[14:38:34] ============== [PASSED] xe_rtp_process_tests ===============
[14:38:34] ===================== [PASSED] xe_rtp ======================
[14:38:34] ==================== xe_wa (1 subtest) =====================
[14:38:34] ======================== xe_wa_gt =========================
[14:38:34] [PASSED] TIGERLAKE B0
[14:38:34] [PASSED] DG1 A0
[14:38:34] [PASSED] DG1 B0
[14:38:34] [PASSED] ALDERLAKE_S A0
[14:38:34] [PASSED] ALDERLAKE_S B0
[14:38:34] [PASSED] ALDERLAKE_S C0
[14:38:34] [PASSED] ALDERLAKE_S D0
[14:38:34] [PASSED] ALDERLAKE_P A0
[14:38:34] [PASSED] ALDERLAKE_P B0
[14:38:34] [PASSED] ALDERLAKE_P C0
[14:38:34] [PASSED] ALDERLAKE_S RPLS D0
[14:38:34] [PASSED] ALDERLAKE_P RPLU E0
[14:38:34] [PASSED] DG2 G10 C0
[14:38:34] [PASSED] DG2 G11 B1
[14:38:34] [PASSED] DG2 G12 A1
[14:38:34] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:38:34] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:38:34] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[14:38:34] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[14:38:34] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[14:38:34] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[14:38:34] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[14:38:34] ==================== [PASSED] xe_wa_gt =====================
[14:38:34] ====================== [PASSED] xe_wa ======================
[14:38:34] ============================================================
[14:38:34] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[14:38:34] Elapsed time: 36.092s total, 4.298s configuring, 31.178s building, 0.610s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[14:38:34] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:38:35] 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
[14:38:59] Starting KUnit Kernel (1/1)...
[14:38:59] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:38:59] ============ drm_test_pick_cmdline (2 subtests) ============
[14:38:59] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[14:38:59] =============== drm_test_pick_cmdline_named ===============
[14:38:59] [PASSED] NTSC
[14:38:59] [PASSED] NTSC-J
[14:38:59] [PASSED] PAL
[14:38:59] [PASSED] PAL-M
[14:38:59] =========== [PASSED] drm_test_pick_cmdline_named ===========
[14:38:59] ============== [PASSED] drm_test_pick_cmdline ==============
[14:38:59] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[14:38:59] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[14:38:59] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[14:38:59] =========== drm_validate_clone_mode (2 subtests) ===========
[14:38:59] ============== drm_test_check_in_clone_mode ===============
[14:38:59] [PASSED] in_clone_mode
[14:38:59] [PASSED] not_in_clone_mode
[14:38:59] ========== [PASSED] drm_test_check_in_clone_mode ===========
[14:38:59] =============== drm_test_check_valid_clones ===============
[14:38:59] [PASSED] not_in_clone_mode
[14:38:59] [PASSED] valid_clone
[14:38:59] [PASSED] invalid_clone
[14:38:59] =========== [PASSED] drm_test_check_valid_clones ===========
[14:38:59] ============= [PASSED] drm_validate_clone_mode =============
[14:38:59] ============= drm_validate_modeset (1 subtest) =============
[14:38:59] [PASSED] drm_test_check_connector_changed_modeset
[14:38:59] ============== [PASSED] drm_validate_modeset ===============
[14:38:59] ====== drm_test_bridge_get_current_state (2 subtests) ======
[14:38:59] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[14:38:59] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[14:38:59] ======== [PASSED] drm_test_bridge_get_current_state ========
[14:38:59] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[14:38:59] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[14:38:59] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[14:38:59] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[14:38:59] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[14:38:59] ============== drm_bridge_alloc (2 subtests) ===============
[14:38:59] [PASSED] drm_test_drm_bridge_alloc_basic
[14:38:59] [PASSED] drm_test_drm_bridge_alloc_get_put
[14:38:59] ================ [PASSED] drm_bridge_alloc =================
[14:38:59] ============= drm_cmdline_parser (40 subtests) =============
[14:38:59] [PASSED] drm_test_cmdline_force_d_only
[14:38:59] [PASSED] drm_test_cmdline_force_D_only_dvi
[14:38:59] [PASSED] drm_test_cmdline_force_D_only_hdmi
[14:38:59] [PASSED] drm_test_cmdline_force_D_only_not_digital
[14:38:59] [PASSED] drm_test_cmdline_force_e_only
[14:38:59] [PASSED] drm_test_cmdline_res
[14:38:59] [PASSED] drm_test_cmdline_res_vesa
[14:38:59] [PASSED] drm_test_cmdline_res_vesa_rblank
[14:38:59] [PASSED] drm_test_cmdline_res_rblank
[14:38:59] [PASSED] drm_test_cmdline_res_bpp
[14:38:59] [PASSED] drm_test_cmdline_res_refresh
[14:38:59] [PASSED] drm_test_cmdline_res_bpp_refresh
[14:38:59] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[14:38:59] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[14:38:59] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[14:38:59] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[14:38:59] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[14:38:59] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[14:38:59] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[14:38:59] [PASSED] drm_test_cmdline_res_margins_force_on
[14:38:59] [PASSED] drm_test_cmdline_res_vesa_margins
[14:38:59] [PASSED] drm_test_cmdline_name
[14:38:59] [PASSED] drm_test_cmdline_name_bpp
[14:38:59] [PASSED] drm_test_cmdline_name_option
[14:38:59] [PASSED] drm_test_cmdline_name_bpp_option
[14:38:59] [PASSED] drm_test_cmdline_rotate_0
[14:38:59] [PASSED] drm_test_cmdline_rotate_90
[14:38:59] [PASSED] drm_test_cmdline_rotate_180
[14:38:59] [PASSED] drm_test_cmdline_rotate_270
[14:38:59] [PASSED] drm_test_cmdline_hmirror
[14:38:59] [PASSED] drm_test_cmdline_vmirror
[14:38:59] [PASSED] drm_test_cmdline_margin_options
[14:38:59] [PASSED] drm_test_cmdline_multiple_options
[14:38:59] [PASSED] drm_test_cmdline_bpp_extra_and_option
[14:38:59] [PASSED] drm_test_cmdline_extra_and_option
[14:38:59] [PASSED] drm_test_cmdline_freestanding_options
[14:38:59] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[14:38:59] [PASSED] drm_test_cmdline_panel_orientation
[14:38:59] ================ drm_test_cmdline_invalid =================
[14:38:59] [PASSED] margin_only
[14:38:59] [PASSED] interlace_only
[14:38:59] [PASSED] res_missing_x
[14:38:59] [PASSED] res_missing_y
[14:38:59] [PASSED] res_bad_y
[14:38:59] [PASSED] res_missing_y_bpp
[14:38:59] [PASSED] res_bad_bpp
[14:38:59] [PASSED] res_bad_refresh
[14:38:59] [PASSED] res_bpp_refresh_force_on_off
[14:38:59] [PASSED] res_invalid_mode
[14:38:59] [PASSED] res_bpp_wrong_place_mode
[14:38:59] [PASSED] name_bpp_refresh
[14:38:59] [PASSED] name_refresh
[14:38:59] [PASSED] name_refresh_wrong_mode
[14:38:59] [PASSED] name_refresh_invalid_mode
[14:38:59] [PASSED] rotate_multiple
[14:38:59] [PASSED] rotate_invalid_val
[14:38:59] [PASSED] rotate_truncated
[14:38:59] [PASSED] invalid_option
[14:38:59] [PASSED] invalid_tv_option
[14:38:59] [PASSED] truncated_tv_option
[14:38:59] ============ [PASSED] drm_test_cmdline_invalid =============
[14:38:59] =============== drm_test_cmdline_tv_options ===============
[14:38:59] [PASSED] NTSC
[14:38:59] [PASSED] NTSC_443
[14:38:59] [PASSED] NTSC_J
[14:38:59] [PASSED] PAL
[14:38:59] [PASSED] PAL_M
[14:38:59] [PASSED] PAL_N
[14:38:59] [PASSED] SECAM
[14:38:59] [PASSED] MONO_525
[14:38:59] [PASSED] MONO_625
[14:38:59] =========== [PASSED] drm_test_cmdline_tv_options ===========
[14:38:59] =============== [PASSED] drm_cmdline_parser ================
[14:38:59] ========== drmm_connector_hdmi_init (20 subtests) ==========
[14:38:59] [PASSED] drm_test_connector_hdmi_init_valid
[14:38:59] [PASSED] drm_test_connector_hdmi_init_bpc_8
[14:38:59] [PASSED] drm_test_connector_hdmi_init_bpc_10
[14:38:59] [PASSED] drm_test_connector_hdmi_init_bpc_12
[14:38:59] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[14:38:59] [PASSED] drm_test_connector_hdmi_init_bpc_null
[14:38:59] [PASSED] drm_test_connector_hdmi_init_formats_empty
[14:38:59] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[14:38:59] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[14:38:59] [PASSED] supported_formats=0x9 yuv420_allowed=1
[14:38:59] [PASSED] supported_formats=0x9 yuv420_allowed=0
[14:38:59] [PASSED] supported_formats=0x5 yuv420_allowed=1
[14:38:59] [PASSED] supported_formats=0x5 yuv420_allowed=0
[14:38:59] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[14:38:59] [PASSED] drm_test_connector_hdmi_init_null_ddc
[14:38:59] [PASSED] drm_test_connector_hdmi_init_null_product
[14:38:59] [PASSED] drm_test_connector_hdmi_init_null_vendor
[14:38:59] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[14:38:59] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[14:38:59] [PASSED] drm_test_connector_hdmi_init_product_valid
[14:38:59] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[14:38:59] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[14:38:59] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[14:38:59] ========= drm_test_connector_hdmi_init_type_valid =========
[14:38:59] [PASSED] HDMI-A
[14:38:59] [PASSED] HDMI-B
[14:38:59] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[14:38:59] ======== drm_test_connector_hdmi_init_type_invalid ========
[14:38:59] [PASSED] Unknown
[14:38:59] [PASSED] VGA
[14:38:59] [PASSED] DVI-I
[14:38:59] [PASSED] DVI-D
[14:38:59] [PASSED] DVI-A
[14:38:59] [PASSED] Composite
[14:38:59] [PASSED] SVIDEO
[14:38:59] [PASSED] LVDS
[14:38:59] [PASSED] Component
[14:38:59] [PASSED] DIN
[14:38:59] [PASSED] DP
[14:38:59] [PASSED] TV
[14:38:59] [PASSED] eDP
[14:38:59] [PASSED] Virtual
[14:38:59] [PASSED] DSI
[14:38:59] [PASSED] DPI
[14:38:59] [PASSED] Writeback
[14:38:59] [PASSED] SPI
[14:38:59] [PASSED] USB
[14:38:59] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[14:38:59] ============ [PASSED] drmm_connector_hdmi_init =============
[14:38:59] ============= drmm_connector_init (3 subtests) =============
[14:38:59] [PASSED] drm_test_drmm_connector_init
[14:38:59] [PASSED] drm_test_drmm_connector_init_null_ddc
[14:38:59] ========= drm_test_drmm_connector_init_type_valid =========
[14:38:59] [PASSED] Unknown
[14:38:59] [PASSED] VGA
[14:38:59] [PASSED] DVI-I
[14:38:59] [PASSED] DVI-D
[14:38:59] [PASSED] DVI-A
[14:38:59] [PASSED] Composite
[14:38:59] [PASSED] SVIDEO
[14:38:59] [PASSED] LVDS
[14:38:59] [PASSED] Component
[14:38:59] [PASSED] DIN
[14:38:59] [PASSED] DP
[14:38:59] [PASSED] HDMI-A
[14:38:59] [PASSED] HDMI-B
[14:38:59] [PASSED] TV
[14:38:59] [PASSED] eDP
[14:38:59] [PASSED] Virtual
[14:38:59] [PASSED] DSI
[14:38:59] [PASSED] DPI
[14:38:59] [PASSED] Writeback
[14:38:59] [PASSED] SPI
[14:38:59] [PASSED] USB
[14:38:59] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[14:38:59] =============== [PASSED] drmm_connector_init ===============
[14:38:59] ========= drm_connector_dynamic_init (6 subtests) ==========
[14:38:59] [PASSED] drm_test_drm_connector_dynamic_init
[14:38:59] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[14:38:59] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[14:38:59] [PASSED] drm_test_drm_connector_dynamic_init_properties
[14:38:59] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[14:38:59] [PASSED] Unknown
[14:38:59] [PASSED] VGA
[14:38:59] [PASSED] DVI-I
[14:38:59] [PASSED] DVI-D
[14:38:59] [PASSED] DVI-A
[14:38:59] [PASSED] Composite
[14:38:59] [PASSED] SVIDEO
[14:38:59] [PASSED] LVDS
[14:38:59] [PASSED] Component
[14:38:59] [PASSED] DIN
[14:38:59] [PASSED] DP
[14:38:59] [PASSED] HDMI-A
[14:38:59] [PASSED] HDMI-B
[14:38:59] [PASSED] TV
[14:38:59] [PASSED] eDP
[14:38:59] [PASSED] Virtual
[14:38:59] [PASSED] DSI
[14:38:59] [PASSED] DPI
[14:38:59] [PASSED] Writeback
[14:38:59] [PASSED] SPI
[14:38:59] [PASSED] USB
[14:38:59] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[14:38:59] ======== drm_test_drm_connector_dynamic_init_name =========
[14:38:59] [PASSED] Unknown
[14:38:59] [PASSED] VGA
[14:38:59] [PASSED] DVI-I
[14:38:59] [PASSED] DVI-D
[14:38:59] [PASSED] DVI-A
[14:38:59] [PASSED] Composite
[14:38:59] [PASSED] SVIDEO
[14:38:59] [PASSED] LVDS
[14:38:59] [PASSED] Component
[14:38:59] [PASSED] DIN
[14:38:59] [PASSED] DP
[14:38:59] [PASSED] HDMI-A
[14:38:59] [PASSED] HDMI-B
[14:38:59] [PASSED] TV
[14:38:59] [PASSED] eDP
[14:38:59] [PASSED] Virtual
[14:38:59] [PASSED] DSI
[14:38:59] [PASSED] DPI
[14:38:59] [PASSED] Writeback
[14:38:59] [PASSED] SPI
[14:38:59] [PASSED] USB
[14:38:59] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[14:38:59] =========== [PASSED] drm_connector_dynamic_init ============
[14:38:59] ==== drm_connector_dynamic_register_early (4 subtests) =====
[14:38:59] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[14:38:59] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[14:38:59] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[14:38:59] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[14:38:59] ====== [PASSED] drm_connector_dynamic_register_early =======
[14:38:59] ======= drm_connector_dynamic_register (7 subtests) ========
[14:38:59] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[14:38:59] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[14:38:59] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[14:38:59] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[14:38:59] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[14:38:59] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[14:38:59] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[14:38:59] ========= [PASSED] drm_connector_dynamic_register ==========
[14:38:59] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[14:38:59] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[14:38:59] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[14:38:59] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[14:38:59] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[14:38:59] ========== drm_test_get_tv_mode_from_name_valid ===========
[14:38:59] [PASSED] NTSC
[14:38:59] [PASSED] NTSC-443
[14:38:59] [PASSED] NTSC-J
[14:38:59] [PASSED] PAL
[14:38:59] [PASSED] PAL-M
[14:38:59] [PASSED] PAL-N
[14:38:59] [PASSED] SECAM
[14:38:59] [PASSED] Mono
[14:38:59] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[14:38:59] [PASSED] drm_test_get_tv_mode_from_name_truncated
[14:38:59] ============ [PASSED] drm_get_tv_mode_from_name ============
[14:38:59] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[14:38:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[14:38:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[14:38:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[14:38:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[14:38:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[14:38:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[14:38:59] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[14:38:59] [PASSED] VIC 96
[14:38:59] [PASSED] VIC 97
[14:38:59] [PASSED] VIC 101
[14:38:59] [PASSED] VIC 102
[14:38:59] [PASSED] VIC 106
[14:38:59] [PASSED] VIC 107
[14:38:59] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[14:38:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[14:38:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[14:38:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[14:38:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[14:38:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[14:38:59] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[14:38:59] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[14:38:59] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[14:38:59] [PASSED] Automatic
[14:38:59] [PASSED] Full
[14:38:59] [PASSED] Limited 16:235
[14:38:59] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[14:38:59] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[14:38:59] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[14:38:59] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[14:38:59] === drm_test_drm_hdmi_connector_get_output_format_name ====
[14:38:59] [PASSED] RGB
[14:38:59] [PASSED] YUV 4:2:0
[14:38:59] [PASSED] YUV 4:2:2
[14:38:59] [PASSED] YUV 4:4:4
[14:38:59] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[14:38:59] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[14:38:59] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[14:38:59] ============= drm_damage_helper (21 subtests) ==============
[14:38:59] [PASSED] drm_test_damage_iter_no_damage
[14:38:59] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[14:38:59] [PASSED] drm_test_damage_iter_no_damage_src_moved
[14:38:59] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[14:38:59] [PASSED] drm_test_damage_iter_no_damage_not_visible
[14:38:59] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[14:38:59] [PASSED] drm_test_damage_iter_no_damage_no_fb
[14:38:59] [PASSED] drm_test_damage_iter_simple_damage
[14:38:59] [PASSED] drm_test_damage_iter_single_damage
[14:38:59] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[14:38:59] [PASSED] drm_test_damage_iter_single_damage_outside_src
[14:38:59] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[14:38:59] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[14:38:59] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[14:38:59] [PASSED] drm_test_damage_iter_single_damage_src_moved
[14:38:59] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[14:38:59] [PASSED] drm_test_damage_iter_damage
[14:38:59] [PASSED] drm_test_damage_iter_damage_one_intersect
[14:38:59] [PASSED] drm_test_damage_iter_damage_one_outside
[14:38:59] [PASSED] drm_test_damage_iter_damage_src_moved
[14:38:59] [PASSED] drm_test_damage_iter_damage_not_visible
[14:38:59] ================ [PASSED] drm_damage_helper ================
[14:38:59] ============== drm_dp_mst_helper (3 subtests) ==============
[14:38:59] ============== drm_test_dp_mst_calc_pbn_mode ==============
[14:38:59] [PASSED] Clock 154000 BPP 30 DSC disabled
[14:38:59] [PASSED] Clock 234000 BPP 30 DSC disabled
[14:38:59] [PASSED] Clock 297000 BPP 24 DSC disabled
[14:38:59] [PASSED] Clock 332880 BPP 24 DSC enabled
[14:38:59] [PASSED] Clock 324540 BPP 24 DSC enabled
[14:38:59] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[14:38:59] ============== drm_test_dp_mst_calc_pbn_div ===============
[14:38:59] [PASSED] Link rate 2000000 lane count 4
[14:38:59] [PASSED] Link rate 2000000 lane count 2
[14:38:59] [PASSED] Link rate 2000000 lane count 1
[14:38:59] [PASSED] Link rate 1350000 lane count 4
[14:38:59] [PASSED] Link rate 1350000 lane count 2
[14:38:59] [PASSED] Link rate 1350000 lane count 1
[14:38:59] [PASSED] Link rate 1000000 lane count 4
[14:38:59] [PASSED] Link rate 1000000 lane count 2
[14:38:59] [PASSED] Link rate 1000000 lane count 1
[14:38:59] [PASSED] Link rate 810000 lane count 4
[14:38:59] [PASSED] Link rate 810000 lane count 2
[14:38:59] [PASSED] Link rate 810000 lane count 1
[14:38:59] [PASSED] Link rate 540000 lane count 4
[14:38:59] [PASSED] Link rate 540000 lane count 2
[14:38:59] [PASSED] Link rate 540000 lane count 1
[14:38:59] [PASSED] Link rate 270000 lane count 4
[14:38:59] [PASSED] Link rate 270000 lane count 2
[14:38:59] [PASSED] Link rate 270000 lane count 1
[14:38:59] [PASSED] Link rate 162000 lane count 4
[14:38:59] [PASSED] Link rate 162000 lane count 2
[14:38:59] [PASSED] Link rate 162000 lane count 1
[14:38:59] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[14:38:59] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[14:38:59] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[14:38:59] [PASSED] DP_POWER_UP_PHY with port number
[14:38:59] [PASSED] DP_POWER_DOWN_PHY with port number
[14:39:00] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[14:39:00] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[14:39:00] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[14:39:00] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[14:39:00] [PASSED] DP_QUERY_PAYLOAD with port number
[14:39:00] [PASSED] DP_QUERY_PAYLOAD with VCPI
[14:39:00] [PASSED] DP_REMOTE_DPCD_READ with port number
[14:39:00] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[14:39:00] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[14:39:00] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[14:39:00] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[14:39:00] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[14:39:00] [PASSED] DP_REMOTE_I2C_READ with port number
[14:39:00] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[14:39:00] [PASSED] DP_REMOTE_I2C_READ with transactions array
[14:39:00] [PASSED] DP_REMOTE_I2C_WRITE with port number
[14:39:00] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[14:39:00] [PASSED] DP_REMOTE_I2C_WRITE with data array
[14:39:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[14:39:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[14:39:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[14:39:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[14:39:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[14:39:00] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[14:39:00] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[14:39:00] ================ [PASSED] drm_dp_mst_helper ================
[14:39:00] ================== drm_exec (7 subtests) ===================
[14:39:00] [PASSED] sanitycheck
[14:39:00] [PASSED] test_lock
[14:39:00] [PASSED] test_lock_unlock
[14:39:00] [PASSED] test_duplicates
[14:39:00] [PASSED] test_prepare
[14:39:00] [PASSED] test_prepare_array
[14:39:00] [PASSED] test_multiple_loops
[14:39:00] ==================== [PASSED] drm_exec =====================
[14:39:00] =========== drm_format_helper_test (17 subtests) ===========
[14:39:00] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[14:39:00] [PASSED] single_pixel_source_buffer
[14:39:00] [PASSED] single_pixel_clip_rectangle
[14:39:00] [PASSED] well_known_colors
[14:39:00] [PASSED] destination_pitch
[14:39:00] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[14:39:00] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[14:39:00] [PASSED] single_pixel_source_buffer
[14:39:00] [PASSED] single_pixel_clip_rectangle
[14:39:00] [PASSED] well_known_colors
[14:39:00] [PASSED] destination_pitch
[14:39:00] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[14:39:00] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[14:39:00] [PASSED] single_pixel_source_buffer
[14:39:00] [PASSED] single_pixel_clip_rectangle
[14:39:00] [PASSED] well_known_colors
[14:39:00] [PASSED] destination_pitch
[14:39:00] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[14:39:00] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[14:39:00] [PASSED] single_pixel_source_buffer
[14:39:00] [PASSED] single_pixel_clip_rectangle
[14:39:00] [PASSED] well_known_colors
[14:39:00] [PASSED] destination_pitch
[14:39:00] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[14:39:00] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[14:39:00] [PASSED] single_pixel_source_buffer
[14:39:00] [PASSED] single_pixel_clip_rectangle
[14:39:00] [PASSED] well_known_colors
[14:39:00] [PASSED] destination_pitch
[14:39:00] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[14:39:00] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[14:39:00] [PASSED] single_pixel_source_buffer
[14:39:00] [PASSED] single_pixel_clip_rectangle
[14:39:00] [PASSED] well_known_colors
[14:39:00] [PASSED] destination_pitch
[14:39:00] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[14:39:00] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[14:39:00] [PASSED] single_pixel_source_buffer
[14:39:00] [PASSED] single_pixel_clip_rectangle
[14:39:00] [PASSED] well_known_colors
[14:39:00] [PASSED] destination_pitch
[14:39:00] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[14:39:00] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[14:39:00] [PASSED] single_pixel_source_buffer
[14:39:00] [PASSED] single_pixel_clip_rectangle
[14:39:00] [PASSED] well_known_colors
[14:39:00] [PASSED] destination_pitch
[14:39:00] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[14:39:00] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[14:39:00] [PASSED] single_pixel_source_buffer
[14:39:00] [PASSED] single_pixel_clip_rectangle
[14:39:00] [PASSED] well_known_colors
[14:39:00] [PASSED] destination_pitch
[14:39:00] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[14:39:00] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[14:39:00] [PASSED] single_pixel_source_buffer
[14:39:00] [PASSED] single_pixel_clip_rectangle
[14:39:00] [PASSED] well_known_colors
[14:39:00] [PASSED] destination_pitch
[14:39:00] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[14:39:00] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[14:39:00] [PASSED] single_pixel_source_buffer
[14:39:00] [PASSED] single_pixel_clip_rectangle
[14:39:00] [PASSED] well_known_colors
[14:39:00] [PASSED] destination_pitch
[14:39:00] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[14:39:00] ============== drm_test_fb_xrgb8888_to_mono ===============
[14:39:00] [PASSED] single_pixel_source_buffer
[14:39:00] [PASSED] single_pixel_clip_rectangle
[14:39:00] [PASSED] well_known_colors
[14:39:00] [PASSED] destination_pitch
[14:39:00] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[14:39:00] ==================== drm_test_fb_swab =====================
[14:39:00] [PASSED] single_pixel_source_buffer
[14:39:00] [PASSED] single_pixel_clip_rectangle
[14:39:00] [PASSED] well_known_colors
[14:39:00] [PASSED] destination_pitch
[14:39:00] ================ [PASSED] drm_test_fb_swab =================
[14:39:00] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[14:39:00] [PASSED] single_pixel_source_buffer
[14:39:00] [PASSED] single_pixel_clip_rectangle
[14:39:00] [PASSED] well_known_colors
[14:39:00] [PASSED] destination_pitch
[14:39:00] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[14:39:00] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[14:39:00] [PASSED] single_pixel_source_buffer
[14:39:00] [PASSED] single_pixel_clip_rectangle
[14:39:00] [PASSED] well_known_colors
[14:39:00] [PASSED] destination_pitch
[14:39:00] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[14:39:00] ================= drm_test_fb_clip_offset =================
[14:39:00] [PASSED] pass through
[14:39:00] [PASSED] horizontal offset
[14:39:00] [PASSED] vertical offset
[14:39:00] [PASSED] horizontal and vertical offset
[14:39:00] [PASSED] horizontal offset (custom pitch)
[14:39:00] [PASSED] vertical offset (custom pitch)
[14:39:00] [PASSED] horizontal and vertical offset (custom pitch)
[14:39:00] ============= [PASSED] drm_test_fb_clip_offset =============
[14:39:00] =================== drm_test_fb_memcpy ====================
[14:39:00] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[14:39:00] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[14:39:00] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[14:39:00] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[14:39:00] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[14:39:00] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[14:39:00] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[14:39:00] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[14:39:00] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[14:39:00] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[14:39:00] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[14:39:00] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[14:39:00] =============== [PASSED] drm_test_fb_memcpy ================
[14:39:00] ============= [PASSED] drm_format_helper_test ==============
[14:39:00] ================= drm_format (18 subtests) =================
[14:39:00] [PASSED] drm_test_format_block_width_invalid
[14:39:00] [PASSED] drm_test_format_block_width_one_plane
[14:39:00] [PASSED] drm_test_format_block_width_two_plane
[14:39:00] [PASSED] drm_test_format_block_width_three_plane
[14:39:00] [PASSED] drm_test_format_block_width_tiled
[14:39:00] [PASSED] drm_test_format_block_height_invalid
[14:39:00] [PASSED] drm_test_format_block_height_one_plane
[14:39:00] [PASSED] drm_test_format_block_height_two_plane
[14:39:00] [PASSED] drm_test_format_block_height_three_plane
[14:39:00] [PASSED] drm_test_format_block_height_tiled
[14:39:00] [PASSED] drm_test_format_min_pitch_invalid
[14:39:00] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[14:39:00] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[14:39:00] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[14:39:00] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[14:39:00] [PASSED] drm_test_format_min_pitch_two_plane
[14:39:00] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[14:39:00] [PASSED] drm_test_format_min_pitch_tiled
[14:39:00] =================== [PASSED] drm_format ====================
[14:39:00] ============== drm_framebuffer (10 subtests) ===============
[14:39:00] ========== drm_test_framebuffer_check_src_coords ==========
[14:39:00] [PASSED] Success: source fits into fb
[14:39:00] [PASSED] Fail: overflowing fb with x-axis coordinate
[14:39:00] [PASSED] Fail: overflowing fb with y-axis coordinate
[14:39:00] [PASSED] Fail: overflowing fb with source width
[14:39:00] [PASSED] Fail: overflowing fb with source height
[14:39:00] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[14:39:00] [PASSED] drm_test_framebuffer_cleanup
[14:39:00] =============== drm_test_framebuffer_create ===============
[14:39:00] [PASSED] ABGR8888 normal sizes
[14:39:00] [PASSED] ABGR8888 max sizes
[14:39:00] [PASSED] ABGR8888 pitch greater than min required
[14:39:00] [PASSED] ABGR8888 pitch less than min required
[14:39:00] [PASSED] ABGR8888 Invalid width
[14:39:00] [PASSED] ABGR8888 Invalid buffer handle
[14:39:00] [PASSED] No pixel format
[14:39:00] [PASSED] ABGR8888 Width 0
[14:39:00] [PASSED] ABGR8888 Height 0
[14:39:00] [PASSED] ABGR8888 Out of bound height * pitch combination
[14:39:00] [PASSED] ABGR8888 Large buffer offset
[14:39:00] [PASSED] ABGR8888 Buffer offset for inexistent plane
[14:39:00] [PASSED] ABGR8888 Invalid flag
[14:39:00] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[14:39:00] [PASSED] ABGR8888 Valid buffer modifier
[14:39:00] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[14:39:00] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[14:39:00] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[14:39:00] [PASSED] NV12 Normal sizes
[14:39:00] [PASSED] NV12 Max sizes
[14:39:00] [PASSED] NV12 Invalid pitch
[14:39:00] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[14:39:00] [PASSED] NV12 different modifier per-plane
[14:39:00] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[14:39:00] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[14:39:00] [PASSED] NV12 Modifier for inexistent plane
[14:39:00] [PASSED] NV12 Handle for inexistent plane
[14:39:00] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[14:39:00] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[14:39:00] [PASSED] YVU420 Normal sizes
[14:39:00] [PASSED] YVU420 Max sizes
[14:39:00] [PASSED] YVU420 Invalid pitch
[14:39:00] [PASSED] YVU420 Different pitches
[14:39:00] [PASSED] YVU420 Different buffer offsets/pitches
[14:39:00] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[14:39:00] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[14:39:00] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[14:39:00] [PASSED] YVU420 Valid modifier
[14:39:00] [PASSED] YVU420 Different modifiers per plane
[14:39:00] [PASSED] YVU420 Modifier for inexistent plane
[14:39:00] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[14:39:00] [PASSED] X0L2 Normal sizes
[14:39:00] [PASSED] X0L2 Max sizes
[14:39:00] [PASSED] X0L2 Invalid pitch
[14:39:00] [PASSED] X0L2 Pitch greater than minimum required
[14:39:00] [PASSED] X0L2 Handle for inexistent plane
[14:39:00] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[14:39:00] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[14:39:00] [PASSED] X0L2 Valid modifier
[14:39:00] [PASSED] X0L2 Modifier for inexistent plane
[14:39:00] =========== [PASSED] drm_test_framebuffer_create ===========
[14:39:00] [PASSED] drm_test_framebuffer_free
[14:39:00] [PASSED] drm_test_framebuffer_init
[14:39:00] [PASSED] drm_test_framebuffer_init_bad_format
[14:39:00] [PASSED] drm_test_framebuffer_init_dev_mismatch
[14:39:00] [PASSED] drm_test_framebuffer_lookup
[14:39:00] [PASSED] drm_test_framebuffer_lookup_inexistent
[14:39:00] [PASSED] drm_test_framebuffer_modifiers_not_supported
[14:39:00] ================= [PASSED] drm_framebuffer =================
[14:39:00] ================ drm_gem_shmem (8 subtests) ================
[14:39:00] [PASSED] drm_gem_shmem_test_obj_create
[14:39:00] [PASSED] drm_gem_shmem_test_obj_create_private
[14:39:00] [PASSED] drm_gem_shmem_test_pin_pages
[14:39:00] [PASSED] drm_gem_shmem_test_vmap
[14:39:00] [PASSED] drm_gem_shmem_test_get_sg_table
[14:39:00] [PASSED] drm_gem_shmem_test_get_pages_sgt
[14:39:00] [PASSED] drm_gem_shmem_test_madvise
[14:39:00] [PASSED] drm_gem_shmem_test_purge
[14:39:00] ================== [PASSED] drm_gem_shmem ==================
[14:39:00] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[14:39:00] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[14:39:00] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[14:39:00] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[14:39:00] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[14:39:00] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[14:39:00] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[14:39:00] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[14:39:00] [PASSED] Automatic
[14:39:00] [PASSED] Full
[14:39:00] [PASSED] Limited 16:235
[14:39:00] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[14:39:00] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[14:39:00] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[14:39:00] [PASSED] drm_test_check_disable_connector
[14:39:00] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[14:39:00] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[14:39:00] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[14:39:00] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[14:39:00] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[14:39:00] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[14:39:00] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[14:39:00] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[14:39:00] [PASSED] drm_test_check_output_bpc_dvi
[14:39:00] [PASSED] drm_test_check_output_bpc_format_vic_1
[14:39:00] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[14:39:00] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[14:39:00] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[14:39:00] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[14:39:00] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[14:39:00] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[14:39:00] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[14:39:00] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[14:39:00] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[14:39:00] [PASSED] drm_test_check_broadcast_rgb_value
[14:39:00] [PASSED] drm_test_check_bpc_8_value
[14:39:00] [PASSED] drm_test_check_bpc_10_value
[14:39:00] [PASSED] drm_test_check_bpc_12_value
[14:39:00] [PASSED] drm_test_check_format_value
[14:39:00] [PASSED] drm_test_check_tmds_char_value
[14:39:00] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[14:39:00] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[14:39:00] [PASSED] drm_test_check_mode_valid
[14:39:00] [PASSED] drm_test_check_mode_valid_reject
[14:39:00] [PASSED] drm_test_check_mode_valid_reject_rate
[14:39:00] [PASSED] drm_test_check_mode_valid_reject_max_clock
[14:39:00] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[14:39:00] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[14:39:00] [PASSED] drm_test_check_infoframes
[14:39:00] [PASSED] drm_test_check_reject_avi_infoframe
[14:39:00] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[14:39:00] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[14:39:00] [PASSED] drm_test_check_reject_audio_infoframe
[14:39:00] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[14:39:00] ================= drm_managed (2 subtests) =================
[14:39:00] [PASSED] drm_test_managed_release_action
[14:39:00] [PASSED] drm_test_managed_run_action
[14:39:00] =================== [PASSED] drm_managed ===================
[14:39:00] =================== drm_mm (6 subtests) ====================
[14:39:00] [PASSED] drm_test_mm_init
[14:39:00] [PASSED] drm_test_mm_debug
[14:39:00] [PASSED] drm_test_mm_align32
[14:39:00] [PASSED] drm_test_mm_align64
[14:39:00] [PASSED] drm_test_mm_lowest
[14:39:00] [PASSED] drm_test_mm_highest
[14:39:00] ===================== [PASSED] drm_mm ======================
[14:39:00] ============= drm_modes_analog_tv (5 subtests) =============
[14:39:00] [PASSED] drm_test_modes_analog_tv_mono_576i
[14:39:00] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[14:39:00] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[14:39:00] [PASSED] drm_test_modes_analog_tv_pal_576i
[14:39:00] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[14:39:00] =============== [PASSED] drm_modes_analog_tv ===============
[14:39:00] ============== drm_plane_helper (2 subtests) ===============
[14:39:00] =============== drm_test_check_plane_state ================
[14:39:00] [PASSED] clipping_simple
[14:39:00] [PASSED] clipping_rotate_reflect
[14:39:00] [PASSED] positioning_simple
[14:39:00] [PASSED] upscaling
[14:39:00] [PASSED] downscaling
[14:39:00] [PASSED] rounding1
[14:39:00] [PASSED] rounding2
[14:39:00] [PASSED] rounding3
[14:39:00] [PASSED] rounding4
[14:39:00] =========== [PASSED] drm_test_check_plane_state ============
[14:39:00] =========== drm_test_check_invalid_plane_state ============
[14:39:00] [PASSED] positioning_invalid
[14:39:00] [PASSED] upscaling_invalid
[14:39:00] [PASSED] downscaling_invalid
[14:39:00] ======= [PASSED] drm_test_check_invalid_plane_state ========
[14:39:00] ================ [PASSED] drm_plane_helper =================
[14:39:00] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[14:39:00] ====== drm_test_connector_helper_tv_get_modes_check =======
[14:39:00] [PASSED] None
[14:39:00] [PASSED] PAL
[14:39:00] [PASSED] NTSC
[14:39:00] [PASSED] Both, NTSC Default
[14:39:00] [PASSED] Both, PAL Default
[14:39:00] [PASSED] Both, NTSC Default, with PAL on command-line
[14:39:00] [PASSED] Both, PAL Default, with NTSC on command-line
[14:39:00] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[14:39:00] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[14:39:00] ================== drm_rect (9 subtests) ===================
[14:39:00] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[14:39:00] [PASSED] drm_test_rect_clip_scaled_not_clipped
[14:39:00] [PASSED] drm_test_rect_clip_scaled_clipped
[14:39:00] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[14:39:00] ================= drm_test_rect_intersect =================
[14:39:00] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[14:39:00] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[14:39:00] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[14:39:00] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[14:39:00] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[14:39:00] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[14:39:00] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[14:39:00] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[14:39:00] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[14:39:00] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[14:39:00] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[14:39:00] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[14:39:00] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[14:39:00] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[14:39:00] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[14:39:00] ============= [PASSED] drm_test_rect_intersect =============
[14:39:00] ================ drm_test_rect_calc_hscale ================
[14:39:00] [PASSED] normal use
[14:39:00] [PASSED] out of max range
[14:39:00] [PASSED] out of min range
[14:39:00] [PASSED] zero dst
[14:39:00] [PASSED] negative src
[14:39:00] [PASSED] negative dst
[14:39:00] ============ [PASSED] drm_test_rect_calc_hscale ============
[14:39:00] ================ drm_test_rect_calc_vscale ================
[14:39:00] [PASSED] normal use
[14:39:00] [PASSED] out of max range
[14:39:00] [PASSED] out of min range
[14:39:00] [PASSED] zero dst
[14:39:00] [PASSED] negative src
[14:39:00] [PASSED] negative dst
[14:39:00] ============ [PASSED] drm_test_rect_calc_vscale ============
[14:39:00] ================== drm_test_rect_rotate ===================
[14:39:00] [PASSED] reflect-x
[14:39:00] [PASSED] reflect-y
[14:39:00] [PASSED] rotate-0
[14:39:00] [PASSED] rotate-90
[14:39:00] [PASSED] rotate-180
[14:39:00] [PASSED] rotate-270
[14:39:00] ============== [PASSED] drm_test_rect_rotate ===============
[14:39:00] ================ drm_test_rect_rotate_inv =================
[14:39:00] [PASSED] reflect-x
[14:39:00] [PASSED] reflect-y
[14:39:00] [PASSED] rotate-0
[14:39:00] [PASSED] rotate-90
[14:39:00] [PASSED] rotate-180
[14:39:00] [PASSED] rotate-270
[14:39:00] ============ [PASSED] drm_test_rect_rotate_inv =============
[14:39:00] ==================== [PASSED] drm_rect =====================
[14:39:00] ============ drm_sysfb_modeset_test (1 subtest) ============
[14:39:00] ============ drm_test_sysfb_build_fourcc_list =============
[14:39:00] [PASSED] no native formats
[14:39:00] [PASSED] XRGB8888 as native format
[14:39:00] [PASSED] remove duplicates
[14:39:00] [PASSED] convert alpha formats
[14:39:00] [PASSED] random formats
[14:39:00] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[14:39:00] ============= [PASSED] drm_sysfb_modeset_test ==============
[14:39:00] ================== drm_fixp (2 subtests) ===================
[14:39:00] [PASSED] drm_test_int2fixp
[14:39:00] [PASSED] drm_test_sm2fixp
[14:39:00] ==================== [PASSED] drm_fixp =====================
[14:39:00] ============================================================
[14:39:00] Testing complete. Ran 621 tests: passed: 621
[14:39:00] Elapsed time: 25.907s total, 1.767s configuring, 23.924s building, 0.176s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[14:39:00] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:39:01] 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
[14:39:11] Starting KUnit Kernel (1/1)...
[14:39:11] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:39:11] ================= ttm_device (5 subtests) ==================
[14:39:11] [PASSED] ttm_device_init_basic
[14:39:11] [PASSED] ttm_device_init_multiple
[14:39:11] [PASSED] ttm_device_fini_basic
[14:39:11] [PASSED] ttm_device_init_no_vma_man
[14:39:11] ================== ttm_device_init_pools ==================
[14:39:11] [PASSED] No DMA allocations, no DMA32 required
[14:39:11] [PASSED] DMA allocations, DMA32 required
[14:39:11] [PASSED] No DMA allocations, DMA32 required
[14:39:11] [PASSED] DMA allocations, no DMA32 required
[14:39:11] ============== [PASSED] ttm_device_init_pools ==============
[14:39:11] =================== [PASSED] ttm_device ====================
[14:39:11] ================== ttm_pool (8 subtests) ===================
[14:39:11] ================== ttm_pool_alloc_basic ===================
[14:39:11] [PASSED] One page
[14:39:11] [PASSED] More than one page
[14:39:11] [PASSED] Above the allocation limit
[14:39:11] [PASSED] One page, with coherent DMA mappings enabled
[14:39:11] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:39:11] ============== [PASSED] ttm_pool_alloc_basic ===============
[14:39:11] ============== ttm_pool_alloc_basic_dma_addr ==============
[14:39:11] [PASSED] One page
[14:39:11] [PASSED] More than one page
[14:39:11] [PASSED] Above the allocation limit
[14:39:11] [PASSED] One page, with coherent DMA mappings enabled
[14:39:11] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:39:11] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[14:39:11] [PASSED] ttm_pool_alloc_order_caching_match
[14:39:11] [PASSED] ttm_pool_alloc_caching_mismatch
[14:39:11] [PASSED] ttm_pool_alloc_order_mismatch
[14:39:11] [PASSED] ttm_pool_free_dma_alloc
[14:39:11] [PASSED] ttm_pool_free_no_dma_alloc
[14:39:11] [PASSED] ttm_pool_fini_basic
[14:39:11] ==================== [PASSED] ttm_pool =====================
[14:39:11] ================ ttm_resource (8 subtests) =================
[14:39:11] ================= ttm_resource_init_basic =================
[14:39:11] [PASSED] Init resource in TTM_PL_SYSTEM
[14:39:11] [PASSED] Init resource in TTM_PL_VRAM
[14:39:11] [PASSED] Init resource in a private placement
[14:39:11] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[14:39:11] ============= [PASSED] ttm_resource_init_basic =============
[14:39:11] [PASSED] ttm_resource_init_pinned
[14:39:11] [PASSED] ttm_resource_fini_basic
[14:39:11] [PASSED] ttm_resource_manager_init_basic
[14:39:11] [PASSED] ttm_resource_manager_usage_basic
[14:39:11] [PASSED] ttm_resource_manager_set_used_basic
[14:39:11] [PASSED] ttm_sys_man_alloc_basic
[14:39:11] [PASSED] ttm_sys_man_free_basic
[14:39:11] ================== [PASSED] ttm_resource ===================
[14:39:11] =================== ttm_tt (15 subtests) ===================
[14:39:11] ==================== ttm_tt_init_basic ====================
[14:39:11] [PASSED] Page-aligned size
[14:39:11] [PASSED] Extra pages requested
[14:39:11] ================ [PASSED] ttm_tt_init_basic ================
[14:39:11] [PASSED] ttm_tt_init_misaligned
[14:39:11] [PASSED] ttm_tt_fini_basic
[14:39:11] [PASSED] ttm_tt_fini_sg
[14:39:11] [PASSED] ttm_tt_fini_shmem
[14:39:11] [PASSED] ttm_tt_create_basic
[14:39:11] [PASSED] ttm_tt_create_invalid_bo_type
[14:39:11] [PASSED] ttm_tt_create_ttm_exists
[14:39:11] [PASSED] ttm_tt_create_failed
[14:39:11] [PASSED] ttm_tt_destroy_basic
[14:39:11] [PASSED] ttm_tt_populate_null_ttm
[14:39:11] [PASSED] ttm_tt_populate_populated_ttm
[14:39:11] [PASSED] ttm_tt_unpopulate_basic
[14:39:11] [PASSED] ttm_tt_unpopulate_empty_ttm
[14:39:11] [PASSED] ttm_tt_swapin_basic
[14:39:11] ===================== [PASSED] ttm_tt ======================
[14:39:11] =================== ttm_bo (14 subtests) ===================
[14:39:11] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[14:39:11] [PASSED] Cannot be interrupted and sleeps
[14:39:11] [PASSED] Cannot be interrupted, locks straight away
[14:39:11] [PASSED] Can be interrupted, sleeps
[14:39:11] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[14:39:11] [PASSED] ttm_bo_reserve_locked_no_sleep
[14:39:11] [PASSED] ttm_bo_reserve_no_wait_ticket
[14:39:11] [PASSED] ttm_bo_reserve_double_resv
[14:39:11] [PASSED] ttm_bo_reserve_interrupted
[14:39:11] [PASSED] ttm_bo_reserve_deadlock
[14:39:11] [PASSED] ttm_bo_unreserve_basic
[14:39:11] [PASSED] ttm_bo_unreserve_pinned
[14:39:11] [PASSED] ttm_bo_unreserve_bulk
[14:39:11] [PASSED] ttm_bo_fini_basic
[14:39:11] [PASSED] ttm_bo_fini_shared_resv
[14:39:11] [PASSED] ttm_bo_pin_basic
[14:39:11] [PASSED] ttm_bo_pin_unpin_resource
[14:39:11] [PASSED] ttm_bo_multiple_pin_one_unpin
[14:39:11] ===================== [PASSED] ttm_bo ======================
[14:39:11] ============== ttm_bo_validate (22 subtests) ===============
[14:39:11] ============== ttm_bo_init_reserved_sys_man ===============
[14:39:11] [PASSED] Buffer object for userspace
[14:39:11] [PASSED] Kernel buffer object
[14:39:11] [PASSED] Shared buffer object
[14:39:11] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[14:39:11] ============== ttm_bo_init_reserved_mock_man ==============
[14:39:11] [PASSED] Buffer object for userspace
[14:39:11] [PASSED] Kernel buffer object
[14:39:11] [PASSED] Shared buffer object
[14:39:11] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[14:39:11] [PASSED] ttm_bo_init_reserved_resv
[14:39:11] ================== ttm_bo_validate_basic ==================
[14:39:11] [PASSED] Buffer object for userspace
[14:39:11] [PASSED] Kernel buffer object
[14:39:11] [PASSED] Shared buffer object
[14:39:11] ============== [PASSED] ttm_bo_validate_basic ==============
[14:39:11] [PASSED] ttm_bo_validate_invalid_placement
[14:39:11] ============= ttm_bo_validate_same_placement ==============
[14:39:11] [PASSED] System manager
[14:39:11] [PASSED] VRAM manager
[14:39:11] ========= [PASSED] ttm_bo_validate_same_placement ==========
[14:39:11] [PASSED] ttm_bo_validate_failed_alloc
[14:39:11] [PASSED] ttm_bo_validate_pinned
[14:39:11] [PASSED] ttm_bo_validate_busy_placement
[14:39:11] ================ ttm_bo_validate_multihop =================
[14:39:11] [PASSED] Buffer object for userspace
[14:39:11] [PASSED] Kernel buffer object
[14:39:11] [PASSED] Shared buffer object
[14:39:11] ============ [PASSED] ttm_bo_validate_multihop =============
[14:39:11] ========== ttm_bo_validate_no_placement_signaled ==========
[14:39:11] [PASSED] Buffer object in system domain, no page vector
[14:39:11] [PASSED] Buffer object in system domain with an existing page vector
[14:39:11] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[14:39:11] ======== ttm_bo_validate_no_placement_not_signaled ========
[14:39:11] [PASSED] Buffer object for userspace
[14:39:11] [PASSED] Kernel buffer object
[14:39:11] [PASSED] Shared buffer object
[14:39:11] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[14:39:11] [PASSED] ttm_bo_validate_move_fence_signaled
[14:39:11] ========= ttm_bo_validate_move_fence_not_signaled =========
[14:39:11] [PASSED] Waits for GPU
[14:39:11] [PASSED] Tries to lock straight away
[14:39:11] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[14:39:11] [PASSED] ttm_bo_validate_swapout
[14:39:11] [PASSED] ttm_bo_validate_happy_evict
[14:39:11] [PASSED] ttm_bo_validate_all_pinned_evict
[14:39:11] [PASSED] ttm_bo_validate_allowed_only_evict
[14:39:11] [PASSED] ttm_bo_validate_deleted_evict
[14:39:11] [PASSED] ttm_bo_validate_busy_domain_evict
[14:39:11] [PASSED] ttm_bo_validate_evict_gutting
[14:39:11] [PASSED] ttm_bo_validate_recrusive_evict
[14:39:11] ================= [PASSED] ttm_bo_validate =================
[14:39:11] ============================================================
[14:39:11] Testing complete. Ran 102 tests: passed: 102
[14:39:11] Elapsed time: 11.634s total, 1.774s configuring, 9.595s building, 0.230s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for drm/i915/psr: Prevent DC entry during active vblank for Panel Replay
2026-04-28 12:39 [RFC PATCH] drm/i915/psr: Prevent DC entry during active vblank for Panel Replay Dibin Moolakadan Subrahmanian
` (2 preceding siblings ...)
2026-04-28 14:39 ` ✓ CI.KUnit: success " Patchwork
@ 2026-04-28 15:33 ` Patchwork
2026-04-29 2:15 ` ✗ Xe.CI.FULL: failure " Patchwork
` (4 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-04-28 15:33 UTC (permalink / raw)
To: Dibin Moolakadan Subrahmanian; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 982 bytes --]
== Series Details ==
Series: drm/i915/psr: Prevent DC entry during active vblank for Panel Replay
URL : https://patchwork.freedesktop.org/series/165630/
State : success
== Summary ==
CI Bug Log - changes from xe-4946-e066eb26712bca7174e694a358351c50a38661d6_BAT -> xe-pw-165630v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-4946-e066eb26712bca7174e694a358351c50a38661d6 -> xe-pw-165630v1
IGT_8874: 4568b2c141ab630c34f8eb2b9afab8cbf8f3ce9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4946-e066eb26712bca7174e694a358351c50a38661d6: e066eb26712bca7174e694a358351c50a38661d6
xe-pw-165630v1: 165630v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/index.html
[-- Attachment #2: Type: text/html, Size: 1530 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [RFC PATCH] drm/i915/psr: Prevent DC entry during active vblank for Panel Replay
2026-04-28 12:56 ` Hogander, Jouni
@ 2026-04-28 16:39 ` Dibin Moolakadan Subrahmanian
0 siblings, 0 replies; 11+ messages in thread
From: Dibin Moolakadan Subrahmanian @ 2026-04-28 16:39 UTC (permalink / raw)
To: Hogander, Jouni, intel-xe@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org
On 28-04-2026 18:26, Hogander, Jouni wrote:
> On Tue, 2026-04-28 at 18:09 +0530, Dibin Moolakadan Subrahmanian wrote:
>> On PTL+ (display ver >= 30), hold the DMC wakelock while vblank is
>> enabled for Panel Replay. Older platforms rely on
>> intel_display_power_set_target_dc_state() for this.
>>
>> The wakelock is acquired/released at two places:
>> 1) Dynamically when vblank is enabled/disabled via
>> intel_psr_notify_vblank_enable_disable().
>> 2) In the PSR enable/disable path.
>>
>> This handles the following ordering scenarios:
>> 1) Panel Replay is enabled before vblank enable arrives.
>> 2) Vblank enable arrives before Panel Replay is updated in
>> intel_psr_post_plane_update().
> As discussed offline I would check if we could just take the wakelock
> when VBI is getting enabled.
Thanks for the review. As discussed offline,
I’ll rework this and post a new series which unifies the handling
by taking the DMC wakelock when VBI/vblank is enabled.
>
> BR,
> Jouni Högander
>
>> ---
>> .../drm/i915/display/intel_display_types.h | 2 +
>> drivers/gpu/drm/i915/display/intel_psr.c | 55
>> +++++++++++++++++--
>> 2 files changed, 53 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h
>> b/drivers/gpu/drm/i915/display/intel_display_types.h
>> index c81916761850..f386d6dba9e5 100644
>> --- a/drivers/gpu/drm/i915/display/intel_display_types.h
>> +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
>> @@ -1775,6 +1775,8 @@ struct intel_psr {
>> bool source_panel_replay_support;
>> bool sink_panel_replay_support;
>> bool panel_replay_enabled;
>> + bool panel_replay_wakelock;
>> + bool vblank_enabled;
>> u32 dc3co_exitline;
>> u32 dc3co_exit_delay;
>> struct delayed_work dc3co_work;
>> diff --git a/drivers/gpu/drm/i915/display/intel_psr.c
>> b/drivers/gpu/drm/i915/display/intel_psr.c
>> index 63c19958a9e3..82bc63054906 100644
>> --- a/drivers/gpu/drm/i915/display/intel_psr.c
>> +++ b/drivers/gpu/drm/i915/display/intel_psr.c
>> @@ -2192,6 +2192,34 @@ static bool psr_interrupt_error_check(struct
>> intel_dp *intel_dp)
>> return true;
>> }
>>
>> +static void intel_panel_replay_get_wakelock_locked(struct intel_dp
>> *intel_dp)
>> +{
>> + struct intel_display *display = to_intel_display(intel_dp);
>> +
>> + if (DISPLAY_VER(display) < 30)
>> + return;
>> +
>> + if (intel_dp->psr.panel_replay_wakelock)
>> + return;
>> +
>> + intel_dmc_wl_get_noreg(display);
>> + intel_dp->psr.panel_replay_wakelock = true;
>> +}
>> +
>> +static void intel_panel_replay_put_wakelock_locked(struct intel_dp
>> *intel_dp)
>> +{
>> + struct intel_display *display = to_intel_display(intel_dp);
>> +
>> + if (DISPLAY_VER(display) < 30)
>> + return;
>> +
>> + if (!intel_dp->psr.panel_replay_wakelock)
>> + return;
>> +
>> + intel_dmc_wl_put_noreg(display);
>> + intel_dp->psr.panel_replay_wakelock = false;
>> +}
>> +
>> static void intel_psr_enable_locked(struct intel_dp *intel_dp,
>> const struct intel_crtc_state
>> *crtc_state)
>> {
>> @@ -2224,8 +2252,11 @@ static void intel_psr_enable_locked(struct
>> intel_dp *intel_dp,
>> if (!psr_interrupt_error_check(intel_dp))
>> return;
>>
>> - if (intel_dp->psr.panel_replay_enabled)
>> + if (intel_dp->psr.panel_replay_enabled) {
>> + if (intel_dp->psr.vblank_enabled)
>> + intel_panel_replay_get_wakelock_locked(intel
>> _dp);
>> drm_dbg_kms(display->drm, "Enabling Panel
>> Replay\n");
>> + }
>> else
>> drm_dbg_kms(display->drm, "Enabling PSR%s\n",
>> intel_dp->psr.sel_update_enabled ? "2" :
>> "1");
>> @@ -2344,8 +2375,10 @@ static void intel_psr_disable_locked(struct
>> intel_dp *intel_dp)
>> if (!intel_dp->psr.enabled)
>> return;
>>
>> - if (intel_dp->psr.panel_replay_enabled)
>> + if (intel_dp->psr.panel_replay_enabled) {
>> + intel_panel_replay_put_wakelock_locked(intel_dp);
>> drm_dbg_kms(display->drm, "Disabling Panel
>> Replay\n");
>> + }
>> else
>> drm_dbg_kms(display->drm, "Disabling PSR%s\n",
>> intel_dp->psr.sel_update_enabled ? "2" :
>> "1");
>> @@ -4143,9 +4176,24 @@ void
>> intel_psr_notify_vblank_enable_disable(struct intel_display *display,
>> struct intel_dp *intel_dp =
>> enc_to_intel_dp(encoder);
>>
>> mutex_lock(&intel_dp->psr.lock);
>> + intel_dp->psr.vblank_enabled = enable;
>> if (intel_dp->psr.panel_replay_enabled) {
>> + /*
>> + * wakelock handling for panel replay
>> + * for older platform rely on
>> intel_display_power_set_target_dc_state().
>> + */
>> + if (DISPLAY_VER(display) < 30) {
>> + mutex_unlock(&intel_dp->psr.lock);
>> + break;
>> + }
>> +
>> + if (enable)
>> + intel_panel_replay_get_wakelock_lock
>> ed(intel_dp);
>> + else
>> + intel_panel_replay_put_wakelock_lock
>> ed(intel_dp);
>> +
>> mutex_unlock(&intel_dp->psr.lock);
>> - break;
>> + return;
>> }
>>
>> if (intel_dp->psr.enabled && intel_dp-
>>> psr.pkg_c_latency_used)
>> @@ -4154,7 +4202,6 @@ void
>> intel_psr_notify_vblank_enable_disable(struct intel_display *display,
>> mutex_unlock(&intel_dp->psr.lock);
>> return;
>> }
>> -
>> /*
>> * NOTE: intel_display_power_set_target_dc_state is used
>> * only by PSR * code for DC3CO handling. DC3CO target
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.FULL: failure for drm/i915/psr: Prevent DC entry during active vblank for Panel Replay
2026-04-28 12:39 [RFC PATCH] drm/i915/psr: Prevent DC entry during active vblank for Panel Replay Dibin Moolakadan Subrahmanian
` (3 preceding siblings ...)
2026-04-28 15:33 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-29 2:15 ` Patchwork
2026-04-29 8:34 ` ✗ CI.checkpatch: warning for drm/i915/psr: Prevent DC entry during active vblank for Panel Replay (rev2) Patchwork
` (3 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-04-29 2:15 UTC (permalink / raw)
To: Dibin Moolakadan Subrahmanian; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 41670 bytes --]
== Series Details ==
Series: drm/i915/psr: Prevent DC entry during active vblank for Panel Replay
URL : https://patchwork.freedesktop.org/series/165630/
State : failure
== Summary ==
CI Bug Log - changes from xe-4946-e066eb26712bca7174e694a358351c50a38661d6_FULL -> xe-pw-165630v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-165630v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-165630v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-165630v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_crc@cursor-sliding-256x256:
- shard-bmg: [PASS][1] -> [FAIL][2] +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-256x256.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x256.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html
Known issues
------------
Here are the changes found in xe-pw-165630v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#7059] / [Intel XE#7085]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327]) +4 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2328] / [Intel XE#7367])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#607] / [Intel XE#7361])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +7 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +16 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#3432]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2252]) +6 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#6507])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#6974])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][16] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2320]) +4 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2321] / [Intel XE#7355]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2286] / [Intel XE#6035])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#4354] / [Intel XE#5870])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2244]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#6126] / [Intel XE#776])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#1138] / [Intel XE#7344])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][24] -> [FAIL][25] ([Intel XE#301]) +1 other test fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7178] / [Intel XE#7349])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2311]) +30 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4141]) +7 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7061] / [Intel XE#7356]) +4 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2352] / [Intel XE#7399]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2313]) +28 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7130]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7283]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7376] / [Intel XE#870]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-7/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2499])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#1489]) +7 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@psr-basic:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2234] / [Intel XE#2850]) +12 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_psr@psr-basic.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2234])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2330] / [Intel XE#5813])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2413])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1435])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sharpness_filter@filter-modifiers:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#6503])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_sharpness_filter@filter-modifiers.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2450] / [Intel XE#5857])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#1499]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-7/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][46] -> [FAIL][47] ([Intel XE#2142]) +1 other test fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7636]) +14 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-7/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#5793] / [Intel XE#7320] / [Intel XE#7464])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: NOTRUN -> [INCOMPLETE][50] ([Intel XE#6321])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2322] / [Intel XE#7372]) +7 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_compute_mode@twice-basic:
- shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#6557] / [Intel XE#6703]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@xe_exec_compute_mode@twice-basic.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@xe_exec_compute_mode@twice-basic.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-imm:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7136]) +12 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#6874]) +30 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_system_allocator@many-large-execqueues-mmap-new:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#6703]) +135 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@xe_exec_system_allocator@many-large-execqueues-mmap-new.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@xe_exec_system_allocator@many-large-execqueues-mmap-new.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][58] ([Intel XE#7098])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_threads@threads-mixed-userptr-invalidate:
- shard-bmg: [PASS][59] -> [DMESG-FAIL][60] ([Intel XE#6652])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@xe_exec_threads@threads-mixed-userptr-invalidate.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@xe_exec_threads@threads-mixed-userptr-invalidate.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7138]) +8 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#6281] / [Intel XE#7426])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2229])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2833])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_multigpu_svm@mgpu-atomic-op-conflict:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#6964]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-7/igt@xe_multigpu_svm@mgpu-atomic-op-conflict.html
* igt@xe_page_reclaim@invalid-1g:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#7793]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-7/igt@xe_page_reclaim@invalid-1g.html
* igt@xe_pat@l2-flush-opt-svm-pat-restrict:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#7590])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html
* igt@xe_pat@pat-sw-hw-compare:
- shard-bmg: NOTRUN -> [FAIL][68] ([Intel XE#7695])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@xe_pat@pat-sw-hw-compare.html
* igt@xe_pm@d3hot-i2c:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-7/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pxp@pxp-termination-key-update-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#4733] / [Intel XE#7417])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#944]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
#### Possible fixes ####
* igt@kms_flip@blocking-wf_vblank@a-edp1:
- shard-lnl: [FAIL][73] ([Intel XE#6266]) -> [PASS][74] +1 other test pass
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-lnl-4/igt@kms_flip@blocking-wf_vblank@a-edp1.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-lnl-6/igt@kms_flip@blocking-wf_vblank@a-edp1.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][75] ([Intel XE#1503]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-8/igt@kms_hdr@invalid-hdr.html
#### Warnings ####
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-bmg: [SKIP][77] ([Intel XE#1124]) -> [SKIP][78] ([Intel XE#6703]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs:
- shard-bmg: [SKIP][79] ([Intel XE#2887]) -> [SKIP][80] ([Intel XE#6703]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_chamelium_hpd@common-hpd-after-hibernate:
- shard-bmg: [SKIP][81] ([Intel XE#2252]) -> [SKIP][82] ([Intel XE#6703])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html
* igt@kms_content_protection@mei-interface:
- shard-bmg: [SKIP][83] ([Intel XE#7642]) -> [SKIP][84] ([Intel XE#6703])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_content_protection@mei-interface.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-bmg: [SKIP][85] ([Intel XE#2320]) -> [SKIP][86] ([Intel XE#6703]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: [SKIP][87] ([Intel XE#4156] / [Intel XE#7425]) -> [SKIP][88] ([Intel XE#6703])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_fbcon_fbt@fbc.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_fbcon_fbt@fbc.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: [SKIP][89] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][90] ([Intel XE#6703]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][91] ([Intel XE#2311]) -> [SKIP][92] ([Intel XE#6703]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-render:
- shard-bmg: [SKIP][93] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][94] ([Intel XE#6703])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-render.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][95] ([Intel XE#4141]) -> [SKIP][96] ([Intel XE#6703]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][97] ([Intel XE#2311]) -> [SKIP][98] ([Intel XE#6557] / [Intel XE#6703])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
- shard-bmg: [SKIP][99] ([Intel XE#2313]) -> [SKIP][100] ([Intel XE#6703]) +5 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: [SKIP][101] ([Intel XE#5020] / [Intel XE#7348]) -> [SKIP][102] ([Intel XE#6703])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_plane_multiple@tiling-y.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: [SKIP][103] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][104] ([Intel XE#6703])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: [SKIP][105] ([Intel XE#1489]) -> [SKIP][106] ([Intel XE#6703])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-bmg: [SKIP][107] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][108] ([Intel XE#6703]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_psr@fbc-pr-primary-page-flip.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_sharpness_filter@filter-rotations:
- shard-bmg: [SKIP][109] ([Intel XE#6503]) -> [SKIP][110] ([Intel XE#6703])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@kms_sharpness_filter@filter-rotations.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@kms_sharpness_filter@filter-rotations.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][111] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][112] ([Intel XE#2426] / [Intel XE#5848])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: [SKIP][113] ([Intel XE#7636]) -> [SKIP][114] ([Intel XE#6703])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-bmg: [SKIP][115] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][116] ([Intel XE#6703]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@xe_exec_basic@multigpu-once-userptr.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-prefetch:
- shard-bmg: [SKIP][117] ([Intel XE#7136]) -> [SKIP][118] ([Intel XE#6703]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-prefetch.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-prefetch.html
* igt@xe_exec_multi_queue@many-queues-basic-smem:
- shard-bmg: [SKIP][119] ([Intel XE#6874]) -> [SKIP][120] ([Intel XE#6703]) +6 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@xe_exec_multi_queue@many-queues-basic-smem.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-basic-smem.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind:
- shard-bmg: [SKIP][121] ([Intel XE#7138]) -> [SKIP][122] ([Intel XE#6703])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
* igt@xe_page_reclaim@random:
- shard-bmg: [SKIP][123] ([Intel XE#7793]) -> [SKIP][124] ([Intel XE#6703])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@xe_page_reclaim@random.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@xe_page_reclaim@random.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-bmg: [SKIP][125] ([Intel XE#2284] / [Intel XE#7370]) -> [SKIP][126] ([Intel XE#6703])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@xe_pm@d3cold-mmap-vram.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-bmg: [SKIP][127] ([Intel XE#4733] / [Intel XE#7417]) -> [SKIP][128] ([Intel XE#6703])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_query@multigpu-query-topology:
- shard-bmg: [SKIP][129] ([Intel XE#944]) -> [SKIP][130] ([Intel XE#6703])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4946-e066eb26712bca7174e694a358351c50a38661d6/shard-bmg-9/igt@xe_query@multigpu-query-topology.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/shard-bmg-2/igt@xe_query@multigpu-query-topology.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[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#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
[Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[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#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[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#7320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7320
[Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
[Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[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#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7426
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7464
[Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4946-e066eb26712bca7174e694a358351c50a38661d6 -> xe-pw-165630v1
IGT_8874: 4568b2c141ab630c34f8eb2b9afab8cbf8f3ce9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4946-e066eb26712bca7174e694a358351c50a38661d6: e066eb26712bca7174e694a358351c50a38661d6
xe-pw-165630v1: 165630v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v1/index.html
[-- Attachment #2: Type: text/html, Size: 47896 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ CI.checkpatch: warning for drm/i915/psr: Prevent DC entry during active vblank for Panel Replay (rev2)
2026-04-28 12:39 [RFC PATCH] drm/i915/psr: Prevent DC entry during active vblank for Panel Replay Dibin Moolakadan Subrahmanian
` (4 preceding siblings ...)
2026-04-29 2:15 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-29 8:34 ` Patchwork
2026-04-29 8:35 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-04-29 8:34 UTC (permalink / raw)
To: Dibin Moolakadan Subrahmanian; +Cc: intel-xe
== Series Details ==
Series: drm/i915/psr: Prevent DC entry during active vblank for Panel Replay (rev2)
URL : https://patchwork.freedesktop.org/series/165630/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
c8c12e558adaef7a4d125d83b6e1f8824bc13b82
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit f0edcee9ba46e7b0aec47cef436d557b4b869a8c
Author: Dibin Moolakadan Subrahmanian <dibin.moolakadan.subrahmanian@intel.com>
Date: Tue Apr 28 18:09:51 2026 +0530
drm/i915/psr: Prevent DC entry during active vblank for Panel Replay
On PTL+ (display ver >= 30), hold the DMC wakelock while vblank is
enabled for Panel Replay. Older platforms rely on
intel_display_power_set_target_dc_state() for this.
The wakelock is acquired/released at two places:
1) Dynamically when vblank is enabled/disabled via
intel_psr_notify_vblank_enable_disable().
2) In the PSR enable/disable path.
This handles the following ordering scenarios:
1) Panel Replay is enabled before vblank enable arrives.
2) Vblank enable arrives before Panel Replay is updated in
intel_psr_post_plane_update().
+ /mt/dim checkpatch 1db870ffb55b6414a78d7609ba7e08adf880dfc5 drm-intel
f0edcee9ba46 drm/i915/psr: Prevent DC entry during active vblank for Panel Replay
-:131: ERROR:MISSING_SIGN_OFF: Missing Signed-off-by: line(s)
total: 1 errors, 0 warnings, 0 checks, 97 lines checked
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ CI.KUnit: success for drm/i915/psr: Prevent DC entry during active vblank for Panel Replay (rev2)
2026-04-28 12:39 [RFC PATCH] drm/i915/psr: Prevent DC entry during active vblank for Panel Replay Dibin Moolakadan Subrahmanian
` (5 preceding siblings ...)
2026-04-29 8:34 ` ✗ CI.checkpatch: warning for drm/i915/psr: Prevent DC entry during active vblank for Panel Replay (rev2) Patchwork
@ 2026-04-29 8:35 ` Patchwork
2026-04-29 9:24 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-29 17:52 ` ✗ Xe.CI.FULL: failure " Patchwork
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-04-29 8:35 UTC (permalink / raw)
To: Dibin Moolakadan Subrahmanian; +Cc: intel-xe
== Series Details ==
Series: drm/i915/psr: Prevent DC entry during active vblank for Panel Replay (rev2)
URL : https://patchwork.freedesktop.org/series/165630/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[08:34:06] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:34:10] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[08:34:41] Starting KUnit Kernel (1/1)...
[08:34:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:34:42] ================== guc_buf (11 subtests) ===================
[08:34:42] [PASSED] test_smallest
[08:34:42] [PASSED] test_largest
[08:34:42] [PASSED] test_granular
[08:34:42] [PASSED] test_unique
[08:34:42] [PASSED] test_overlap
[08:34:42] [PASSED] test_reusable
[08:34:42] [PASSED] test_too_big
[08:34:42] [PASSED] test_flush
[08:34:42] [PASSED] test_lookup
[08:34:42] [PASSED] test_data
[08:34:42] [PASSED] test_class
[08:34:42] ===================== [PASSED] guc_buf =====================
[08:34:42] =================== guc_dbm (7 subtests) ===================
[08:34:42] [PASSED] test_empty
[08:34:42] [PASSED] test_default
[08:34:42] ======================== test_size ========================
[08:34:42] [PASSED] 4
[08:34:42] [PASSED] 8
[08:34:42] [PASSED] 32
[08:34:42] [PASSED] 256
[08:34:42] ==================== [PASSED] test_size ====================
[08:34:42] ======================= test_reuse ========================
[08:34:42] [PASSED] 4
[08:34:42] [PASSED] 8
[08:34:42] [PASSED] 32
[08:34:42] [PASSED] 256
[08:34:42] =================== [PASSED] test_reuse ====================
[08:34:42] =================== test_range_overlap ====================
[08:34:42] [PASSED] 4
[08:34:42] [PASSED] 8
[08:34:42] [PASSED] 32
[08:34:42] [PASSED] 256
[08:34:42] =============== [PASSED] test_range_overlap ================
[08:34:42] =================== test_range_compact ====================
[08:34:42] [PASSED] 4
[08:34:42] [PASSED] 8
[08:34:42] [PASSED] 32
[08:34:42] [PASSED] 256
[08:34:42] =============== [PASSED] test_range_compact ================
[08:34:42] ==================== test_range_spare =====================
[08:34:42] [PASSED] 4
[08:34:42] [PASSED] 8
[08:34:42] [PASSED] 32
[08:34:42] [PASSED] 256
[08:34:42] ================ [PASSED] test_range_spare =================
[08:34:42] ===================== [PASSED] guc_dbm =====================
[08:34:42] =================== guc_idm (6 subtests) ===================
[08:34:42] [PASSED] bad_init
[08:34:42] [PASSED] no_init
[08:34:42] [PASSED] init_fini
[08:34:42] [PASSED] check_used
[08:34:42] [PASSED] check_quota
[08:34:42] [PASSED] check_all
[08:34:42] ===================== [PASSED] guc_idm =====================
[08:34:42] ================== no_relay (3 subtests) ===================
[08:34:42] [PASSED] xe_drops_guc2pf_if_not_ready
[08:34:42] [PASSED] xe_drops_guc2vf_if_not_ready
[08:34:42] [PASSED] xe_rejects_send_if_not_ready
[08:34:42] ==================== [PASSED] no_relay =====================
[08:34:42] ================== pf_relay (14 subtests) ==================
[08:34:42] [PASSED] pf_rejects_guc2pf_too_short
[08:34:42] [PASSED] pf_rejects_guc2pf_too_long
[08:34:42] [PASSED] pf_rejects_guc2pf_no_payload
[08:34:42] [PASSED] pf_fails_no_payload
[08:34:42] [PASSED] pf_fails_bad_origin
[08:34:42] [PASSED] pf_fails_bad_type
[08:34:42] [PASSED] pf_txn_reports_error
[08:34:42] [PASSED] pf_txn_sends_pf2guc
[08:34:42] [PASSED] pf_sends_pf2guc
[08:34:42] [SKIPPED] pf_loopback_nop
[08:34:42] [SKIPPED] pf_loopback_echo
[08:34:42] [SKIPPED] pf_loopback_fail
[08:34:42] [SKIPPED] pf_loopback_busy
[08:34:42] [SKIPPED] pf_loopback_retry
[08:34:42] ==================== [PASSED] pf_relay =====================
[08:34:42] ================== vf_relay (3 subtests) ===================
[08:34:42] [PASSED] vf_rejects_guc2vf_too_short
[08:34:42] [PASSED] vf_rejects_guc2vf_too_long
[08:34:42] [PASSED] vf_rejects_guc2vf_no_payload
[08:34:42] ==================== [PASSED] vf_relay =====================
[08:34:42] ================ pf_gt_config (9 subtests) =================
[08:34:42] [PASSED] fair_contexts_1vf
[08:34:42] [PASSED] fair_doorbells_1vf
[08:34:42] [PASSED] fair_ggtt_1vf
[08:34:42] ====================== fair_vram_1vf ======================
[08:34:42] [PASSED] 3.50 GiB
[08:34:42] [PASSED] 11.5 GiB
[08:34:42] [PASSED] 15.5 GiB
[08:34:42] [PASSED] 31.5 GiB
[08:34:42] [PASSED] 63.5 GiB
[08:34:42] [PASSED] 1.91 GiB
[08:34:42] ================== [PASSED] fair_vram_1vf ==================
[08:34:42] ================ fair_vram_1vf_admin_only =================
[08:34:42] [PASSED] 3.50 GiB
[08:34:42] [PASSED] 11.5 GiB
[08:34:42] [PASSED] 15.5 GiB
[08:34:42] [PASSED] 31.5 GiB
[08:34:42] [PASSED] 63.5 GiB
[08:34:42] [PASSED] 1.91 GiB
[08:34:42] ============ [PASSED] fair_vram_1vf_admin_only =============
[08:34:42] ====================== fair_contexts ======================
[08:34:42] [PASSED] 1 VF
[08:34:42] [PASSED] 2 VFs
[08:34:42] [PASSED] 3 VFs
[08:34:42] [PASSED] 4 VFs
[08:34:42] [PASSED] 5 VFs
[08:34:42] [PASSED] 6 VFs
[08:34:42] [PASSED] 7 VFs
[08:34:42] [PASSED] 8 VFs
[08:34:42] [PASSED] 9 VFs
[08:34:42] [PASSED] 10 VFs
[08:34:42] [PASSED] 11 VFs
[08:34:42] [PASSED] 12 VFs
[08:34:42] [PASSED] 13 VFs
[08:34:42] [PASSED] 14 VFs
[08:34:42] [PASSED] 15 VFs
[08:34:42] [PASSED] 16 VFs
[08:34:42] [PASSED] 17 VFs
[08:34:42] [PASSED] 18 VFs
[08:34:42] [PASSED] 19 VFs
[08:34:42] [PASSED] 20 VFs
[08:34:42] [PASSED] 21 VFs
[08:34:42] [PASSED] 22 VFs
[08:34:42] [PASSED] 23 VFs
[08:34:42] [PASSED] 24 VFs
[08:34:42] [PASSED] 25 VFs
[08:34:42] [PASSED] 26 VFs
[08:34:42] [PASSED] 27 VFs
[08:34:42] [PASSED] 28 VFs
[08:34:42] [PASSED] 29 VFs
[08:34:42] [PASSED] 30 VFs
[08:34:42] [PASSED] 31 VFs
[08:34:42] [PASSED] 32 VFs
[08:34:42] [PASSED] 33 VFs
[08:34:42] [PASSED] 34 VFs
[08:34:42] [PASSED] 35 VFs
[08:34:42] [PASSED] 36 VFs
[08:34:42] [PASSED] 37 VFs
[08:34:42] [PASSED] 38 VFs
[08:34:42] [PASSED] 39 VFs
[08:34:42] [PASSED] 40 VFs
[08:34:42] [PASSED] 41 VFs
[08:34:42] [PASSED] 42 VFs
[08:34:42] [PASSED] 43 VFs
[08:34:42] [PASSED] 44 VFs
[08:34:42] [PASSED] 45 VFs
[08:34:42] [PASSED] 46 VFs
[08:34:42] [PASSED] 47 VFs
[08:34:42] [PASSED] 48 VFs
[08:34:42] [PASSED] 49 VFs
[08:34:42] [PASSED] 50 VFs
[08:34:42] [PASSED] 51 VFs
[08:34:42] [PASSED] 52 VFs
[08:34:42] [PASSED] 53 VFs
[08:34:42] [PASSED] 54 VFs
[08:34:42] [PASSED] 55 VFs
[08:34:42] [PASSED] 56 VFs
[08:34:42] [PASSED] 57 VFs
[08:34:42] [PASSED] 58 VFs
[08:34:42] [PASSED] 59 VFs
[08:34:42] [PASSED] 60 VFs
[08:34:42] [PASSED] 61 VFs
[08:34:42] [PASSED] 62 VFs
[08:34:42] [PASSED] 63 VFs
[08:34:42] ================== [PASSED] fair_contexts ==================
[08:34:42] ===================== fair_doorbells ======================
[08:34:42] [PASSED] 1 VF
[08:34:42] [PASSED] 2 VFs
[08:34:42] [PASSED] 3 VFs
[08:34:42] [PASSED] 4 VFs
[08:34:42] [PASSED] 5 VFs
[08:34:42] [PASSED] 6 VFs
[08:34:42] [PASSED] 7 VFs
[08:34:42] [PASSED] 8 VFs
[08:34:42] [PASSED] 9 VFs
[08:34:42] [PASSED] 10 VFs
[08:34:42] [PASSED] 11 VFs
[08:34:42] [PASSED] 12 VFs
[08:34:42] [PASSED] 13 VFs
[08:34:42] [PASSED] 14 VFs
[08:34:42] [PASSED] 15 VFs
[08:34:42] [PASSED] 16 VFs
[08:34:42] [PASSED] 17 VFs
[08:34:42] [PASSED] 18 VFs
[08:34:42] [PASSED] 19 VFs
[08:34:42] [PASSED] 20 VFs
[08:34:42] [PASSED] 21 VFs
[08:34:42] [PASSED] 22 VFs
[08:34:42] [PASSED] 23 VFs
[08:34:42] [PASSED] 24 VFs
[08:34:42] [PASSED] 25 VFs
[08:34:42] [PASSED] 26 VFs
[08:34:42] [PASSED] 27 VFs
[08:34:42] [PASSED] 28 VFs
[08:34:42] [PASSED] 29 VFs
[08:34:42] [PASSED] 30 VFs
[08:34:42] [PASSED] 31 VFs
[08:34:42] [PASSED] 32 VFs
[08:34:42] [PASSED] 33 VFs
[08:34:42] [PASSED] 34 VFs
[08:34:42] [PASSED] 35 VFs
[08:34:42] [PASSED] 36 VFs
[08:34:42] [PASSED] 37 VFs
[08:34:42] [PASSED] 38 VFs
[08:34:42] [PASSED] 39 VFs
[08:34:42] [PASSED] 40 VFs
[08:34:42] [PASSED] 41 VFs
[08:34:42] [PASSED] 42 VFs
[08:34:42] [PASSED] 43 VFs
[08:34:42] [PASSED] 44 VFs
[08:34:42] [PASSED] 45 VFs
[08:34:42] [PASSED] 46 VFs
[08:34:42] [PASSED] 47 VFs
[08:34:42] [PASSED] 48 VFs
[08:34:42] [PASSED] 49 VFs
[08:34:42] [PASSED] 50 VFs
[08:34:42] [PASSED] 51 VFs
[08:34:42] [PASSED] 52 VFs
[08:34:42] [PASSED] 53 VFs
[08:34:42] [PASSED] 54 VFs
[08:34:42] [PASSED] 55 VFs
[08:34:42] [PASSED] 56 VFs
[08:34:42] [PASSED] 57 VFs
[08:34:42] [PASSED] 58 VFs
[08:34:42] [PASSED] 59 VFs
[08:34:42] [PASSED] 60 VFs
[08:34:42] [PASSED] 61 VFs
[08:34:42] [PASSED] 62 VFs
[08:34:42] [PASSED] 63 VFs
[08:34:42] ================= [PASSED] fair_doorbells ==================
[08:34:42] ======================== fair_ggtt ========================
[08:34:42] [PASSED] 1 VF
[08:34:42] [PASSED] 2 VFs
[08:34:42] [PASSED] 3 VFs
[08:34:42] [PASSED] 4 VFs
[08:34:42] [PASSED] 5 VFs
[08:34:42] [PASSED] 6 VFs
[08:34:42] [PASSED] 7 VFs
[08:34:42] [PASSED] 8 VFs
[08:34:42] [PASSED] 9 VFs
[08:34:42] [PASSED] 10 VFs
[08:34:42] [PASSED] 11 VFs
[08:34:42] [PASSED] 12 VFs
[08:34:42] [PASSED] 13 VFs
[08:34:42] [PASSED] 14 VFs
[08:34:42] [PASSED] 15 VFs
[08:34:42] [PASSED] 16 VFs
[08:34:42] [PASSED] 17 VFs
[08:34:42] [PASSED] 18 VFs
[08:34:42] [PASSED] 19 VFs
[08:34:42] [PASSED] 20 VFs
[08:34:42] [PASSED] 21 VFs
[08:34:42] [PASSED] 22 VFs
[08:34:42] [PASSED] 23 VFs
[08:34:42] [PASSED] 24 VFs
[08:34:42] [PASSED] 25 VFs
[08:34:42] [PASSED] 26 VFs
[08:34:42] [PASSED] 27 VFs
[08:34:42] [PASSED] 28 VFs
[08:34:42] [PASSED] 29 VFs
[08:34:42] [PASSED] 30 VFs
[08:34:42] [PASSED] 31 VFs
[08:34:42] [PASSED] 32 VFs
[08:34:42] [PASSED] 33 VFs
[08:34:42] [PASSED] 34 VFs
[08:34:42] [PASSED] 35 VFs
[08:34:42] [PASSED] 36 VFs
[08:34:42] [PASSED] 37 VFs
[08:34:42] [PASSED] 38 VFs
[08:34:42] [PASSED] 39 VFs
[08:34:42] [PASSED] 40 VFs
[08:34:42] [PASSED] 41 VFs
[08:34:42] [PASSED] 42 VFs
[08:34:42] [PASSED] 43 VFs
[08:34:42] [PASSED] 44 VFs
[08:34:42] [PASSED] 45 VFs
[08:34:42] [PASSED] 46 VFs
[08:34:42] [PASSED] 47 VFs
[08:34:42] [PASSED] 48 VFs
[08:34:42] [PASSED] 49 VFs
[08:34:42] [PASSED] 50 VFs
[08:34:42] [PASSED] 51 VFs
[08:34:42] [PASSED] 52 VFs
[08:34:42] [PASSED] 53 VFs
[08:34:42] [PASSED] 54 VFs
[08:34:42] [PASSED] 55 VFs
[08:34:42] [PASSED] 56 VFs
[08:34:42] [PASSED] 57 VFs
[08:34:42] [PASSED] 58 VFs
[08:34:42] [PASSED] 59 VFs
[08:34:42] [PASSED] 60 VFs
[08:34:42] [PASSED] 61 VFs
[08:34:42] [PASSED] 62 VFs
[08:34:42] [PASSED] 63 VFs
[08:34:42] ==================== [PASSED] fair_ggtt ====================
[08:34:42] ======================== fair_vram ========================
[08:34:42] [PASSED] 1 VF
[08:34:42] [PASSED] 2 VFs
[08:34:42] [PASSED] 3 VFs
[08:34:42] [PASSED] 4 VFs
[08:34:42] [PASSED] 5 VFs
[08:34:42] [PASSED] 6 VFs
[08:34:42] [PASSED] 7 VFs
[08:34:42] [PASSED] 8 VFs
[08:34:42] [PASSED] 9 VFs
[08:34:42] [PASSED] 10 VFs
[08:34:42] [PASSED] 11 VFs
[08:34:42] [PASSED] 12 VFs
[08:34:42] [PASSED] 13 VFs
[08:34:42] [PASSED] 14 VFs
[08:34:42] [PASSED] 15 VFs
[08:34:42] [PASSED] 16 VFs
[08:34:42] [PASSED] 17 VFs
[08:34:42] [PASSED] 18 VFs
[08:34:42] [PASSED] 19 VFs
[08:34:42] [PASSED] 20 VFs
[08:34:42] [PASSED] 21 VFs
[08:34:42] [PASSED] 22 VFs
[08:34:42] [PASSED] 23 VFs
[08:34:42] [PASSED] 24 VFs
[08:34:42] [PASSED] 25 VFs
[08:34:42] [PASSED] 26 VFs
[08:34:42] [PASSED] 27 VFs
[08:34:42] [PASSED] 28 VFs
[08:34:42] [PASSED] 29 VFs
[08:34:42] [PASSED] 30 VFs
[08:34:42] [PASSED] 31 VFs
[08:34:42] [PASSED] 32 VFs
[08:34:42] [PASSED] 33 VFs
[08:34:42] [PASSED] 34 VFs
[08:34:42] [PASSED] 35 VFs
[08:34:42] [PASSED] 36 VFs
[08:34:42] [PASSED] 37 VFs
[08:34:42] [PASSED] 38 VFs
[08:34:42] [PASSED] 39 VFs
[08:34:42] [PASSED] 40 VFs
[08:34:42] [PASSED] 41 VFs
[08:34:42] [PASSED] 42 VFs
[08:34:42] [PASSED] 43 VFs
[08:34:42] [PASSED] 44 VFs
[08:34:42] [PASSED] 45 VFs
[08:34:42] [PASSED] 46 VFs
[08:34:42] [PASSED] 47 VFs
[08:34:42] [PASSED] 48 VFs
[08:34:42] [PASSED] 49 VFs
[08:34:42] [PASSED] 50 VFs
[08:34:42] [PASSED] 51 VFs
[08:34:42] [PASSED] 52 VFs
[08:34:42] [PASSED] 53 VFs
[08:34:42] [PASSED] 54 VFs
[08:34:42] [PASSED] 55 VFs
[08:34:42] [PASSED] 56 VFs
[08:34:42] [PASSED] 57 VFs
[08:34:42] [PASSED] 58 VFs
[08:34:42] [PASSED] 59 VFs
[08:34:42] [PASSED] 60 VFs
[08:34:42] [PASSED] 61 VFs
[08:34:42] [PASSED] 62 VFs
[08:34:42] [PASSED] 63 VFs
[08:34:42] ==================== [PASSED] fair_vram ====================
[08:34:42] ================== [PASSED] pf_gt_config ===================
[08:34:42] ===================== lmtt (1 subtest) =====================
[08:34:42] ======================== test_ops =========================
[08:34:42] [PASSED] 2-level
[08:34:42] [PASSED] multi-level
[08:34:42] ==================== [PASSED] test_ops =====================
[08:34:42] ====================== [PASSED] lmtt =======================
[08:34:42] ================= pf_service (11 subtests) =================
[08:34:42] [PASSED] pf_negotiate_any
[08:34:42] [PASSED] pf_negotiate_base_match
[08:34:42] [PASSED] pf_negotiate_base_newer
[08:34:42] [PASSED] pf_negotiate_base_next
[08:34:42] [SKIPPED] pf_negotiate_base_older
[08:34:42] [PASSED] pf_negotiate_base_prev
[08:34:42] [PASSED] pf_negotiate_latest_match
[08:34:42] [PASSED] pf_negotiate_latest_newer
[08:34:42] [PASSED] pf_negotiate_latest_next
[08:34:42] [SKIPPED] pf_negotiate_latest_older
[08:34:42] [SKIPPED] pf_negotiate_latest_prev
[08:34:42] =================== [PASSED] pf_service ====================
[08:34:42] ================= xe_guc_g2g (2 subtests) ==================
[08:34:42] ============== xe_live_guc_g2g_kunit_default ==============
[08:34:42] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[08:34:42] ============== xe_live_guc_g2g_kunit_allmem ===============
[08:34:42] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[08:34:42] =================== [SKIPPED] xe_guc_g2g ===================
[08:34:42] =================== xe_mocs (2 subtests) ===================
[08:34:42] ================ xe_live_mocs_kernel_kunit ================
[08:34:42] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[08:34:42] ================ xe_live_mocs_reset_kunit =================
[08:34:42] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[08:34:42] ==================== [SKIPPED] xe_mocs =====================
[08:34:42] ================= xe_migrate (2 subtests) ==================
[08:34:42] ================= xe_migrate_sanity_kunit =================
[08:34:42] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[08:34:42] ================== xe_validate_ccs_kunit ==================
[08:34:42] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[08:34:42] =================== [SKIPPED] xe_migrate ===================
[08:34:42] ================== xe_dma_buf (1 subtest) ==================
[08:34:42] ==================== xe_dma_buf_kunit =====================
[08:34:42] ================ [SKIPPED] xe_dma_buf_kunit ================
[08:34:42] =================== [SKIPPED] xe_dma_buf ===================
[08:34:42] ================= xe_bo_shrink (1 subtest) =================
[08:34:42] =================== xe_bo_shrink_kunit ====================
[08:34:42] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[08:34:42] ================== [SKIPPED] xe_bo_shrink ==================
[08:34:42] ==================== xe_bo (2 subtests) ====================
[08:34:42] ================== xe_ccs_migrate_kunit ===================
[08:34:42] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[08:34:42] ==================== xe_bo_evict_kunit ====================
[08:34:42] =============== [SKIPPED] xe_bo_evict_kunit ================
[08:34:42] ===================== [SKIPPED] xe_bo ======================
[08:34:42] ==================== args (13 subtests) ====================
[08:34:42] [PASSED] count_args_test
[08:34:42] [PASSED] call_args_example
[08:34:42] [PASSED] call_args_test
[08:34:42] [PASSED] drop_first_arg_example
[08:34:42] [PASSED] drop_first_arg_test
[08:34:42] [PASSED] first_arg_example
[08:34:42] [PASSED] first_arg_test
[08:34:42] [PASSED] last_arg_example
[08:34:42] [PASSED] last_arg_test
[08:34:42] [PASSED] pick_arg_example
[08:34:42] [PASSED] if_args_example
[08:34:42] [PASSED] if_args_test
[08:34:42] [PASSED] sep_comma_example
[08:34:42] ====================== [PASSED] args =======================
[08:34:42] =================== xe_pci (3 subtests) ====================
[08:34:42] ==================== check_graphics_ip ====================
[08:34:42] [PASSED] 12.00 Xe_LP
[08:34:42] [PASSED] 12.10 Xe_LP+
[08:34:42] [PASSED] 12.55 Xe_HPG
[08:34:42] [PASSED] 12.60 Xe_HPC
[08:34:42] [PASSED] 12.70 Xe_LPG
[08:34:42] [PASSED] 12.71 Xe_LPG
[08:34:42] [PASSED] 12.74 Xe_LPG+
[08:34:42] [PASSED] 20.01 Xe2_HPG
[08:34:42] [PASSED] 20.02 Xe2_HPG
[08:34:42] [PASSED] 20.04 Xe2_LPG
[08:34:42] [PASSED] 30.00 Xe3_LPG
[08:34:42] [PASSED] 30.01 Xe3_LPG
[08:34:42] [PASSED] 30.03 Xe3_LPG
[08:34:42] [PASSED] 30.04 Xe3_LPG
[08:34:42] [PASSED] 30.05 Xe3_LPG
[08:34:42] [PASSED] 35.10 Xe3p_LPG
[08:34:42] [PASSED] 35.11 Xe3p_XPC
[08:34:42] ================ [PASSED] check_graphics_ip ================
[08:34:42] ===================== check_media_ip ======================
[08:34:42] [PASSED] 12.00 Xe_M
[08:34:42] [PASSED] 12.55 Xe_HPM
[08:34:42] [PASSED] 13.00 Xe_LPM+
[08:34:42] [PASSED] 13.01 Xe2_HPM
[08:34:42] [PASSED] 20.00 Xe2_LPM
[08:34:42] [PASSED] 30.00 Xe3_LPM
[08:34:42] [PASSED] 30.02 Xe3_LPM
[08:34:42] [PASSED] 35.00 Xe3p_LPM
[08:34:42] [PASSED] 35.03 Xe3p_HPM
[08:34:42] ================= [PASSED] check_media_ip ==================
[08:34:42] =================== check_platform_desc ===================
[08:34:42] [PASSED] 0x9A60 (TIGERLAKE)
[08:34:42] [PASSED] 0x9A68 (TIGERLAKE)
[08:34:42] [PASSED] 0x9A70 (TIGERLAKE)
[08:34:42] [PASSED] 0x9A40 (TIGERLAKE)
[08:34:42] [PASSED] 0x9A49 (TIGERLAKE)
[08:34:42] [PASSED] 0x9A59 (TIGERLAKE)
[08:34:42] [PASSED] 0x9A78 (TIGERLAKE)
[08:34:42] [PASSED] 0x9AC0 (TIGERLAKE)
[08:34:42] [PASSED] 0x9AC9 (TIGERLAKE)
[08:34:42] [PASSED] 0x9AD9 (TIGERLAKE)
[08:34:42] [PASSED] 0x9AF8 (TIGERLAKE)
[08:34:42] [PASSED] 0x4C80 (ROCKETLAKE)
[08:34:42] [PASSED] 0x4C8A (ROCKETLAKE)
[08:34:42] [PASSED] 0x4C8B (ROCKETLAKE)
[08:34:42] [PASSED] 0x4C8C (ROCKETLAKE)
[08:34:42] [PASSED] 0x4C90 (ROCKETLAKE)
[08:34:42] [PASSED] 0x4C9A (ROCKETLAKE)
[08:34:42] [PASSED] 0x4680 (ALDERLAKE_S)
[08:34:42] [PASSED] 0x4682 (ALDERLAKE_S)
[08:34:42] [PASSED] 0x4688 (ALDERLAKE_S)
[08:34:42] [PASSED] 0x468A (ALDERLAKE_S)
[08:34:42] [PASSED] 0x468B (ALDERLAKE_S)
[08:34:42] [PASSED] 0x4690 (ALDERLAKE_S)
[08:34:42] [PASSED] 0x4692 (ALDERLAKE_S)
[08:34:42] [PASSED] 0x4693 (ALDERLAKE_S)
[08:34:42] [PASSED] 0x46A0 (ALDERLAKE_P)
[08:34:42] [PASSED] 0x46A1 (ALDERLAKE_P)
[08:34:42] [PASSED] 0x46A2 (ALDERLAKE_P)
[08:34:42] [PASSED] 0x46A3 (ALDERLAKE_P)
[08:34:42] [PASSED] 0x46A6 (ALDERLAKE_P)
[08:34:42] [PASSED] 0x46A8 (ALDERLAKE_P)
[08:34:42] [PASSED] 0x46AA (ALDERLAKE_P)
[08:34:42] [PASSED] 0x462A (ALDERLAKE_P)
[08:34:42] [PASSED] 0x4626 (ALDERLAKE_P)
[08:34:42] [PASSED] 0x4628 (ALDERLAKE_P)
[08:34:42] [PASSED] 0x46B0 (ALDERLAKE_P)
[08:34:42] [PASSED] 0x46B1 (ALDERLAKE_P)
[08:34:42] [PASSED] 0x46B2 (ALDERLAKE_P)
[08:34:42] [PASSED] 0x46B3 (ALDERLAKE_P)
[08:34:42] [PASSED] 0x46C0 (ALDERLAKE_P)
[08:34:42] [PASSED] 0x46C1 (ALDERLAKE_P)
[08:34:42] [PASSED] 0x46C2 (ALDERLAKE_P)
[08:34:42] [PASSED] 0x46C3 (ALDERLAKE_P)
[08:34:42] [PASSED] 0x46D0 (ALDERLAKE_N)
[08:34:42] [PASSED] 0x46D1 (ALDERLAKE_N)
[08:34:42] [PASSED] 0x46D2 (ALDERLAKE_N)
[08:34:42] [PASSED] 0x46D3 (ALDERLAKE_N)
[08:34:42] [PASSED] 0x46D4 (ALDERLAKE_N)
[08:34:42] [PASSED] 0xA721 (ALDERLAKE_P)
[08:34:42] [PASSED] 0xA7A1 (ALDERLAKE_P)
[08:34:42] [PASSED] 0xA7A9 (ALDERLAKE_P)
[08:34:42] [PASSED] 0xA7AC (ALDERLAKE_P)
[08:34:42] [PASSED] 0xA7AD (ALDERLAKE_P)
[08:34:42] [PASSED] 0xA720 (ALDERLAKE_P)
[08:34:42] [PASSED] 0xA7A0 (ALDERLAKE_P)
[08:34:42] [PASSED] 0xA7A8 (ALDERLAKE_P)
[08:34:42] [PASSED] 0xA7AA (ALDERLAKE_P)
[08:34:42] [PASSED] 0xA7AB (ALDERLAKE_P)
[08:34:42] [PASSED] 0xA780 (ALDERLAKE_S)
[08:34:42] [PASSED] 0xA781 (ALDERLAKE_S)
[08:34:42] [PASSED] 0xA782 (ALDERLAKE_S)
[08:34:42] [PASSED] 0xA783 (ALDERLAKE_S)
[08:34:42] [PASSED] 0xA788 (ALDERLAKE_S)
[08:34:42] [PASSED] 0xA789 (ALDERLAKE_S)
[08:34:42] [PASSED] 0xA78A (ALDERLAKE_S)
[08:34:42] [PASSED] 0xA78B (ALDERLAKE_S)
[08:34:42] [PASSED] 0x4905 (DG1)
[08:34:42] [PASSED] 0x4906 (DG1)
[08:34:42] [PASSED] 0x4907 (DG1)
[08:34:42] [PASSED] 0x4908 (DG1)
[08:34:42] [PASSED] 0x4909 (DG1)
[08:34:42] [PASSED] 0x56C0 (DG2)
[08:34:42] [PASSED] 0x56C2 (DG2)
[08:34:42] [PASSED] 0x56C1 (DG2)
[08:34:42] [PASSED] 0x7D51 (METEORLAKE)
[08:34:42] [PASSED] 0x7DD1 (METEORLAKE)
[08:34:42] [PASSED] 0x7D41 (METEORLAKE)
[08:34:42] [PASSED] 0x7D67 (METEORLAKE)
[08:34:42] [PASSED] 0xB640 (METEORLAKE)
[08:34:42] [PASSED] 0x56A0 (DG2)
[08:34:42] [PASSED] 0x56A1 (DG2)
[08:34:42] [PASSED] 0x56A2 (DG2)
[08:34:42] [PASSED] 0x56BE (DG2)
[08:34:42] [PASSED] 0x56BF (DG2)
[08:34:42] [PASSED] 0x5690 (DG2)
[08:34:42] [PASSED] 0x5691 (DG2)
[08:34:42] [PASSED] 0x5692 (DG2)
[08:34:42] [PASSED] 0x56A5 (DG2)
[08:34:42] [PASSED] 0x56A6 (DG2)
[08:34:42] [PASSED] 0x56B0 (DG2)
[08:34:42] [PASSED] 0x56B1 (DG2)
[08:34:42] [PASSED] 0x56BA (DG2)
[08:34:42] [PASSED] 0x56BB (DG2)
[08:34:42] [PASSED] 0x56BC (DG2)
[08:34:42] [PASSED] 0x56BD (DG2)
[08:34:42] [PASSED] 0x5693 (DG2)
[08:34:42] [PASSED] 0x5694 (DG2)
[08:34:42] [PASSED] 0x5695 (DG2)
[08:34:42] [PASSED] 0x56A3 (DG2)
[08:34:42] [PASSED] 0x56A4 (DG2)
[08:34:42] [PASSED] 0x56B2 (DG2)
[08:34:42] [PASSED] 0x56B3 (DG2)
[08:34:42] [PASSED] 0x5696 (DG2)
[08:34:42] [PASSED] 0x5697 (DG2)
[08:34:42] [PASSED] 0xB69 (PVC)
[08:34:42] [PASSED] 0xB6E (PVC)
[08:34:42] [PASSED] 0xBD4 (PVC)
[08:34:42] [PASSED] 0xBD5 (PVC)
[08:34:42] [PASSED] 0xBD6 (PVC)
[08:34:42] [PASSED] 0xBD7 (PVC)
[08:34:42] [PASSED] 0xBD8 (PVC)
[08:34:42] [PASSED] 0xBD9 (PVC)
[08:34:42] [PASSED] 0xBDA (PVC)
[08:34:42] [PASSED] 0xBDB (PVC)
[08:34:42] [PASSED] 0xBE0 (PVC)
[08:34:42] [PASSED] 0xBE1 (PVC)
[08:34:42] [PASSED] 0xBE5 (PVC)
[08:34:42] [PASSED] 0x7D40 (METEORLAKE)
[08:34:42] [PASSED] 0x7D45 (METEORLAKE)
[08:34:42] [PASSED] 0x7D55 (METEORLAKE)
[08:34:42] [PASSED] 0x7D60 (METEORLAKE)
[08:34:42] [PASSED] 0x7DD5 (METEORLAKE)
[08:34:42] [PASSED] 0x6420 (LUNARLAKE)
[08:34:42] [PASSED] 0x64A0 (LUNARLAKE)
[08:34:42] [PASSED] 0x64B0 (LUNARLAKE)
[08:34:42] [PASSED] 0xE202 (BATTLEMAGE)
[08:34:42] [PASSED] 0xE209 (BATTLEMAGE)
[08:34:42] [PASSED] 0xE20B (BATTLEMAGE)
[08:34:42] [PASSED] 0xE20C (BATTLEMAGE)
[08:34:42] [PASSED] 0xE20D (BATTLEMAGE)
[08:34:42] [PASSED] 0xE210 (BATTLEMAGE)
[08:34:42] [PASSED] 0xE211 (BATTLEMAGE)
[08:34:42] [PASSED] 0xE212 (BATTLEMAGE)
[08:34:42] [PASSED] 0xE216 (BATTLEMAGE)
[08:34:42] [PASSED] 0xE220 (BATTLEMAGE)
[08:34:42] [PASSED] 0xE221 (BATTLEMAGE)
[08:34:42] [PASSED] 0xE222 (BATTLEMAGE)
[08:34:42] [PASSED] 0xE223 (BATTLEMAGE)
[08:34:42] [PASSED] 0xB080 (PANTHERLAKE)
[08:34:42] [PASSED] 0xB081 (PANTHERLAKE)
[08:34:42] [PASSED] 0xB082 (PANTHERLAKE)
[08:34:42] [PASSED] 0xB083 (PANTHERLAKE)
[08:34:42] [PASSED] 0xB084 (PANTHERLAKE)
[08:34:42] [PASSED] 0xB085 (PANTHERLAKE)
[08:34:42] [PASSED] 0xB086 (PANTHERLAKE)
[08:34:42] [PASSED] 0xB087 (PANTHERLAKE)
[08:34:42] [PASSED] 0xB08F (PANTHERLAKE)
[08:34:42] [PASSED] 0xB090 (PANTHERLAKE)
[08:34:42] [PASSED] 0xB0A0 (PANTHERLAKE)
[08:34:42] [PASSED] 0xB0B0 (PANTHERLAKE)
[08:34:42] [PASSED] 0xFD80 (PANTHERLAKE)
[08:34:42] [PASSED] 0xFD81 (PANTHERLAKE)
[08:34:42] [PASSED] 0xD740 (NOVALAKE_S)
[08:34:42] [PASSED] 0xD741 (NOVALAKE_S)
[08:34:42] [PASSED] 0xD742 (NOVALAKE_S)
[08:34:42] [PASSED] 0xD743 (NOVALAKE_S)
[08:34:42] [PASSED] 0xD744 (NOVALAKE_S)
[08:34:42] [PASSED] 0xD745 (NOVALAKE_S)
[08:34:42] [PASSED] 0x674C (CRESCENTISLAND)
[08:34:42] [PASSED] 0xD750 (NOVALAKE_P)
[08:34:42] [PASSED] 0xD751 (NOVALAKE_P)
[08:34:42] [PASSED] 0xD752 (NOVALAKE_P)
[08:34:42] [PASSED] 0xD753 (NOVALAKE_P)
[08:34:42] [PASSED] 0xD754 (NOVALAKE_P)
[08:34:42] [PASSED] 0xD755 (NOVALAKE_P)
[08:34:42] [PASSED] 0xD756 (NOVALAKE_P)
[08:34:42] [PASSED] 0xD757 (NOVALAKE_P)
[08:34:42] [PASSED] 0xD75F (NOVALAKE_P)
[08:34:42] =============== [PASSED] check_platform_desc ===============
[08:34:42] ===================== [PASSED] xe_pci ======================
[08:34:42] =================== xe_rtp (2 subtests) ====================
[08:34:42] =============== xe_rtp_process_to_sr_tests ================
[08:34:42] [PASSED] coalesce-same-reg
[08:34:42] [PASSED] no-match-no-add
[08:34:42] [PASSED] match-or
[08:34:42] [PASSED] match-or-xfail
[08:34:42] [PASSED] no-match-no-add-multiple-rules
[08:34:42] [PASSED] two-regs-two-entries
[08:34:42] [PASSED] clr-one-set-other
[08:34:42] [PASSED] set-field
[08:34:42] [PASSED] conflict-duplicate
[08:34:42] [PASSED] conflict-not-disjoint
[08:34:42] [PASSED] conflict-reg-type
[08:34:42] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[08:34:42] ================== xe_rtp_process_tests ===================
[08:34:42] [PASSED] active1
[08:34:42] [PASSED] active2
[08:34:42] [PASSED] active-inactive
[08:34:42] [PASSED] inactive-active
[08:34:42] [PASSED] inactive-1st_or_active-inactive
[08:34:42] [PASSED] inactive-2nd_or_active-inactive
[08:34:42] [PASSED] inactive-last_or_active-inactive
[08:34:42] [PASSED] inactive-no_or_active-inactive
[08:34:42] ============== [PASSED] xe_rtp_process_tests ===============
[08:34:42] ===================== [PASSED] xe_rtp ======================
[08:34:42] ==================== xe_wa (1 subtest) =====================
[08:34:42] ======================== xe_wa_gt =========================
[08:34:42] [PASSED] TIGERLAKE B0
[08:34:42] [PASSED] DG1 A0
[08:34:42] [PASSED] DG1 B0
[08:34:42] [PASSED] ALDERLAKE_S A0
[08:34:42] [PASSED] ALDERLAKE_S B0
[08:34:42] [PASSED] ALDERLAKE_S C0
[08:34:42] [PASSED] ALDERLAKE_S D0
[08:34:42] [PASSED] ALDERLAKE_P A0
[08:34:42] [PASSED] ALDERLAKE_P B0
[08:34:42] [PASSED] ALDERLAKE_P C0
[08:34:42] [PASSED] ALDERLAKE_S RPLS D0
[08:34:42] [PASSED] ALDERLAKE_P RPLU E0
[08:34:42] [PASSED] DG2 G10 C0
[08:34:42] [PASSED] DG2 G11 B1
[08:34:42] [PASSED] DG2 G12 A1
[08:34:42] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:34:42] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:34:42] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[08:34:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[08:34:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[08:34:42] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[08:34:42] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[08:34:42] ==================== [PASSED] xe_wa_gt =====================
[08:34:42] ====================== [PASSED] xe_wa ======================
[08:34:42] ============================================================
[08:34:42] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[08:34:42] Elapsed time: 35.906s total, 4.229s configuring, 31.061s building, 0.605s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[08:34:42] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:34:44] 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
[08:35:08] Starting KUnit Kernel (1/1)...
[08:35:08] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:35:08] ============ drm_test_pick_cmdline (2 subtests) ============
[08:35:08] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[08:35:08] =============== drm_test_pick_cmdline_named ===============
[08:35:08] [PASSED] NTSC
[08:35:08] [PASSED] NTSC-J
[08:35:08] [PASSED] PAL
[08:35:08] [PASSED] PAL-M
[08:35:08] =========== [PASSED] drm_test_pick_cmdline_named ===========
[08:35:08] ============== [PASSED] drm_test_pick_cmdline ==============
[08:35:08] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[08:35:08] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[08:35:08] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[08:35:08] =========== drm_validate_clone_mode (2 subtests) ===========
[08:35:08] ============== drm_test_check_in_clone_mode ===============
[08:35:08] [PASSED] in_clone_mode
[08:35:08] [PASSED] not_in_clone_mode
[08:35:08] ========== [PASSED] drm_test_check_in_clone_mode ===========
[08:35:08] =============== drm_test_check_valid_clones ===============
[08:35:08] [PASSED] not_in_clone_mode
[08:35:08] [PASSED] valid_clone
[08:35:08] [PASSED] invalid_clone
[08:35:08] =========== [PASSED] drm_test_check_valid_clones ===========
[08:35:08] ============= [PASSED] drm_validate_clone_mode =============
[08:35:08] ============= drm_validate_modeset (1 subtest) =============
[08:35:08] [PASSED] drm_test_check_connector_changed_modeset
[08:35:08] ============== [PASSED] drm_validate_modeset ===============
[08:35:08] ====== drm_test_bridge_get_current_state (2 subtests) ======
[08:35:08] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[08:35:08] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[08:35:08] ======== [PASSED] drm_test_bridge_get_current_state ========
[08:35:08] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[08:35:08] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[08:35:08] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[08:35:08] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[08:35:08] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[08:35:08] ============== drm_bridge_alloc (2 subtests) ===============
[08:35:08] [PASSED] drm_test_drm_bridge_alloc_basic
[08:35:08] [PASSED] drm_test_drm_bridge_alloc_get_put
[08:35:08] ================ [PASSED] drm_bridge_alloc =================
[08:35:08] ============= drm_cmdline_parser (40 subtests) =============
[08:35:08] [PASSED] drm_test_cmdline_force_d_only
[08:35:08] [PASSED] drm_test_cmdline_force_D_only_dvi
[08:35:08] [PASSED] drm_test_cmdline_force_D_only_hdmi
[08:35:08] [PASSED] drm_test_cmdline_force_D_only_not_digital
[08:35:08] [PASSED] drm_test_cmdline_force_e_only
[08:35:08] [PASSED] drm_test_cmdline_res
[08:35:08] [PASSED] drm_test_cmdline_res_vesa
[08:35:08] [PASSED] drm_test_cmdline_res_vesa_rblank
[08:35:08] [PASSED] drm_test_cmdline_res_rblank
[08:35:08] [PASSED] drm_test_cmdline_res_bpp
[08:35:08] [PASSED] drm_test_cmdline_res_refresh
[08:35:08] [PASSED] drm_test_cmdline_res_bpp_refresh
[08:35:08] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[08:35:08] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[08:35:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[08:35:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[08:35:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[08:35:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[08:35:08] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[08:35:08] [PASSED] drm_test_cmdline_res_margins_force_on
[08:35:08] [PASSED] drm_test_cmdline_res_vesa_margins
[08:35:08] [PASSED] drm_test_cmdline_name
[08:35:08] [PASSED] drm_test_cmdline_name_bpp
[08:35:08] [PASSED] drm_test_cmdline_name_option
[08:35:08] [PASSED] drm_test_cmdline_name_bpp_option
[08:35:08] [PASSED] drm_test_cmdline_rotate_0
[08:35:08] [PASSED] drm_test_cmdline_rotate_90
[08:35:08] [PASSED] drm_test_cmdline_rotate_180
[08:35:08] [PASSED] drm_test_cmdline_rotate_270
[08:35:08] [PASSED] drm_test_cmdline_hmirror
[08:35:08] [PASSED] drm_test_cmdline_vmirror
[08:35:08] [PASSED] drm_test_cmdline_margin_options
[08:35:08] [PASSED] drm_test_cmdline_multiple_options
[08:35:08] [PASSED] drm_test_cmdline_bpp_extra_and_option
[08:35:08] [PASSED] drm_test_cmdline_extra_and_option
[08:35:08] [PASSED] drm_test_cmdline_freestanding_options
[08:35:08] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[08:35:08] [PASSED] drm_test_cmdline_panel_orientation
[08:35:08] ================ drm_test_cmdline_invalid =================
[08:35:08] [PASSED] margin_only
[08:35:08] [PASSED] interlace_only
[08:35:08] [PASSED] res_missing_x
[08:35:08] [PASSED] res_missing_y
[08:35:08] [PASSED] res_bad_y
[08:35:08] [PASSED] res_missing_y_bpp
[08:35:08] [PASSED] res_bad_bpp
[08:35:08] [PASSED] res_bad_refresh
[08:35:08] [PASSED] res_bpp_refresh_force_on_off
[08:35:08] [PASSED] res_invalid_mode
[08:35:08] [PASSED] res_bpp_wrong_place_mode
[08:35:08] [PASSED] name_bpp_refresh
[08:35:08] [PASSED] name_refresh
[08:35:08] [PASSED] name_refresh_wrong_mode
[08:35:08] [PASSED] name_refresh_invalid_mode
[08:35:08] [PASSED] rotate_multiple
[08:35:08] [PASSED] rotate_invalid_val
[08:35:08] [PASSED] rotate_truncated
[08:35:08] [PASSED] invalid_option
[08:35:08] [PASSED] invalid_tv_option
[08:35:08] [PASSED] truncated_tv_option
[08:35:08] ============ [PASSED] drm_test_cmdline_invalid =============
[08:35:08] =============== drm_test_cmdline_tv_options ===============
[08:35:08] [PASSED] NTSC
[08:35:08] [PASSED] NTSC_443
[08:35:08] [PASSED] NTSC_J
[08:35:08] [PASSED] PAL
[08:35:08] [PASSED] PAL_M
[08:35:08] [PASSED] PAL_N
[08:35:08] [PASSED] SECAM
[08:35:08] [PASSED] MONO_525
[08:35:08] [PASSED] MONO_625
[08:35:08] =========== [PASSED] drm_test_cmdline_tv_options ===========
[08:35:08] =============== [PASSED] drm_cmdline_parser ================
[08:35:08] ========== drmm_connector_hdmi_init (20 subtests) ==========
[08:35:08] [PASSED] drm_test_connector_hdmi_init_valid
[08:35:08] [PASSED] drm_test_connector_hdmi_init_bpc_8
[08:35:08] [PASSED] drm_test_connector_hdmi_init_bpc_10
[08:35:08] [PASSED] drm_test_connector_hdmi_init_bpc_12
[08:35:08] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[08:35:08] [PASSED] drm_test_connector_hdmi_init_bpc_null
[08:35:08] [PASSED] drm_test_connector_hdmi_init_formats_empty
[08:35:08] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[08:35:08] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[08:35:08] [PASSED] supported_formats=0x9 yuv420_allowed=1
[08:35:08] [PASSED] supported_formats=0x9 yuv420_allowed=0
[08:35:08] [PASSED] supported_formats=0x5 yuv420_allowed=1
[08:35:08] [PASSED] supported_formats=0x5 yuv420_allowed=0
[08:35:08] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[08:35:08] [PASSED] drm_test_connector_hdmi_init_null_ddc
[08:35:08] [PASSED] drm_test_connector_hdmi_init_null_product
[08:35:08] [PASSED] drm_test_connector_hdmi_init_null_vendor
[08:35:08] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[08:35:08] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[08:35:08] [PASSED] drm_test_connector_hdmi_init_product_valid
[08:35:08] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[08:35:08] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[08:35:08] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[08:35:08] ========= drm_test_connector_hdmi_init_type_valid =========
[08:35:08] [PASSED] HDMI-A
[08:35:08] [PASSED] HDMI-B
[08:35:08] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[08:35:08] ======== drm_test_connector_hdmi_init_type_invalid ========
[08:35:08] [PASSED] Unknown
[08:35:08] [PASSED] VGA
[08:35:08] [PASSED] DVI-I
[08:35:08] [PASSED] DVI-D
[08:35:08] [PASSED] DVI-A
[08:35:08] [PASSED] Composite
[08:35:08] [PASSED] SVIDEO
[08:35:08] [PASSED] LVDS
[08:35:08] [PASSED] Component
[08:35:08] [PASSED] DIN
[08:35:08] [PASSED] DP
[08:35:08] [PASSED] TV
[08:35:08] [PASSED] eDP
[08:35:08] [PASSED] Virtual
[08:35:08] [PASSED] DSI
[08:35:08] [PASSED] DPI
[08:35:08] [PASSED] Writeback
[08:35:08] [PASSED] SPI
[08:35:08] [PASSED] USB
[08:35:08] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[08:35:08] ============ [PASSED] drmm_connector_hdmi_init =============
[08:35:08] ============= drmm_connector_init (3 subtests) =============
[08:35:08] [PASSED] drm_test_drmm_connector_init
[08:35:08] [PASSED] drm_test_drmm_connector_init_null_ddc
[08:35:08] ========= drm_test_drmm_connector_init_type_valid =========
[08:35:08] [PASSED] Unknown
[08:35:08] [PASSED] VGA
[08:35:08] [PASSED] DVI-I
[08:35:08] [PASSED] DVI-D
[08:35:08] [PASSED] DVI-A
[08:35:08] [PASSED] Composite
[08:35:08] [PASSED] SVIDEO
[08:35:08] [PASSED] LVDS
[08:35:08] [PASSED] Component
[08:35:08] [PASSED] DIN
[08:35:08] [PASSED] DP
[08:35:08] [PASSED] HDMI-A
[08:35:08] [PASSED] HDMI-B
[08:35:08] [PASSED] TV
[08:35:08] [PASSED] eDP
[08:35:08] [PASSED] Virtual
[08:35:08] [PASSED] DSI
[08:35:08] [PASSED] DPI
[08:35:08] [PASSED] Writeback
[08:35:08] [PASSED] SPI
[08:35:08] [PASSED] USB
[08:35:08] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[08:35:08] =============== [PASSED] drmm_connector_init ===============
[08:35:08] ========= drm_connector_dynamic_init (6 subtests) ==========
[08:35:08] [PASSED] drm_test_drm_connector_dynamic_init
[08:35:08] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[08:35:08] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[08:35:08] [PASSED] drm_test_drm_connector_dynamic_init_properties
[08:35:08] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[08:35:08] [PASSED] Unknown
[08:35:08] [PASSED] VGA
[08:35:08] [PASSED] DVI-I
[08:35:08] [PASSED] DVI-D
[08:35:08] [PASSED] DVI-A
[08:35:08] [PASSED] Composite
[08:35:08] [PASSED] SVIDEO
[08:35:08] [PASSED] LVDS
[08:35:08] [PASSED] Component
[08:35:08] [PASSED] DIN
[08:35:08] [PASSED] DP
[08:35:08] [PASSED] HDMI-A
[08:35:08] [PASSED] HDMI-B
[08:35:08] [PASSED] TV
[08:35:08] [PASSED] eDP
[08:35:08] [PASSED] Virtual
[08:35:08] [PASSED] DSI
[08:35:08] [PASSED] DPI
[08:35:08] [PASSED] Writeback
[08:35:08] [PASSED] SPI
[08:35:08] [PASSED] USB
[08:35:08] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[08:35:08] ======== drm_test_drm_connector_dynamic_init_name =========
[08:35:08] [PASSED] Unknown
[08:35:08] [PASSED] VGA
[08:35:08] [PASSED] DVI-I
[08:35:08] [PASSED] DVI-D
[08:35:08] [PASSED] DVI-A
[08:35:08] [PASSED] Composite
[08:35:08] [PASSED] SVIDEO
[08:35:08] [PASSED] LVDS
[08:35:08] [PASSED] Component
[08:35:08] [PASSED] DIN
[08:35:08] [PASSED] DP
[08:35:08] [PASSED] HDMI-A
[08:35:08] [PASSED] HDMI-B
[08:35:08] [PASSED] TV
[08:35:08] [PASSED] eDP
[08:35:08] [PASSED] Virtual
[08:35:08] [PASSED] DSI
[08:35:08] [PASSED] DPI
[08:35:08] [PASSED] Writeback
[08:35:08] [PASSED] SPI
[08:35:08] [PASSED] USB
[08:35:08] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[08:35:08] =========== [PASSED] drm_connector_dynamic_init ============
[08:35:08] ==== drm_connector_dynamic_register_early (4 subtests) =====
[08:35:08] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[08:35:08] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[08:35:08] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[08:35:08] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[08:35:08] ====== [PASSED] drm_connector_dynamic_register_early =======
[08:35:08] ======= drm_connector_dynamic_register (7 subtests) ========
[08:35:08] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[08:35:08] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[08:35:08] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[08:35:08] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[08:35:08] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[08:35:08] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[08:35:08] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[08:35:08] ========= [PASSED] drm_connector_dynamic_register ==========
[08:35:08] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[08:35:08] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[08:35:08] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[08:35:08] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[08:35:08] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[08:35:08] ========== drm_test_get_tv_mode_from_name_valid ===========
[08:35:08] [PASSED] NTSC
[08:35:08] [PASSED] NTSC-443
[08:35:08] [PASSED] NTSC-J
[08:35:08] [PASSED] PAL
[08:35:08] [PASSED] PAL-M
[08:35:08] [PASSED] PAL-N
[08:35:08] [PASSED] SECAM
[08:35:08] [PASSED] Mono
[08:35:08] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[08:35:08] [PASSED] drm_test_get_tv_mode_from_name_truncated
[08:35:08] ============ [PASSED] drm_get_tv_mode_from_name ============
[08:35:08] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[08:35:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[08:35:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[08:35:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[08:35:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[08:35:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[08:35:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[08:35:08] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[08:35:08] [PASSED] VIC 96
[08:35:08] [PASSED] VIC 97
[08:35:08] [PASSED] VIC 101
[08:35:08] [PASSED] VIC 102
[08:35:08] [PASSED] VIC 106
[08:35:08] [PASSED] VIC 107
[08:35:08] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[08:35:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[08:35:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[08:35:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[08:35:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[08:35:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[08:35:08] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[08:35:08] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[08:35:08] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[08:35:08] [PASSED] Automatic
[08:35:08] [PASSED] Full
[08:35:08] [PASSED] Limited 16:235
[08:35:08] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[08:35:08] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[08:35:08] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[08:35:08] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[08:35:08] === drm_test_drm_hdmi_connector_get_output_format_name ====
[08:35:08] [PASSED] RGB
[08:35:08] [PASSED] YUV 4:2:0
[08:35:08] [PASSED] YUV 4:2:2
[08:35:08] [PASSED] YUV 4:4:4
[08:35:08] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[08:35:08] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[08:35:08] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[08:35:08] ============= drm_damage_helper (21 subtests) ==============
[08:35:08] [PASSED] drm_test_damage_iter_no_damage
[08:35:08] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[08:35:08] [PASSED] drm_test_damage_iter_no_damage_src_moved
[08:35:08] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[08:35:08] [PASSED] drm_test_damage_iter_no_damage_not_visible
[08:35:08] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[08:35:08] [PASSED] drm_test_damage_iter_no_damage_no_fb
[08:35:08] [PASSED] drm_test_damage_iter_simple_damage
[08:35:08] [PASSED] drm_test_damage_iter_single_damage
[08:35:08] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[08:35:08] [PASSED] drm_test_damage_iter_single_damage_outside_src
[08:35:08] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[08:35:08] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[08:35:08] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[08:35:08] [PASSED] drm_test_damage_iter_single_damage_src_moved
[08:35:08] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[08:35:08] [PASSED] drm_test_damage_iter_damage
[08:35:08] [PASSED] drm_test_damage_iter_damage_one_intersect
[08:35:08] [PASSED] drm_test_damage_iter_damage_one_outside
[08:35:08] [PASSED] drm_test_damage_iter_damage_src_moved
[08:35:08] [PASSED] drm_test_damage_iter_damage_not_visible
[08:35:08] ================ [PASSED] drm_damage_helper ================
[08:35:08] ============== drm_dp_mst_helper (3 subtests) ==============
[08:35:08] ============== drm_test_dp_mst_calc_pbn_mode ==============
[08:35:08] [PASSED] Clock 154000 BPP 30 DSC disabled
[08:35:08] [PASSED] Clock 234000 BPP 30 DSC disabled
[08:35:08] [PASSED] Clock 297000 BPP 24 DSC disabled
[08:35:08] [PASSED] Clock 332880 BPP 24 DSC enabled
[08:35:08] [PASSED] Clock 324540 BPP 24 DSC enabled
[08:35:08] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[08:35:08] ============== drm_test_dp_mst_calc_pbn_div ===============
[08:35:08] [PASSED] Link rate 2000000 lane count 4
[08:35:08] [PASSED] Link rate 2000000 lane count 2
[08:35:08] [PASSED] Link rate 2000000 lane count 1
[08:35:08] [PASSED] Link rate 1350000 lane count 4
[08:35:08] [PASSED] Link rate 1350000 lane count 2
[08:35:08] [PASSED] Link rate 1350000 lane count 1
[08:35:08] [PASSED] Link rate 1000000 lane count 4
[08:35:08] [PASSED] Link rate 1000000 lane count 2
[08:35:08] [PASSED] Link rate 1000000 lane count 1
[08:35:08] [PASSED] Link rate 810000 lane count 4
[08:35:08] [PASSED] Link rate 810000 lane count 2
[08:35:08] [PASSED] Link rate 810000 lane count 1
[08:35:08] [PASSED] Link rate 540000 lane count 4
[08:35:08] [PASSED] Link rate 540000 lane count 2
[08:35:08] [PASSED] Link rate 540000 lane count 1
[08:35:08] [PASSED] Link rate 270000 lane count 4
[08:35:08] [PASSED] Link rate 270000 lane count 2
[08:35:08] [PASSED] Link rate 270000 lane count 1
[08:35:08] [PASSED] Link rate 162000 lane count 4
[08:35:08] [PASSED] Link rate 162000 lane count 2
[08:35:08] [PASSED] Link rate 162000 lane count 1
[08:35:08] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[08:35:08] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[08:35:08] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[08:35:08] [PASSED] DP_POWER_UP_PHY with port number
[08:35:08] [PASSED] DP_POWER_DOWN_PHY with port number
[08:35:08] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[08:35:08] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[08:35:08] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[08:35:08] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[08:35:08] [PASSED] DP_QUERY_PAYLOAD with port number
[08:35:08] [PASSED] DP_QUERY_PAYLOAD with VCPI
[08:35:08] [PASSED] DP_REMOTE_DPCD_READ with port number
[08:35:08] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[08:35:08] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[08:35:08] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[08:35:08] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[08:35:08] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[08:35:08] [PASSED] DP_REMOTE_I2C_READ with port number
[08:35:08] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[08:35:08] [PASSED] DP_REMOTE_I2C_READ with transactions array
[08:35:08] [PASSED] DP_REMOTE_I2C_WRITE with port number
[08:35:08] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[08:35:08] [PASSED] DP_REMOTE_I2C_WRITE with data array
[08:35:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[08:35:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[08:35:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[08:35:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[08:35:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[08:35:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[08:35:08] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[08:35:08] ================ [PASSED] drm_dp_mst_helper ================
[08:35:08] ================== drm_exec (7 subtests) ===================
[08:35:08] [PASSED] sanitycheck
[08:35:08] [PASSED] test_lock
[08:35:08] [PASSED] test_lock_unlock
[08:35:08] [PASSED] test_duplicates
[08:35:08] [PASSED] test_prepare
[08:35:08] [PASSED] test_prepare_array
[08:35:08] [PASSED] test_multiple_loops
[08:35:08] ==================== [PASSED] drm_exec =====================
[08:35:08] =========== drm_format_helper_test (17 subtests) ===========
[08:35:08] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[08:35:08] [PASSED] single_pixel_source_buffer
[08:35:08] [PASSED] single_pixel_clip_rectangle
[08:35:08] [PASSED] well_known_colors
[08:35:08] [PASSED] destination_pitch
[08:35:08] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[08:35:08] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[08:35:08] [PASSED] single_pixel_source_buffer
[08:35:08] [PASSED] single_pixel_clip_rectangle
[08:35:08] [PASSED] well_known_colors
[08:35:08] [PASSED] destination_pitch
[08:35:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[08:35:08] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[08:35:08] [PASSED] single_pixel_source_buffer
[08:35:08] [PASSED] single_pixel_clip_rectangle
[08:35:08] [PASSED] well_known_colors
[08:35:08] [PASSED] destination_pitch
[08:35:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[08:35:08] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[08:35:08] [PASSED] single_pixel_source_buffer
[08:35:08] [PASSED] single_pixel_clip_rectangle
[08:35:08] [PASSED] well_known_colors
[08:35:08] [PASSED] destination_pitch
[08:35:08] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[08:35:08] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[08:35:08] [PASSED] single_pixel_source_buffer
[08:35:08] [PASSED] single_pixel_clip_rectangle
[08:35:08] [PASSED] well_known_colors
[08:35:08] [PASSED] destination_pitch
[08:35:08] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[08:35:08] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[08:35:08] [PASSED] single_pixel_source_buffer
[08:35:08] [PASSED] single_pixel_clip_rectangle
[08:35:08] [PASSED] well_known_colors
[08:35:08] [PASSED] destination_pitch
[08:35:08] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[08:35:08] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[08:35:08] [PASSED] single_pixel_source_buffer
[08:35:08] [PASSED] single_pixel_clip_rectangle
[08:35:08] [PASSED] well_known_colors
[08:35:08] [PASSED] destination_pitch
[08:35:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[08:35:08] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[08:35:08] [PASSED] single_pixel_source_buffer
[08:35:08] [PASSED] single_pixel_clip_rectangle
[08:35:08] [PASSED] well_known_colors
[08:35:08] [PASSED] destination_pitch
[08:35:08] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[08:35:08] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[08:35:08] [PASSED] single_pixel_source_buffer
[08:35:08] [PASSED] single_pixel_clip_rectangle
[08:35:08] [PASSED] well_known_colors
[08:35:08] [PASSED] destination_pitch
[08:35:08] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[08:35:08] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[08:35:08] [PASSED] single_pixel_source_buffer
[08:35:08] [PASSED] single_pixel_clip_rectangle
[08:35:08] [PASSED] well_known_colors
[08:35:08] [PASSED] destination_pitch
[08:35:08] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[08:35:08] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[08:35:08] [PASSED] single_pixel_source_buffer
[08:35:08] [PASSED] single_pixel_clip_rectangle
[08:35:08] [PASSED] well_known_colors
[08:35:08] [PASSED] destination_pitch
[08:35:08] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[08:35:08] ============== drm_test_fb_xrgb8888_to_mono ===============
[08:35:08] [PASSED] single_pixel_source_buffer
[08:35:08] [PASSED] single_pixel_clip_rectangle
[08:35:08] [PASSED] well_known_colors
[08:35:08] [PASSED] destination_pitch
[08:35:08] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[08:35:08] ==================== drm_test_fb_swab =====================
[08:35:08] [PASSED] single_pixel_source_buffer
[08:35:08] [PASSED] single_pixel_clip_rectangle
[08:35:08] [PASSED] well_known_colors
[08:35:08] [PASSED] destination_pitch
[08:35:08] ================ [PASSED] drm_test_fb_swab =================
[08:35:08] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[08:35:08] [PASSED] single_pixel_source_buffer
[08:35:08] [PASSED] single_pixel_clip_rectangle
[08:35:08] [PASSED] well_known_colors
[08:35:08] [PASSED] destination_pitch
[08:35:08] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[08:35:08] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[08:35:08] [PASSED] single_pixel_source_buffer
[08:35:08] [PASSED] single_pixel_clip_rectangle
[08:35:08] [PASSED] well_known_colors
[08:35:08] [PASSED] destination_pitch
[08:35:08] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[08:35:08] ================= drm_test_fb_clip_offset =================
[08:35:08] [PASSED] pass through
[08:35:08] [PASSED] horizontal offset
[08:35:08] [PASSED] vertical offset
[08:35:08] [PASSED] horizontal and vertical offset
[08:35:08] [PASSED] horizontal offset (custom pitch)
[08:35:08] [PASSED] vertical offset (custom pitch)
[08:35:08] [PASSED] horizontal and vertical offset (custom pitch)
[08:35:08] ============= [PASSED] drm_test_fb_clip_offset =============
[08:35:08] =================== drm_test_fb_memcpy ====================
[08:35:08] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[08:35:08] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[08:35:08] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[08:35:08] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[08:35:08] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[08:35:08] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[08:35:08] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[08:35:08] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[08:35:08] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[08:35:08] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[08:35:08] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[08:35:08] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[08:35:08] =============== [PASSED] drm_test_fb_memcpy ================
[08:35:08] ============= [PASSED] drm_format_helper_test ==============
[08:35:08] ================= drm_format (18 subtests) =================
[08:35:08] [PASSED] drm_test_format_block_width_invalid
[08:35:08] [PASSED] drm_test_format_block_width_one_plane
[08:35:08] [PASSED] drm_test_format_block_width_two_plane
[08:35:08] [PASSED] drm_test_format_block_width_three_plane
[08:35:08] [PASSED] drm_test_format_block_width_tiled
[08:35:08] [PASSED] drm_test_format_block_height_invalid
[08:35:08] [PASSED] drm_test_format_block_height_one_plane
[08:35:08] [PASSED] drm_test_format_block_height_two_plane
[08:35:08] [PASSED] drm_test_format_block_height_three_plane
[08:35:08] [PASSED] drm_test_format_block_height_tiled
[08:35:08] [PASSED] drm_test_format_min_pitch_invalid
[08:35:08] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[08:35:08] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[08:35:08] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[08:35:08] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[08:35:08] [PASSED] drm_test_format_min_pitch_two_plane
[08:35:08] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[08:35:08] [PASSED] drm_test_format_min_pitch_tiled
[08:35:08] =================== [PASSED] drm_format ====================
[08:35:08] ============== drm_framebuffer (10 subtests) ===============
[08:35:08] ========== drm_test_framebuffer_check_src_coords ==========
[08:35:08] [PASSED] Success: source fits into fb
[08:35:08] [PASSED] Fail: overflowing fb with x-axis coordinate
[08:35:08] [PASSED] Fail: overflowing fb with y-axis coordinate
[08:35:08] [PASSED] Fail: overflowing fb with source width
[08:35:08] [PASSED] Fail: overflowing fb with source height
[08:35:08] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[08:35:08] [PASSED] drm_test_framebuffer_cleanup
[08:35:08] =============== drm_test_framebuffer_create ===============
[08:35:08] [PASSED] ABGR8888 normal sizes
[08:35:08] [PASSED] ABGR8888 max sizes
[08:35:08] [PASSED] ABGR8888 pitch greater than min required
[08:35:08] [PASSED] ABGR8888 pitch less than min required
[08:35:08] [PASSED] ABGR8888 Invalid width
[08:35:08] [PASSED] ABGR8888 Invalid buffer handle
[08:35:08] [PASSED] No pixel format
[08:35:08] [PASSED] ABGR8888 Width 0
[08:35:08] [PASSED] ABGR8888 Height 0
[08:35:08] [PASSED] ABGR8888 Out of bound height * pitch combination
[08:35:08] [PASSED] ABGR8888 Large buffer offset
[08:35:08] [PASSED] ABGR8888 Buffer offset for inexistent plane
[08:35:08] [PASSED] ABGR8888 Invalid flag
[08:35:08] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[08:35:08] [PASSED] ABGR8888 Valid buffer modifier
[08:35:08] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[08:35:08] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[08:35:08] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[08:35:08] [PASSED] NV12 Normal sizes
[08:35:08] [PASSED] NV12 Max sizes
[08:35:08] [PASSED] NV12 Invalid pitch
[08:35:08] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[08:35:08] [PASSED] NV12 different modifier per-plane
[08:35:08] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[08:35:08] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[08:35:08] [PASSED] NV12 Modifier for inexistent plane
[08:35:08] [PASSED] NV12 Handle for inexistent plane
[08:35:08] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[08:35:08] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[08:35:08] [PASSED] YVU420 Normal sizes
[08:35:08] [PASSED] YVU420 Max sizes
[08:35:08] [PASSED] YVU420 Invalid pitch
[08:35:08] [PASSED] YVU420 Different pitches
[08:35:08] [PASSED] YVU420 Different buffer offsets/pitches
[08:35:08] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[08:35:08] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[08:35:08] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[08:35:08] [PASSED] YVU420 Valid modifier
[08:35:08] [PASSED] YVU420 Different modifiers per plane
[08:35:08] [PASSED] YVU420 Modifier for inexistent plane
[08:35:08] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[08:35:08] [PASSED] X0L2 Normal sizes
[08:35:08] [PASSED] X0L2 Max sizes
[08:35:08] [PASSED] X0L2 Invalid pitch
[08:35:08] [PASSED] X0L2 Pitch greater than minimum required
[08:35:08] [PASSED] X0L2 Handle for inexistent plane
[08:35:08] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[08:35:08] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[08:35:08] [PASSED] X0L2 Valid modifier
[08:35:08] [PASSED] X0L2 Modifier for inexistent plane
[08:35:08] =========== [PASSED] drm_test_framebuffer_create ===========
[08:35:08] [PASSED] drm_test_framebuffer_free
[08:35:08] [PASSED] drm_test_framebuffer_init
[08:35:08] [PASSED] drm_test_framebuffer_init_bad_format
[08:35:08] [PASSED] drm_test_framebuffer_init_dev_mismatch
[08:35:08] [PASSED] drm_test_framebuffer_lookup
[08:35:08] [PASSED] drm_test_framebuffer_lookup_inexistent
[08:35:08] [PASSED] drm_test_framebuffer_modifiers_not_supported
[08:35:08] ================= [PASSED] drm_framebuffer =================
[08:35:08] ================ drm_gem_shmem (8 subtests) ================
[08:35:08] [PASSED] drm_gem_shmem_test_obj_create
[08:35:08] [PASSED] drm_gem_shmem_test_obj_create_private
[08:35:08] [PASSED] drm_gem_shmem_test_pin_pages
[08:35:08] [PASSED] drm_gem_shmem_test_vmap
[08:35:08] [PASSED] drm_gem_shmem_test_get_sg_table
[08:35:08] [PASSED] drm_gem_shmem_test_get_pages_sgt
[08:35:08] [PASSED] drm_gem_shmem_test_madvise
[08:35:08] [PASSED] drm_gem_shmem_test_purge
[08:35:08] ================== [PASSED] drm_gem_shmem ==================
[08:35:08] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[08:35:08] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[08:35:08] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[08:35:08] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[08:35:08] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[08:35:08] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[08:35:08] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[08:35:08] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[08:35:08] [PASSED] Automatic
[08:35:08] [PASSED] Full
[08:35:08] [PASSED] Limited 16:235
[08:35:08] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[08:35:08] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[08:35:08] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[08:35:08] [PASSED] drm_test_check_disable_connector
[08:35:08] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[08:35:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[08:35:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[08:35:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[08:35:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[08:35:08] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[08:35:08] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[08:35:08] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[08:35:08] [PASSED] drm_test_check_output_bpc_dvi
[08:35:08] [PASSED] drm_test_check_output_bpc_format_vic_1
[08:35:08] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[08:35:08] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[08:35:08] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[08:35:08] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[08:35:08] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[08:35:08] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[08:35:08] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[08:35:08] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[08:35:08] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[08:35:08] [PASSED] drm_test_check_broadcast_rgb_value
[08:35:08] [PASSED] drm_test_check_bpc_8_value
[08:35:08] [PASSED] drm_test_check_bpc_10_value
[08:35:08] [PASSED] drm_test_check_bpc_12_value
[08:35:08] [PASSED] drm_test_check_format_value
[08:35:08] [PASSED] drm_test_check_tmds_char_value
[08:35:08] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[08:35:08] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[08:35:08] [PASSED] drm_test_check_mode_valid
[08:35:08] [PASSED] drm_test_check_mode_valid_reject
[08:35:08] [PASSED] drm_test_check_mode_valid_reject_rate
[08:35:08] [PASSED] drm_test_check_mode_valid_reject_max_clock
[08:35:08] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[08:35:08] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[08:35:08] [PASSED] drm_test_check_infoframes
[08:35:08] [PASSED] drm_test_check_reject_avi_infoframe
[08:35:08] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[08:35:08] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[08:35:08] [PASSED] drm_test_check_reject_audio_infoframe
[08:35:08] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[08:35:08] ================= drm_managed (2 subtests) =================
[08:35:08] [PASSED] drm_test_managed_release_action
[08:35:08] [PASSED] drm_test_managed_run_action
[08:35:08] =================== [PASSED] drm_managed ===================
[08:35:08] =================== drm_mm (6 subtests) ====================
[08:35:08] [PASSED] drm_test_mm_init
[08:35:08] [PASSED] drm_test_mm_debug
[08:35:08] [PASSED] drm_test_mm_align32
[08:35:08] [PASSED] drm_test_mm_align64
[08:35:08] [PASSED] drm_test_mm_lowest
[08:35:08] [PASSED] drm_test_mm_highest
[08:35:08] ===================== [PASSED] drm_mm ======================
[08:35:08] ============= drm_modes_analog_tv (5 subtests) =============
[08:35:08] [PASSED] drm_test_modes_analog_tv_mono_576i
[08:35:08] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[08:35:08] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[08:35:08] [PASSED] drm_test_modes_analog_tv_pal_576i
[08:35:08] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[08:35:08] =============== [PASSED] drm_modes_analog_tv ===============
[08:35:08] ============== drm_plane_helper (2 subtests) ===============
[08:35:08] =============== drm_test_check_plane_state ================
[08:35:08] [PASSED] clipping_simple
[08:35:08] [PASSED] clipping_rotate_reflect
[08:35:08] [PASSED] positioning_simple
[08:35:08] [PASSED] upscaling
[08:35:08] [PASSED] downscaling
[08:35:08] [PASSED] rounding1
[08:35:08] [PASSED] rounding2
[08:35:08] [PASSED] rounding3
[08:35:08] [PASSED] rounding4
[08:35:08] =========== [PASSED] drm_test_check_plane_state ============
[08:35:08] =========== drm_test_check_invalid_plane_state ============
[08:35:08] [PASSED] positioning_invalid
[08:35:08] [PASSED] upscaling_invalid
[08:35:08] [PASSED] downscaling_invalid
[08:35:08] ======= [PASSED] drm_test_check_invalid_plane_state ========
[08:35:08] ================ [PASSED] drm_plane_helper =================
[08:35:08] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[08:35:08] ====== drm_test_connector_helper_tv_get_modes_check =======
[08:35:08] [PASSED] None
[08:35:08] [PASSED] PAL
[08:35:08] [PASSED] NTSC
[08:35:08] [PASSED] Both, NTSC Default
[08:35:08] [PASSED] Both, PAL Default
[08:35:08] [PASSED] Both, NTSC Default, with PAL on command-line
[08:35:08] [PASSED] Both, PAL Default, with NTSC on command-line
[08:35:08] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[08:35:08] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[08:35:08] ================== drm_rect (9 subtests) ===================
[08:35:08] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[08:35:08] [PASSED] drm_test_rect_clip_scaled_not_clipped
[08:35:08] [PASSED] drm_test_rect_clip_scaled_clipped
[08:35:08] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[08:35:08] ================= drm_test_rect_intersect =================
[08:35:08] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[08:35:08] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[08:35:08] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[08:35:08] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[08:35:08] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[08:35:08] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[08:35:08] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[08:35:08] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[08:35:08] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[08:35:08] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[08:35:08] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[08:35:08] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[08:35:08] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[08:35:08] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[08:35:08] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[08:35:08] ============= [PASSED] drm_test_rect_intersect =============
[08:35:08] ================ drm_test_rect_calc_hscale ================
[08:35:08] [PASSED] normal use
[08:35:08] [PASSED] out of max range
[08:35:08] [PASSED] out of min range
[08:35:08] [PASSED] zero dst
[08:35:08] [PASSED] negative src
[08:35:08] [PASSED] negative dst
[08:35:08] ============ [PASSED] drm_test_rect_calc_hscale ============
[08:35:08] ================ drm_test_rect_calc_vscale ================
[08:35:08] [PASSED] normal use
[08:35:08] [PASSED] out of max range
[08:35:08] [PASSED] out of min range
[08:35:08] [PASSED] zero dst
[08:35:08] [PASSED] negative src
[08:35:08] [PASSED] negative dst
[08:35:08] ============ [PASSED] drm_test_rect_calc_vscale ============
[08:35:08] ================== drm_test_rect_rotate ===================
[08:35:08] [PASSED] reflect-x
[08:35:08] [PASSED] reflect-y
[08:35:08] [PASSED] rotate-0
[08:35:08] [PASSED] rotate-90
[08:35:08] [PASSED] rotate-180
[08:35:08] [PASSED] rotate-270
[08:35:08] ============== [PASSED] drm_test_rect_rotate ===============
[08:35:08] ================ drm_test_rect_rotate_inv =================
[08:35:08] [PASSED] reflect-x
[08:35:08] [PASSED] reflect-y
[08:35:08] [PASSED] rotate-0
[08:35:08] [PASSED] rotate-90
[08:35:08] [PASSED] rotate-180
[08:35:08] [PASSED] rotate-270
[08:35:08] ============ [PASSED] drm_test_rect_rotate_inv =============
[08:35:08] ==================== [PASSED] drm_rect =====================
[08:35:08] ============ drm_sysfb_modeset_test (1 subtest) ============
[08:35:08] ============ drm_test_sysfb_build_fourcc_list =============
[08:35:08] [PASSED] no native formats
[08:35:08] [PASSED] XRGB8888 as native format
[08:35:08] [PASSED] remove duplicates
[08:35:08] [PASSED] convert alpha formats
[08:35:08] [PASSED] random formats
[08:35:08] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[08:35:08] ============= [PASSED] drm_sysfb_modeset_test ==============
[08:35:08] ================== drm_fixp (2 subtests) ===================
[08:35:08] [PASSED] drm_test_int2fixp
[08:35:08] [PASSED] drm_test_sm2fixp
[08:35:08] ==================== [PASSED] drm_fixp =====================
[08:35:08] ============================================================
[08:35:08] Testing complete. Ran 621 tests: passed: 621
[08:35:08] Elapsed time: 25.836s total, 1.696s configuring, 23.975s building, 0.131s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[08:35:08] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:35:10] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[08:35:19] Starting KUnit Kernel (1/1)...
[08:35:19] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:35:19] ================= ttm_device (5 subtests) ==================
[08:35:19] [PASSED] ttm_device_init_basic
[08:35:19] [PASSED] ttm_device_init_multiple
[08:35:19] [PASSED] ttm_device_fini_basic
[08:35:19] [PASSED] ttm_device_init_no_vma_man
[08:35:19] ================== ttm_device_init_pools ==================
[08:35:19] [PASSED] No DMA allocations, no DMA32 required
[08:35:19] [PASSED] DMA allocations, DMA32 required
[08:35:19] [PASSED] No DMA allocations, DMA32 required
[08:35:19] [PASSED] DMA allocations, no DMA32 required
[08:35:19] ============== [PASSED] ttm_device_init_pools ==============
[08:35:19] =================== [PASSED] ttm_device ====================
[08:35:19] ================== ttm_pool (8 subtests) ===================
[08:35:19] ================== ttm_pool_alloc_basic ===================
[08:35:19] [PASSED] One page
[08:35:19] [PASSED] More than one page
[08:35:19] [PASSED] Above the allocation limit
[08:35:19] [PASSED] One page, with coherent DMA mappings enabled
[08:35:19] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:35:19] ============== [PASSED] ttm_pool_alloc_basic ===============
[08:35:19] ============== ttm_pool_alloc_basic_dma_addr ==============
[08:35:19] [PASSED] One page
[08:35:19] [PASSED] More than one page
[08:35:19] [PASSED] Above the allocation limit
[08:35:19] [PASSED] One page, with coherent DMA mappings enabled
[08:35:19] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:35:19] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[08:35:19] [PASSED] ttm_pool_alloc_order_caching_match
[08:35:19] [PASSED] ttm_pool_alloc_caching_mismatch
[08:35:19] [PASSED] ttm_pool_alloc_order_mismatch
[08:35:19] [PASSED] ttm_pool_free_dma_alloc
[08:35:19] [PASSED] ttm_pool_free_no_dma_alloc
[08:35:19] [PASSED] ttm_pool_fini_basic
[08:35:19] ==================== [PASSED] ttm_pool =====================
[08:35:19] ================ ttm_resource (8 subtests) =================
[08:35:19] ================= ttm_resource_init_basic =================
[08:35:19] [PASSED] Init resource in TTM_PL_SYSTEM
[08:35:19] [PASSED] Init resource in TTM_PL_VRAM
[08:35:19] [PASSED] Init resource in a private placement
[08:35:19] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[08:35:19] ============= [PASSED] ttm_resource_init_basic =============
[08:35:19] [PASSED] ttm_resource_init_pinned
[08:35:19] [PASSED] ttm_resource_fini_basic
[08:35:19] [PASSED] ttm_resource_manager_init_basic
[08:35:19] [PASSED] ttm_resource_manager_usage_basic
[08:35:19] [PASSED] ttm_resource_manager_set_used_basic
[08:35:19] [PASSED] ttm_sys_man_alloc_basic
[08:35:19] [PASSED] ttm_sys_man_free_basic
[08:35:19] ================== [PASSED] ttm_resource ===================
[08:35:19] =================== ttm_tt (15 subtests) ===================
[08:35:19] ==================== ttm_tt_init_basic ====================
[08:35:19] [PASSED] Page-aligned size
[08:35:19] [PASSED] Extra pages requested
[08:35:19] ================ [PASSED] ttm_tt_init_basic ================
[08:35:19] [PASSED] ttm_tt_init_misaligned
[08:35:19] [PASSED] ttm_tt_fini_basic
[08:35:19] [PASSED] ttm_tt_fini_sg
[08:35:19] [PASSED] ttm_tt_fini_shmem
[08:35:19] [PASSED] ttm_tt_create_basic
[08:35:19] [PASSED] ttm_tt_create_invalid_bo_type
[08:35:19] [PASSED] ttm_tt_create_ttm_exists
[08:35:19] [PASSED] ttm_tt_create_failed
[08:35:19] [PASSED] ttm_tt_destroy_basic
[08:35:19] [PASSED] ttm_tt_populate_null_ttm
[08:35:19] [PASSED] ttm_tt_populate_populated_ttm
[08:35:19] [PASSED] ttm_tt_unpopulate_basic
[08:35:19] [PASSED] ttm_tt_unpopulate_empty_ttm
[08:35:19] [PASSED] ttm_tt_swapin_basic
[08:35:19] ===================== [PASSED] ttm_tt ======================
[08:35:19] =================== ttm_bo (14 subtests) ===================
[08:35:19] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[08:35:19] [PASSED] Cannot be interrupted and sleeps
[08:35:19] [PASSED] Cannot be interrupted, locks straight away
[08:35:19] [PASSED] Can be interrupted, sleeps
[08:35:19] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[08:35:19] [PASSED] ttm_bo_reserve_locked_no_sleep
[08:35:19] [PASSED] ttm_bo_reserve_no_wait_ticket
[08:35:19] [PASSED] ttm_bo_reserve_double_resv
[08:35:19] [PASSED] ttm_bo_reserve_interrupted
[08:35:19] [PASSED] ttm_bo_reserve_deadlock
[08:35:19] [PASSED] ttm_bo_unreserve_basic
[08:35:19] [PASSED] ttm_bo_unreserve_pinned
[08:35:19] [PASSED] ttm_bo_unreserve_bulk
[08:35:19] [PASSED] ttm_bo_fini_basic
[08:35:19] [PASSED] ttm_bo_fini_shared_resv
[08:35:19] [PASSED] ttm_bo_pin_basic
[08:35:19] [PASSED] ttm_bo_pin_unpin_resource
[08:35:19] [PASSED] ttm_bo_multiple_pin_one_unpin
[08:35:19] ===================== [PASSED] ttm_bo ======================
[08:35:19] ============== ttm_bo_validate (22 subtests) ===============
[08:35:19] ============== ttm_bo_init_reserved_sys_man ===============
[08:35:19] [PASSED] Buffer object for userspace
[08:35:19] [PASSED] Kernel buffer object
[08:35:19] [PASSED] Shared buffer object
[08:35:19] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[08:35:19] ============== ttm_bo_init_reserved_mock_man ==============
[08:35:19] [PASSED] Buffer object for userspace
[08:35:19] [PASSED] Kernel buffer object
[08:35:19] [PASSED] Shared buffer object
[08:35:19] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[08:35:19] [PASSED] ttm_bo_init_reserved_resv
[08:35:19] ================== ttm_bo_validate_basic ==================
[08:35:19] [PASSED] Buffer object for userspace
[08:35:19] [PASSED] Kernel buffer object
[08:35:19] [PASSED] Shared buffer object
[08:35:19] ============== [PASSED] ttm_bo_validate_basic ==============
[08:35:19] [PASSED] ttm_bo_validate_invalid_placement
[08:35:19] ============= ttm_bo_validate_same_placement ==============
[08:35:19] [PASSED] System manager
[08:35:19] [PASSED] VRAM manager
[08:35:19] ========= [PASSED] ttm_bo_validate_same_placement ==========
[08:35:19] [PASSED] ttm_bo_validate_failed_alloc
[08:35:19] [PASSED] ttm_bo_validate_pinned
[08:35:19] [PASSED] ttm_bo_validate_busy_placement
[08:35:19] ================ ttm_bo_validate_multihop =================
[08:35:19] [PASSED] Buffer object for userspace
[08:35:19] [PASSED] Kernel buffer object
[08:35:19] [PASSED] Shared buffer object
[08:35:19] ============ [PASSED] ttm_bo_validate_multihop =============
[08:35:19] ========== ttm_bo_validate_no_placement_signaled ==========
[08:35:19] [PASSED] Buffer object in system domain, no page vector
[08:35:19] [PASSED] Buffer object in system domain with an existing page vector
[08:35:19] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[08:35:19] ======== ttm_bo_validate_no_placement_not_signaled ========
[08:35:19] [PASSED] Buffer object for userspace
[08:35:19] [PASSED] Kernel buffer object
[08:35:19] [PASSED] Shared buffer object
[08:35:19] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[08:35:19] [PASSED] ttm_bo_validate_move_fence_signaled
[08:35:19] ========= ttm_bo_validate_move_fence_not_signaled =========
[08:35:19] [PASSED] Waits for GPU
[08:35:19] [PASSED] Tries to lock straight away
[08:35:19] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[08:35:19] [PASSED] ttm_bo_validate_swapout
[08:35:19] [PASSED] ttm_bo_validate_happy_evict
[08:35:19] [PASSED] ttm_bo_validate_all_pinned_evict
[08:35:19] [PASSED] ttm_bo_validate_allowed_only_evict
[08:35:19] [PASSED] ttm_bo_validate_deleted_evict
[08:35:19] [PASSED] ttm_bo_validate_busy_domain_evict
[08:35:19] [PASSED] ttm_bo_validate_evict_gutting
[08:35:19] [PASSED] ttm_bo_validate_recrusive_evict
[08:35:19] ================= [PASSED] ttm_bo_validate =================
[08:35:19] ============================================================
[08:35:19] Testing complete. Ran 102 tests: passed: 102
[08:35:19] Elapsed time: 11.414s total, 1.687s configuring, 9.512s building, 0.177s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for drm/i915/psr: Prevent DC entry during active vblank for Panel Replay (rev2)
2026-04-28 12:39 [RFC PATCH] drm/i915/psr: Prevent DC entry during active vblank for Panel Replay Dibin Moolakadan Subrahmanian
` (6 preceding siblings ...)
2026-04-29 8:35 ` ✓ CI.KUnit: success " Patchwork
@ 2026-04-29 9:24 ` Patchwork
2026-04-29 17:52 ` ✗ Xe.CI.FULL: failure " Patchwork
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-04-29 9:24 UTC (permalink / raw)
To: Dibin Moolakadan Subrahmanian; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1127 bytes --]
== Series Details ==
Series: drm/i915/psr: Prevent DC entry during active vblank for Panel Replay (rev2)
URL : https://patchwork.freedesktop.org/series/165630/
State : success
== Summary ==
CI Bug Log - changes from xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a_BAT -> xe-pw-165630v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8877 -> IGT_8879
* Linux: xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a -> xe-pw-165630v2
IGT_8877: 1749e432cd72ef2c99f1b4e9d6f24411f1161901 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8879: 02b0e01dd9a5a3ab1efe976bb8c4f13cfcdbab1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a: a53aafc879e9c52b2776089762591d2766a27f0a
xe-pw-165630v2: 165630v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/index.html
[-- Attachment #2: Type: text/html, Size: 1689 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.FULL: failure for drm/i915/psr: Prevent DC entry during active vblank for Panel Replay (rev2)
2026-04-28 12:39 [RFC PATCH] drm/i915/psr: Prevent DC entry during active vblank for Panel Replay Dibin Moolakadan Subrahmanian
` (7 preceding siblings ...)
2026-04-29 9:24 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-29 17:52 ` Patchwork
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-04-29 17:52 UTC (permalink / raw)
To: Dibin Moolakadan Subrahmanian; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 39622 bytes --]
== Series Details ==
Series: drm/i915/psr: Prevent DC entry during active vblank for Panel Replay (rev2)
URL : https://patchwork.freedesktop.org/series/165630/
State : failure
== Summary ==
CI Bug Log - changes from xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a_FULL -> xe-pw-165630v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-165630v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-165630v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-165630v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_reset@cm-multi-queue-close-execqueues:
- shard-bmg: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-8/igt@xe_exec_reset@cm-multi-queue-close-execqueues.html
New tests
---------
New tests have been introduced between xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a_FULL and xe-pw-165630v2_FULL:
### New IGT tests (3) ###
* igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [3.44] s
* igt@kms_cursor_edge_walk@64x64-top-edge@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [3.29] s
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.02] s
Known issues
------------
Here are the changes found in xe-pw-165630v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2233])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#3718] / [Intel XE#6078])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2:
- shard-bmg: [PASS][5] -> [FAIL][6] ([Intel XE#6078])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-2/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +9 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#607] / [Intel XE#7361])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1477] / [Intel XE#7361])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-target-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#7679]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-target-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-target-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#367])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-2/igt@kms_bw@linear-tiling-2-displays-target-2160x1440p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2652]) +17 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#3432])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#3432])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +11 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_color@ctm-negative:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2325] / [Intel XE#7358])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-1/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2252]) +7 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-6/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#373]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-2/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][22] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-8/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#6974])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-10/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][24] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#7642])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-8/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2321] / [Intel XE#7355])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2321] / [Intel XE#7355]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2320]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-2/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#309] / [Intel XE#7343])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2244])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-3/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2244]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#4156] / [Intel XE#7425])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-7/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1421])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-5/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][34] -> [FAIL][35] ([Intel XE#301]) +3 other tests fail
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1397] / [Intel XE#7385])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7178] / [Intel XE#7351]) +5 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#4141]) +13 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2311]) +24 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#7061] / [Intel XE#7356])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#656]) +7 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2350] / [Intel XE#7503])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2313]) +23 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#7173] / [Intel XE#7294])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7130]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-a-plane-5:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#7130]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-4/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7283]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#7283])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#5020] / [Intel XE#7348])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-10/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][54] -> [FAIL][55] ([Intel XE#7340])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7794])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-10/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#6814] / [Intel XE#7428])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1489]) +7 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-4/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2387] / [Intel XE#7429]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-2/igt@kms_psr@fbc-psr-suspend.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#3904] / [Intel XE#7342])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2413])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#6503]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-10/igt@kms_sharpness_filter@filter-basic.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [FAIL][67] ([Intel XE#1729] / [Intel XE#7424])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2450] / [Intel XE#5857])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-3/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1499])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@xe_compute_preempt@compute-preempt-many-vram:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#5191] / [Intel XE#7316] / [Intel XE#7346])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-2/igt@xe_compute_preempt@compute-preempt-many-vram.html
* igt@xe_eudebug@basic-vm-access-parameters-userptr:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#7636]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-1/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#7636]) +7 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-3/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_evict@evict-cm-threads-small:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-7/igt@xe_evict@evict-cm-threads-small.html
* igt@xe_evict@evict-small-external-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#7140]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-10/igt@xe_evict@evict-small-external-multi-queue-cm.html
* igt@xe_exec_balancer@once-virtual-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#7482]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-3/igt@xe_exec_balancer@once-virtual-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1392]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2322] / [Intel XE#7372]) +5 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-2/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-race-imm:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#7136]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-1/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@many-multi-queue-invalid-fault:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#7136]) +8 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-3/igt@xe_exec_fault_mode@many-multi-queue-invalid-fault.html
* igt@xe_exec_multi_queue@one-queue-close-fd-smem:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#6874]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-3/igt@xe_exec_multi_queue@one-queue-close-fd-smem.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-close-fd-smem:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#6874]) +21 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-3/igt@xe_exec_multi_queue@one-queue-preempt-mode-close-fd-smem.html
* igt@xe_exec_threads@threads-multi-queue-cm-basic:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#7138]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-2/igt@xe_exec_threads@threads-multi-queue-cm-basic.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#7138]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate-race.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2833])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-7/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_media_fill@media-fill:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#560] / [Intel XE#7321] / [Intel XE#7453])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-7/igt@xe_media_fill@media-fill.html
* igt@xe_multigpu_svm@mgpu-atomic-op-basic:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#6964]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-4/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html
* igt@xe_multigpu_svm@mgpu-latency-basic:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#6964])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-5/igt@xe_multigpu_svm@mgpu-latency-basic.html
* igt@xe_page_reclaim@basic-mixed:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#7793])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-4/igt@xe_page_reclaim@basic-mixed.html
* igt@xe_page_reclaim@boundary-split:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#7793]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-7/igt@xe_page_reclaim@boundary-split.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-4/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2245] / [Intel XE#7590])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-4/igt@xe_peer2peer@read.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1948])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-1/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pxp@pxp-optout:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-1/igt@xe_pxp@pxp-optout.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#944]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-8/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_sriov_vram@vf-access-beyond:
- shard-bmg: [PASS][96] -> [FAIL][97] ([Intel XE#5937]) +1 other test fail
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a/shard-bmg-9/igt@xe_sriov_vram@vf-access-beyond.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-8/igt@xe_sriov_vram@vf-access-beyond.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: NOTRUN -> [DMESG-WARN][98] ([Intel XE#5545])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-10/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-lnl: [ABORT][99] ([Intel XE#4760]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a/shard-lnl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-8/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3:
- shard-bmg: [FAIL][101] ([Intel XE#3149] / [Intel XE#3321]) -> [PASS][102] +1 other test pass
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-9/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-lnl: [SKIP][103] ([Intel XE#4692] / [Intel XE#7508]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a/shard-lnl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-lnl-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@xe_exec_threads@threads-bal-mixed-rebind:
- shard-bmg: [ABORT][105] -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a/shard-bmg-9/igt@xe_exec_threads@threads-bal-mixed-rebind.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-6/igt@xe_exec_threads@threads-bal-mixed-rebind.html
* igt@xe_pmu@gt-frequency:
- shard-bmg: [WARN][107] -> [PASS][108] +1 other test pass
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a/shard-bmg-4/igt@xe_pmu@gt-frequency.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-1/igt@xe_pmu@gt-frequency.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [FAIL][109] ([Intel XE#6569]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a/shard-bmg-8/igt@xe_sriov_flr@flr-twice.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/shard-bmg-4/igt@xe_sriov_flr@flr-twice.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[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#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7173
[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#7294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7294
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7316
[Intel XE#7321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7321
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7346
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7453
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
[Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8877 -> IGT_8879
* Linux: xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a -> xe-pw-165630v2
IGT_8877: 1749e432cd72ef2c99f1b4e9d6f24411f1161901 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8879: 02b0e01dd9a5a3ab1efe976bb8c4f13cfcdbab1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a: a53aafc879e9c52b2776089762591d2766a27f0a
xe-pw-165630v2: 165630v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165630v2/index.html
[-- Attachment #2: Type: text/html, Size: 44051 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2026-04-29 17:52 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-28 12:39 [RFC PATCH] drm/i915/psr: Prevent DC entry during active vblank for Panel Replay Dibin Moolakadan Subrahmanian
2026-04-28 12:56 ` Hogander, Jouni
2026-04-28 16:39 ` Dibin Moolakadan Subrahmanian
2026-04-28 14:37 ` ✗ CI.checkpatch: warning for " Patchwork
2026-04-28 14:39 ` ✓ CI.KUnit: success " Patchwork
2026-04-28 15:33 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-29 2:15 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-29 8:34 ` ✗ CI.checkpatch: warning for drm/i915/psr: Prevent DC entry during active vblank for Panel Replay (rev2) Patchwork
2026-04-29 8:35 ` ✓ CI.KUnit: success " Patchwork
2026-04-29 9:24 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-29 17:52 ` ✗ Xe.CI.FULL: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox