* [PATCH v3 0/4] Wait PSR idle before on dsb commit
@ 2025-09-05 7:27 Jouni Högander
2025-09-05 7:27 ` [PATCH v3 1/4] drm/i915/psr: Pass intel_crtc_state instead of intel_dp in wait_for_idle Jouni Högander
` (11 more replies)
0 siblings, 12 replies; 14+ messages in thread
From: Jouni Högander @ 2025-09-05 7:27 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander
We are currently observing crc failures after we started using dsb for PSR
updates as well. This seems to happen because PSR HW is still sending
couple of updates using old framebuffers on wake-up.
On non-dsb commit we are waiting PSR HW to idle before starting a new
commit. Fix problems with dsb commit by adding similar wait on dsb
commit as well.
v3: add intel_dsb as a parameter to intel_psr_wait_for_idle_dsb
v2: add pass crtc_state->dsb_commit as parameter
Jouni Högander (4):
drm/i915/psr: Pass intel_crtc_state instead of intel_dp in
wait_for_idle
drm/i915/psr: Add new define for PSR idle timeout
drm/i915/psr: New interface adding PSR idle poll into dsb commit
drm/i915/psr: Add poll for checking PSR is idle before starting update
drivers/gpu/drm/i915/display/intel_display.c | 3 +
drivers/gpu/drm/i915/display/intel_psr.c | 69 +++++++++++++++-----
drivers/gpu/drm/i915/display/intel_psr.h | 2 +
3 files changed, 58 insertions(+), 16 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v3 1/4] drm/i915/psr: Pass intel_crtc_state instead of intel_dp in wait_for_idle
2025-09-05 7:27 [PATCH v3 0/4] Wait PSR idle before on dsb commit Jouni Högander
@ 2025-09-05 7:27 ` Jouni Högander
2025-09-05 7:27 ` [PATCH v3 2/4] drm/i915/psr: Add new define for PSR idle timeout Jouni Högander
` (10 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Jouni Högander @ 2025-09-05 7:27 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander, Mika Kahola
This is preparation to add own function for polling PSR being ready for
update when doing dsb commit.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Mika Kahola <mika.kahola@intel.com>
---
drivers/gpu/drm/i915/display/intel_psr.c | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 22433fe2ee14..6ab5c028845a 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -2997,10 +2997,11 @@ void intel_psr_post_plane_update(struct intel_atomic_state *state,
}
}
-static int _psr2_ready_for_pipe_update_locked(struct intel_dp *intel_dp)
+static int
+_psr2_ready_for_pipe_update_locked(const struct intel_crtc_state *new_crtc_state)
{
- struct intel_display *display = to_intel_display(intel_dp);
- enum transcoder cpu_transcoder = intel_dp->psr.transcoder;
+ struct intel_display *display = to_intel_display(new_crtc_state);
+ enum transcoder cpu_transcoder = new_crtc_state->cpu_transcoder;
/*
* Any state lower than EDP_PSR2_STATUS_STATE_DEEP_SLEEP is enough.
@@ -3012,10 +3013,11 @@ static int _psr2_ready_for_pipe_update_locked(struct intel_dp *intel_dp)
EDP_PSR2_STATUS_STATE_DEEP_SLEEP, 50);
}
-static int _psr1_ready_for_pipe_update_locked(struct intel_dp *intel_dp)
+static int
+_psr1_ready_for_pipe_update_locked(const struct intel_crtc_state *new_crtc_state)
{
- struct intel_display *display = to_intel_display(intel_dp);
- enum transcoder cpu_transcoder = intel_dp->psr.transcoder;
+ struct intel_display *display = to_intel_display(new_crtc_state);
+ enum transcoder cpu_transcoder = new_crtc_state->cpu_transcoder;
/*
* From bspec: Panel Self Refresh (BDW+)
@@ -3054,9 +3056,9 @@ void intel_psr_wait_for_idle_locked(const struct intel_crtc_state *new_crtc_stat
continue;
if (intel_dp->psr.sel_update_enabled)
- ret = _psr2_ready_for_pipe_update_locked(intel_dp);
+ ret = _psr2_ready_for_pipe_update_locked(new_crtc_state);
else
- ret = _psr1_ready_for_pipe_update_locked(intel_dp);
+ ret = _psr1_ready_for_pipe_update_locked(new_crtc_state);
if (ret)
drm_err(display->drm,
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v3 2/4] drm/i915/psr: Add new define for PSR idle timeout
2025-09-05 7:27 [PATCH v3 0/4] Wait PSR idle before on dsb commit Jouni Högander
2025-09-05 7:27 ` [PATCH v3 1/4] drm/i915/psr: Pass intel_crtc_state instead of intel_dp in wait_for_idle Jouni Högander
@ 2025-09-05 7:27 ` Jouni Högander
2025-09-05 7:27 ` [PATCH v3 3/4] drm/i915/psr: New interface adding PSR idle poll into dsb commit Jouni Högander
` (9 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Jouni Högander @ 2025-09-05 7:27 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander, Mika Kahola
Currently we are using value 50ms as timeout for waiting PSR to idle. Add
own define for this purpose.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Mika Kahola <mika.kahola@intel.com>
---
drivers/gpu/drm/i915/display/intel_psr.c | 20 ++++++++++++--------
1 file changed, 12 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 6ab5c028845a..eae1eedbbb26 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -2997,6 +2997,14 @@ void intel_psr_post_plane_update(struct intel_atomic_state *state,
}
}
+/*
+ * From bspec: Panel Self Refresh (BDW+)
+ * Max. time for PSR to idle = Inverse of the refresh rate + 6 ms of
+ * exit training time + 1.5 ms of aux channel handshake. 50 ms is
+ * defensive enough to cover everything.
+ */
+#define PSR_IDLE_TIMEOUT_MS 50
+
static int
_psr2_ready_for_pipe_update_locked(const struct intel_crtc_state *new_crtc_state)
{
@@ -3010,7 +3018,8 @@ _psr2_ready_for_pipe_update_locked(const struct intel_crtc_state *new_crtc_state
*/
return intel_de_wait_for_clear(display,
EDP_PSR2_STATUS(display, cpu_transcoder),
- EDP_PSR2_STATUS_STATE_DEEP_SLEEP, 50);
+ EDP_PSR2_STATUS_STATE_DEEP_SLEEP,
+ PSR_IDLE_TIMEOUT_MS);
}
static int
@@ -3019,15 +3028,10 @@ _psr1_ready_for_pipe_update_locked(const struct intel_crtc_state *new_crtc_state
struct intel_display *display = to_intel_display(new_crtc_state);
enum transcoder cpu_transcoder = new_crtc_state->cpu_transcoder;
- /*
- * From bspec: Panel Self Refresh (BDW+)
- * Max. time for PSR to idle = Inverse of the refresh rate + 6 ms of
- * exit training time + 1.5 ms of aux channel handshake. 50 ms is
- * defensive enough to cover everything.
- */
return intel_de_wait_for_clear(display,
psr_status_reg(display, cpu_transcoder),
- EDP_PSR_STATUS_STATE_MASK, 50);
+ EDP_PSR_STATUS_STATE_MASK,
+ PSR_IDLE_TIMEOUT_MS);
}
/**
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v3 3/4] drm/i915/psr: New interface adding PSR idle poll into dsb commit
2025-09-05 7:27 [PATCH v3 0/4] Wait PSR idle before on dsb commit Jouni Högander
2025-09-05 7:27 ` [PATCH v3 1/4] drm/i915/psr: Pass intel_crtc_state instead of intel_dp in wait_for_idle Jouni Högander
2025-09-05 7:27 ` [PATCH v3 2/4] drm/i915/psr: Add new define for PSR idle timeout Jouni Högander
@ 2025-09-05 7:27 ` Jouni Högander
2025-09-05 7:27 ` [PATCH v3 4/4] drm/i915/psr: Add poll for checking PSR is idle before starting update Jouni Högander
` (8 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Jouni Högander @ 2025-09-05 7:27 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander, Ville Syrjälä
We are currently observing crc failures after we started using dsb for PSR
updates as well. This seems to happen because PSR HW is still sending
couple of updates using old framebuffers on wake-up.
This patch is preparing to fix that by adding interface which can be used
to add poll ensuring PSR HW is idle into dsb commit.
v3: add intel_dsb as a parameter to intel_psr_wait_for_idle_dsb
v2: add pass crtc_state->dsb_commit as parameter
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_psr.c | 39 +++++++++++++++++++++---
drivers/gpu/drm/i915/display/intel_psr.h | 2 ++
2 files changed, 37 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index eae1eedbbb26..1aa4a127afaf 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -42,6 +42,7 @@
#include "intel_dmc.h"
#include "intel_dp.h"
#include "intel_dp_aux.h"
+#include "intel_dsb.h"
#include "intel_frontbuffer.h"
#include "intel_hdmi.h"
#include "intel_psr.h"
@@ -3006,7 +3007,8 @@ void intel_psr_post_plane_update(struct intel_atomic_state *state,
#define PSR_IDLE_TIMEOUT_MS 50
static int
-_psr2_ready_for_pipe_update_locked(const struct intel_crtc_state *new_crtc_state)
+_psr2_ready_for_pipe_update_locked(const struct intel_crtc_state *new_crtc_state,
+ struct intel_dsb *dsb)
{
struct intel_display *display = to_intel_display(new_crtc_state);
enum transcoder cpu_transcoder = new_crtc_state->cpu_transcoder;
@@ -3016,6 +3018,13 @@ _psr2_ready_for_pipe_update_locked(const struct intel_crtc_state *new_crtc_state
* As all higher states has bit 4 of PSR2 state set we can just wait for
* EDP_PSR2_STATUS_STATE_DEEP_SLEEP to be cleared.
*/
+ if (dsb) {
+ intel_dsb_poll(dsb, EDP_PSR2_STATUS(display, cpu_transcoder),
+ EDP_PSR2_STATUS_STATE_DEEP_SLEEP, 0, 200,
+ PSR_IDLE_TIMEOUT_MS * 1000 / 200);
+ return true;
+ }
+
return intel_de_wait_for_clear(display,
EDP_PSR2_STATUS(display, cpu_transcoder),
EDP_PSR2_STATUS_STATE_DEEP_SLEEP,
@@ -3023,11 +3032,19 @@ _psr2_ready_for_pipe_update_locked(const struct intel_crtc_state *new_crtc_state
}
static int
-_psr1_ready_for_pipe_update_locked(const struct intel_crtc_state *new_crtc_state)
+_psr1_ready_for_pipe_update_locked(const struct intel_crtc_state *new_crtc_state,
+ struct intel_dsb *dsb)
{
struct intel_display *display = to_intel_display(new_crtc_state);
enum transcoder cpu_transcoder = new_crtc_state->cpu_transcoder;
+ if (dsb) {
+ intel_dsb_poll(dsb, psr_status_reg(display, cpu_transcoder),
+ EDP_PSR_STATUS_STATE_MASK, 0, 200,
+ PSR_IDLE_TIMEOUT_MS * 1000 / 200);
+ return true;
+ }
+
return intel_de_wait_for_clear(display,
psr_status_reg(display, cpu_transcoder),
EDP_PSR_STATUS_STATE_MASK,
@@ -3060,9 +3077,11 @@ void intel_psr_wait_for_idle_locked(const struct intel_crtc_state *new_crtc_stat
continue;
if (intel_dp->psr.sel_update_enabled)
- ret = _psr2_ready_for_pipe_update_locked(new_crtc_state);
+ ret = _psr2_ready_for_pipe_update_locked(new_crtc_state,
+ NULL);
else
- ret = _psr1_ready_for_pipe_update_locked(new_crtc_state);
+ ret = _psr1_ready_for_pipe_update_locked(new_crtc_state,
+ NULL);
if (ret)
drm_err(display->drm,
@@ -3070,6 +3089,18 @@ void intel_psr_wait_for_idle_locked(const struct intel_crtc_state *new_crtc_stat
}
}
+void intel_psr_wait_for_idle_dsb(struct intel_dsb *dsb,
+ const struct intel_crtc_state *new_crtc_state)
+{
+ if (!new_crtc_state->has_psr || new_crtc_state->has_panel_replay)
+ return;
+
+ if (new_crtc_state->has_sel_update)
+ _psr2_ready_for_pipe_update_locked(new_crtc_state, dsb);
+ else
+ _psr1_ready_for_pipe_update_locked(new_crtc_state, dsb);
+}
+
static bool __psr_wait_for_idle_locked(struct intel_dp *intel_dp)
{
struct intel_display *display = to_intel_display(intel_dp);
diff --git a/drivers/gpu/drm/i915/display/intel_psr.h b/drivers/gpu/drm/i915/display/intel_psr.h
index 9b061a22361f..077751aa599f 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.h
+++ b/drivers/gpu/drm/i915/display/intel_psr.h
@@ -52,6 +52,8 @@ void intel_psr_get_config(struct intel_encoder *encoder,
void intel_psr_irq_handler(struct intel_dp *intel_dp, u32 psr_iir);
void intel_psr_short_pulse(struct intel_dp *intel_dp);
void intel_psr_wait_for_idle_locked(const struct intel_crtc_state *new_crtc_state);
+void intel_psr_wait_for_idle_dsb(struct intel_dsb *dsb,
+ const struct intel_crtc_state *new_crtc_state);
bool intel_psr_enabled(struct intel_dp *intel_dp);
int intel_psr2_sel_fetch_update(struct intel_atomic_state *state,
struct intel_crtc *crtc);
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v3 4/4] drm/i915/psr: Add poll for checking PSR is idle before starting update
2025-09-05 7:27 [PATCH v3 0/4] Wait PSR idle before on dsb commit Jouni Högander
` (2 preceding siblings ...)
2025-09-05 7:27 ` [PATCH v3 3/4] drm/i915/psr: New interface adding PSR idle poll into dsb commit Jouni Högander
@ 2025-09-05 7:27 ` Jouni Högander
2025-09-05 9:17 ` Ville Syrjälä
2025-09-05 8:00 ` ✓ CI.KUnit: success for Wait PSR idle before on dsb commit (rev3) Patchwork
` (7 subsequent siblings)
11 siblings, 1 reply; 14+ messages in thread
From: Jouni Högander @ 2025-09-05 7:27 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander
We are currently observing crc failures after we started using dsb for PSR
updates as well. This seems to happen because PSR HW is still sending
couple of updates using old framebuffers on wake-up.
Fix this by adding poll ensuring PSR is idle before starting update.
v2: pass new_crtc_state->dsb_commit to intel_psr_wait_for_idle_dsb
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index c1a3a95c65f0..5dca7f96b425 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -7271,6 +7271,9 @@ static void intel_atomic_dsb_finish(struct intel_atomic_state *state,
intel_psr_trigger_frame_change_event(new_crtc_state->dsb_commit,
state, crtc);
+ intel_psr_wait_for_idle_dsb(new_crtc_state->dsb_commit,
+ new_crtc_state);
+
if (new_crtc_state->use_dsb)
intel_dsb_vblank_evade(state, new_crtc_state->dsb_commit);
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* ✓ CI.KUnit: success for Wait PSR idle before on dsb commit (rev3)
2025-09-05 7:27 [PATCH v3 0/4] Wait PSR idle before on dsb commit Jouni Högander
` (3 preceding siblings ...)
2025-09-05 7:27 ` [PATCH v3 4/4] drm/i915/psr: Add poll for checking PSR is idle before starting update Jouni Högander
@ 2025-09-05 8:00 ` Patchwork
2025-09-05 8:15 ` ✗ CI.checksparse: warning " Patchwork
` (6 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-09-05 8:00 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
== Series Details ==
Series: Wait PSR idle before on dsb commit (rev3)
URL : https://patchwork.freedesktop.org/series/152470/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[07:59:04] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:59:08] 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
[07:59:37] Starting KUnit Kernel (1/1)...
[07:59:37] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:59:37] ================== guc_buf (11 subtests) ===================
[07:59:37] [PASSED] test_smallest
[07:59:37] [PASSED] test_largest
[07:59:37] [PASSED] test_granular
[07:59:37] [PASSED] test_unique
[07:59:37] [PASSED] test_overlap
[07:59:37] [PASSED] test_reusable
[07:59:37] [PASSED] test_too_big
[07:59:37] [PASSED] test_flush
[07:59:37] [PASSED] test_lookup
[07:59:37] [PASSED] test_data
[07:59:37] [PASSED] test_class
[07:59:37] ===================== [PASSED] guc_buf =====================
[07:59:37] =================== guc_dbm (7 subtests) ===================
[07:59:37] [PASSED] test_empty
[07:59:37] [PASSED] test_default
[07:59:37] ======================== test_size ========================
[07:59:37] [PASSED] 4
[07:59:37] [PASSED] 8
[07:59:37] [PASSED] 32
[07:59:37] [PASSED] 256
[07:59:37] ==================== [PASSED] test_size ====================
[07:59:37] ======================= test_reuse ========================
[07:59:37] [PASSED] 4
[07:59:37] [PASSED] 8
[07:59:37] [PASSED] 32
[07:59:37] [PASSED] 256
[07:59:37] =================== [PASSED] test_reuse ====================
[07:59:37] =================== test_range_overlap ====================
[07:59:37] [PASSED] 4
[07:59:37] [PASSED] 8
[07:59:37] [PASSED] 32
[07:59:37] [PASSED] 256
[07:59:37] =============== [PASSED] test_range_overlap ================
[07:59:37] =================== test_range_compact ====================
[07:59:37] [PASSED] 4
[07:59:37] [PASSED] 8
[07:59:37] [PASSED] 32
[07:59:37] [PASSED] 256
[07:59:37] =============== [PASSED] test_range_compact ================
[07:59:37] ==================== test_range_spare =====================
[07:59:37] [PASSED] 4
[07:59:37] [PASSED] 8
[07:59:37] [PASSED] 32
[07:59:37] [PASSED] 256
[07:59:37] ================ [PASSED] test_range_spare =================
[07:59:37] ===================== [PASSED] guc_dbm =====================
[07:59:37] =================== guc_idm (6 subtests) ===================
[07:59:37] [PASSED] bad_init
[07:59:37] [PASSED] no_init
[07:59:37] [PASSED] init_fini
[07:59:37] [PASSED] check_used
[07:59:37] [PASSED] check_quota
[07:59:37] [PASSED] check_all
[07:59:37] ===================== [PASSED] guc_idm =====================
[07:59:37] ================== no_relay (3 subtests) ===================
[07:59:37] [PASSED] xe_drops_guc2pf_if_not_ready
[07:59:37] [PASSED] xe_drops_guc2vf_if_not_ready
[07:59:37] [PASSED] xe_rejects_send_if_not_ready
[07:59:37] ==================== [PASSED] no_relay =====================
[07:59:37] ================== pf_relay (14 subtests) ==================
[07:59:37] [PASSED] pf_rejects_guc2pf_too_short
[07:59:37] [PASSED] pf_rejects_guc2pf_too_long
[07:59:37] [PASSED] pf_rejects_guc2pf_no_payload
[07:59:37] [PASSED] pf_fails_no_payload
[07:59:37] [PASSED] pf_fails_bad_origin
[07:59:37] [PASSED] pf_fails_bad_type
[07:59:37] [PASSED] pf_txn_reports_error
[07:59:37] [PASSED] pf_txn_sends_pf2guc
[07:59:37] [PASSED] pf_sends_pf2guc
[07:59:37] [SKIPPED] pf_loopback_nop
[07:59:37] [SKIPPED] pf_loopback_echo
[07:59:37] [SKIPPED] pf_loopback_fail
[07:59:37] [SKIPPED] pf_loopback_busy
[07:59:37] [SKIPPED] pf_loopback_retry
[07:59:37] ==================== [PASSED] pf_relay =====================
[07:59:37] ================== vf_relay (3 subtests) ===================
[07:59:37] [PASSED] vf_rejects_guc2vf_too_short
[07:59:37] [PASSED] vf_rejects_guc2vf_too_long
[07:59:37] [PASSED] vf_rejects_guc2vf_no_payload
[07:59:37] ==================== [PASSED] vf_relay =====================
[07:59:37] ===================== lmtt (1 subtest) =====================
[07:59:37] ======================== test_ops =========================
[07:59:37] [PASSED] 2-level
[07:59:37] [PASSED] multi-level
[07:59:37] ==================== [PASSED] test_ops =====================
[07:59:37] ====================== [PASSED] lmtt =======================
[07:59:37] ================= pf_service (11 subtests) =================
[07:59:37] [PASSED] pf_negotiate_any
[07:59:37] [PASSED] pf_negotiate_base_match
[07:59:37] [PASSED] pf_negotiate_base_newer
[07:59:37] [PASSED] pf_negotiate_base_next
[07:59:37] [SKIPPED] pf_negotiate_base_older
[07:59:37] [PASSED] pf_negotiate_base_prev
[07:59:37] [PASSED] pf_negotiate_latest_match
[07:59:37] [PASSED] pf_negotiate_latest_newer
[07:59:37] [PASSED] pf_negotiate_latest_next
[07:59:37] [SKIPPED] pf_negotiate_latest_older
[07:59:37] [SKIPPED] pf_negotiate_latest_prev
[07:59:37] =================== [PASSED] pf_service ====================
[07:59:37] =================== xe_mocs (2 subtests) ===================
[07:59:37] ================ xe_live_mocs_kernel_kunit ================
[07:59:37] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[07:59:37] ================ xe_live_mocs_reset_kunit =================
[07:59:37] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[07:59:37] ==================== [SKIPPED] xe_mocs =====================
[07:59:37] ================= xe_migrate (2 subtests) ==================
[07:59:37] ================= xe_migrate_sanity_kunit =================
[07:59:37] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[07:59:37] ================== xe_validate_ccs_kunit ==================
[07:59:37] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[07:59:37] =================== [SKIPPED] xe_migrate ===================
[07:59:37] ================== xe_dma_buf (1 subtest) ==================
[07:59:37] ==================== xe_dma_buf_kunit =====================
[07:59:37] ================ [SKIPPED] xe_dma_buf_kunit ================
[07:59:37] =================== [SKIPPED] xe_dma_buf ===================
[07:59:37] ================= xe_bo_shrink (1 subtest) =================
[07:59:37] =================== xe_bo_shrink_kunit ====================
[07:59:37] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[07:59:37] ================== [SKIPPED] xe_bo_shrink ==================
[07:59:37] ==================== xe_bo (2 subtests) ====================
[07:59:37] ================== xe_ccs_migrate_kunit ===================
[07:59:37] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[07:59:37] ==================== xe_bo_evict_kunit ====================
[07:59:37] =============== [SKIPPED] xe_bo_evict_kunit ================
[07:59:37] ===================== [SKIPPED] xe_bo ======================
[07:59:37] ==================== args (11 subtests) ====================
[07:59:37] [PASSED] count_args_test
[07:59:37] [PASSED] call_args_example
[07:59:37] [PASSED] call_args_test
[07:59:37] [PASSED] drop_first_arg_example
[07:59:37] [PASSED] drop_first_arg_test
[07:59:37] [PASSED] first_arg_example
[07:59:37] [PASSED] first_arg_test
[07:59:37] [PASSED] last_arg_example
[07:59:37] [PASSED] last_arg_test
[07:59:37] [PASSED] pick_arg_example
[07:59:37] [PASSED] sep_comma_example
[07:59:37] ====================== [PASSED] args =======================
[07:59:37] =================== xe_pci (3 subtests) ====================
[07:59:37] ==================== check_graphics_ip ====================
[07:59:37] [PASSED] 12.70 Xe_LPG
[07:59:37] [PASSED] 12.71 Xe_LPG
[07:59:37] [PASSED] 12.74 Xe_LPG+
[07:59:37] [PASSED] 20.01 Xe2_HPG
[07:59:37] [PASSED] 20.02 Xe2_HPG
[07:59:37] [PASSED] 20.04 Xe2_LPG
[07:59:37] [PASSED] 30.00 Xe3_LPG
[07:59:37] [PASSED] 30.01 Xe3_LPG
[07:59:37] [PASSED] 30.03 Xe3_LPG
[07:59:37] ================ [PASSED] check_graphics_ip ================
[07:59:37] ===================== check_media_ip ======================
[07:59:37] [PASSED] 13.00 Xe_LPM+
[07:59:37] [PASSED] 13.01 Xe2_HPM
[07:59:37] [PASSED] 20.00 Xe2_LPM
[07:59:37] [PASSED] 30.00 Xe3_LPM
[07:59:37] [PASSED] 30.02 Xe3_LPM
[07:59:37] ================= [PASSED] check_media_ip ==================
[07:59:37] ================= check_platform_gt_count =================
[07:59:37] [PASSED] 0x9A60 (TIGERLAKE)
[07:59:37] [PASSED] 0x9A68 (TIGERLAKE)
[07:59:37] [PASSED] 0x9A70 (TIGERLAKE)
[07:59:37] [PASSED] 0x9A40 (TIGERLAKE)
[07:59:37] [PASSED] 0x9A49 (TIGERLAKE)
[07:59:37] [PASSED] 0x9A59 (TIGERLAKE)
[07:59:37] [PASSED] 0x9A78 (TIGERLAKE)
[07:59:37] [PASSED] 0x9AC0 (TIGERLAKE)
[07:59:37] [PASSED] 0x9AC9 (TIGERLAKE)
[07:59:37] [PASSED] 0x9AD9 (TIGERLAKE)
[07:59:37] [PASSED] 0x9AF8 (TIGERLAKE)
[07:59:37] [PASSED] 0x4C80 (ROCKETLAKE)
[07:59:37] [PASSED] 0x4C8A (ROCKETLAKE)
[07:59:37] [PASSED] 0x4C8B (ROCKETLAKE)
[07:59:37] [PASSED] 0x4C8C (ROCKETLAKE)
[07:59:37] [PASSED] 0x4C90 (ROCKETLAKE)
[07:59:37] [PASSED] 0x4C9A (ROCKETLAKE)
[07:59:37] [PASSED] 0x4680 (ALDERLAKE_S)
[07:59:37] [PASSED] 0x4682 (ALDERLAKE_S)
[07:59:37] [PASSED] 0x4688 (ALDERLAKE_S)
[07:59:37] [PASSED] 0x468A (ALDERLAKE_S)
[07:59:37] [PASSED] 0x468B (ALDERLAKE_S)
[07:59:37] [PASSED] 0x4690 (ALDERLAKE_S)
[07:59:37] [PASSED] 0x4692 (ALDERLAKE_S)
[07:59:37] [PASSED] 0x4693 (ALDERLAKE_S)
[07:59:37] [PASSED] 0x46A0 (ALDERLAKE_P)
[07:59:37] [PASSED] 0x46A1 (ALDERLAKE_P)
[07:59:37] [PASSED] 0x46A2 (ALDERLAKE_P)
[07:59:37] [PASSED] 0x46A3 (ALDERLAKE_P)
[07:59:37] [PASSED] 0x46A6 (ALDERLAKE_P)
[07:59:37] [PASSED] 0x46A8 (ALDERLAKE_P)
[07:59:37] [PASSED] 0x46AA (ALDERLAKE_P)
[07:59:37] [PASSED] 0x462A (ALDERLAKE_P)
[07:59:37] [PASSED] 0x4626 (ALDERLAKE_P)
[07:59:37] [PASSED] 0x4628 (ALDERLAKE_P)
[07:59:37] [PASSED] 0x46B0 (ALDERLAKE_P)
[07:59:37] [PASSED] 0x46B1 (ALDERLAKE_P)
[07:59:37] [PASSED] 0x46B2 (ALDERLAKE_P)
[07:59:37] [PASSED] 0x46B3 (ALDERLAKE_P)
[07:59:37] [PASSED] 0x46C0 (ALDERLAKE_P)
[07:59:37] [PASSED] 0x46C1 (ALDERLAKE_P)
[07:59:37] [PASSED] 0x46C2 (ALDERLAKE_P)
[07:59:37] [PASSED] 0x46C3 (ALDERLAKE_P)
[07:59:37] [PASSED] 0x46D0 (ALDERLAKE_N)
[07:59:37] [PASSED] 0x46D1 (ALDERLAKE_N)
[07:59:37] [PASSED] 0x46D2 (ALDERLAKE_N)
[07:59:37] [PASSED] 0x46D3 (ALDERLAKE_N)
[07:59:37] [PASSED] 0x46D4 (ALDERLAKE_N)
[07:59:37] [PASSED] 0xA721 (ALDERLAKE_P)
[07:59:37] [PASSED] 0xA7A1 (ALDERLAKE_P)
[07:59:37] [PASSED] 0xA7A9 (ALDERLAKE_P)
[07:59:37] [PASSED] 0xA7AC (ALDERLAKE_P)
[07:59:37] [PASSED] 0xA7AD (ALDERLAKE_P)
[07:59:37] [PASSED] 0xA720 (ALDERLAKE_P)
[07:59:37] [PASSED] 0xA7A0 (ALDERLAKE_P)
[07:59:37] [PASSED] 0xA7A8 (ALDERLAKE_P)
[07:59:37] [PASSED] 0xA7AA (ALDERLAKE_P)
[07:59:37] [PASSED] 0xA7AB (ALDERLAKE_P)
[07:59:37] [PASSED] 0xA780 (ALDERLAKE_S)
[07:59:37] [PASSED] 0xA781 (ALDERLAKE_S)
[07:59:37] [PASSED] 0xA782 (ALDERLAKE_S)
[07:59:37] [PASSED] 0xA783 (ALDERLAKE_S)
[07:59:37] [PASSED] 0xA788 (ALDERLAKE_S)
[07:59:37] [PASSED] 0xA789 (ALDERLAKE_S)
[07:59:37] [PASSED] 0xA78A (ALDERLAKE_S)
[07:59:37] [PASSED] 0xA78B (ALDERLAKE_S)
[07:59:37] [PASSED] 0x4905 (DG1)
[07:59:37] [PASSED] 0x4906 (DG1)
[07:59:37] [PASSED] 0x4907 (DG1)
[07:59:37] [PASSED] 0x4908 (DG1)
[07:59:37] [PASSED] 0x4909 (DG1)
[07:59:37] [PASSED] 0x56C0 (DG2)
[07:59:37] [PASSED] 0x56C2 (DG2)
[07:59:37] [PASSED] 0x56C1 (DG2)
[07:59:37] [PASSED] 0x7D51 (METEORLAKE)
[07:59:37] [PASSED] 0x7DD1 (METEORLAKE)
[07:59:37] [PASSED] 0x7D41 (METEORLAKE)
[07:59:37] [PASSED] 0x7D67 (METEORLAKE)
[07:59:37] [PASSED] 0xB640 (METEORLAKE)
[07:59:37] [PASSED] 0x56A0 (DG2)
[07:59:37] [PASSED] 0x56A1 (DG2)
[07:59:37] [PASSED] 0x56A2 (DG2)
[07:59:37] [PASSED] 0x56BE (DG2)
[07:59:37] [PASSED] 0x56BF (DG2)
[07:59:37] [PASSED] 0x5690 (DG2)
[07:59:37] [PASSED] 0x5691 (DG2)
[07:59:37] [PASSED] 0x5692 (DG2)
[07:59:37] [PASSED] 0x56A5 (DG2)
[07:59:37] [PASSED] 0x56A6 (DG2)
[07:59:37] [PASSED] 0x56B0 (DG2)
[07:59:37] [PASSED] 0x56B1 (DG2)
[07:59:37] [PASSED] 0x56BA (DG2)
[07:59:37] [PASSED] 0x56BB (DG2)
[07:59:37] [PASSED] 0x56BC (DG2)
[07:59:37] [PASSED] 0x56BD (DG2)
[07:59:37] [PASSED] 0x5693 (DG2)
[07:59:37] [PASSED] 0x5694 (DG2)
[07:59:37] [PASSED] 0x5695 (DG2)
[07:59:37] [PASSED] 0x56A3 (DG2)
[07:59:37] [PASSED] 0x56A4 (DG2)
[07:59:37] [PASSED] 0x56B2 (DG2)
[07:59:37] [PASSED] 0x56B3 (DG2)
[07:59:37] [PASSED] 0x5696 (DG2)
[07:59:37] [PASSED] 0x5697 (DG2)
[07:59:37] [PASSED] 0xB69 (PVC)
[07:59:37] [PASSED] 0xB6E (PVC)
[07:59:37] [PASSED] 0xBD4 (PVC)
[07:59:37] [PASSED] 0xBD5 (PVC)
[07:59:37] [PASSED] 0xBD6 (PVC)
[07:59:37] [PASSED] 0xBD7 (PVC)
[07:59:37] [PASSED] 0xBD8 (PVC)
[07:59:37] [PASSED] 0xBD9 (PVC)
[07:59:37] [PASSED] 0xBDA (PVC)
[07:59:37] [PASSED] 0xBDB (PVC)
[07:59:37] [PASSED] 0xBE0 (PVC)
[07:59:37] [PASSED] 0xBE1 (PVC)
[07:59:37] [PASSED] 0xBE5 (PVC)
[07:59:37] [PASSED] 0x7D40 (METEORLAKE)
[07:59:37] [PASSED] 0x7D45 (METEORLAKE)
[07:59:37] [PASSED] 0x7D55 (METEORLAKE)
[07:59:37] [PASSED] 0x7D60 (METEORLAKE)
[07:59:37] [PASSED] 0x7DD5 (METEORLAKE)
[07:59:37] [PASSED] 0x6420 (LUNARLAKE)
[07:59:37] [PASSED] 0x64A0 (LUNARLAKE)
[07:59:37] [PASSED] 0x64B0 (LUNARLAKE)
[07:59:37] [PASSED] 0xE202 (BATTLEMAGE)
[07:59:37] [PASSED] 0xE209 (BATTLEMAGE)
[07:59:37] [PASSED] 0xE20B (BATTLEMAGE)
[07:59:37] [PASSED] 0xE20C (BATTLEMAGE)
[07:59:37] [PASSED] 0xE20D (BATTLEMAGE)
[07:59:37] [PASSED] 0xE210 (BATTLEMAGE)
[07:59:37] [PASSED] 0xE211 (BATTLEMAGE)
[07:59:37] [PASSED] 0xE212 (BATTLEMAGE)
[07:59:37] [PASSED] 0xE216 (BATTLEMAGE)
[07:59:37] [PASSED] 0xE220 (BATTLEMAGE)
[07:59:37] [PASSED] 0xE221 (BATTLEMAGE)
[07:59:37] [PASSED] 0xE222 (BATTLEMAGE)
[07:59:37] [PASSED] 0xE223 (BATTLEMAGE)
[07:59:37] [PASSED] 0xB080 (PANTHERLAKE)
[07:59:37] [PASSED] 0xB081 (PANTHERLAKE)
[07:59:37] [PASSED] 0xB082 (PANTHERLAKE)
[07:59:37] [PASSED] 0xB083 (PANTHERLAKE)
[07:59:37] [PASSED] 0xB084 (PANTHERLAKE)
[07:59:37] [PASSED] 0xB085 (PANTHERLAKE)
[07:59:37] [PASSED] 0xB086 (PANTHERLAKE)
[07:59:37] [PASSED] 0xB087 (PANTHERLAKE)
[07:59:37] [PASSED] 0xB08F (PANTHERLAKE)
[07:59:37] [PASSED] 0xB090 (PANTHERLAKE)
[07:59:37] [PASSED] 0xB0A0 (PANTHERLAKE)
[07:59:37] [PASSED] 0xB0B0 (PANTHERLAKE)
[07:59:37] [PASSED] 0xFD80 (PANTHERLAKE)
[07:59:37] [PASSED] 0xFD81 (PANTHERLAKE)
[07:59:37] ============= [PASSED] check_platform_gt_count =============
[07:59:37] ===================== [PASSED] xe_pci ======================
[07:59:37] =================== xe_rtp (2 subtests) ====================
[07:59:37] =============== xe_rtp_process_to_sr_tests ================
[07:59:37] [PASSED] coalesce-same-reg
[07:59:37] [PASSED] no-match-no-add
[07:59:37] [PASSED] match-or
[07:59:37] [PASSED] match-or-xfail
[07:59:37] [PASSED] no-match-no-add-multiple-rules
[07:59:37] [PASSED] two-regs-two-entries
[07:59:37] [PASSED] clr-one-set-other
[07:59:37] [PASSED] set-field
[07:59:37] [PASSED] conflict-duplicate
[07:59:37] [PASSED] conflict-not-disjoint
[07:59:37] [PASSED] conflict-reg-type
[07:59:37] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[07:59:37] ================== xe_rtp_process_tests ===================
[07:59:37] [PASSED] active1
[07:59:37] [PASSED] active2
[07:59:37] [PASSED] active-inactive
[07:59:37] [PASSED] inactive-active
[07:59:37] [PASSED] inactive-1st_or_active-inactive
[07:59:37] [PASSED] inactive-2nd_or_active-inactive
[07:59:37] [PASSED] inactive-last_or_active-inactive
[07:59:37] [PASSED] inactive-no_or_active-inactive
[07:59:37] ============== [PASSED] xe_rtp_process_tests ===============
[07:59:37] ===================== [PASSED] xe_rtp ======================
[07:59:37] ==================== xe_wa (1 subtest) =====================
[07:59:37] ======================== xe_wa_gt =========================
[07:59:37] [PASSED] TIGERLAKE (B0)
[07:59:37] [PASSED] DG1 (A0)
[07:59:37] [PASSED] DG1 (B0)
[07:59:37] [PASSED] ALDERLAKE_S (A0)
[07:59:37] [PASSED] ALDERLAKE_S (B0)
[07:59:37] [PASSED] ALDERLAKE_S (C0)
[07:59:37] [PASSED] ALDERLAKE_S (D0)
[07:59:37] [PASSED] ALDERLAKE_P (A0)
[07:59:37] [PASSED] ALDERLAKE_P (B0)
[07:59:37] [PASSED] ALDERLAKE_P (C0)
[07:59:37] [PASSED] ALDERLAKE_S_RPLS (D0)
[07:59:37] [PASSED] ALDERLAKE_P_RPLU (E0)
[07:59:37] [PASSED] DG2_G10 (C0)
[07:59:37] [PASSED] DG2_G11 (B1)
[07:59:37] [PASSED] DG2_G12 (A1)
[07:59:37] [PASSED] METEORLAKE (g:A0, m:A0)
[07:59:37] [PASSED] METEORLAKE (g:A0, m:A0)
[07:59:37] [PASSED] METEORLAKE (g:A0, m:A0)
[07:59:37] [PASSED] LUNARLAKE (g:A0, m:A0)
[07:59:37] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[07:59:37] [PASSED] BATTLEMAGE (g:A0, m:A1)
[07:59:37] [PASSED] PANTHERLAKE (g:A0, m:A0)
[07:59:37] ==================== [PASSED] xe_wa_gt =====================
[07:59:37] ====================== [PASSED] xe_wa ======================
[07:59:37] ============================================================
[07:59:37] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[07:59:38] Elapsed time: 33.502s total, 4.257s configuring, 28.879s building, 0.321s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[07:59:38] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:59:39] 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:00:02] Starting KUnit Kernel (1/1)...
[08:00:02] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:00:02] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[08:00:02] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[08:00:02] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[08:00:02] =========== drm_validate_clone_mode (2 subtests) ===========
[08:00:02] ============== drm_test_check_in_clone_mode ===============
[08:00:02] [PASSED] in_clone_mode
[08:00:02] [PASSED] not_in_clone_mode
[08:00:02] ========== [PASSED] drm_test_check_in_clone_mode ===========
[08:00:02] =============== drm_test_check_valid_clones ===============
[08:00:02] [PASSED] not_in_clone_mode
[08:00:02] [PASSED] valid_clone
[08:00:02] [PASSED] invalid_clone
[08:00:02] =========== [PASSED] drm_test_check_valid_clones ===========
[08:00:02] ============= [PASSED] drm_validate_clone_mode =============
[08:00:02] ============= drm_validate_modeset (1 subtest) =============
[08:00:02] [PASSED] drm_test_check_connector_changed_modeset
[08:00:02] ============== [PASSED] drm_validate_modeset ===============
[08:00:02] ====== drm_test_bridge_get_current_state (2 subtests) ======
[08:00:02] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[08:00:02] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[08:00:02] ======== [PASSED] drm_test_bridge_get_current_state ========
[08:00:02] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[08:00:02] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[08:00:02] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[08:00:02] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[08:00:02] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[08:00:02] ============== drm_bridge_alloc (2 subtests) ===============
[08:00:02] [PASSED] drm_test_drm_bridge_alloc_basic
[08:00:02] [PASSED] drm_test_drm_bridge_alloc_get_put
[08:00:02] ================ [PASSED] drm_bridge_alloc =================
[08:00:02] ================== drm_buddy (7 subtests) ==================
[08:00:02] [PASSED] drm_test_buddy_alloc_limit
[08:00:02] [PASSED] drm_test_buddy_alloc_optimistic
[08:00:02] [PASSED] drm_test_buddy_alloc_pessimistic
[08:00:02] [PASSED] drm_test_buddy_alloc_pathological
[08:00:02] [PASSED] drm_test_buddy_alloc_contiguous
[08:00:02] [PASSED] drm_test_buddy_alloc_clear
[08:00:02] [PASSED] drm_test_buddy_alloc_range_bias
[08:00:02] ==================== [PASSED] drm_buddy ====================
[08:00:02] ============= drm_cmdline_parser (40 subtests) =============
[08:00:02] [PASSED] drm_test_cmdline_force_d_only
[08:00:02] [PASSED] drm_test_cmdline_force_D_only_dvi
[08:00:02] [PASSED] drm_test_cmdline_force_D_only_hdmi
[08:00:02] [PASSED] drm_test_cmdline_force_D_only_not_digital
[08:00:02] [PASSED] drm_test_cmdline_force_e_only
[08:00:02] [PASSED] drm_test_cmdline_res
[08:00:02] [PASSED] drm_test_cmdline_res_vesa
[08:00:02] [PASSED] drm_test_cmdline_res_vesa_rblank
[08:00:02] [PASSED] drm_test_cmdline_res_rblank
[08:00:02] [PASSED] drm_test_cmdline_res_bpp
[08:00:02] [PASSED] drm_test_cmdline_res_refresh
[08:00:02] [PASSED] drm_test_cmdline_res_bpp_refresh
[08:00:02] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[08:00:02] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[08:00:02] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[08:00:02] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[08:00:02] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[08:00:02] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[08:00:02] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[08:00:02] [PASSED] drm_test_cmdline_res_margins_force_on
[08:00:02] [PASSED] drm_test_cmdline_res_vesa_margins
[08:00:02] [PASSED] drm_test_cmdline_name
[08:00:02] [PASSED] drm_test_cmdline_name_bpp
[08:00:02] [PASSED] drm_test_cmdline_name_option
[08:00:02] [PASSED] drm_test_cmdline_name_bpp_option
[08:00:02] [PASSED] drm_test_cmdline_rotate_0
[08:00:02] [PASSED] drm_test_cmdline_rotate_90
[08:00:02] [PASSED] drm_test_cmdline_rotate_180
[08:00:02] [PASSED] drm_test_cmdline_rotate_270
[08:00:02] [PASSED] drm_test_cmdline_hmirror
[08:00:02] [PASSED] drm_test_cmdline_vmirror
[08:00:02] [PASSED] drm_test_cmdline_margin_options
[08:00:02] [PASSED] drm_test_cmdline_multiple_options
[08:00:02] [PASSED] drm_test_cmdline_bpp_extra_and_option
[08:00:02] [PASSED] drm_test_cmdline_extra_and_option
[08:00:02] [PASSED] drm_test_cmdline_freestanding_options
[08:00:02] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[08:00:02] [PASSED] drm_test_cmdline_panel_orientation
[08:00:02] ================ drm_test_cmdline_invalid =================
[08:00:02] [PASSED] margin_only
[08:00:02] [PASSED] interlace_only
[08:00:02] [PASSED] res_missing_x
[08:00:02] [PASSED] res_missing_y
[08:00:02] [PASSED] res_bad_y
[08:00:02] [PASSED] res_missing_y_bpp
[08:00:02] [PASSED] res_bad_bpp
[08:00:02] [PASSED] res_bad_refresh
[08:00:02] [PASSED] res_bpp_refresh_force_on_off
[08:00:02] [PASSED] res_invalid_mode
[08:00:02] [PASSED] res_bpp_wrong_place_mode
[08:00:02] [PASSED] name_bpp_refresh
[08:00:02] [PASSED] name_refresh
[08:00:02] [PASSED] name_refresh_wrong_mode
[08:00:02] [PASSED] name_refresh_invalid_mode
[08:00:02] [PASSED] rotate_multiple
[08:00:02] [PASSED] rotate_invalid_val
[08:00:02] [PASSED] rotate_truncated
[08:00:02] [PASSED] invalid_option
[08:00:02] [PASSED] invalid_tv_option
[08:00:02] [PASSED] truncated_tv_option
[08:00:02] ============ [PASSED] drm_test_cmdline_invalid =============
[08:00:02] =============== drm_test_cmdline_tv_options ===============
[08:00:02] [PASSED] NTSC
[08:00:02] [PASSED] NTSC_443
[08:00:02] [PASSED] NTSC_J
[08:00:02] [PASSED] PAL
[08:00:02] [PASSED] PAL_M
[08:00:02] [PASSED] PAL_N
[08:00:02] [PASSED] SECAM
[08:00:02] [PASSED] MONO_525
[08:00:02] [PASSED] MONO_625
[08:00:02] =========== [PASSED] drm_test_cmdline_tv_options ===========
[08:00:02] =============== [PASSED] drm_cmdline_parser ================
[08:00:02] ========== drmm_connector_hdmi_init (20 subtests) ==========
[08:00:02] [PASSED] drm_test_connector_hdmi_init_valid
[08:00:02] [PASSED] drm_test_connector_hdmi_init_bpc_8
[08:00:02] [PASSED] drm_test_connector_hdmi_init_bpc_10
[08:00:02] [PASSED] drm_test_connector_hdmi_init_bpc_12
[08:00:02] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[08:00:02] [PASSED] drm_test_connector_hdmi_init_bpc_null
[08:00:02] [PASSED] drm_test_connector_hdmi_init_formats_empty
[08:00:02] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[08:00:02] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[08:00:02] [PASSED] supported_formats=0x9 yuv420_allowed=1
[08:00:02] [PASSED] supported_formats=0x9 yuv420_allowed=0
[08:00:02] [PASSED] supported_formats=0x3 yuv420_allowed=1
[08:00:02] [PASSED] supported_formats=0x3 yuv420_allowed=0
[08:00:02] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[08:00:02] [PASSED] drm_test_connector_hdmi_init_null_ddc
[08:00:02] [PASSED] drm_test_connector_hdmi_init_null_product
[08:00:02] [PASSED] drm_test_connector_hdmi_init_null_vendor
[08:00:02] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[08:00:02] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[08:00:02] [PASSED] drm_test_connector_hdmi_init_product_valid
[08:00:02] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[08:00:02] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[08:00:02] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[08:00:02] ========= drm_test_connector_hdmi_init_type_valid =========
[08:00:02] [PASSED] HDMI-A
[08:00:02] [PASSED] HDMI-B
[08:00:02] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[08:00:02] ======== drm_test_connector_hdmi_init_type_invalid ========
[08:00:02] [PASSED] Unknown
[08:00:02] [PASSED] VGA
[08:00:02] [PASSED] DVI-I
[08:00:02] [PASSED] DVI-D
[08:00:02] [PASSED] DVI-A
[08:00:02] [PASSED] Composite
[08:00:02] [PASSED] SVIDEO
[08:00:02] [PASSED] LVDS
[08:00:02] [PASSED] Component
[08:00:02] [PASSED] DIN
[08:00:02] [PASSED] DP
[08:00:02] [PASSED] TV
[08:00:02] [PASSED] eDP
[08:00:02] [PASSED] Virtual
[08:00:02] [PASSED] DSI
[08:00:02] [PASSED] DPI
[08:00:02] [PASSED] Writeback
[08:00:02] [PASSED] SPI
[08:00:02] [PASSED] USB
[08:00:02] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[08:00:02] ============ [PASSED] drmm_connector_hdmi_init =============
[08:00:02] ============= drmm_connector_init (3 subtests) =============
[08:00:02] [PASSED] drm_test_drmm_connector_init
[08:00:02] [PASSED] drm_test_drmm_connector_init_null_ddc
[08:00:02] ========= drm_test_drmm_connector_init_type_valid =========
[08:00:02] [PASSED] Unknown
[08:00:02] [PASSED] VGA
[08:00:02] [PASSED] DVI-I
[08:00:02] [PASSED] DVI-D
[08:00:02] [PASSED] DVI-A
[08:00:02] [PASSED] Composite
[08:00:02] [PASSED] SVIDEO
[08:00:02] [PASSED] LVDS
[08:00:02] [PASSED] Component
[08:00:02] [PASSED] DIN
[08:00:02] [PASSED] DP
[08:00:02] [PASSED] HDMI-A
[08:00:02] [PASSED] HDMI-B
[08:00:02] [PASSED] TV
[08:00:02] [PASSED] eDP
[08:00:02] [PASSED] Virtual
[08:00:02] [PASSED] DSI
[08:00:02] [PASSED] DPI
[08:00:02] [PASSED] Writeback
[08:00:02] [PASSED] SPI
[08:00:02] [PASSED] USB
[08:00:02] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[08:00:02] =============== [PASSED] drmm_connector_init ===============
[08:00:02] ========= drm_connector_dynamic_init (6 subtests) ==========
[08:00:02] [PASSED] drm_test_drm_connector_dynamic_init
[08:00:02] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[08:00:02] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[08:00:02] [PASSED] drm_test_drm_connector_dynamic_init_properties
[08:00:02] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[08:00:02] [PASSED] Unknown
[08:00:02] [PASSED] VGA
[08:00:02] [PASSED] DVI-I
[08:00:02] [PASSED] DVI-D
[08:00:02] [PASSED] DVI-A
[08:00:02] [PASSED] Composite
[08:00:02] [PASSED] SVIDEO
[08:00:02] [PASSED] LVDS
[08:00:02] [PASSED] Component
[08:00:02] [PASSED] DIN
[08:00:02] [PASSED] DP
[08:00:02] [PASSED] HDMI-A
[08:00:02] [PASSED] HDMI-B
[08:00:02] [PASSED] TV
[08:00:02] [PASSED] eDP
[08:00:02] [PASSED] Virtual
[08:00:02] [PASSED] DSI
[08:00:02] [PASSED] DPI
[08:00:02] [PASSED] Writeback
[08:00:02] [PASSED] SPI
[08:00:02] [PASSED] USB
[08:00:02] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[08:00:02] ======== drm_test_drm_connector_dynamic_init_name =========
[08:00:02] [PASSED] Unknown
[08:00:02] [PASSED] VGA
[08:00:02] [PASSED] DVI-I
[08:00:02] [PASSED] DVI-D
[08:00:02] [PASSED] DVI-A
[08:00:02] [PASSED] Composite
[08:00:02] [PASSED] SVIDEO
[08:00:02] [PASSED] LVDS
[08:00:02] [PASSED] Component
[08:00:02] [PASSED] DIN
[08:00:02] [PASSED] DP
[08:00:02] [PASSED] HDMI-A
[08:00:02] [PASSED] HDMI-B
[08:00:02] [PASSED] TV
[08:00:02] [PASSED] eDP
[08:00:02] [PASSED] Virtual
[08:00:02] [PASSED] DSI
[08:00:02] [PASSED] DPI
[08:00:02] [PASSED] Writeback
[08:00:02] [PASSED] SPI
[08:00:02] [PASSED] USB
[08:00:02] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[08:00:02] =========== [PASSED] drm_connector_dynamic_init ============
[08:00:02] ==== drm_connector_dynamic_register_early (4 subtests) =====
[08:00:02] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[08:00:02] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[08:00:02] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[08:00:02] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[08:00:02] ====== [PASSED] drm_connector_dynamic_register_early =======
[08:00:02] ======= drm_connector_dynamic_register (7 subtests) ========
[08:00:02] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[08:00:02] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[08:00:02] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[08:00:02] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[08:00:02] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[08:00:02] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[08:00:02] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[08:00:02] ========= [PASSED] drm_connector_dynamic_register ==========
[08:00:02] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[08:00:02] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[08:00:02] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[08:00:02] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[08:00:02] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[08:00:02] ========== drm_test_get_tv_mode_from_name_valid ===========
[08:00:02] [PASSED] NTSC
[08:00:02] [PASSED] NTSC-443
[08:00:02] [PASSED] NTSC-J
[08:00:02] [PASSED] PAL
[08:00:02] [PASSED] PAL-M
[08:00:02] [PASSED] PAL-N
[08:00:02] [PASSED] SECAM
[08:00:02] [PASSED] Mono
[08:00:02] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[08:00:02] [PASSED] drm_test_get_tv_mode_from_name_truncated
[08:00:02] ============ [PASSED] drm_get_tv_mode_from_name ============
[08:00:02] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[08:00:02] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[08:00:02] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[08:00:02] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[08:00:02] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[08:00:02] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[08:00:02] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[08:00:02] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[08:00:02] [PASSED] VIC 96
[08:00:02] [PASSED] VIC 97
[08:00:02] [PASSED] VIC 101
[08:00:02] [PASSED] VIC 102
[08:00:02] [PASSED] VIC 106
[08:00:02] [PASSED] VIC 107
[08:00:02] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[08:00:02] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[08:00:02] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[08:00:02] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[08:00:02] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[08:00:02] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[08:00:02] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[08:00:02] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[08:00:02] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[08:00:02] [PASSED] Automatic
[08:00:02] [PASSED] Full
[08:00:02] [PASSED] Limited 16:235
[08:00:02] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[08:00:02] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[08:00:02] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[08:00:02] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[08:00:02] === drm_test_drm_hdmi_connector_get_output_format_name ====
[08:00:02] [PASSED] RGB
[08:00:02] [PASSED] YUV 4:2:0
[08:00:02] [PASSED] YUV 4:2:2
[08:00:02] [PASSED] YUV 4:4:4
[08:00:02] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[08:00:02] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[08:00:02] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[08:00:02] ============= drm_damage_helper (21 subtests) ==============
[08:00:02] [PASSED] drm_test_damage_iter_no_damage
[08:00:02] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[08:00:02] [PASSED] drm_test_damage_iter_no_damage_src_moved
[08:00:02] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[08:00:02] [PASSED] drm_test_damage_iter_no_damage_not_visible
[08:00:02] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[08:00:02] [PASSED] drm_test_damage_iter_no_damage_no_fb
[08:00:02] [PASSED] drm_test_damage_iter_simple_damage
[08:00:02] [PASSED] drm_test_damage_iter_single_damage
[08:00:02] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[08:00:02] [PASSED] drm_test_damage_iter_single_damage_outside_src
[08:00:02] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[08:00:02] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[08:00:02] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[08:00:02] [PASSED] drm_test_damage_iter_single_damage_src_moved
[08:00:02] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[08:00:02] [PASSED] drm_test_damage_iter_damage
[08:00:02] [PASSED] drm_test_damage_iter_damage_one_intersect
[08:00:02] [PASSED] drm_test_damage_iter_damage_one_outside
[08:00:02] [PASSED] drm_test_damage_iter_damage_src_moved
[08:00:02] [PASSED] drm_test_damage_iter_damage_not_visible
[08:00:02] ================ [PASSED] drm_damage_helper ================
[08:00:02] ============== drm_dp_mst_helper (3 subtests) ==============
[08:00:02] ============== drm_test_dp_mst_calc_pbn_mode ==============
[08:00:02] [PASSED] Clock 154000 BPP 30 DSC disabled
[08:00:02] [PASSED] Clock 234000 BPP 30 DSC disabled
[08:00:02] [PASSED] Clock 297000 BPP 24 DSC disabled
[08:00:02] [PASSED] Clock 332880 BPP 24 DSC enabled
[08:00:02] [PASSED] Clock 324540 BPP 24 DSC enabled
[08:00:02] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[08:00:02] ============== drm_test_dp_mst_calc_pbn_div ===============
[08:00:02] [PASSED] Link rate 2000000 lane count 4
[08:00:02] [PASSED] Link rate 2000000 lane count 2
[08:00:02] [PASSED] Link rate 2000000 lane count 1
[08:00:02] [PASSED] Link rate 1350000 lane count 4
[08:00:02] [PASSED] Link rate 1350000 lane count 2
[08:00:02] [PASSED] Link rate 1350000 lane count 1
[08:00:02] [PASSED] Link rate 1000000 lane count 4
[08:00:02] [PASSED] Link rate 1000000 lane count 2
[08:00:02] [PASSED] Link rate 1000000 lane count 1
[08:00:02] [PASSED] Link rate 810000 lane count 4
[08:00:02] [PASSED] Link rate 810000 lane count 2
[08:00:02] [PASSED] Link rate 810000 lane count 1
[08:00:02] [PASSED] Link rate 540000 lane count 4
[08:00:02] [PASSED] Link rate 540000 lane count 2
[08:00:02] [PASSED] Link rate 540000 lane count 1
[08:00:02] [PASSED] Link rate 270000 lane count 4
[08:00:02] [PASSED] Link rate 270000 lane count 2
[08:00:02] [PASSED] Link rate 270000 lane count 1
[08:00:02] [PASSED] Link rate 162000 lane count 4
[08:00:02] [PASSED] Link rate 162000 lane count 2
[08:00:02] [PASSED] Link rate 162000 lane count 1
[08:00:02] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[08:00:02] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[08:00:02] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[08:00:02] [PASSED] DP_POWER_UP_PHY with port number
[08:00:02] [PASSED] DP_POWER_DOWN_PHY with port number
[08:00:02] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[08:00:02] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[08:00:02] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[08:00:02] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[08:00:02] [PASSED] DP_QUERY_PAYLOAD with port number
[08:00:02] [PASSED] DP_QUERY_PAYLOAD with VCPI
[08:00:02] [PASSED] DP_REMOTE_DPCD_READ with port number
[08:00:02] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[08:00:02] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[08:00:02] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[08:00:02] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[08:00:02] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[08:00:02] [PASSED] DP_REMOTE_I2C_READ with port number
[08:00:02] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[08:00:02] [PASSED] DP_REMOTE_I2C_READ with transactions array
[08:00:02] [PASSED] DP_REMOTE_I2C_WRITE with port number
[08:00:02] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[08:00:02] [PASSED] DP_REMOTE_I2C_WRITE with data array
[08:00:02] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[08:00:02] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[08:00:02] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[08:00:02] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[08:00:02] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[08:00:02] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[08:00:02] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[08:00:02] ================ [PASSED] drm_dp_mst_helper ================
[08:00:02] ================== drm_exec (7 subtests) ===================
[08:00:02] [PASSED] sanitycheck
[08:00:02] [PASSED] test_lock
[08:00:02] [PASSED] test_lock_unlock
[08:00:02] [PASSED] test_duplicates
[08:00:02] [PASSED] test_prepare
[08:00:02] [PASSED] test_prepare_array
[08:00:02] [PASSED] test_multiple_loops
[08:00:02] ==================== [PASSED] drm_exec =====================
[08:00:02] =========== drm_format_helper_test (17 subtests) ===========
[08:00:02] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[08:00:02] [PASSED] single_pixel_source_buffer
[08:00:02] [PASSED] single_pixel_clip_rectangle
[08:00:02] [PASSED] well_known_colors
[08:00:02] [PASSED] destination_pitch
[08:00:02] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[08:00:02] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[08:00:02] [PASSED] single_pixel_source_buffer
[08:00:02] [PASSED] single_pixel_clip_rectangle
[08:00:02] [PASSED] well_known_colors
[08:00:02] [PASSED] destination_pitch
[08:00:02] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[08:00:02] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[08:00:02] [PASSED] single_pixel_source_buffer
[08:00:02] [PASSED] single_pixel_clip_rectangle
[08:00:02] [PASSED] well_known_colors
[08:00:02] [PASSED] destination_pitch
[08:00:02] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[08:00:02] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[08:00:02] [PASSED] single_pixel_source_buffer
[08:00:02] [PASSED] single_pixel_clip_rectangle
[08:00:02] [PASSED] well_known_colors
[08:00:02] [PASSED] destination_pitch
[08:00:02] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[08:00:02] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[08:00:02] [PASSED] single_pixel_source_buffer
[08:00:02] [PASSED] single_pixel_clip_rectangle
[08:00:02] [PASSED] well_known_colors
[08:00:02] [PASSED] destination_pitch
[08:00:02] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[08:00:02] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[08:00:02] [PASSED] single_pixel_source_buffer
[08:00:02] [PASSED] single_pixel_clip_rectangle
[08:00:02] [PASSED] well_known_colors
[08:00:02] [PASSED] destination_pitch
[08:00:02] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[08:00:02] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[08:00:02] [PASSED] single_pixel_source_buffer
[08:00:02] [PASSED] single_pixel_clip_rectangle
[08:00:02] [PASSED] well_known_colors
[08:00:02] [PASSED] destination_pitch
[08:00:02] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[08:00:02] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[08:00:02] [PASSED] single_pixel_source_buffer
[08:00:02] [PASSED] single_pixel_clip_rectangle
[08:00:02] [PASSED] well_known_colors
[08:00:02] [PASSED] destination_pitch
[08:00:02] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[08:00:02] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[08:00:02] [PASSED] single_pixel_source_buffer
[08:00:02] [PASSED] single_pixel_clip_rectangle
[08:00:02] [PASSED] well_known_colors
[08:00:02] [PASSED] destination_pitch
[08:00:02] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[08:00:02] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[08:00:02] [PASSED] single_pixel_source_buffer
[08:00:02] [PASSED] single_pixel_clip_rectangle
[08:00:02] [PASSED] well_known_colors
[08:00:02] [PASSED] destination_pitch
[08:00:02] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[08:00:02] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[08:00:02] [PASSED] single_pixel_source_buffer
[08:00:02] [PASSED] single_pixel_clip_rectangle
[08:00:02] [PASSED] well_known_colors
[08:00:02] [PASSED] destination_pitch
[08:00:02] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[08:00:02] ============== drm_test_fb_xrgb8888_to_mono ===============
[08:00:02] [PASSED] single_pixel_source_buffer
[08:00:02] [PASSED] single_pixel_clip_rectangle
[08:00:02] [PASSED] well_known_colors
[08:00:02] [PASSED] destination_pitch
[08:00:02] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[08:00:02] ==================== drm_test_fb_swab =====================
[08:00:02] [PASSED] single_pixel_source_buffer
[08:00:02] [PASSED] single_pixel_clip_rectangle
[08:00:02] [PASSED] well_known_colors
[08:00:02] [PASSED] destination_pitch
[08:00:02] ================ [PASSED] drm_test_fb_swab =================
[08:00:02] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[08:00:02] [PASSED] single_pixel_source_buffer
[08:00:02] [PASSED] single_pixel_clip_rectangle
[08:00:02] [PASSED] well_known_colors
[08:00:02] [PASSED] destination_pitch
[08:00:02] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[08:00:02] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[08:00:02] [PASSED] single_pixel_source_buffer
[08:00:02] [PASSED] single_pixel_clip_rectangle
[08:00:02] [PASSED] well_known_colors
[08:00:02] [PASSED] destination_pitch
[08:00:02] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[08:00:02] ================= drm_test_fb_clip_offset =================
[08:00:02] [PASSED] pass through
[08:00:02] [PASSED] horizontal offset
[08:00:02] [PASSED] vertical offset
[08:00:02] [PASSED] horizontal and vertical offset
[08:00:02] [PASSED] horizontal offset (custom pitch)
[08:00:02] [PASSED] vertical offset (custom pitch)
[08:00:02] [PASSED] horizontal and vertical offset (custom pitch)
[08:00:02] ============= [PASSED] drm_test_fb_clip_offset =============
[08:00:02] =================== drm_test_fb_memcpy ====================
[08:00:02] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[08:00:02] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[08:00:02] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[08:00:02] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[08:00:02] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[08:00:02] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[08:00:02] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[08:00:02] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[08:00:02] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[08:00:02] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[08:00:02] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[08:00:02] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[08:00:02] =============== [PASSED] drm_test_fb_memcpy ================
[08:00:02] ============= [PASSED] drm_format_helper_test ==============
[08:00:02] ================= drm_format (18 subtests) =================
[08:00:02] [PASSED] drm_test_format_block_width_invalid
[08:00:02] [PASSED] drm_test_format_block_width_one_plane
[08:00:02] [PASSED] drm_test_format_block_width_two_plane
[08:00:02] [PASSED] drm_test_format_block_width_three_plane
[08:00:02] [PASSED] drm_test_format_block_width_tiled
[08:00:02] [PASSED] drm_test_format_block_height_invalid
[08:00:02] [PASSED] drm_test_format_block_height_one_plane
[08:00:02] [PASSED] drm_test_format_block_height_two_plane
[08:00:02] [PASSED] drm_test_format_block_height_three_plane
[08:00:02] [PASSED] drm_test_format_block_height_tiled
[08:00:02] [PASSED] drm_test_format_min_pitch_invalid
[08:00:02] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[08:00:02] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[08:00:02] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[08:00:02] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[08:00:02] [PASSED] drm_test_format_min_pitch_two_plane
[08:00:02] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[08:00:02] [PASSED] drm_test_format_min_pitch_tiled
[08:00:02] =================== [PASSED] drm_format ====================
[08:00:02] ============== drm_framebuffer (10 subtests) ===============
[08:00:02] ========== drm_test_framebuffer_check_src_coords ==========
[08:00:02] [PASSED] Success: source fits into fb
[08:00:02] [PASSED] Fail: overflowing fb with x-axis coordinate
[08:00:02] [PASSED] Fail: overflowing fb with y-axis coordinate
[08:00:02] [PASSED] Fail: overflowing fb with source width
[08:00:02] [PASSED] Fail: overflowing fb with source height
[08:00:02] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[08:00:02] [PASSED] drm_test_framebuffer_cleanup
[08:00:02] =============== drm_test_framebuffer_create ===============
[08:00:02] [PASSED] ABGR8888 normal sizes
[08:00:02] [PASSED] ABGR8888 max sizes
[08:00:02] [PASSED] ABGR8888 pitch greater than min required
[08:00:02] [PASSED] ABGR8888 pitch less than min required
[08:00:02] [PASSED] ABGR8888 Invalid width
[08:00:02] [PASSED] ABGR8888 Invalid buffer handle
[08:00:02] [PASSED] No pixel format
[08:00:02] [PASSED] ABGR8888 Width 0
[08:00:02] [PASSED] ABGR8888 Height 0
[08:00:02] [PASSED] ABGR8888 Out of bound height * pitch combination
[08:00:02] [PASSED] ABGR8888 Large buffer offset
[08:00:02] [PASSED] ABGR8888 Buffer offset for inexistent plane
[08:00:02] [PASSED] ABGR8888 Invalid flag
[08:00:02] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[08:00:02] [PASSED] ABGR8888 Valid buffer modifier
[08:00:02] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[08:00:02] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[08:00:02] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[08:00:02] [PASSED] NV12 Normal sizes
[08:00:02] [PASSED] NV12 Max sizes
[08:00:02] [PASSED] NV12 Invalid pitch
[08:00:02] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[08:00:02] [PASSED] NV12 different modifier per-plane
[08:00:02] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[08:00:02] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[08:00:02] [PASSED] NV12 Modifier for inexistent plane
[08:00:02] [PASSED] NV12 Handle for inexistent plane
[08:00:02] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[08:00:02] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[08:00:02] [PASSED] YVU420 Normal sizes
[08:00:02] [PASSED] YVU420 Max sizes
[08:00:02] [PASSED] YVU420 Invalid pitch
[08:00:02] [PASSED] YVU420 Different pitches
[08:00:02] [PASSED] YVU420 Different buffer offsets/pitches
[08:00:02] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[08:00:02] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[08:00:02] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[08:00:02] [PASSED] YVU420 Valid modifier
[08:00:02] [PASSED] YVU420 Different modifiers per plane
[08:00:02] [PASSED] YVU420 Modifier for inexistent plane
[08:00:02] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[08:00:02] [PASSED] X0L2 Normal sizes
[08:00:02] [PASSED] X0L2 Max sizes
[08:00:02] [PASSED] X0L2 Invalid pitch
[08:00:02] [PASSED] X0L2 Pitch greater than minimum required
[08:00:02] [PASSED] X0L2 Handle for inexistent plane
[08:00:02] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[08:00:02] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[08:00:02] [PASSED] X0L2 Valid modifier
[08:00:02] [PASSED] X0L2 Modifier for inexistent plane
[08:00:02] =========== [PASSED] drm_test_framebuffer_create ===========
[08:00:02] [PASSED] drm_test_framebuffer_free
[08:00:02] [PASSED] drm_test_framebuffer_init
[08:00:02] [PASSED] drm_test_framebuffer_init_bad_format
[08:00:02] [PASSED] drm_test_framebuffer_init_dev_mismatch
[08:00:02] [PASSED] drm_test_framebuffer_lookup
[08:00:02] [PASSED] drm_test_framebuffer_lookup_inexistent
[08:00:02] [PASSED] drm_test_framebuffer_modifiers_not_supported
[08:00:02] ================= [PASSED] drm_framebuffer =================
[08:00:02] ================ drm_gem_shmem (8 subtests) ================
[08:00:02] [PASSED] drm_gem_shmem_test_obj_create
[08:00:02] [PASSED] drm_gem_shmem_test_obj_create_private
[08:00:02] [PASSED] drm_gem_shmem_test_pin_pages
[08:00:02] [PASSED] drm_gem_shmem_test_vmap
[08:00:02] [PASSED] drm_gem_shmem_test_get_pages_sgt
[08:00:02] [PASSED] drm_gem_shmem_test_get_sg_table
[08:00:02] [PASSED] drm_gem_shmem_test_madvise
[08:00:02] [PASSED] drm_gem_shmem_test_purge
[08:00:02] ================== [PASSED] drm_gem_shmem ==================
[08:00:02] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[08:00:02] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[08:00:02] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[08:00:02] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[08:00:02] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[08:00:02] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[08:00:02] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[08:00:02] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[08:00:02] [PASSED] Automatic
[08:00:02] [PASSED] Full
[08:00:02] [PASSED] Limited 16:235
[08:00:02] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[08:00:02] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[08:00:02] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[08:00:02] [PASSED] drm_test_check_disable_connector
[08:00:02] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[08:00:02] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[08:00:02] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[08:00:02] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[08:00:02] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[08:00:02] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[08:00:02] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[08:00:02] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[08:00:02] [PASSED] drm_test_check_output_bpc_dvi
[08:00:02] [PASSED] drm_test_check_output_bpc_format_vic_1
[08:00:02] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[08:00:02] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[08:00:02] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[08:00:02] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[08:00:02] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[08:00:02] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[08:00:02] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[08:00:02] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[08:00:02] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[08:00:02] [PASSED] drm_test_check_broadcast_rgb_value
[08:00:02] [PASSED] drm_test_check_bpc_8_value
[08:00:02] [PASSED] drm_test_check_bpc_10_value
[08:00:02] [PASSED] drm_test_check_bpc_12_value
[08:00:02] [PASSED] drm_test_check_format_value
[08:00:02] [PASSED] drm_test_check_tmds_char_value
[08:00:02] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[08:00:02] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[08:00:02] [PASSED] drm_test_check_mode_valid
[08:00:02] [PASSED] drm_test_check_mode_valid_reject
[08:00:02] [PASSED] drm_test_check_mode_valid_reject_rate
[08:00:02] [PASSED] drm_test_check_mode_valid_reject_max_clock
[08:00:02] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[08:00:02] ================= drm_managed (2 subtests) =================
[08:00:02] [PASSED] drm_test_managed_release_action
[08:00:02] [PASSED] drm_test_managed_run_action
[08:00:02] =================== [PASSED] drm_managed ===================
[08:00:02] =================== drm_mm (6 subtests) ====================
[08:00:02] [PASSED] drm_test_mm_init
[08:00:02] [PASSED] drm_test_mm_debug
[08:00:02] [PASSED] drm_test_mm_align32
[08:00:02] [PASSED] drm_test_mm_align64
[08:00:02] [PASSED] drm_test_mm_lowest
[08:00:02] [PASSED] drm_test_mm_highest
[08:00:02] ===================== [PASSED] drm_mm ======================
[08:00:02] ============= drm_modes_analog_tv (5 subtests) =============
[08:00:02] [PASSED] drm_test_modes_analog_tv_mono_576i
[08:00:02] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[08:00:02] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[08:00:02] [PASSED] drm_test_modes_analog_tv_pal_576i
[08:00:02] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[08:00:02] =============== [PASSED] drm_modes_analog_tv ===============
[08:00:02] ============== drm_plane_helper (2 subtests) ===============
[08:00:02] =============== drm_test_check_plane_state ================
[08:00:02] [PASSED] clipping_simple
[08:00:02] [PASSED] clipping_rotate_reflect
[08:00:02] [PASSED] positioning_simple
[08:00:02] [PASSED] upscaling
[08:00:02] [PASSED] downscaling
[08:00:02] [PASSED] rounding1
[08:00:02] [PASSED] rounding2
[08:00:02] [PASSED] rounding3
[08:00:02] [PASSED] rounding4
[08:00:02] =========== [PASSED] drm_test_check_plane_state ============
[08:00:02] =========== drm_test_check_invalid_plane_state ============
[08:00:02] [PASSED] positioning_invalid
[08:00:02] [PASSED] upscaling_invalid
[08:00:02] [PASSED] downscaling_invalid
[08:00:02] ======= [PASSED] drm_test_check_invalid_plane_state ========
[08:00:02] ================ [PASSED] drm_plane_helper =================
[08:00:02] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[08:00:02] ====== drm_test_connector_helper_tv_get_modes_check =======
[08:00:02] [PASSED] None
[08:00:02] [PASSED] PAL
[08:00:02] [PASSED] NTSC
[08:00:02] [PASSED] Both, NTSC Default
[08:00:02] [PASSED] Both, PAL Default
[08:00:02] [PASSED] Both, NTSC Default, with PAL on command-line
[08:00:02] [PASSED] Both, PAL Default, with NTSC on command-line
[08:00:02] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[08:00:02] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[08:00:02] ================== drm_rect (9 subtests) ===================
[08:00:02] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[08:00:02] [PASSED] drm_test_rect_clip_scaled_not_clipped
[08:00:02] [PASSED] drm_test_rect_clip_scaled_clipped
[08:00:02] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[08:00:02] ================= drm_test_rect_intersect =================
[08:00:02] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[08:00:02] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[08:00:02] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[08:00:02] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[08:00:02] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[08:00:02] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[08:00:02] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[08:00:02] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[08:00:02] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[08:00:02] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[08:00:02] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[08:00:02] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[08:00:02] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[08:00:02] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[08:00:02] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[08:00:02] ============= [PASSED] drm_test_rect_intersect =============
[08:00:02] ================ drm_test_rect_calc_hscale ================
[08:00:02] [PASSED] normal use
[08:00:02] [PASSED] out of max range
[08:00:02] [PASSED] out of min range
[08:00:02] [PASSED] zero dst
[08:00:02] [PASSED] negative src
[08:00:02] [PASSED] negative dst
[08:00:02] ============ [PASSED] drm_test_rect_calc_hscale ============
[08:00:02] ================ drm_test_rect_calc_vscale ================
[08:00:02] [PASSED] normal use
[08:00:02] [PASSED] out of max range
[08:00:02] [PASSED] out of min range
[08:00:02] [PASSED] zero dst
[08:00:02] [PASSED] negative src
[08:00:02] [PASSED] negative dst
[08:00:02] ============ [PASSED] drm_test_rect_calc_vscale ============
[08:00:02] ================== drm_test_rect_rotate ===================
[08:00:02] [PASSED] reflect-x
[08:00:02] [PASSED] reflect-y
[08:00:02] [PASSED] rotate-0
[08:00:02] [PASSED] rotate-90
[08:00:02] [PASSED] rotate-180
[08:00:02] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[08:00:02] ============== [PASSED] drm_test_rect_rotate ===============
[08:00:02] ================ drm_test_rect_rotate_inv =================
[08:00:02] [PASSED] reflect-x
[08:00:02] [PASSED] reflect-y
[08:00:02] [PASSED] rotate-0
[08:00:02] [PASSED] rotate-90
[08:00:02] [PASSED] rotate-180
[08:00:02] [PASSED] rotate-270
[08:00:02] ============ [PASSED] drm_test_rect_rotate_inv =============
[08:00:02] ==================== [PASSED] drm_rect =====================
[08:00:02] ============ drm_sysfb_modeset_test (1 subtest) ============
[08:00:02] ============ drm_test_sysfb_build_fourcc_list =============
[08:00:02] [PASSED] no native formats
[08:00:02] [PASSED] XRGB8888 as native format
[08:00:02] [PASSED] remove duplicates
[08:00:02] [PASSED] convert alpha formats
[08:00:02] [PASSED] random formats
[08:00:02] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[08:00:02] ============= [PASSED] drm_sysfb_modeset_test ==============
[08:00:02] ============================================================
[08:00:02] Testing complete. Ran 616 tests: passed: 616
[08:00:02] Elapsed time: 24.418s total, 1.705s configuring, 22.546s building, 0.139s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[08:00:02] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:00:04] 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:00:12] Starting KUnit Kernel (1/1)...
[08:00:12] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:00:12] ================= ttm_device (5 subtests) ==================
[08:00:12] [PASSED] ttm_device_init_basic
[08:00:12] [PASSED] ttm_device_init_multiple
[08:00:12] [PASSED] ttm_device_fini_basic
[08:00:12] [PASSED] ttm_device_init_no_vma_man
[08:00:12] ================== ttm_device_init_pools ==================
[08:00:12] [PASSED] No DMA allocations, no DMA32 required
[08:00:12] [PASSED] DMA allocations, DMA32 required
[08:00:12] [PASSED] No DMA allocations, DMA32 required
[08:00:12] [PASSED] DMA allocations, no DMA32 required
[08:00:12] ============== [PASSED] ttm_device_init_pools ==============
[08:00:12] =================== [PASSED] ttm_device ====================
[08:00:12] ================== ttm_pool (8 subtests) ===================
[08:00:12] ================== ttm_pool_alloc_basic ===================
[08:00:12] [PASSED] One page
[08:00:12] [PASSED] More than one page
[08:00:12] [PASSED] Above the allocation limit
[08:00:12] [PASSED] One page, with coherent DMA mappings enabled
[08:00:12] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:00:12] ============== [PASSED] ttm_pool_alloc_basic ===============
[08:00:12] ============== ttm_pool_alloc_basic_dma_addr ==============
[08:00:12] [PASSED] One page
[08:00:12] [PASSED] More than one page
[08:00:12] [PASSED] Above the allocation limit
[08:00:12] [PASSED] One page, with coherent DMA mappings enabled
[08:00:12] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:00:12] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[08:00:12] [PASSED] ttm_pool_alloc_order_caching_match
[08:00:12] [PASSED] ttm_pool_alloc_caching_mismatch
[08:00:12] [PASSED] ttm_pool_alloc_order_mismatch
[08:00:12] [PASSED] ttm_pool_free_dma_alloc
[08:00:12] [PASSED] ttm_pool_free_no_dma_alloc
[08:00:12] [PASSED] ttm_pool_fini_basic
[08:00:12] ==================== [PASSED] ttm_pool =====================
[08:00:12] ================ ttm_resource (8 subtests) =================
[08:00:12] ================= ttm_resource_init_basic =================
[08:00:12] [PASSED] Init resource in TTM_PL_SYSTEM
[08:00:12] [PASSED] Init resource in TTM_PL_VRAM
[08:00:12] [PASSED] Init resource in a private placement
[08:00:12] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[08:00:12] ============= [PASSED] ttm_resource_init_basic =============
[08:00:12] [PASSED] ttm_resource_init_pinned
[08:00:12] [PASSED] ttm_resource_fini_basic
[08:00:12] [PASSED] ttm_resource_manager_init_basic
[08:00:12] [PASSED] ttm_resource_manager_usage_basic
[08:00:12] [PASSED] ttm_resource_manager_set_used_basic
[08:00:12] [PASSED] ttm_sys_man_alloc_basic
[08:00:12] [PASSED] ttm_sys_man_free_basic
[08:00:12] ================== [PASSED] ttm_resource ===================
[08:00:12] =================== ttm_tt (15 subtests) ===================
[08:00:12] ==================== ttm_tt_init_basic ====================
[08:00:12] [PASSED] Page-aligned size
[08:00:12] [PASSED] Extra pages requested
[08:00:12] ================ [PASSED] ttm_tt_init_basic ================
[08:00:12] [PASSED] ttm_tt_init_misaligned
[08:00:12] [PASSED] ttm_tt_fini_basic
[08:00:12] [PASSED] ttm_tt_fini_sg
[08:00:12] [PASSED] ttm_tt_fini_shmem
[08:00:12] [PASSED] ttm_tt_create_basic
[08:00:12] [PASSED] ttm_tt_create_invalid_bo_type
[08:00:12] [PASSED] ttm_tt_create_ttm_exists
[08:00:12] [PASSED] ttm_tt_create_failed
[08:00:12] [PASSED] ttm_tt_destroy_basic
[08:00:12] [PASSED] ttm_tt_populate_null_ttm
[08:00:12] [PASSED] ttm_tt_populate_populated_ttm
[08:00:12] [PASSED] ttm_tt_unpopulate_basic
[08:00:12] [PASSED] ttm_tt_unpopulate_empty_ttm
[08:00:12] [PASSED] ttm_tt_swapin_basic
[08:00:12] ===================== [PASSED] ttm_tt ======================
[08:00:12] =================== ttm_bo (14 subtests) ===================
[08:00:12] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[08:00:12] [PASSED] Cannot be interrupted and sleeps
[08:00:12] [PASSED] Cannot be interrupted, locks straight away
[08:00:12] [PASSED] Can be interrupted, sleeps
[08:00:12] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[08:00:12] [PASSED] ttm_bo_reserve_locked_no_sleep
[08:00:12] [PASSED] ttm_bo_reserve_no_wait_ticket
[08:00:12] [PASSED] ttm_bo_reserve_double_resv
[08:00:12] [PASSED] ttm_bo_reserve_interrupted
[08:00:12] [PASSED] ttm_bo_reserve_deadlock
[08:00:12] [PASSED] ttm_bo_unreserve_basic
[08:00:12] [PASSED] ttm_bo_unreserve_pinned
[08:00:12] [PASSED] ttm_bo_unreserve_bulk
[08:00:12] [PASSED] ttm_bo_put_basic
[08:00:12] [PASSED] ttm_bo_put_shared_resv
[08:00:12] [PASSED] ttm_bo_pin_basic
[08:00:12] [PASSED] ttm_bo_pin_unpin_resource
[08:00:12] [PASSED] ttm_bo_multiple_pin_one_unpin
[08:00:12] ===================== [PASSED] ttm_bo ======================
[08:00:12] ============== ttm_bo_validate (21 subtests) ===============
[08:00:12] ============== ttm_bo_init_reserved_sys_man ===============
[08:00:12] [PASSED] Buffer object for userspace
[08:00:12] [PASSED] Kernel buffer object
[08:00:12] [PASSED] Shared buffer object
[08:00:12] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[08:00:12] ============== ttm_bo_init_reserved_mock_man ==============
[08:00:12] [PASSED] Buffer object for userspace
[08:00:12] [PASSED] Kernel buffer object
[08:00:12] [PASSED] Shared buffer object
[08:00:12] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[08:00:12] [PASSED] ttm_bo_init_reserved_resv
[08:00:12] ================== ttm_bo_validate_basic ==================
[08:00:12] [PASSED] Buffer object for userspace
[08:00:12] [PASSED] Kernel buffer object
[08:00:12] [PASSED] Shared buffer object
[08:00:12] ============== [PASSED] ttm_bo_validate_basic ==============
[08:00:12] [PASSED] ttm_bo_validate_invalid_placement
[08:00:12] ============= ttm_bo_validate_same_placement ==============
[08:00:12] [PASSED] System manager
[08:00:12] [PASSED] VRAM manager
[08:00:12] ========= [PASSED] ttm_bo_validate_same_placement ==========
[08:00:12] [PASSED] ttm_bo_validate_failed_alloc
[08:00:12] [PASSED] ttm_bo_validate_pinned
[08:00:12] [PASSED] ttm_bo_validate_busy_placement
[08:00:12] ================ ttm_bo_validate_multihop =================
[08:00:12] [PASSED] Buffer object for userspace
[08:00:12] [PASSED] Kernel buffer object
[08:00:12] [PASSED] Shared buffer object
[08:00:12] ============ [PASSED] ttm_bo_validate_multihop =============
[08:00:12] ========== ttm_bo_validate_no_placement_signaled ==========
[08:00:12] [PASSED] Buffer object in system domain, no page vector
[08:00:12] [PASSED] Buffer object in system domain with an existing page vector
[08:00:12] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[08:00:12] ======== ttm_bo_validate_no_placement_not_signaled ========
[08:00:12] [PASSED] Buffer object for userspace
[08:00:12] [PASSED] Kernel buffer object
[08:00:12] [PASSED] Shared buffer object
[08:00:12] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[08:00:12] [PASSED] ttm_bo_validate_move_fence_signaled
[08:00:12] ========= ttm_bo_validate_move_fence_not_signaled =========
[08:00:12] [PASSED] Waits for GPU
[08:00:12] [PASSED] Tries to lock straight away
[08:00:12] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[08:00:12] [PASSED] ttm_bo_validate_happy_evict
[08:00:12] [PASSED] ttm_bo_validate_all_pinned_evict
[08:00:12] [PASSED] ttm_bo_validate_allowed_only_evict
[08:00:12] [PASSED] ttm_bo_validate_deleted_evict
[08:00:12] [PASSED] ttm_bo_validate_busy_domain_evict
[08:00:12] [PASSED] ttm_bo_validate_evict_gutting
[08:00:12] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[08:00:12] ================= [PASSED] ttm_bo_validate =================
[08:00:12] ============================================================
[08:00:12] Testing complete. Ran 101 tests: passed: 101
[08:00:12] Elapsed time: 9.916s total, 1.730s configuring, 7.970s building, 0.188s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.checksparse: warning for Wait PSR idle before on dsb commit (rev3)
2025-09-05 7:27 [PATCH v3 0/4] Wait PSR idle before on dsb commit Jouni Högander
` (4 preceding siblings ...)
2025-09-05 8:00 ` ✓ CI.KUnit: success for Wait PSR idle before on dsb commit (rev3) Patchwork
@ 2025-09-05 8:15 ` Patchwork
2025-09-05 18:02 ` ✗ Xe.CI.Full: failure " Patchwork
` (5 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-09-05 8:15 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
== Series Details ==
Series: Wait PSR idle before on dsb commit (rev3)
URL : https://patchwork.freedesktop.org/series/152470/
State : warning
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast 82e462f69cfe17dacf3125662d556c529fff64de
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
-
+drivers/gpu/drm/i915/display/intel_alpm.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_cdclk.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_ddi.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2034:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2034:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_psr.c: note: in included file:
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v3 4/4] drm/i915/psr: Add poll for checking PSR is idle before starting update
2025-09-05 7:27 ` [PATCH v3 4/4] drm/i915/psr: Add poll for checking PSR is idle before starting update Jouni Högander
@ 2025-09-05 9:17 ` Ville Syrjälä
0 siblings, 0 replies; 14+ messages in thread
From: Ville Syrjälä @ 2025-09-05 9:17 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-gfx, intel-xe
On Fri, Sep 05, 2025 at 10:27:08AM +0300, Jouni Högander wrote:
> We are currently observing crc failures after we started using dsb for PSR
> updates as well. This seems to happen because PSR HW is still sending
> couple of updates using old framebuffers on wake-up.
>
> Fix this by adding poll ensuring PSR is idle before starting update.
>
> v2: pass new_crtc_state->dsb_commit to intel_psr_wait_for_idle_dsb
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_display.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> index c1a3a95c65f0..5dca7f96b425 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -7271,6 +7271,9 @@ static void intel_atomic_dsb_finish(struct intel_atomic_state *state,
> intel_psr_trigger_frame_change_event(new_crtc_state->dsb_commit,
> state, crtc);
>
> + intel_psr_wait_for_idle_dsb(new_crtc_state->dsb_commit,
> + new_crtc_state);
> +
> if (new_crtc_state->use_dsb)
> intel_dsb_vblank_evade(state, new_crtc_state->dsb_commit);
>
> --
> 2.43.0
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Xe.CI.Full: failure for Wait PSR idle before on dsb commit (rev3)
2025-09-05 7:27 [PATCH v3 0/4] Wait PSR idle before on dsb commit Jouni Högander
` (5 preceding siblings ...)
2025-09-05 8:15 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-09-05 18:02 ` Patchwork
2025-09-08 5:09 ` ✓ CI.KUnit: success for Wait PSR idle before on dsb commit (rev4) Patchwork
` (4 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-09-05 18:02 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 372 bytes --]
== Series Details ==
Series: Wait PSR idle before on dsb commit (rev3)
URL : https://patchwork.freedesktop.org/series/152470/
State : failure
== Summary ==
ERROR: The runconfig 'xe-3684-c47df0ca6d5cec0775af9ca03b79237f54265808_FULL' does not exist in the database
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v3/index.html
[-- Attachment #2: Type: text/html, Size: 937 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ CI.KUnit: success for Wait PSR idle before on dsb commit (rev4)
2025-09-05 7:27 [PATCH v3 0/4] Wait PSR idle before on dsb commit Jouni Högander
` (6 preceding siblings ...)
2025-09-05 18:02 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-09-08 5:09 ` Patchwork
2025-09-08 5:24 ` ✗ CI.checksparse: warning " Patchwork
` (3 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-09-08 5:09 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
== Series Details ==
Series: Wait PSR idle before on dsb commit (rev4)
URL : https://patchwork.freedesktop.org/series/152470/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[05:08:15] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:08:20] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[05:08:48] Starting KUnit Kernel (1/1)...
[05:08:48] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:08:49] ================== guc_buf (11 subtests) ===================
[05:08:49] [PASSED] test_smallest
[05:08:49] [PASSED] test_largest
[05:08:49] [PASSED] test_granular
[05:08:49] [PASSED] test_unique
[05:08:49] [PASSED] test_overlap
[05:08:49] [PASSED] test_reusable
[05:08:49] [PASSED] test_too_big
[05:08:49] [PASSED] test_flush
[05:08:49] [PASSED] test_lookup
[05:08:49] [PASSED] test_data
[05:08:49] [PASSED] test_class
[05:08:49] ===================== [PASSED] guc_buf =====================
[05:08:49] =================== guc_dbm (7 subtests) ===================
[05:08:49] [PASSED] test_empty
[05:08:49] [PASSED] test_default
[05:08:49] ======================== test_size ========================
[05:08:49] [PASSED] 4
[05:08:49] [PASSED] 8
[05:08:49] [PASSED] 32
[05:08:49] [PASSED] 256
[05:08:49] ==================== [PASSED] test_size ====================
[05:08:49] ======================= test_reuse ========================
[05:08:49] [PASSED] 4
[05:08:49] [PASSED] 8
[05:08:49] [PASSED] 32
[05:08:49] [PASSED] 256
[05:08:49] =================== [PASSED] test_reuse ====================
[05:08:49] =================== test_range_overlap ====================
[05:08:49] [PASSED] 4
[05:08:49] [PASSED] 8
[05:08:49] [PASSED] 32
[05:08:49] [PASSED] 256
[05:08:49] =============== [PASSED] test_range_overlap ================
[05:08:49] =================== test_range_compact ====================
[05:08:49] [PASSED] 4
[05:08:49] [PASSED] 8
[05:08:49] [PASSED] 32
[05:08:49] [PASSED] 256
[05:08:49] =============== [PASSED] test_range_compact ================
[05:08:49] ==================== test_range_spare =====================
[05:08:49] [PASSED] 4
[05:08:49] [PASSED] 8
[05:08:49] [PASSED] 32
[05:08:49] [PASSED] 256
[05:08:49] ================ [PASSED] test_range_spare =================
[05:08:49] ===================== [PASSED] guc_dbm =====================
[05:08:49] =================== guc_idm (6 subtests) ===================
[05:08:49] [PASSED] bad_init
[05:08:49] [PASSED] no_init
[05:08:49] [PASSED] init_fini
[05:08:49] [PASSED] check_used
[05:08:49] [PASSED] check_quota
[05:08:49] [PASSED] check_all
[05:08:49] ===================== [PASSED] guc_idm =====================
[05:08:49] ================== no_relay (3 subtests) ===================
[05:08:49] [PASSED] xe_drops_guc2pf_if_not_ready
[05:08:49] [PASSED] xe_drops_guc2vf_if_not_ready
[05:08:49] [PASSED] xe_rejects_send_if_not_ready
[05:08:49] ==================== [PASSED] no_relay =====================
[05:08:49] ================== pf_relay (14 subtests) ==================
[05:08:49] [PASSED] pf_rejects_guc2pf_too_short
[05:08:49] [PASSED] pf_rejects_guc2pf_too_long
[05:08:49] [PASSED] pf_rejects_guc2pf_no_payload
[05:08:49] [PASSED] pf_fails_no_payload
[05:08:49] [PASSED] pf_fails_bad_origin
[05:08:49] [PASSED] pf_fails_bad_type
[05:08:49] [PASSED] pf_txn_reports_error
[05:08:49] [PASSED] pf_txn_sends_pf2guc
[05:08:49] [PASSED] pf_sends_pf2guc
[05:08:49] [SKIPPED] pf_loopback_nop
[05:08:49] [SKIPPED] pf_loopback_echo
[05:08:49] [SKIPPED] pf_loopback_fail
[05:08:49] [SKIPPED] pf_loopback_busy
[05:08:49] [SKIPPED] pf_loopback_retry
[05:08:49] ==================== [PASSED] pf_relay =====================
[05:08:49] ================== vf_relay (3 subtests) ===================
[05:08:49] [PASSED] vf_rejects_guc2vf_too_short
[05:08:49] [PASSED] vf_rejects_guc2vf_too_long
[05:08:49] [PASSED] vf_rejects_guc2vf_no_payload
[05:08:49] ==================== [PASSED] vf_relay =====================
[05:08:49] ===================== lmtt (1 subtest) =====================
[05:08:49] ======================== test_ops =========================
[05:08:49] [PASSED] 2-level
[05:08:49] [PASSED] multi-level
[05:08:49] ==================== [PASSED] test_ops =====================
[05:08:49] ====================== [PASSED] lmtt =======================
[05:08:49] ================= pf_service (11 subtests) =================
[05:08:49] [PASSED] pf_negotiate_any
[05:08:49] [PASSED] pf_negotiate_base_match
[05:08:49] [PASSED] pf_negotiate_base_newer
[05:08:49] [PASSED] pf_negotiate_base_next
[05:08:49] [SKIPPED] pf_negotiate_base_older
[05:08:49] [PASSED] pf_negotiate_base_prev
[05:08:49] [PASSED] pf_negotiate_latest_match
[05:08:49] [PASSED] pf_negotiate_latest_newer
[05:08:49] [PASSED] pf_negotiate_latest_next
[05:08:49] [SKIPPED] pf_negotiate_latest_older
[05:08:49] [SKIPPED] pf_negotiate_latest_prev
[05:08:49] =================== [PASSED] pf_service ====================
[05:08:49] =================== xe_mocs (2 subtests) ===================
[05:08:49] ================ xe_live_mocs_kernel_kunit ================
[05:08:49] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[05:08:49] ================ xe_live_mocs_reset_kunit =================
[05:08:49] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[05:08:49] ==================== [SKIPPED] xe_mocs =====================
[05:08:49] ================= xe_migrate (2 subtests) ==================
[05:08:49] ================= xe_migrate_sanity_kunit =================
[05:08:49] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[05:08:49] ================== xe_validate_ccs_kunit ==================
[05:08:49] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[05:08:49] =================== [SKIPPED] xe_migrate ===================
[05:08:49] ================== xe_dma_buf (1 subtest) ==================
[05:08:49] ==================== xe_dma_buf_kunit =====================
[05:08:49] ================ [SKIPPED] xe_dma_buf_kunit ================
[05:08:49] =================== [SKIPPED] xe_dma_buf ===================
[05:08:49] ================= xe_bo_shrink (1 subtest) =================
[05:08:49] =================== xe_bo_shrink_kunit ====================
[05:08:49] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[05:08:49] ================== [SKIPPED] xe_bo_shrink ==================
[05:08:49] ==================== xe_bo (2 subtests) ====================
[05:08:49] ================== xe_ccs_migrate_kunit ===================
[05:08:49] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[05:08:49] ==================== xe_bo_evict_kunit ====================
[05:08:49] =============== [SKIPPED] xe_bo_evict_kunit ================
[05:08:49] ===================== [SKIPPED] xe_bo ======================
[05:08:49] ==================== args (11 subtests) ====================
[05:08:49] [PASSED] count_args_test
[05:08:49] [PASSED] call_args_example
[05:08:49] [PASSED] call_args_test
[05:08:49] [PASSED] drop_first_arg_example
[05:08:49] [PASSED] drop_first_arg_test
[05:08:49] [PASSED] first_arg_example
[05:08:49] [PASSED] first_arg_test
[05:08:49] [PASSED] last_arg_example
[05:08:49] [PASSED] last_arg_test
[05:08:49] [PASSED] pick_arg_example
[05:08:49] [PASSED] sep_comma_example
[05:08:49] ====================== [PASSED] args =======================
[05:08:49] =================== xe_pci (3 subtests) ====================
[05:08:49] ==================== check_graphics_ip ====================
[05:08:49] [PASSED] 12.70 Xe_LPG
[05:08:49] [PASSED] 12.71 Xe_LPG
[05:08:49] [PASSED] 12.74 Xe_LPG+
[05:08:49] [PASSED] 20.01 Xe2_HPG
[05:08:49] [PASSED] 20.02 Xe2_HPG
[05:08:49] [PASSED] 20.04 Xe2_LPG
[05:08:49] [PASSED] 30.00 Xe3_LPG
[05:08:49] [PASSED] 30.01 Xe3_LPG
[05:08:49] [PASSED] 30.03 Xe3_LPG
[05:08:49] ================ [PASSED] check_graphics_ip ================
[05:08:49] ===================== check_media_ip ======================
[05:08:49] [PASSED] 13.00 Xe_LPM+
[05:08:49] [PASSED] 13.01 Xe2_HPM
[05:08:49] [PASSED] 20.00 Xe2_LPM
[05:08:49] [PASSED] 30.00 Xe3_LPM
[05:08:49] [PASSED] 30.02 Xe3_LPM
[05:08:49] ================= [PASSED] check_media_ip ==================
[05:08:49] ================= check_platform_gt_count =================
[05:08:49] [PASSED] 0x9A60 (TIGERLAKE)
[05:08:49] [PASSED] 0x9A68 (TIGERLAKE)
[05:08:49] [PASSED] 0x9A70 (TIGERLAKE)
[05:08:49] [PASSED] 0x9A40 (TIGERLAKE)
[05:08:49] [PASSED] 0x9A49 (TIGERLAKE)
[05:08:49] [PASSED] 0x9A59 (TIGERLAKE)
[05:08:49] [PASSED] 0x9A78 (TIGERLAKE)
[05:08:49] [PASSED] 0x9AC0 (TIGERLAKE)
[05:08:49] [PASSED] 0x9AC9 (TIGERLAKE)
[05:08:49] [PASSED] 0x9AD9 (TIGERLAKE)
[05:08:49] [PASSED] 0x9AF8 (TIGERLAKE)
[05:08:49] [PASSED] 0x4C80 (ROCKETLAKE)
[05:08:49] [PASSED] 0x4C8A (ROCKETLAKE)
[05:08:49] [PASSED] 0x4C8B (ROCKETLAKE)
[05:08:49] [PASSED] 0x4C8C (ROCKETLAKE)
[05:08:49] [PASSED] 0x4C90 (ROCKETLAKE)
[05:08:49] [PASSED] 0x4C9A (ROCKETLAKE)
[05:08:49] [PASSED] 0x4680 (ALDERLAKE_S)
[05:08:49] [PASSED] 0x4682 (ALDERLAKE_S)
[05:08:49] [PASSED] 0x4688 (ALDERLAKE_S)
[05:08:49] [PASSED] 0x468A (ALDERLAKE_S)
[05:08:49] [PASSED] 0x468B (ALDERLAKE_S)
[05:08:49] [PASSED] 0x4690 (ALDERLAKE_S)
[05:08:49] [PASSED] 0x4692 (ALDERLAKE_S)
[05:08:49] [PASSED] 0x4693 (ALDERLAKE_S)
[05:08:49] [PASSED] 0x46A0 (ALDERLAKE_P)
[05:08:49] [PASSED] 0x46A1 (ALDERLAKE_P)
[05:08:49] [PASSED] 0x46A2 (ALDERLAKE_P)
[05:08:49] [PASSED] 0x46A3 (ALDERLAKE_P)
[05:08:49] [PASSED] 0x46A6 (ALDERLAKE_P)
[05:08:49] [PASSED] 0x46A8 (ALDERLAKE_P)
[05:08:49] [PASSED] 0x46AA (ALDERLAKE_P)
[05:08:49] [PASSED] 0x462A (ALDERLAKE_P)
[05:08:49] [PASSED] 0x4626 (ALDERLAKE_P)
[05:08:49] [PASSED] 0x4628 (ALDERLAKE_P)
[05:08:49] [PASSED] 0x46B0 (ALDERLAKE_P)
[05:08:49] [PASSED] 0x46B1 (ALDERLAKE_P)
[05:08:49] [PASSED] 0x46B2 (ALDERLAKE_P)
[05:08:49] [PASSED] 0x46B3 (ALDERLAKE_P)
[05:08:49] [PASSED] 0x46C0 (ALDERLAKE_P)
[05:08:49] [PASSED] 0x46C1 (ALDERLAKE_P)
[05:08:49] [PASSED] 0x46C2 (ALDERLAKE_P)
[05:08:49] [PASSED] 0x46C3 (ALDERLAKE_P)
[05:08:49] [PASSED] 0x46D0 (ALDERLAKE_N)
[05:08:49] [PASSED] 0x46D1 (ALDERLAKE_N)
[05:08:49] [PASSED] 0x46D2 (ALDERLAKE_N)
[05:08:49] [PASSED] 0x46D3 (ALDERLAKE_N)
[05:08:49] [PASSED] 0x46D4 (ALDERLAKE_N)
[05:08:49] [PASSED] 0xA721 (ALDERLAKE_P)
[05:08:49] [PASSED] 0xA7A1 (ALDERLAKE_P)
[05:08:49] [PASSED] 0xA7A9 (ALDERLAKE_P)
[05:08:49] [PASSED] 0xA7AC (ALDERLAKE_P)
[05:08:49] [PASSED] 0xA7AD (ALDERLAKE_P)
[05:08:49] [PASSED] 0xA720 (ALDERLAKE_P)
[05:08:49] [PASSED] 0xA7A0 (ALDERLAKE_P)
[05:08:49] [PASSED] 0xA7A8 (ALDERLAKE_P)
[05:08:49] [PASSED] 0xA7AA (ALDERLAKE_P)
[05:08:49] [PASSED] 0xA7AB (ALDERLAKE_P)
[05:08:49] [PASSED] 0xA780 (ALDERLAKE_S)
[05:08:49] [PASSED] 0xA781 (ALDERLAKE_S)
[05:08:49] [PASSED] 0xA782 (ALDERLAKE_S)
[05:08:49] [PASSED] 0xA783 (ALDERLAKE_S)
[05:08:49] [PASSED] 0xA788 (ALDERLAKE_S)
[05:08:49] [PASSED] 0xA789 (ALDERLAKE_S)
[05:08:49] [PASSED] 0xA78A (ALDERLAKE_S)
[05:08:49] [PASSED] 0xA78B (ALDERLAKE_S)
[05:08:49] [PASSED] 0x4905 (DG1)
[05:08:49] [PASSED] 0x4906 (DG1)
[05:08:49] [PASSED] 0x4907 (DG1)
[05:08:49] [PASSED] 0x4908 (DG1)
[05:08:49] [PASSED] 0x4909 (DG1)
[05:08:49] [PASSED] 0x56C0 (DG2)
[05:08:49] [PASSED] 0x56C2 (DG2)
[05:08:49] [PASSED] 0x56C1 (DG2)
[05:08:49] [PASSED] 0x7D51 (METEORLAKE)
[05:08:49] [PASSED] 0x7DD1 (METEORLAKE)
[05:08:49] [PASSED] 0x7D41 (METEORLAKE)
[05:08:49] [PASSED] 0x7D67 (METEORLAKE)
[05:08:49] [PASSED] 0xB640 (METEORLAKE)
[05:08:49] [PASSED] 0x56A0 (DG2)
[05:08:49] [PASSED] 0x56A1 (DG2)
[05:08:49] [PASSED] 0x56A2 (DG2)
[05:08:49] [PASSED] 0x56BE (DG2)
[05:08:49] [PASSED] 0x56BF (DG2)
[05:08:49] [PASSED] 0x5690 (DG2)
[05:08:49] [PASSED] 0x5691 (DG2)
[05:08:49] [PASSED] 0x5692 (DG2)
[05:08:49] [PASSED] 0x56A5 (DG2)
[05:08:49] [PASSED] 0x56A6 (DG2)
[05:08:49] [PASSED] 0x56B0 (DG2)
[05:08:49] [PASSED] 0x56B1 (DG2)
[05:08:49] [PASSED] 0x56BA (DG2)
[05:08:49] [PASSED] 0x56BB (DG2)
[05:08:49] [PASSED] 0x56BC (DG2)
[05:08:49] [PASSED] 0x56BD (DG2)
[05:08:49] [PASSED] 0x5693 (DG2)
[05:08:49] [PASSED] 0x5694 (DG2)
[05:08:49] [PASSED] 0x5695 (DG2)
[05:08:49] [PASSED] 0x56A3 (DG2)
[05:08:49] [PASSED] 0x56A4 (DG2)
[05:08:49] [PASSED] 0x56B2 (DG2)
[05:08:49] [PASSED] 0x56B3 (DG2)
[05:08:49] [PASSED] 0x5696 (DG2)
[05:08:49] [PASSED] 0x5697 (DG2)
[05:08:49] [PASSED] 0xB69 (PVC)
[05:08:49] [PASSED] 0xB6E (PVC)
[05:08:49] [PASSED] 0xBD4 (PVC)
[05:08:49] [PASSED] 0xBD5 (PVC)
[05:08:49] [PASSED] 0xBD6 (PVC)
[05:08:49] [PASSED] 0xBD7 (PVC)
[05:08:49] [PASSED] 0xBD8 (PVC)
[05:08:49] [PASSED] 0xBD9 (PVC)
[05:08:49] [PASSED] 0xBDA (PVC)
[05:08:49] [PASSED] 0xBDB (PVC)
[05:08:49] [PASSED] 0xBE0 (PVC)
[05:08:49] [PASSED] 0xBE1 (PVC)
[05:08:49] [PASSED] 0xBE5 (PVC)
[05:08:49] [PASSED] 0x7D40 (METEORLAKE)
[05:08:49] [PASSED] 0x7D45 (METEORLAKE)
[05:08:49] [PASSED] 0x7D55 (METEORLAKE)
[05:08:49] [PASSED] 0x7D60 (METEORLAKE)
[05:08:49] [PASSED] 0x7DD5 (METEORLAKE)
[05:08:49] [PASSED] 0x6420 (LUNARLAKE)
[05:08:49] [PASSED] 0x64A0 (LUNARLAKE)
[05:08:49] [PASSED] 0x64B0 (LUNARLAKE)
[05:08:49] [PASSED] 0xE202 (BATTLEMAGE)
[05:08:49] [PASSED] 0xE209 (BATTLEMAGE)
[05:08:49] [PASSED] 0xE20B (BATTLEMAGE)
[05:08:49] [PASSED] 0xE20C (BATTLEMAGE)
[05:08:49] [PASSED] 0xE20D (BATTLEMAGE)
[05:08:49] [PASSED] 0xE210 (BATTLEMAGE)
[05:08:49] [PASSED] 0xE211 (BATTLEMAGE)
[05:08:49] [PASSED] 0xE212 (BATTLEMAGE)
[05:08:49] [PASSED] 0xE216 (BATTLEMAGE)
[05:08:49] [PASSED] 0xE220 (BATTLEMAGE)
[05:08:49] [PASSED] 0xE221 (BATTLEMAGE)
[05:08:49] [PASSED] 0xE222 (BATTLEMAGE)
[05:08:49] [PASSED] 0xE223 (BATTLEMAGE)
[05:08:49] [PASSED] 0xB080 (PANTHERLAKE)
[05:08:49] [PASSED] 0xB081 (PANTHERLAKE)
[05:08:49] [PASSED] 0xB082 (PANTHERLAKE)
[05:08:49] [PASSED] 0xB083 (PANTHERLAKE)
[05:08:49] [PASSED] 0xB084 (PANTHERLAKE)
[05:08:49] [PASSED] 0xB085 (PANTHERLAKE)
[05:08:49] [PASSED] 0xB086 (PANTHERLAKE)
[05:08:49] [PASSED] 0xB087 (PANTHERLAKE)
[05:08:49] [PASSED] 0xB08F (PANTHERLAKE)
[05:08:49] [PASSED] 0xB090 (PANTHERLAKE)
[05:08:49] [PASSED] 0xB0A0 (PANTHERLAKE)
[05:08:49] [PASSED] 0xB0B0 (PANTHERLAKE)
[05:08:49] [PASSED] 0xFD80 (PANTHERLAKE)
[05:08:49] [PASSED] 0xFD81 (PANTHERLAKE)
[05:08:49] ============= [PASSED] check_platform_gt_count =============
[05:08:49] ===================== [PASSED] xe_pci ======================
[05:08:49] =================== xe_rtp (2 subtests) ====================
[05:08:49] =============== xe_rtp_process_to_sr_tests ================
[05:08:49] [PASSED] coalesce-same-reg
[05:08:49] [PASSED] no-match-no-add
[05:08:49] [PASSED] match-or
[05:08:49] [PASSED] match-or-xfail
[05:08:49] [PASSED] no-match-no-add-multiple-rules
[05:08:49] [PASSED] two-regs-two-entries
[05:08:49] [PASSED] clr-one-set-other
[05:08:49] [PASSED] set-field
[05:08:49] [PASSED] conflict-duplicate
[05:08:49] [PASSED] conflict-not-disjoint
[05:08:49] [PASSED] conflict-reg-type
[05:08:49] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[05:08:49] ================== xe_rtp_process_tests ===================
[05:08:49] [PASSED] active1
[05:08:49] [PASSED] active2
[05:08:49] [PASSED] active-inactive
[05:08:49] [PASSED] inactive-active
[05:08:49] [PASSED] inactive-1st_or_active-inactive
[05:08:49] [PASSED] inactive-2nd_or_active-inactive
[05:08:49] [PASSED] inactive-last_or_active-inactive
[05:08:49] [PASSED] inactive-no_or_active-inactive
[05:08:49] ============== [PASSED] xe_rtp_process_tests ===============
[05:08:49] ===================== [PASSED] xe_rtp ======================
[05:08:49] ==================== xe_wa (1 subtest) =====================
[05:08:49] ======================== xe_wa_gt =========================
[05:08:49] [PASSED] TIGERLAKE B0
[05:08:49] [PASSED] DG1 A0
[05:08:49] [PASSED] DG1 B0
[05:08:49] [PASSED] ALDERLAKE_S A0
[05:08:49] [PASSED] ALDERLAKE_S B0
[05:08:49] [PASSED] ALDERLAKE_S C0
[05:08:49] [PASSED] ALDERLAKE_S D0
[05:08:49] [PASSED] ALDERLAKE_P A0
[05:08:49] [PASSED] ALDERLAKE_P B0
[05:08:49] [PASSED] ALDERLAKE_P C0
[05:08:49] [PASSED] ALDERLAKE_S RPLS D0
[05:08:49] [PASSED] ALDERLAKE_P RPLU E0
[05:08:49] [PASSED] DG2 G10 C0
[05:08:49] [PASSED] DG2 G11 B1
[05:08:49] [PASSED] DG2 G12 A1
[05:08:49] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[05:08:49] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[05:08:49] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[05:08:49] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
stty: 'standard input': Inappropriate ioctl for device
[05:08:49] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[05:08:49] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[05:08:49] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[05:08:49] ==================== [PASSED] xe_wa_gt =====================
[05:08:49] ====================== [PASSED] xe_wa ======================
[05:08:49] ============================================================
[05:08:49] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[05:08:49] Elapsed time: 33.389s total, 4.267s configuring, 28.756s building, 0.324s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[05:08:49] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:08:51] 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
[05:09:13] Starting KUnit Kernel (1/1)...
[05:09:13] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:09:14] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[05:09:14] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[05:09:14] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[05:09:14] =========== drm_validate_clone_mode (2 subtests) ===========
[05:09:14] ============== drm_test_check_in_clone_mode ===============
[05:09:14] [PASSED] in_clone_mode
[05:09:14] [PASSED] not_in_clone_mode
[05:09:14] ========== [PASSED] drm_test_check_in_clone_mode ===========
[05:09:14] =============== drm_test_check_valid_clones ===============
[05:09:14] [PASSED] not_in_clone_mode
[05:09:14] [PASSED] valid_clone
[05:09:14] [PASSED] invalid_clone
[05:09:14] =========== [PASSED] drm_test_check_valid_clones ===========
[05:09:14] ============= [PASSED] drm_validate_clone_mode =============
[05:09:14] ============= drm_validate_modeset (1 subtest) =============
[05:09:14] [PASSED] drm_test_check_connector_changed_modeset
[05:09:14] ============== [PASSED] drm_validate_modeset ===============
[05:09:14] ====== drm_test_bridge_get_current_state (2 subtests) ======
[05:09:14] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[05:09:14] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[05:09:14] ======== [PASSED] drm_test_bridge_get_current_state ========
[05:09:14] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[05:09:14] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[05:09:14] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[05:09:14] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[05:09:14] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[05:09:14] ============== drm_bridge_alloc (2 subtests) ===============
[05:09:14] [PASSED] drm_test_drm_bridge_alloc_basic
[05:09:14] [PASSED] drm_test_drm_bridge_alloc_get_put
[05:09:14] ================ [PASSED] drm_bridge_alloc =================
[05:09:14] ================== drm_buddy (7 subtests) ==================
[05:09:14] [PASSED] drm_test_buddy_alloc_limit
[05:09:14] [PASSED] drm_test_buddy_alloc_optimistic
[05:09:14] [PASSED] drm_test_buddy_alloc_pessimistic
[05:09:14] [PASSED] drm_test_buddy_alloc_pathological
[05:09:14] [PASSED] drm_test_buddy_alloc_contiguous
[05:09:14] [PASSED] drm_test_buddy_alloc_clear
[05:09:14] [PASSED] drm_test_buddy_alloc_range_bias
[05:09:14] ==================== [PASSED] drm_buddy ====================
[05:09:14] ============= drm_cmdline_parser (40 subtests) =============
[05:09:14] [PASSED] drm_test_cmdline_force_d_only
[05:09:14] [PASSED] drm_test_cmdline_force_D_only_dvi
[05:09:14] [PASSED] drm_test_cmdline_force_D_only_hdmi
[05:09:14] [PASSED] drm_test_cmdline_force_D_only_not_digital
[05:09:14] [PASSED] drm_test_cmdline_force_e_only
[05:09:14] [PASSED] drm_test_cmdline_res
[05:09:14] [PASSED] drm_test_cmdline_res_vesa
[05:09:14] [PASSED] drm_test_cmdline_res_vesa_rblank
[05:09:14] [PASSED] drm_test_cmdline_res_rblank
[05:09:14] [PASSED] drm_test_cmdline_res_bpp
[05:09:14] [PASSED] drm_test_cmdline_res_refresh
[05:09:14] [PASSED] drm_test_cmdline_res_bpp_refresh
[05:09:14] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[05:09:14] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[05:09:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[05:09:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[05:09:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[05:09:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[05:09:14] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[05:09:14] [PASSED] drm_test_cmdline_res_margins_force_on
[05:09:14] [PASSED] drm_test_cmdline_res_vesa_margins
[05:09:14] [PASSED] drm_test_cmdline_name
[05:09:14] [PASSED] drm_test_cmdline_name_bpp
[05:09:14] [PASSED] drm_test_cmdline_name_option
[05:09:14] [PASSED] drm_test_cmdline_name_bpp_option
[05:09:14] [PASSED] drm_test_cmdline_rotate_0
[05:09:14] [PASSED] drm_test_cmdline_rotate_90
[05:09:14] [PASSED] drm_test_cmdline_rotate_180
[05:09:14] [PASSED] drm_test_cmdline_rotate_270
[05:09:14] [PASSED] drm_test_cmdline_hmirror
[05:09:14] [PASSED] drm_test_cmdline_vmirror
[05:09:14] [PASSED] drm_test_cmdline_margin_options
[05:09:14] [PASSED] drm_test_cmdline_multiple_options
[05:09:14] [PASSED] drm_test_cmdline_bpp_extra_and_option
[05:09:14] [PASSED] drm_test_cmdline_extra_and_option
[05:09:14] [PASSED] drm_test_cmdline_freestanding_options
[05:09:14] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[05:09:14] [PASSED] drm_test_cmdline_panel_orientation
[05:09:14] ================ drm_test_cmdline_invalid =================
[05:09:14] [PASSED] margin_only
[05:09:14] [PASSED] interlace_only
[05:09:14] [PASSED] res_missing_x
[05:09:14] [PASSED] res_missing_y
[05:09:14] [PASSED] res_bad_y
[05:09:14] [PASSED] res_missing_y_bpp
[05:09:14] [PASSED] res_bad_bpp
[05:09:14] [PASSED] res_bad_refresh
[05:09:14] [PASSED] res_bpp_refresh_force_on_off
[05:09:14] [PASSED] res_invalid_mode
[05:09:14] [PASSED] res_bpp_wrong_place_mode
[05:09:14] [PASSED] name_bpp_refresh
[05:09:14] [PASSED] name_refresh
[05:09:14] [PASSED] name_refresh_wrong_mode
[05:09:14] [PASSED] name_refresh_invalid_mode
[05:09:14] [PASSED] rotate_multiple
[05:09:14] [PASSED] rotate_invalid_val
[05:09:14] [PASSED] rotate_truncated
[05:09:14] [PASSED] invalid_option
[05:09:14] [PASSED] invalid_tv_option
[05:09:14] [PASSED] truncated_tv_option
[05:09:14] ============ [PASSED] drm_test_cmdline_invalid =============
[05:09:14] =============== drm_test_cmdline_tv_options ===============
[05:09:14] [PASSED] NTSC
[05:09:14] [PASSED] NTSC_443
[05:09:14] [PASSED] NTSC_J
[05:09:14] [PASSED] PAL
[05:09:14] [PASSED] PAL_M
[05:09:14] [PASSED] PAL_N
[05:09:14] [PASSED] SECAM
[05:09:14] [PASSED] MONO_525
[05:09:14] [PASSED] MONO_625
[05:09:14] =========== [PASSED] drm_test_cmdline_tv_options ===========
[05:09:14] =============== [PASSED] drm_cmdline_parser ================
[05:09:14] ========== drmm_connector_hdmi_init (20 subtests) ==========
[05:09:14] [PASSED] drm_test_connector_hdmi_init_valid
[05:09:14] [PASSED] drm_test_connector_hdmi_init_bpc_8
[05:09:14] [PASSED] drm_test_connector_hdmi_init_bpc_10
[05:09:14] [PASSED] drm_test_connector_hdmi_init_bpc_12
[05:09:14] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[05:09:14] [PASSED] drm_test_connector_hdmi_init_bpc_null
[05:09:14] [PASSED] drm_test_connector_hdmi_init_formats_empty
[05:09:14] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[05:09:14] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[05:09:14] [PASSED] supported_formats=0x9 yuv420_allowed=1
[05:09:14] [PASSED] supported_formats=0x9 yuv420_allowed=0
[05:09:14] [PASSED] supported_formats=0x3 yuv420_allowed=1
[05:09:14] [PASSED] supported_formats=0x3 yuv420_allowed=0
[05:09:14] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[05:09:14] [PASSED] drm_test_connector_hdmi_init_null_ddc
[05:09:14] [PASSED] drm_test_connector_hdmi_init_null_product
[05:09:14] [PASSED] drm_test_connector_hdmi_init_null_vendor
[05:09:14] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[05:09:14] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[05:09:14] [PASSED] drm_test_connector_hdmi_init_product_valid
[05:09:14] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[05:09:14] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[05:09:14] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[05:09:14] ========= drm_test_connector_hdmi_init_type_valid =========
[05:09:14] [PASSED] HDMI-A
[05:09:14] [PASSED] HDMI-B
[05:09:14] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[05:09:14] ======== drm_test_connector_hdmi_init_type_invalid ========
[05:09:14] [PASSED] Unknown
[05:09:14] [PASSED] VGA
[05:09:14] [PASSED] DVI-I
[05:09:14] [PASSED] DVI-D
[05:09:14] [PASSED] DVI-A
[05:09:14] [PASSED] Composite
[05:09:14] [PASSED] SVIDEO
[05:09:14] [PASSED] LVDS
[05:09:14] [PASSED] Component
[05:09:14] [PASSED] DIN
[05:09:14] [PASSED] DP
[05:09:14] [PASSED] TV
[05:09:14] [PASSED] eDP
[05:09:14] [PASSED] Virtual
[05:09:14] [PASSED] DSI
[05:09:14] [PASSED] DPI
[05:09:14] [PASSED] Writeback
[05:09:14] [PASSED] SPI
[05:09:14] [PASSED] USB
[05:09:14] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[05:09:14] ============ [PASSED] drmm_connector_hdmi_init =============
[05:09:14] ============= drmm_connector_init (3 subtests) =============
[05:09:14] [PASSED] drm_test_drmm_connector_init
[05:09:14] [PASSED] drm_test_drmm_connector_init_null_ddc
[05:09:14] ========= drm_test_drmm_connector_init_type_valid =========
[05:09:14] [PASSED] Unknown
[05:09:14] [PASSED] VGA
[05:09:14] [PASSED] DVI-I
[05:09:14] [PASSED] DVI-D
[05:09:14] [PASSED] DVI-A
[05:09:14] [PASSED] Composite
[05:09:14] [PASSED] SVIDEO
[05:09:14] [PASSED] LVDS
[05:09:14] [PASSED] Component
[05:09:14] [PASSED] DIN
[05:09:14] [PASSED] DP
[05:09:14] [PASSED] HDMI-A
[05:09:14] [PASSED] HDMI-B
[05:09:14] [PASSED] TV
[05:09:14] [PASSED] eDP
[05:09:14] [PASSED] Virtual
[05:09:14] [PASSED] DSI
[05:09:14] [PASSED] DPI
[05:09:14] [PASSED] Writeback
[05:09:14] [PASSED] SPI
[05:09:14] [PASSED] USB
[05:09:14] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[05:09:14] =============== [PASSED] drmm_connector_init ===============
[05:09:14] ========= drm_connector_dynamic_init (6 subtests) ==========
[05:09:14] [PASSED] drm_test_drm_connector_dynamic_init
[05:09:14] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[05:09:14] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[05:09:14] [PASSED] drm_test_drm_connector_dynamic_init_properties
[05:09:14] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[05:09:14] [PASSED] Unknown
[05:09:14] [PASSED] VGA
[05:09:14] [PASSED] DVI-I
[05:09:14] [PASSED] DVI-D
[05:09:14] [PASSED] DVI-A
[05:09:14] [PASSED] Composite
[05:09:14] [PASSED] SVIDEO
[05:09:14] [PASSED] LVDS
[05:09:14] [PASSED] Component
[05:09:14] [PASSED] DIN
[05:09:14] [PASSED] DP
[05:09:14] [PASSED] HDMI-A
[05:09:14] [PASSED] HDMI-B
[05:09:14] [PASSED] TV
[05:09:14] [PASSED] eDP
[05:09:14] [PASSED] Virtual
[05:09:14] [PASSED] DSI
[05:09:14] [PASSED] DPI
[05:09:14] [PASSED] Writeback
[05:09:14] [PASSED] SPI
[05:09:14] [PASSED] USB
[05:09:14] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[05:09:14] ======== drm_test_drm_connector_dynamic_init_name =========
[05:09:14] [PASSED] Unknown
[05:09:14] [PASSED] VGA
[05:09:14] [PASSED] DVI-I
[05:09:14] [PASSED] DVI-D
[05:09:14] [PASSED] DVI-A
[05:09:14] [PASSED] Composite
[05:09:14] [PASSED] SVIDEO
[05:09:14] [PASSED] LVDS
[05:09:14] [PASSED] Component
[05:09:14] [PASSED] DIN
[05:09:14] [PASSED] DP
[05:09:14] [PASSED] HDMI-A
[05:09:14] [PASSED] HDMI-B
[05:09:14] [PASSED] TV
[05:09:14] [PASSED] eDP
[05:09:14] [PASSED] Virtual
[05:09:14] [PASSED] DSI
[05:09:14] [PASSED] DPI
[05:09:14] [PASSED] Writeback
[05:09:14] [PASSED] SPI
[05:09:14] [PASSED] USB
[05:09:14] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[05:09:14] =========== [PASSED] drm_connector_dynamic_init ============
[05:09:14] ==== drm_connector_dynamic_register_early (4 subtests) =====
[05:09:14] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[05:09:14] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[05:09:14] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[05:09:14] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[05:09:14] ====== [PASSED] drm_connector_dynamic_register_early =======
[05:09:14] ======= drm_connector_dynamic_register (7 subtests) ========
[05:09:14] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[05:09:14] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[05:09:14] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[05:09:14] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[05:09:14] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[05:09:14] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[05:09:14] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[05:09:14] ========= [PASSED] drm_connector_dynamic_register ==========
[05:09:14] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[05:09:14] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[05:09:14] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[05:09:14] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[05:09:14] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[05:09:14] ========== drm_test_get_tv_mode_from_name_valid ===========
[05:09:14] [PASSED] NTSC
[05:09:14] [PASSED] NTSC-443
[05:09:14] [PASSED] NTSC-J
[05:09:14] [PASSED] PAL
[05:09:14] [PASSED] PAL-M
[05:09:14] [PASSED] PAL-N
[05:09:14] [PASSED] SECAM
[05:09:14] [PASSED] Mono
[05:09:14] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[05:09:14] [PASSED] drm_test_get_tv_mode_from_name_truncated
[05:09:14] ============ [PASSED] drm_get_tv_mode_from_name ============
[05:09:14] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[05:09:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[05:09:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[05:09:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[05:09:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[05:09:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[05:09:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[05:09:14] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[05:09:14] [PASSED] VIC 96
[05:09:14] [PASSED] VIC 97
[05:09:14] [PASSED] VIC 101
[05:09:14] [PASSED] VIC 102
[05:09:14] [PASSED] VIC 106
[05:09:14] [PASSED] VIC 107
[05:09:14] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[05:09:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[05:09:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[05:09:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[05:09:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[05:09:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[05:09:14] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[05:09:14] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[05:09:14] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[05:09:14] [PASSED] Automatic
[05:09:14] [PASSED] Full
[05:09:14] [PASSED] Limited 16:235
[05:09:14] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[05:09:14] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[05:09:14] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[05:09:14] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[05:09:14] === drm_test_drm_hdmi_connector_get_output_format_name ====
[05:09:14] [PASSED] RGB
[05:09:14] [PASSED] YUV 4:2:0
[05:09:14] [PASSED] YUV 4:2:2
[05:09:14] [PASSED] YUV 4:4:4
[05:09:14] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[05:09:14] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[05:09:14] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[05:09:14] ============= drm_damage_helper (21 subtests) ==============
[05:09:14] [PASSED] drm_test_damage_iter_no_damage
[05:09:14] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[05:09:14] [PASSED] drm_test_damage_iter_no_damage_src_moved
[05:09:14] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[05:09:14] [PASSED] drm_test_damage_iter_no_damage_not_visible
[05:09:14] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[05:09:14] [PASSED] drm_test_damage_iter_no_damage_no_fb
[05:09:14] [PASSED] drm_test_damage_iter_simple_damage
[05:09:14] [PASSED] drm_test_damage_iter_single_damage
[05:09:14] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[05:09:14] [PASSED] drm_test_damage_iter_single_damage_outside_src
[05:09:14] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[05:09:14] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[05:09:14] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[05:09:14] [PASSED] drm_test_damage_iter_single_damage_src_moved
[05:09:14] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[05:09:14] [PASSED] drm_test_damage_iter_damage
[05:09:14] [PASSED] drm_test_damage_iter_damage_one_intersect
[05:09:14] [PASSED] drm_test_damage_iter_damage_one_outside
[05:09:14] [PASSED] drm_test_damage_iter_damage_src_moved
[05:09:14] [PASSED] drm_test_damage_iter_damage_not_visible
[05:09:14] ================ [PASSED] drm_damage_helper ================
[05:09:14] ============== drm_dp_mst_helper (3 subtests) ==============
[05:09:14] ============== drm_test_dp_mst_calc_pbn_mode ==============
[05:09:14] [PASSED] Clock 154000 BPP 30 DSC disabled
[05:09:14] [PASSED] Clock 234000 BPP 30 DSC disabled
[05:09:14] [PASSED] Clock 297000 BPP 24 DSC disabled
[05:09:14] [PASSED] Clock 332880 BPP 24 DSC enabled
[05:09:14] [PASSED] Clock 324540 BPP 24 DSC enabled
[05:09:14] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[05:09:14] ============== drm_test_dp_mst_calc_pbn_div ===============
[05:09:14] [PASSED] Link rate 2000000 lane count 4
[05:09:14] [PASSED] Link rate 2000000 lane count 2
[05:09:14] [PASSED] Link rate 2000000 lane count 1
[05:09:14] [PASSED] Link rate 1350000 lane count 4
[05:09:14] [PASSED] Link rate 1350000 lane count 2
[05:09:14] [PASSED] Link rate 1350000 lane count 1
[05:09:14] [PASSED] Link rate 1000000 lane count 4
[05:09:14] [PASSED] Link rate 1000000 lane count 2
[05:09:14] [PASSED] Link rate 1000000 lane count 1
[05:09:14] [PASSED] Link rate 810000 lane count 4
[05:09:14] [PASSED] Link rate 810000 lane count 2
[05:09:14] [PASSED] Link rate 810000 lane count 1
[05:09:14] [PASSED] Link rate 540000 lane count 4
[05:09:14] [PASSED] Link rate 540000 lane count 2
[05:09:14] [PASSED] Link rate 540000 lane count 1
[05:09:14] [PASSED] Link rate 270000 lane count 4
[05:09:14] [PASSED] Link rate 270000 lane count 2
[05:09:14] [PASSED] Link rate 270000 lane count 1
[05:09:14] [PASSED] Link rate 162000 lane count 4
[05:09:14] [PASSED] Link rate 162000 lane count 2
[05:09:14] [PASSED] Link rate 162000 lane count 1
[05:09:14] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[05:09:14] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[05:09:14] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[05:09:14] [PASSED] DP_POWER_UP_PHY with port number
[05:09:14] [PASSED] DP_POWER_DOWN_PHY with port number
[05:09:14] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[05:09:14] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[05:09:14] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[05:09:14] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[05:09:14] [PASSED] DP_QUERY_PAYLOAD with port number
[05:09:14] [PASSED] DP_QUERY_PAYLOAD with VCPI
[05:09:14] [PASSED] DP_REMOTE_DPCD_READ with port number
[05:09:14] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[05:09:14] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[05:09:14] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[05:09:14] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[05:09:14] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[05:09:14] [PASSED] DP_REMOTE_I2C_READ with port number
[05:09:14] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[05:09:14] [PASSED] DP_REMOTE_I2C_READ with transactions array
[05:09:14] [PASSED] DP_REMOTE_I2C_WRITE with port number
[05:09:14] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[05:09:14] [PASSED] DP_REMOTE_I2C_WRITE with data array
[05:09:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[05:09:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[05:09:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[05:09:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[05:09:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[05:09:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[05:09:14] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[05:09:14] ================ [PASSED] drm_dp_mst_helper ================
[05:09:14] ================== drm_exec (7 subtests) ===================
[05:09:14] [PASSED] sanitycheck
[05:09:14] [PASSED] test_lock
[05:09:14] [PASSED] test_lock_unlock
[05:09:14] [PASSED] test_duplicates
[05:09:14] [PASSED] test_prepare
[05:09:14] [PASSED] test_prepare_array
[05:09:14] [PASSED] test_multiple_loops
[05:09:14] ==================== [PASSED] drm_exec =====================
[05:09:14] =========== drm_format_helper_test (17 subtests) ===========
[05:09:14] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[05:09:14] [PASSED] single_pixel_source_buffer
[05:09:14] [PASSED] single_pixel_clip_rectangle
[05:09:14] [PASSED] well_known_colors
[05:09:14] [PASSED] destination_pitch
[05:09:14] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[05:09:14] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[05:09:14] [PASSED] single_pixel_source_buffer
[05:09:14] [PASSED] single_pixel_clip_rectangle
[05:09:14] [PASSED] well_known_colors
[05:09:14] [PASSED] destination_pitch
[05:09:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[05:09:14] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[05:09:14] [PASSED] single_pixel_source_buffer
[05:09:14] [PASSED] single_pixel_clip_rectangle
[05:09:14] [PASSED] well_known_colors
[05:09:14] [PASSED] destination_pitch
[05:09:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[05:09:14] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[05:09:14] [PASSED] single_pixel_source_buffer
[05:09:14] [PASSED] single_pixel_clip_rectangle
[05:09:14] [PASSED] well_known_colors
[05:09:14] [PASSED] destination_pitch
[05:09:14] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[05:09:14] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[05:09:14] [PASSED] single_pixel_source_buffer
[05:09:14] [PASSED] single_pixel_clip_rectangle
[05:09:14] [PASSED] well_known_colors
[05:09:14] [PASSED] destination_pitch
[05:09:14] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[05:09:14] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[05:09:14] [PASSED] single_pixel_source_buffer
[05:09:14] [PASSED] single_pixel_clip_rectangle
[05:09:14] [PASSED] well_known_colors
[05:09:14] [PASSED] destination_pitch
[05:09:14] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[05:09:14] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[05:09:14] [PASSED] single_pixel_source_buffer
[05:09:14] [PASSED] single_pixel_clip_rectangle
[05:09:14] [PASSED] well_known_colors
[05:09:14] [PASSED] destination_pitch
[05:09:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[05:09:14] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[05:09:14] [PASSED] single_pixel_source_buffer
[05:09:14] [PASSED] single_pixel_clip_rectangle
[05:09:14] [PASSED] well_known_colors
[05:09:14] [PASSED] destination_pitch
[05:09:14] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[05:09:14] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[05:09:14] [PASSED] single_pixel_source_buffer
[05:09:14] [PASSED] single_pixel_clip_rectangle
[05:09:14] [PASSED] well_known_colors
[05:09:14] [PASSED] destination_pitch
[05:09:14] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[05:09:14] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[05:09:14] [PASSED] single_pixel_source_buffer
[05:09:14] [PASSED] single_pixel_clip_rectangle
[05:09:14] [PASSED] well_known_colors
[05:09:14] [PASSED] destination_pitch
[05:09:14] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[05:09:14] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[05:09:14] [PASSED] single_pixel_source_buffer
[05:09:14] [PASSED] single_pixel_clip_rectangle
[05:09:14] [PASSED] well_known_colors
[05:09:14] [PASSED] destination_pitch
[05:09:14] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[05:09:14] ============== drm_test_fb_xrgb8888_to_mono ===============
[05:09:14] [PASSED] single_pixel_source_buffer
[05:09:14] [PASSED] single_pixel_clip_rectangle
[05:09:14] [PASSED] well_known_colors
[05:09:14] [PASSED] destination_pitch
[05:09:14] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[05:09:14] ==================== drm_test_fb_swab =====================
[05:09:14] [PASSED] single_pixel_source_buffer
[05:09:14] [PASSED] single_pixel_clip_rectangle
[05:09:14] [PASSED] well_known_colors
[05:09:14] [PASSED] destination_pitch
[05:09:14] ================ [PASSED] drm_test_fb_swab =================
[05:09:14] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[05:09:14] [PASSED] single_pixel_source_buffer
[05:09:14] [PASSED] single_pixel_clip_rectangle
[05:09:14] [PASSED] well_known_colors
[05:09:14] [PASSED] destination_pitch
[05:09:14] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[05:09:14] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[05:09:14] [PASSED] single_pixel_source_buffer
[05:09:14] [PASSED] single_pixel_clip_rectangle
[05:09:14] [PASSED] well_known_colors
[05:09:14] [PASSED] destination_pitch
[05:09:14] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[05:09:14] ================= drm_test_fb_clip_offset =================
[05:09:14] [PASSED] pass through
[05:09:14] [PASSED] horizontal offset
[05:09:14] [PASSED] vertical offset
[05:09:14] [PASSED] horizontal and vertical offset
[05:09:14] [PASSED] horizontal offset (custom pitch)
[05:09:14] [PASSED] vertical offset (custom pitch)
[05:09:14] [PASSED] horizontal and vertical offset (custom pitch)
[05:09:14] ============= [PASSED] drm_test_fb_clip_offset =============
[05:09:14] =================== drm_test_fb_memcpy ====================
[05:09:14] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[05:09:14] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[05:09:14] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[05:09:14] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[05:09:14] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[05:09:14] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[05:09:14] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[05:09:14] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[05:09:14] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[05:09:14] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[05:09:14] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[05:09:14] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[05:09:14] =============== [PASSED] drm_test_fb_memcpy ================
[05:09:14] ============= [PASSED] drm_format_helper_test ==============
[05:09:14] ================= drm_format (18 subtests) =================
[05:09:14] [PASSED] drm_test_format_block_width_invalid
[05:09:14] [PASSED] drm_test_format_block_width_one_plane
[05:09:14] [PASSED] drm_test_format_block_width_two_plane
[05:09:14] [PASSED] drm_test_format_block_width_three_plane
[05:09:14] [PASSED] drm_test_format_block_width_tiled
[05:09:14] [PASSED] drm_test_format_block_height_invalid
[05:09:14] [PASSED] drm_test_format_block_height_one_plane
[05:09:14] [PASSED] drm_test_format_block_height_two_plane
[05:09:14] [PASSED] drm_test_format_block_height_three_plane
[05:09:14] [PASSED] drm_test_format_block_height_tiled
[05:09:14] [PASSED] drm_test_format_min_pitch_invalid
[05:09:14] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[05:09:14] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[05:09:14] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[05:09:14] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[05:09:14] [PASSED] drm_test_format_min_pitch_two_plane
[05:09:14] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[05:09:14] [PASSED] drm_test_format_min_pitch_tiled
[05:09:14] =================== [PASSED] drm_format ====================
[05:09:14] ============== drm_framebuffer (10 subtests) ===============
[05:09:14] ========== drm_test_framebuffer_check_src_coords ==========
[05:09:14] [PASSED] Success: source fits into fb
[05:09:14] [PASSED] Fail: overflowing fb with x-axis coordinate
[05:09:14] [PASSED] Fail: overflowing fb with y-axis coordinate
[05:09:14] [PASSED] Fail: overflowing fb with source width
[05:09:14] [PASSED] Fail: overflowing fb with source height
[05:09:14] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[05:09:14] [PASSED] drm_test_framebuffer_cleanup
[05:09:14] =============== drm_test_framebuffer_create ===============
[05:09:14] [PASSED] ABGR8888 normal sizes
[05:09:14] [PASSED] ABGR8888 max sizes
[05:09:14] [PASSED] ABGR8888 pitch greater than min required
[05:09:14] [PASSED] ABGR8888 pitch less than min required
[05:09:14] [PASSED] ABGR8888 Invalid width
[05:09:14] [PASSED] ABGR8888 Invalid buffer handle
[05:09:14] [PASSED] No pixel format
[05:09:14] [PASSED] ABGR8888 Width 0
[05:09:14] [PASSED] ABGR8888 Height 0
[05:09:14] [PASSED] ABGR8888 Out of bound height * pitch combination
[05:09:14] [PASSED] ABGR8888 Large buffer offset
[05:09:14] [PASSED] ABGR8888 Buffer offset for inexistent plane
[05:09:14] [PASSED] ABGR8888 Invalid flag
[05:09:14] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[05:09:14] [PASSED] ABGR8888 Valid buffer modifier
[05:09:14] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[05:09:14] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[05:09:14] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[05:09:14] [PASSED] NV12 Normal sizes
[05:09:14] [PASSED] NV12 Max sizes
[05:09:14] [PASSED] NV12 Invalid pitch
[05:09:14] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[05:09:14] [PASSED] NV12 different modifier per-plane
[05:09:14] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[05:09:14] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[05:09:14] [PASSED] NV12 Modifier for inexistent plane
[05:09:14] [PASSED] NV12 Handle for inexistent plane
[05:09:14] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[05:09:14] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[05:09:14] [PASSED] YVU420 Normal sizes
[05:09:14] [PASSED] YVU420 Max sizes
[05:09:14] [PASSED] YVU420 Invalid pitch
[05:09:14] [PASSED] YVU420 Different pitches
[05:09:14] [PASSED] YVU420 Different buffer offsets/pitches
[05:09:14] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[05:09:14] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[05:09:14] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[05:09:14] [PASSED] YVU420 Valid modifier
[05:09:14] [PASSED] YVU420 Different modifiers per plane
[05:09:14] [PASSED] YVU420 Modifier for inexistent plane
[05:09:14] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[05:09:14] [PASSED] X0L2 Normal sizes
[05:09:14] [PASSED] X0L2 Max sizes
[05:09:14] [PASSED] X0L2 Invalid pitch
[05:09:14] [PASSED] X0L2 Pitch greater than minimum required
[05:09:14] [PASSED] X0L2 Handle for inexistent plane
[05:09:14] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[05:09:14] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[05:09:14] [PASSED] X0L2 Valid modifier
[05:09:14] [PASSED] X0L2 Modifier for inexistent plane
[05:09:14] =========== [PASSED] drm_test_framebuffer_create ===========
[05:09:14] [PASSED] drm_test_framebuffer_free
[05:09:14] [PASSED] drm_test_framebuffer_init
[05:09:14] [PASSED] drm_test_framebuffer_init_bad_format
[05:09:14] [PASSED] drm_test_framebuffer_init_dev_mismatch
[05:09:14] [PASSED] drm_test_framebuffer_lookup
[05:09:14] [PASSED] drm_test_framebuffer_lookup_inexistent
[05:09:14] [PASSED] drm_test_framebuffer_modifiers_not_supported
[05:09:14] ================= [PASSED] drm_framebuffer =================
[05:09:14] ================ drm_gem_shmem (8 subtests) ================
[05:09:14] [PASSED] drm_gem_shmem_test_obj_create
[05:09:14] [PASSED] drm_gem_shmem_test_obj_create_private
[05:09:14] [PASSED] drm_gem_shmem_test_pin_pages
[05:09:14] [PASSED] drm_gem_shmem_test_vmap
[05:09:14] [PASSED] drm_gem_shmem_test_get_pages_sgt
[05:09:14] [PASSED] drm_gem_shmem_test_get_sg_table
[05:09:14] [PASSED] drm_gem_shmem_test_madvise
[05:09:14] [PASSED] drm_gem_shmem_test_purge
[05:09:14] ================== [PASSED] drm_gem_shmem ==================
[05:09:14] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[05:09:14] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[05:09:14] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[05:09:14] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[05:09:14] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[05:09:14] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[05:09:14] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[05:09:14] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[05:09:14] [PASSED] Automatic
[05:09:14] [PASSED] Full
[05:09:14] [PASSED] Limited 16:235
[05:09:14] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[05:09:14] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[05:09:14] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[05:09:14] [PASSED] drm_test_check_disable_connector
[05:09:14] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[05:09:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[05:09:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[05:09:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[05:09:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[05:09:14] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[05:09:14] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[05:09:14] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[05:09:14] [PASSED] drm_test_check_output_bpc_dvi
[05:09:14] [PASSED] drm_test_check_output_bpc_format_vic_1
[05:09:14] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[05:09:14] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[05:09:14] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[05:09:14] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[05:09:14] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[05:09:14] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[05:09:14] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[05:09:14] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[05:09:14] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[05:09:14] [PASSED] drm_test_check_broadcast_rgb_value
[05:09:14] [PASSED] drm_test_check_bpc_8_value
[05:09:14] [PASSED] drm_test_check_bpc_10_value
[05:09:14] [PASSED] drm_test_check_bpc_12_value
[05:09:14] [PASSED] drm_test_check_format_value
[05:09:14] [PASSED] drm_test_check_tmds_char_value
[05:09:14] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[05:09:14] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[05:09:14] [PASSED] drm_test_check_mode_valid
[05:09:14] [PASSED] drm_test_check_mode_valid_reject
[05:09:14] [PASSED] drm_test_check_mode_valid_reject_rate
[05:09:14] [PASSED] drm_test_check_mode_valid_reject_max_clock
[05:09:14] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[05:09:14] ================= drm_managed (2 subtests) =================
[05:09:14] [PASSED] drm_test_managed_release_action
[05:09:14] [PASSED] drm_test_managed_run_action
[05:09:14] =================== [PASSED] drm_managed ===================
[05:09:14] =================== drm_mm (6 subtests) ====================
[05:09:14] [PASSED] drm_test_mm_init
[05:09:14] [PASSED] drm_test_mm_debug
[05:09:14] [PASSED] drm_test_mm_align32
[05:09:14] [PASSED] drm_test_mm_align64
[05:09:14] [PASSED] drm_test_mm_lowest
[05:09:14] [PASSED] drm_test_mm_highest
[05:09:14] ===================== [PASSED] drm_mm ======================
[05:09:14] ============= drm_modes_analog_tv (5 subtests) =============
[05:09:14] [PASSED] drm_test_modes_analog_tv_mono_576i
[05:09:14] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[05:09:14] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[05:09:14] [PASSED] drm_test_modes_analog_tv_pal_576i
[05:09:14] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[05:09:14] =============== [PASSED] drm_modes_analog_tv ===============
[05:09:14] ============== drm_plane_helper (2 subtests) ===============
[05:09:14] =============== drm_test_check_plane_state ================
[05:09:14] [PASSED] clipping_simple
[05:09:14] [PASSED] clipping_rotate_reflect
[05:09:14] [PASSED] positioning_simple
[05:09:14] [PASSED] upscaling
[05:09:14] [PASSED] downscaling
[05:09:14] [PASSED] rounding1
[05:09:14] [PASSED] rounding2
[05:09:14] [PASSED] rounding3
[05:09:14] [PASSED] rounding4
[05:09:14] =========== [PASSED] drm_test_check_plane_state ============
[05:09:14] =========== drm_test_check_invalid_plane_state ============
[05:09:14] [PASSED] positioning_invalid
[05:09:14] [PASSED] upscaling_invalid
[05:09:14] [PASSED] downscaling_invalid
[05:09:14] ======= [PASSED] drm_test_check_invalid_plane_state ========
[05:09:14] ================ [PASSED] drm_plane_helper =================
[05:09:14] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[05:09:14] ====== drm_test_connector_helper_tv_get_modes_check =======
[05:09:14] [PASSED] None
[05:09:14] [PASSED] PAL
[05:09:14] [PASSED] NTSC
[05:09:14] [PASSED] Both, NTSC Default
[05:09:14] [PASSED] Both, PAL Default
[05:09:14] [PASSED] Both, NTSC Default, with PAL on command-line
[05:09:14] [PASSED] Both, PAL Default, with NTSC on command-line
[05:09:14] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[05:09:14] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[05:09:14] ================== drm_rect (9 subtests) ===================
[05:09:14] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[05:09:14] [PASSED] drm_test_rect_clip_scaled_not_clipped
[05:09:14] [PASSED] drm_test_rect_clip_scaled_clipped
[05:09:14] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[05:09:14] ================= drm_test_rect_intersect =================
[05:09:14] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[05:09:14] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[05:09:14] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[05:09:14] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[05:09:14] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[05:09:14] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[05:09:14] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[05:09:14] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[05:09:14] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[05:09:14] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[05:09:14] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[05:09:14] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[05:09:14] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[05:09:14] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[05:09:14] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[05:09:14] ============= [PASSED] drm_test_rect_intersect =============
[05:09:14] ================ drm_test_rect_calc_hscale ================
[05:09:14] [PASSED] normal use
[05:09:14] [PASSED] out of max range
[05:09:14] [PASSED] out of min range
[05:09:14] [PASSED] zero dst
[05:09:14] [PASSED] negative src
[05:09:14] [PASSED] negative dst
[05:09:14] ============ [PASSED] drm_test_rect_calc_hscale ============
[05:09:14] ================ drm_test_rect_calc_vscale ================
[05:09:14] [PASSED] normal use
[05:09:14] [PASSED] out of max range
[05:09:14] [PASSED] out of min range
[05:09:14] [PASSED] zero dst
[05:09:14] [PASSED] negative src
[05:09:14] [PASSED] negative dst
[05:09:14] ============ [PASSED] drm_test_rect_calc_vscale ============
[05:09:14] ================== drm_test_rect_rotate ===================
[05:09:14] [PASSED] reflect-x
[05:09:14] [PASSED] reflect-y
[05:09:14] [PASSED] rotate-0
[05:09:14] [PASSED] rotate-90
[05:09:14] [PASSED] rotate-180
[05:09:14] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[05:09:14] ============== [PASSED] drm_test_rect_rotate ===============
[05:09:14] ================ drm_test_rect_rotate_inv =================
[05:09:14] [PASSED] reflect-x
[05:09:14] [PASSED] reflect-y
[05:09:14] [PASSED] rotate-0
[05:09:14] [PASSED] rotate-90
[05:09:14] [PASSED] rotate-180
[05:09:14] [PASSED] rotate-270
[05:09:14] ============ [PASSED] drm_test_rect_rotate_inv =============
[05:09:14] ==================== [PASSED] drm_rect =====================
[05:09:14] ============ drm_sysfb_modeset_test (1 subtest) ============
[05:09:14] ============ drm_test_sysfb_build_fourcc_list =============
[05:09:14] [PASSED] no native formats
[05:09:14] [PASSED] XRGB8888 as native format
[05:09:14] [PASSED] remove duplicates
[05:09:14] [PASSED] convert alpha formats
[05:09:14] [PASSED] random formats
[05:09:14] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[05:09:14] ============= [PASSED] drm_sysfb_modeset_test ==============
[05:09:14] ============================================================
[05:09:14] Testing complete. Ran 616 tests: passed: 616
[05:09:14] Elapsed time: 24.793s total, 1.721s configuring, 22.905s building, 0.135s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[05:09:14] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:09:15] 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
[05:09:23] Starting KUnit Kernel (1/1)...
[05:09:23] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:09:23] ================= ttm_device (5 subtests) ==================
[05:09:23] [PASSED] ttm_device_init_basic
[05:09:23] [PASSED] ttm_device_init_multiple
[05:09:23] [PASSED] ttm_device_fini_basic
[05:09:23] [PASSED] ttm_device_init_no_vma_man
[05:09:23] ================== ttm_device_init_pools ==================
[05:09:23] [PASSED] No DMA allocations, no DMA32 required
[05:09:23] [PASSED] DMA allocations, DMA32 required
[05:09:23] [PASSED] No DMA allocations, DMA32 required
[05:09:23] [PASSED] DMA allocations, no DMA32 required
[05:09:23] ============== [PASSED] ttm_device_init_pools ==============
[05:09:23] =================== [PASSED] ttm_device ====================
[05:09:23] ================== ttm_pool (8 subtests) ===================
[05:09:23] ================== ttm_pool_alloc_basic ===================
[05:09:23] [PASSED] One page
[05:09:23] [PASSED] More than one page
[05:09:23] [PASSED] Above the allocation limit
[05:09:23] [PASSED] One page, with coherent DMA mappings enabled
[05:09:23] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[05:09:23] ============== [PASSED] ttm_pool_alloc_basic ===============
[05:09:23] ============== ttm_pool_alloc_basic_dma_addr ==============
[05:09:23] [PASSED] One page
[05:09:23] [PASSED] More than one page
[05:09:23] [PASSED] Above the allocation limit
[05:09:23] [PASSED] One page, with coherent DMA mappings enabled
[05:09:23] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[05:09:23] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[05:09:23] [PASSED] ttm_pool_alloc_order_caching_match
[05:09:23] [PASSED] ttm_pool_alloc_caching_mismatch
[05:09:23] [PASSED] ttm_pool_alloc_order_mismatch
[05:09:23] [PASSED] ttm_pool_free_dma_alloc
[05:09:23] [PASSED] ttm_pool_free_no_dma_alloc
[05:09:23] [PASSED] ttm_pool_fini_basic
[05:09:23] ==================== [PASSED] ttm_pool =====================
[05:09:23] ================ ttm_resource (8 subtests) =================
[05:09:23] ================= ttm_resource_init_basic =================
[05:09:23] [PASSED] Init resource in TTM_PL_SYSTEM
[05:09:23] [PASSED] Init resource in TTM_PL_VRAM
[05:09:23] [PASSED] Init resource in a private placement
[05:09:23] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[05:09:23] ============= [PASSED] ttm_resource_init_basic =============
[05:09:23] [PASSED] ttm_resource_init_pinned
[05:09:23] [PASSED] ttm_resource_fini_basic
[05:09:23] [PASSED] ttm_resource_manager_init_basic
[05:09:23] [PASSED] ttm_resource_manager_usage_basic
[05:09:23] [PASSED] ttm_resource_manager_set_used_basic
[05:09:23] [PASSED] ttm_sys_man_alloc_basic
[05:09:23] [PASSED] ttm_sys_man_free_basic
[05:09:23] ================== [PASSED] ttm_resource ===================
[05:09:23] =================== ttm_tt (15 subtests) ===================
[05:09:23] ==================== ttm_tt_init_basic ====================
[05:09:23] [PASSED] Page-aligned size
[05:09:23] [PASSED] Extra pages requested
[05:09:23] ================ [PASSED] ttm_tt_init_basic ================
[05:09:23] [PASSED] ttm_tt_init_misaligned
[05:09:23] [PASSED] ttm_tt_fini_basic
[05:09:23] [PASSED] ttm_tt_fini_sg
[05:09:23] [PASSED] ttm_tt_fini_shmem
[05:09:23] [PASSED] ttm_tt_create_basic
[05:09:23] [PASSED] ttm_tt_create_invalid_bo_type
[05:09:23] [PASSED] ttm_tt_create_ttm_exists
[05:09:23] [PASSED] ttm_tt_create_failed
[05:09:23] [PASSED] ttm_tt_destroy_basic
[05:09:23] [PASSED] ttm_tt_populate_null_ttm
[05:09:23] [PASSED] ttm_tt_populate_populated_ttm
[05:09:23] [PASSED] ttm_tt_unpopulate_basic
[05:09:23] [PASSED] ttm_tt_unpopulate_empty_ttm
[05:09:23] [PASSED] ttm_tt_swapin_basic
[05:09:23] ===================== [PASSED] ttm_tt ======================
[05:09:23] =================== ttm_bo (14 subtests) ===================
[05:09:23] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[05:09:23] [PASSED] Cannot be interrupted and sleeps
[05:09:23] [PASSED] Cannot be interrupted, locks straight away
[05:09:23] [PASSED] Can be interrupted, sleeps
[05:09:23] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[05:09:23] [PASSED] ttm_bo_reserve_locked_no_sleep
[05:09:23] [PASSED] ttm_bo_reserve_no_wait_ticket
[05:09:24] [PASSED] ttm_bo_reserve_double_resv
[05:09:24] [PASSED] ttm_bo_reserve_interrupted
[05:09:24] [PASSED] ttm_bo_reserve_deadlock
[05:09:24] [PASSED] ttm_bo_unreserve_basic
[05:09:24] [PASSED] ttm_bo_unreserve_pinned
[05:09:24] [PASSED] ttm_bo_unreserve_bulk
[05:09:24] [PASSED] ttm_bo_put_basic
[05:09:24] [PASSED] ttm_bo_put_shared_resv
[05:09:24] [PASSED] ttm_bo_pin_basic
[05:09:24] [PASSED] ttm_bo_pin_unpin_resource
[05:09:24] [PASSED] ttm_bo_multiple_pin_one_unpin
[05:09:24] ===================== [PASSED] ttm_bo ======================
[05:09:24] ============== ttm_bo_validate (21 subtests) ===============
[05:09:24] ============== ttm_bo_init_reserved_sys_man ===============
[05:09:24] [PASSED] Buffer object for userspace
[05:09:24] [PASSED] Kernel buffer object
[05:09:24] [PASSED] Shared buffer object
[05:09:24] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[05:09:24] ============== ttm_bo_init_reserved_mock_man ==============
[05:09:24] [PASSED] Buffer object for userspace
[05:09:24] [PASSED] Kernel buffer object
[05:09:24] [PASSED] Shared buffer object
[05:09:24] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[05:09:24] [PASSED] ttm_bo_init_reserved_resv
[05:09:24] ================== ttm_bo_validate_basic ==================
[05:09:24] [PASSED] Buffer object for userspace
[05:09:24] [PASSED] Kernel buffer object
[05:09:24] [PASSED] Shared buffer object
[05:09:24] ============== [PASSED] ttm_bo_validate_basic ==============
[05:09:24] [PASSED] ttm_bo_validate_invalid_placement
[05:09:24] ============= ttm_bo_validate_same_placement ==============
[05:09:24] [PASSED] System manager
[05:09:24] [PASSED] VRAM manager
[05:09:24] ========= [PASSED] ttm_bo_validate_same_placement ==========
[05:09:24] [PASSED] ttm_bo_validate_failed_alloc
[05:09:24] [PASSED] ttm_bo_validate_pinned
[05:09:24] [PASSED] ttm_bo_validate_busy_placement
[05:09:24] ================ ttm_bo_validate_multihop =================
[05:09:24] [PASSED] Buffer object for userspace
[05:09:24] [PASSED] Kernel buffer object
[05:09:24] [PASSED] Shared buffer object
[05:09:24] ============ [PASSED] ttm_bo_validate_multihop =============
[05:09:24] ========== ttm_bo_validate_no_placement_signaled ==========
[05:09:24] [PASSED] Buffer object in system domain, no page vector
[05:09:24] [PASSED] Buffer object in system domain with an existing page vector
[05:09:24] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[05:09:24] ======== ttm_bo_validate_no_placement_not_signaled ========
[05:09:24] [PASSED] Buffer object for userspace
[05:09:24] [PASSED] Kernel buffer object
[05:09:24] [PASSED] Shared buffer object
[05:09:24] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[05:09:24] [PASSED] ttm_bo_validate_move_fence_signaled
[05:09:24] ========= ttm_bo_validate_move_fence_not_signaled =========
[05:09:24] [PASSED] Waits for GPU
[05:09:24] [PASSED] Tries to lock straight away
[05:09:24] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[05:09:24] [PASSED] ttm_bo_validate_happy_evict
[05:09:24] [PASSED] ttm_bo_validate_all_pinned_evict
[05:09:24] [PASSED] ttm_bo_validate_allowed_only_evict
[05:09:24] [PASSED] ttm_bo_validate_deleted_evict
[05:09:24] [PASSED] ttm_bo_validate_busy_domain_evict
[05:09:24] [PASSED] ttm_bo_validate_evict_gutting
[05:09:24] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[05:09:24] ================= [PASSED] ttm_bo_validate =================
[05:09:24] ============================================================
[05:09:24] Testing complete. Ran 101 tests: passed: 101
[05:09:24] Elapsed time: 9.917s total, 1.745s configuring, 7.956s building, 0.175s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.checksparse: warning for Wait PSR idle before on dsb commit (rev4)
2025-09-05 7:27 [PATCH v3 0/4] Wait PSR idle before on dsb commit Jouni Högander
` (7 preceding siblings ...)
2025-09-08 5:09 ` ✓ CI.KUnit: success for Wait PSR idle before on dsb commit (rev4) Patchwork
@ 2025-09-08 5:24 ` Patchwork
2025-09-08 5:41 ` ✓ Xe.CI.BAT: success " Patchwork
` (2 subsequent siblings)
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-09-08 5:24 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
== Series Details ==
Series: Wait PSR idle before on dsb commit (rev4)
URL : https://patchwork.freedesktop.org/series/152470/
State : warning
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast b58a0fdf32d1945f3a6d900fdc6763b7acdaf558
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
-
+drivers/gpu/drm/i915/display/intel_alpm.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_cdclk.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_ddi.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2034:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2034:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_psr.c: note: in included file:
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Xe.CI.BAT: success for Wait PSR idle before on dsb commit (rev4)
2025-09-05 7:27 [PATCH v3 0/4] Wait PSR idle before on dsb commit Jouni Högander
` (8 preceding siblings ...)
2025-09-08 5:24 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-09-08 5:41 ` Patchwork
2025-09-08 6:54 ` ✓ Xe.CI.Full: " Patchwork
2025-09-08 7:32 ` [PATCH v3 0/4] Wait PSR idle before on dsb commit Hogander, Jouni
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-09-08 5:41 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1679 bytes --]
== Series Details ==
Series: Wait PSR idle before on dsb commit (rev4)
URL : https://patchwork.freedesktop.org/series/152470/
State : success
== Summary ==
CI Bug Log - changes from xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15_BAT -> xe-pw-152470v4_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-152470v4_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-dpms:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543]) +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783
Build changes
-------------
* Linux: xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15 -> xe-pw-152470v4
IGT_8524: 8524
xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15: ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15
xe-pw-152470v4: 152470v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/index.html
[-- Attachment #2: Type: text/html, Size: 2178 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Xe.CI.Full: success for Wait PSR idle before on dsb commit (rev4)
2025-09-05 7:27 [PATCH v3 0/4] Wait PSR idle before on dsb commit Jouni Högander
` (9 preceding siblings ...)
2025-09-08 5:41 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-09-08 6:54 ` Patchwork
2025-09-08 7:32 ` [PATCH v3 0/4] Wait PSR idle before on dsb commit Hogander, Jouni
11 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-09-08 6:54 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 50898 bytes --]
== Series Details ==
Series: Wait PSR idle before on dsb commit (rev4)
URL : https://patchwork.freedesktop.org/series/152470/
State : success
== Summary ==
CI Bug Log - changes from xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15_FULL -> xe-pw-152470v4_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15_FULL and xe-pw-152470v4_FULL:
### New IGT tests (23) ###
* igt@kms_atomic_transition@plane-all-transition-fencing@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [3.73] s
* igt@kms_atomic_transition@plane-all-transition-fencing@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [4.52] s
* igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [3.74] s
* igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [4.48] s
* igt@kms_atomic_transition@plane-all-transition-nonblocking@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [3.73] s
* igt@kms_atomic_transition@plane-all-transition-nonblocking@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [4.49] s
* igt@kms_atomic_transition@plane-all-transition@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [3.73] s
* igt@kms_atomic_transition@plane-all-transition@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [4.49] s
* igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.24] s
* igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.98] s
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [13.04] s
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [12.69] s
* igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.08] s
* igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.82] s
* igt@kms_atomic_transition@plane-use-after-nonblocking-unbind@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.09] s
* igt@kms_atomic_transition@plane-use-after-nonblocking-unbind@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.86] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.37] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.32] s
* igt@kms_plane_multiple@tiling-none@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.88] s
* igt@kms_plane_multiple@tiling-none@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.90] s
* igt@kms_plane_multiple@tiling-none@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.93] s
* igt@kms_plane_multiple@tiling-none@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
* igt@kms_plane_multiple@tiling-x@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.55] s
Known issues
------------
Here are the changes found in xe-pw-152470v4_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-1-y:
- shard-adlp: NOTRUN -> [DMESG-WARN][1] ([Intel XE#4543]) +3 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-1-y.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-adlp: [PASS][2] -> [FAIL][3] ([Intel XE#3908]) +1 other test fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-adlp-2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-adlp: [PASS][4] -> [DMESG-WARN][5] ([Intel XE#2953] / [Intel XE#4173]) +7 other tests dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-adlp-6/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-2/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-adlp: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: [PASS][7] -> [DMESG-FAIL][8] ([Intel XE#4543]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][9] ([Intel XE#316])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#610])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#607])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#607])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][15] ([Intel XE#367]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#2314] / [Intel XE#2894])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#367])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
- shard-adlp: NOTRUN -> [SKIP][19] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#3432])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#787]) +104 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][23] ([Intel XE#787]) +8 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][25] ([Intel XE#2907])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][26] ([Intel XE#1727] / [Intel XE#3113])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: [PASS][27] -> [INCOMPLETE][28] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-adlp: NOTRUN -> [SKIP][29] ([Intel XE#306])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#373])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-436/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2252]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#373]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][33] ([Intel XE#1178]) +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-436/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-adlp: NOTRUN -> [SKIP][34] ([Intel XE#455]) +6 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2321]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2320])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#2291]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: NOTRUN -> [FAIL][39] ([Intel XE#1475])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][40] -> [FAIL][41] ([Intel XE#5299])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-adlp: NOTRUN -> [SKIP][42] ([Intel XE#323])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#4494] / [i915#3804])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-436/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2244])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-bmg: [PASS][45] -> [SKIP][46] ([Intel XE#2316]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-interruptible.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-adlp: NOTRUN -> [SKIP][47] ([Intel XE#310]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2316])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [PASS][49] -> [FAIL][50] ([Intel XE#301])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][51] -> [INCOMPLETE][52] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2293] / [Intel XE#2380])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2293])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#651]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-rte.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2311]) +7 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#5390]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][58] ([Intel XE#656]) +11 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw:
- shard-adlp: NOTRUN -> [SKIP][59] ([Intel XE#651]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#653]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#653]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2313]) +7 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2312])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-adlp: NOTRUN -> [SKIP][64] ([Intel XE#1151])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#346])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-adlp: NOTRUN -> [SKIP][66] ([Intel XE#4596])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2505])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1406] / [Intel XE#1489])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#1406] / [Intel XE#1489])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#2387])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-basic:
- shard-adlp: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-primary-render:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-464/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@bad-tiling:
- shard-adlp: NOTRUN -> [SKIP][75] ([Intel XE#3414])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#3414]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#3414] / [Intel XE#3904])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#1499]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#455])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-436/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-adlp: NOTRUN -> [SKIP][80] ([Intel XE#1123])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_eu_stall@unprivileged-access:
- shard-adlp: NOTRUN -> [SKIP][81] ([Intel XE#5626])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@xe_eu_stall@unprivileged-access.html
* igt@xe_eudebug@basic-client-th:
- shard-adlp: NOTRUN -> [SKIP][82] ([Intel XE#4837] / [Intel XE#5565]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@xe_eudebug@basic-client-th.html
* igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#4837]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
* igt@xe_eudebug@vm-bind-clear-faultable:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#4837]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-436/igt@xe_eudebug@vm-bind-clear-faultable.html
* igt@xe_evict@evict-beng-large-cm:
- shard-adlp: NOTRUN -> [SKIP][85] ([Intel XE#261] / [Intel XE#5564])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@xe_evict@evict-beng-large-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind:
- shard-adlp: NOTRUN -> [SKIP][86] ([Intel XE#1392] / [Intel XE#5575]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2322]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-dg2-set2: [PASS][88] -> [SKIP][89] ([Intel XE#1392]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-dg2-434/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-basic-imm:
- shard-adlp: NOTRUN -> [SKIP][90] ([Intel XE#288] / [Intel XE#5561]) +6 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@xe_exec_fault_mode@many-basic-imm.html
* igt@xe_exec_fault_mode@many-bindexecqueue-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#288])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-464/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html
* igt@xe_exec_system_allocator@evict-malloc:
- shard-bmg: [PASS][92] -> [ABORT][93] ([Intel XE#3970])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-3/igt@xe_exec_system_allocator@evict-malloc.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-8/igt@xe_exec_system_allocator@evict-malloc.html
* igt@xe_exec_system_allocator@once-mmap-huge-nomemset:
- shard-adlp: NOTRUN -> [SKIP][94] ([Intel XE#4915]) +57 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-many-stride-free:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#4915]) +36 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-436/igt@xe_exec_system_allocator@threads-many-stride-free.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#4943]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge.html
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- shard-dg2-set2: [PASS][97] -> [ABORT][98] ([Intel XE#4847] / [Intel XE#5732])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-dg2-435/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-466/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
* igt@xe_oa@syncs-syncobj-cfg:
- shard-adlp: NOTRUN -> [SKIP][99] ([Intel XE#3573])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@xe_oa@syncs-syncobj-cfg.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2427])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-6/igt@xe_peer2peer@read.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][101] ([Intel XE#1173]) +2 other tests fail
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-436/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_peer2peer@write:
- shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#1061] / [Intel XE#5568])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@xe_peer2peer@write.html
* igt@xe_pm@s2idle-basic-exec:
- shard-adlp: [PASS][103] -> [ABORT][104] ([Intel XE#4847])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-adlp-6/igt@xe_pm@s2idle-basic-exec.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-6/igt@xe_pm@s2idle-basic-exec.html
- shard-lnl: [PASS][105] -> [ABORT][106] ([Intel XE#4847])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-lnl-8/igt@xe_pm@s2idle-basic-exec.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-lnl-5/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-adlp: [PASS][107] -> [DMESG-WARN][108] ([Intel XE#3868] / [Intel XE#569])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-adlp-4/igt@xe_pm@s3-vm-bind-unbind-all.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-3/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#579])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pxp@pxp-stale-queue-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#4733])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@xe_pxp@pxp-stale-queue-post-suspend.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-adlp: NOTRUN -> [SKIP][111] ([Intel XE#944])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-1/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#944])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-7/igt@xe_query@multigpu-query-uc-fw-version-huc.html
#### Possible fixes ####
* igt@kms_cursor_crc@cursor-rapid-movement-64x64:
- shard-adlp: [DMESG-WARN][113] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][114] +2 other tests pass
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-adlp-2/igt@kms_cursor_crc@cursor-rapid-movement-64x64.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-3/igt@kms_cursor_crc@cursor-rapid-movement-64x64.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [SKIP][115] ([Intel XE#2291]) -> [PASS][116] +1 other test pass
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [SKIP][117] ([Intel XE#2316]) -> [PASS][118] +4 other tests pass
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@basic-flip-vs-modeset@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][119] ([Intel XE#4543]) -> [PASS][120] +1 other test pass
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-adlp-2/igt@kms_flip@basic-flip-vs-modeset@b-hdmi-a1.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-3/igt@kms_flip@basic-flip-vs-modeset@b-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][121] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [INCOMPLETE][123] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][124] +1 other test pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-7/igt@kms_flip@flip-vs-suspend.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-bmg: [SKIP][125] ([Intel XE#1503]) -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-1/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][127] ([Intel XE#1435]) -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [SKIP][129] ([Intel XE#1499]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-6/igt@kms_vrr@negative-basic.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-2/igt@kms_vrr@negative-basic.html
* igt@xe_exec_basic@multigpu-once-null:
- shard-dg2-set2: [SKIP][131] ([Intel XE#1392]) -> [PASS][132] +5 other tests pass
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-436/igt@xe_exec_basic@multigpu-once-null.html
* {igt@xe_exec_system_allocator@many-stride-malloc-prefetch}:
- shard-bmg: [WARN][133] ([Intel XE#5786]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-4/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-1/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
* igt@xe_pm@s2idle-exec-after:
- shard-adlp: [DMESG-WARN][135] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-adlp-3/igt@xe_pm@s2idle-exec-after.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-adlp-9/igt@xe_pm@s2idle-exec-after.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][137] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][138] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][139] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [INCOMPLETE][140] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][141] ([Intel XE#1178]) -> [SKIP][142] ([Intel XE#2341])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-7/igt@kms_content_protection@legacy.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-6/igt@kms_content_protection@legacy.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-lnl: [FAIL][143] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][144] ([Intel XE#301])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][145] ([Intel XE#2312]) -> [SKIP][146] ([Intel XE#2311]) +8 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][147] ([Intel XE#2311]) -> [SKIP][148] ([Intel XE#2312]) +5 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][149] ([Intel XE#5390]) -> [SKIP][150] ([Intel XE#2312]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][151] ([Intel XE#2312]) -> [SKIP][152] ([Intel XE#5390]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][153] ([Intel XE#2312]) -> [SKIP][154] ([Intel XE#2313]) +11 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][155] ([Intel XE#2313]) -> [SKIP][156] ([Intel XE#2312]) +4 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: [INCOMPLETE][157] -> [INCOMPLETE][158] ([Intel XE#4842])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-dg2-435/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-463/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [SKIP][159] ([Intel XE#1061]) -> [FAIL][160] ([Intel XE#1173])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15/shard-dg2-432/igt@xe_peer2peer@write.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/shard-dg2-436/igt@xe_peer2peer@write.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[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#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
[Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
[Intel XE#4847]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4847
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5568
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#5732]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5732
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* Linux: xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15 -> xe-pw-152470v4
IGT_8524: 8524
xe-3690-ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15: ac08f4fce7a3c22d6fcb7aee3a1d61cd96ea6b15
xe-pw-152470v4: 152470v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152470v4/index.html
[-- Attachment #2: Type: text/html, Size: 61565 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v3 0/4] Wait PSR idle before on dsb commit
2025-09-05 7:27 [PATCH v3 0/4] Wait PSR idle before on dsb commit Jouni Högander
` (10 preceding siblings ...)
2025-09-08 6:54 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-09-08 7:32 ` Hogander, Jouni
11 siblings, 0 replies; 14+ messages in thread
From: Hogander, Jouni @ 2025-09-08 7:32 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org
On Fri, 2025-09-05 at 10:27 +0300, Jouni Högander wrote:
> We are currently observing crc failures after we started using dsb
> for PSR
> updates as well. This seems to happen because PSR HW is still sending
> couple of updates using old framebuffers on wake-up.
>
> On non-dsb commit we are waiting PSR HW to idle before starting a new
> commit. Fix problems with dsb commit by adding similar wait on dsb
> commit as well.
>
> v3: add intel_dsb as a parameter to intel_psr_wait_for_idle_dsb
> v2: add pass crtc_state->dsb_commit as parameter
>
> Jouni Högander (4):
> drm/i915/psr: Pass intel_crtc_state instead of intel_dp in
> wait_for_idle
> drm/i915/psr: Add new define for PSR idle timeout
> drm/i915/psr: New interface adding PSR idle poll into dsb commit
> drm/i915/psr: Add poll for checking PSR is idle before starting
> update
>
> drivers/gpu/drm/i915/display/intel_display.c | 3 +
> drivers/gpu/drm/i915/display/intel_psr.c | 69 +++++++++++++++---
> --
> drivers/gpu/drm/i915/display/intel_psr.h | 2 +
> 3 files changed, 58 insertions(+), 16 deletions(-)
>
Thank you Ville and Mika for your reviews. This is now pushed to drm-
intel-next.
BR,
Jouni Högander
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2025-09-08 7:32 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-05 7:27 [PATCH v3 0/4] Wait PSR idle before on dsb commit Jouni Högander
2025-09-05 7:27 ` [PATCH v3 1/4] drm/i915/psr: Pass intel_crtc_state instead of intel_dp in wait_for_idle Jouni Högander
2025-09-05 7:27 ` [PATCH v3 2/4] drm/i915/psr: Add new define for PSR idle timeout Jouni Högander
2025-09-05 7:27 ` [PATCH v3 3/4] drm/i915/psr: New interface adding PSR idle poll into dsb commit Jouni Högander
2025-09-05 7:27 ` [PATCH v3 4/4] drm/i915/psr: Add poll for checking PSR is idle before starting update Jouni Högander
2025-09-05 9:17 ` Ville Syrjälä
2025-09-05 8:00 ` ✓ CI.KUnit: success for Wait PSR idle before on dsb commit (rev3) Patchwork
2025-09-05 8:15 ` ✗ CI.checksparse: warning " Patchwork
2025-09-05 18:02 ` ✗ Xe.CI.Full: failure " Patchwork
2025-09-08 5:09 ` ✓ CI.KUnit: success for Wait PSR idle before on dsb commit (rev4) Patchwork
2025-09-08 5:24 ` ✗ CI.checksparse: warning " Patchwork
2025-09-08 5:41 ` ✓ Xe.CI.BAT: success " Patchwork
2025-09-08 6:54 ` ✓ Xe.CI.Full: " Patchwork
2025-09-08 7:32 ` [PATCH v3 0/4] Wait PSR idle before on dsb commit Hogander, Jouni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox