* [PATCH v2 0/4] User readable error codes on atomic_ioctl failure
@ 2025-07-30 10:16 Arun R Murthy
2025-07-30 10:16 ` [PATCH v2 1/4] drm: Define user readable error codes for atomic ioctl Arun R Murthy
` (7 more replies)
0 siblings, 8 replies; 16+ messages in thread
From: Arun R Murthy @ 2025-07-30 10:16 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe
Cc: Simona Vetter, Maarten Lankhorst, Jani Nikula, Rodrigo Vivi,
Joonas Lahtinen, naveen1.kumar, xaver.hugl, uma.shankar,
harry.wentland, Arun R Murthy
The series focuses on providing a user readable error value on a failure
in drm_atomic_ioctl(). Usually -EINVAL is returned in most of the error
cases and it is difficult for the user to decode the error and get to
know the real cause for the error. If user gets to know the reason for
the error then corrective measurements can be taken up.
TODO: driver specific error codes are to be added and will be done in
the follow-up patches.
Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
---
Arun R Murthy (4):
drm: Define user readable error codes for atomic ioctl
drm/atomic: Add error_code element in atomic_state
drm/atomic: Return user readable error in atomic_ioctl
drm/i915/display: Error codes for async flip failures
drivers/gpu/drm/drm_atomic.c | 5 ++++
drivers/gpu/drm/drm_atomic_uapi.c | 20 ++++++++++----
drivers/gpu/drm/i915/display/intel_display.c | 4 +++
include/drm/drm_atomic.h | 7 +++++
include/uapi/drm/drm_mode.h | 40 ++++++++++++++++++++++++++++
5 files changed, 71 insertions(+), 5 deletions(-)
---
base-commit: 52ac98096df0784abd379f822ad14d6998b09154
change-id: 20250728-atomic-c9713fd357e4
Best regards,
--
Arun R Murthy <arun.r.murthy@intel.com>
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v2 1/4] drm: Define user readable error codes for atomic ioctl
2025-07-30 10:16 [PATCH v2 0/4] User readable error codes on atomic_ioctl failure Arun R Murthy
@ 2025-07-30 10:16 ` Arun R Murthy
2025-07-30 11:22 ` Biju Das
2025-07-31 11:32 ` Xaver Hugl
2025-07-30 10:16 ` [PATCH v2 2/4] drm/atomic: Add error_code element in atomic_state Arun R Murthy
` (6 subsequent siblings)
7 siblings, 2 replies; 16+ messages in thread
From: Arun R Murthy @ 2025-07-30 10:16 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe
Cc: Simona Vetter, Maarten Lankhorst, Jani Nikula, Rodrigo Vivi,
Joonas Lahtinen, naveen1.kumar, xaver.hugl, uma.shankar,
harry.wentland, Arun R Murthy
There can be multiple reasons for a failure in atomic_ioctl. Most often
in these error conditions -EINVAL is returned. User/Compositor would
have to blindly take a call on failure of this ioctl so as to use
ALLOW_MODESET or any. It would be good if user/compositor gets a
readable error code on failure so they can take proper corrections in
the next commit.
The struct drm_mode_atomic is being passed by the user/compositor which
holds the properties for modeset/flip. Reusing the same struct for
returning the error code in case of failure can save by creating a new
uapi/interface for returning the error code.
The element 'reserved' in the struct drm_mode_atomic is used for
returning the user readable error code.Its a 64bit variable and
should suffice 64 error codes that should be sufficient.
Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
---
include/uapi/drm/drm_mode.h | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/include/uapi/drm/drm_mode.h b/include/uapi/drm/drm_mode.h
index a122bea2559387576150236e3a88f99c24ad3138..87e8f623bfaaab09135be104db04996f0be4dcb4 100644
--- a/include/uapi/drm/drm_mode.h
+++ b/include/uapi/drm/drm_mode.h
@@ -1157,6 +1157,46 @@ struct drm_mode_destroy_dumb {
DRM_MODE_ATOMIC_NONBLOCK |\
DRM_MODE_ATOMIC_ALLOW_MODESET)
+/* atomic not set in the drm_file */
+#define DRM_MODE_ATOMIC_CAP_NOT_ENABLED BIT(0)
+/* atomic flag passed not in DRM_MODE_ATOMIC_FLAGS list */
+#define DRM_MODE_ATOMIC_INVALID_FLAG BIT(1)
+/* DRM_MODE_PAGE_FLIP_LEGACY not supported with atomic ioctl */
+#define DRM_MODE_ATOMIC_PAGE_FLIP_ASYNC BIT(2)
+/* flip event with atomic check only not supported */
+#define DRM_MODE_ATOMIC_FLIP_EVENT_WITH_CHECKONLY BIT(3)
+/* atomic property change requested need full crtc modeset */
+#define DRM_MODE_ATOMIC_CRTC_NEED_FULL_MODESET BIT(4)
+/* atomic property change requested has impact on all connected crtc */
+#define DRM_MODE_ATOMIC_NEED_FULL_MODESET BIT(5)
+/* async flip supported on only primary plane */
+#define DRM_MODE_ATOMIC_ASYNC_NOT_PRIMARY BIT(6)
+/* modifier not supported by async flip */
+#define DRM_MODE_ATOMIC_ASYNC_MODIFIER_NOT_SUPPORTED BIT(7)
+/* async flip with pipe joiner not allowed */
+#define DRM_MODE_ATOMIC_ASYNC_PIPEJOINER_NOTALLOWED BIT(8)
+/* No properties can be changed with async flip */
+#define DRM_MODE_ATOMIC_ASYNC_PROP_CHANGED BIT(9)
+
+/**
+ * DRM_MODE_ATOMIC_ERR_FLAGS
+ *
+ * Bit field of the reserved element in drm_mode_atomic will be
+ * used for returning meaningful error message to the compositor
+ * so that compositor can take necessary correction going ahead.
+ */
+#define DRM_MODE_ATOMIC_ERR_FLAGS (\
+ DRM_MODE_ATOMIC_CAP_NOT_ENABLED |\
+ DRM_MODE_ATOMIC_INVALID_FLAG |\
+ DRM_MODE_ATOMIC_PAGE_FLIP_ASYNC |\
+ DRM_MODE_ATOMIC_FLIP_EVENT_WITH_CHECKONLY |\
+ DRM_MODE_ATOMIC_CRTC_NEED_FULL_MODESET |\
+ DRM_MODE_ATOMIC_NEED_FULL_MODESET |\
+ DRM_MODE_ATOMIC_ASYNC_NOT_PRIMARY |\
+ DRM_MODE_ATOMIC_ASYNC_MODIFIER_NOT_SUPPORTED |\
+ DRM_MODE_ATOMIC_ASYNC_PIPEJOINER_NOTALLOWED |\
+ DRM_MODE_ATOMIC_ASYNC_PROP_CHANGED)
+
struct drm_mode_atomic {
__u32 flags;
__u32 count_objs;
--
2.25.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v2 2/4] drm/atomic: Add error_code element in atomic_state
2025-07-30 10:16 [PATCH v2 0/4] User readable error codes on atomic_ioctl failure Arun R Murthy
2025-07-30 10:16 ` [PATCH v2 1/4] drm: Define user readable error codes for atomic ioctl Arun R Murthy
@ 2025-07-30 10:16 ` Arun R Murthy
2025-07-30 10:16 ` [PATCH v2 3/4] drm/atomic: Return user readable error in atomic_ioctl Arun R Murthy
` (5 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: Arun R Murthy @ 2025-07-30 10:16 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe
Cc: Simona Vetter, Maarten Lankhorst, Jani Nikula, Rodrigo Vivi,
Joonas Lahtinen, naveen1.kumar, xaver.hugl, uma.shankar,
harry.wentland, Arun R Murthy
Now that a proper error code will be returned to the user on any failure
in atomic_ioctl() via struct drm_mode_atomic, add a new element
error_code in the struct drm_atomic_state so as to hold the error code
during the atomic_check() and atomic_commit() phases.
Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
---
include/drm/drm_atomic.h | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/include/drm/drm_atomic.h b/include/drm/drm_atomic.h
index 38636a593c9d98cadda85ccd67326cb152f0dd27..55799d848408e23ae5ece2dd694d119489a87ede 100644
--- a/include/drm/drm_atomic.h
+++ b/include/drm/drm_atomic.h
@@ -524,6 +524,13 @@ struct drm_atomic_state {
* commit without blocking.
*/
struct work_struct commit_work;
+
+ /* @error_code
+ *
+ * flag to convey user readable error to the user.
+ * Error codes defined in DRM_MODE_ATOMIC_ERR_FLAGS
+ */
+ u64 error_code;
};
void __drm_crtc_commit_free(struct kref *kref);
--
2.25.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v2 3/4] drm/atomic: Return user readable error in atomic_ioctl
2025-07-30 10:16 [PATCH v2 0/4] User readable error codes on atomic_ioctl failure Arun R Murthy
2025-07-30 10:16 ` [PATCH v2 1/4] drm: Define user readable error codes for atomic ioctl Arun R Murthy
2025-07-30 10:16 ` [PATCH v2 2/4] drm/atomic: Add error_code element in atomic_state Arun R Murthy
@ 2025-07-30 10:16 ` Arun R Murthy
2025-07-30 13:14 ` Harry Wentland
2025-07-30 10:16 ` [PATCH v2 4/4] drm/i915/display: Error codes for async flip failures Arun R Murthy
` (4 subsequent siblings)
7 siblings, 1 reply; 16+ messages in thread
From: Arun R Murthy @ 2025-07-30 10:16 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe
Cc: Simona Vetter, Maarten Lankhorst, Jani Nikula, Rodrigo Vivi,
Joonas Lahtinen, naveen1.kumar, xaver.hugl, uma.shankar,
harry.wentland, Arun R Murthy
Add user readable error codes for failure cases in drm_atomic_ioctl() so
that user can decode the error code and take corrective measurements.
Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
---
drivers/gpu/drm/drm_atomic.c | 5 +++++
drivers/gpu/drm/drm_atomic_uapi.c | 20 +++++++++++++++-----
2 files changed, 20 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/drm_atomic.c b/drivers/gpu/drm/drm_atomic.c
index cd15cf52f0c9144711da5879da57884674aea9e4..0cf73022955437260d138c6a1e2bb9a8a4eca2f0 100644
--- a/drivers/gpu/drm/drm_atomic.c
+++ b/drivers/gpu/drm/drm_atomic.c
@@ -1513,6 +1513,8 @@ int drm_atomic_check_only(struct drm_atomic_state *state)
if (drm_atomic_crtc_needs_modeset(new_crtc_state)) {
drm_dbg_atomic(dev, "[CRTC:%d:%s] requires full modeset\n",
crtc->base.id, crtc->name);
+ state->error_code = DRM_MODE_ATOMIC_CRTC_NEED_FULL_MODESET;
+
return -EINVAL;
}
}
@@ -1537,8 +1539,11 @@ int drm_atomic_check_only(struct drm_atomic_state *state)
drm_dbg_atomic(dev,
"driver added CRTC to commit: requested 0x%x, affected 0x%0x\n",
requested_crtc, affected_crtc);
+ state->error_code = DRM_MODE_ATOMIC_NEED_FULL_MODESET;
WARN(!state->allow_modeset, "adding CRTC not allowed without modesets: requested 0x%x, affected 0x%0x\n",
requested_crtc, affected_crtc);
+
+ return -EINVAL;
}
return 0;
diff --git a/drivers/gpu/drm/drm_atomic_uapi.c b/drivers/gpu/drm/drm_atomic_uapi.c
index ecc73d52bfae41a7ef455a7e13649ec56c690b90..b96707ca23ac01878c3df25b8a4a026f6c6c31d2 100644
--- a/drivers/gpu/drm/drm_atomic_uapi.c
+++ b/drivers/gpu/drm/drm_atomic_uapi.c
@@ -1058,6 +1058,8 @@ int drm_atomic_set_property(struct drm_atomic_state *state,
ret = drm_atomic_crtc_get_property(crtc, crtc_state,
prop, &old_val);
ret = drm_atomic_check_prop_changes(ret, old_val, prop_value, prop);
+ if (ret)
+ state->error_code = DRM_MODE_ATOMIC_ASYNC_PROP_CHANGED;
break;
}
@@ -1089,6 +1091,7 @@ int drm_atomic_set_property(struct drm_atomic_state *state,
/* ask the driver if this non-primary plane is supported */
if (plane->type != DRM_PLANE_TYPE_PRIMARY) {
+ state->error_code = DRM_MODE_ATOMIC_ASYNC_NOT_PRIMARY;
ret = -EINVAL;
if (plane_funcs && plane_funcs->atomic_async_check)
@@ -1400,6 +1403,11 @@ int drm_mode_atomic_ioctl(struct drm_device *dev,
if (!drm_core_check_feature(dev, DRIVER_ATOMIC))
return -EOPNOTSUPP;
+ if (arg->reserved) {
+ drm_dbg_atomic(dev, "commit failed: reserved field set\n");
+ return -EINVAL;
+ }
+
/* disallow for userspace that has not enabled atomic cap (even
* though this may be a bit overkill, since legacy userspace
* wouldn't know how to call this ioctl)
@@ -1407,16 +1415,13 @@ int drm_mode_atomic_ioctl(struct drm_device *dev,
if (!file_priv->atomic) {
drm_dbg_atomic(dev,
"commit failed: atomic cap not enabled\n");
+ arg->reserved = DRM_MODE_ATOMIC_CAP_NOT_ENABLED;
return -EINVAL;
}
if (arg->flags & ~DRM_MODE_ATOMIC_FLAGS) {
drm_dbg_atomic(dev, "commit failed: invalid flag\n");
- return -EINVAL;
- }
-
- if (arg->reserved) {
- drm_dbg_atomic(dev, "commit failed: reserved field set\n");
+ arg->reserved = DRM_MODE_ATOMIC_INVALID_FLAG;
return -EINVAL;
}
@@ -1424,6 +1429,7 @@ int drm_mode_atomic_ioctl(struct drm_device *dev,
if (!dev->mode_config.async_page_flip) {
drm_dbg_atomic(dev,
"commit failed: DRM_MODE_PAGE_FLIP_ASYNC not supported\n");
+ arg->reserved = DRM_MODE_ATOMIC_PAGE_FLIP_ASYNC;
return -EINVAL;
}
@@ -1435,6 +1441,7 @@ int drm_mode_atomic_ioctl(struct drm_device *dev,
(arg->flags & DRM_MODE_PAGE_FLIP_EVENT)) {
drm_dbg_atomic(dev,
"commit failed: page-flip event requested with test-only commit\n");
+ arg->reserved = DRM_MODE_ATOMIC_FLIP_EVENT_WITH_CHECKONLY;
return -EINVAL;
}
@@ -1541,6 +1548,9 @@ int drm_mode_atomic_ioctl(struct drm_device *dev,
ret = drm_atomic_commit(state);
}
+ /* update the error code if any error to allow user handling it */
+ arg->reserved = state->error_code;
+
out:
complete_signaling(dev, state, fence_state, num_fences, !ret);
--
2.25.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v2 4/4] drm/i915/display: Error codes for async flip failures
2025-07-30 10:16 [PATCH v2 0/4] User readable error codes on atomic_ioctl failure Arun R Murthy
` (2 preceding siblings ...)
2025-07-30 10:16 ` [PATCH v2 3/4] drm/atomic: Return user readable error in atomic_ioctl Arun R Murthy
@ 2025-07-30 10:16 ` Arun R Murthy
2025-07-30 10:43 ` ✓ CI.KUnit: success for User readable error codes on atomic_ioctl failure Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: Arun R Murthy @ 2025-07-30 10:16 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe
Cc: Simona Vetter, Maarten Lankhorst, Jani Nikula, Rodrigo Vivi,
Joonas Lahtinen, naveen1.kumar, xaver.hugl, uma.shankar,
harry.wentland, Arun R Murthy
For failures in async flip atomic check/commit path return user readable
error codes in struct drm_atomic_state.
Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 7035c1fc9033b10327be081f26715446687652c4..893e4d0eb4c3d4d2611720bc7f627b11af81ea8b 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -5944,6 +5944,7 @@ static int intel_async_flip_check_uapi(struct intel_atomic_state *state,
drm_dbg_kms(display->drm,
"[CRTC:%d:%s] modeset required\n",
crtc->base.base.id, crtc->base.name);
+ state->base.error_code = DRM_MODE_ATOMIC_CRTC_NEED_FULL_MODESET;
return -EINVAL;
}
@@ -5955,6 +5956,7 @@ static int intel_async_flip_check_uapi(struct intel_atomic_state *state,
drm_dbg_kms(display->drm,
"[CRTC:%d:%s] async flip disallowed with joiner\n",
crtc->base.base.id, crtc->base.name);
+ state->base.error_code = DRM_MODE_ATOMIC_ASYNC_PIPEJOINER_NOTALLOWED;
return -EINVAL;
}
@@ -6013,6 +6015,7 @@ static int intel_async_flip_check_hw(struct intel_atomic_state *state, struct in
drm_dbg_kms(display->drm,
"[CRTC:%d:%s] modeset required\n",
crtc->base.base.id, crtc->base.name);
+ state->base.error_code = DRM_MODE_ATOMIC_CRTC_NEED_FULL_MODESET;
return -EINVAL;
}
@@ -6055,6 +6058,7 @@ static int intel_async_flip_check_hw(struct intel_atomic_state *state, struct in
plane->base.base.id, plane->base.name,
&new_plane_state->hw.fb->format->format,
new_plane_state->hw.fb->modifier);
+ state->base.error_code = DRM_MODE_ATOMIC_ASYNC_MODIFIER_NOT_SUPPORTED;
return -EINVAL;
}
--
2.25.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* ✓ CI.KUnit: success for User readable error codes on atomic_ioctl failure
2025-07-30 10:16 [PATCH v2 0/4] User readable error codes on atomic_ioctl failure Arun R Murthy
` (3 preceding siblings ...)
2025-07-30 10:16 ` [PATCH v2 4/4] drm/i915/display: Error codes for async flip failures Arun R Murthy
@ 2025-07-30 10:43 ` Patchwork
2025-07-30 10:58 ` ✗ CI.checksparse: warning " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-07-30 10:43 UTC (permalink / raw)
To: Arun R Murthy; +Cc: intel-xe
== Series Details ==
Series: User readable error codes on atomic_ioctl failure
URL : https://patchwork.freedesktop.org/series/152277/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[10:42:10] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:42:14] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[10:42:41] Starting KUnit Kernel (1/1)...
[10:42:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:42:42] ================== guc_buf (11 subtests) ===================
[10:42:42] [PASSED] test_smallest
[10:42:42] [PASSED] test_largest
[10:42:42] [PASSED] test_granular
[10:42:42] [PASSED] test_unique
[10:42:42] [PASSED] test_overlap
[10:42:42] [PASSED] test_reusable
[10:42:42] [PASSED] test_too_big
[10:42:42] [PASSED] test_flush
[10:42:42] [PASSED] test_lookup
[10:42:42] [PASSED] test_data
[10:42:42] [PASSED] test_class
[10:42:42] ===================== [PASSED] guc_buf =====================
[10:42:42] =================== guc_dbm (7 subtests) ===================
[10:42:42] [PASSED] test_empty
[10:42:42] [PASSED] test_default
[10:42:42] ======================== test_size ========================
[10:42:42] [PASSED] 4
[10:42:42] [PASSED] 8
[10:42:42] [PASSED] 32
[10:42:42] [PASSED] 256
[10:42:42] ==================== [PASSED] test_size ====================
[10:42:42] ======================= test_reuse ========================
[10:42:42] [PASSED] 4
[10:42:42] [PASSED] 8
[10:42:42] [PASSED] 32
[10:42:42] [PASSED] 256
[10:42:42] =================== [PASSED] test_reuse ====================
[10:42:42] =================== test_range_overlap ====================
[10:42:42] [PASSED] 4
[10:42:42] [PASSED] 8
[10:42:42] [PASSED] 32
[10:42:42] [PASSED] 256
[10:42:42] =============== [PASSED] test_range_overlap ================
[10:42:42] =================== test_range_compact ====================
[10:42:42] [PASSED] 4
[10:42:42] [PASSED] 8
[10:42:42] [PASSED] 32
[10:42:42] [PASSED] 256
[10:42:42] =============== [PASSED] test_range_compact ================
[10:42:42] ==================== test_range_spare =====================
[10:42:42] [PASSED] 4
[10:42:42] [PASSED] 8
[10:42:42] [PASSED] 32
[10:42:42] [PASSED] 256
[10:42:42] ================ [PASSED] test_range_spare =================
[10:42:42] ===================== [PASSED] guc_dbm =====================
[10:42:42] =================== guc_idm (6 subtests) ===================
[10:42:42] [PASSED] bad_init
[10:42:42] [PASSED] no_init
[10:42:42] [PASSED] init_fini
[10:42:42] [PASSED] check_used
[10:42:42] [PASSED] check_quota
[10:42:42] [PASSED] check_all
[10:42:42] ===================== [PASSED] guc_idm =====================
[10:42:42] ================== no_relay (3 subtests) ===================
[10:42:42] [PASSED] xe_drops_guc2pf_if_not_ready
[10:42:42] [PASSED] xe_drops_guc2vf_if_not_ready
[10:42:42] [PASSED] xe_rejects_send_if_not_ready
[10:42:42] ==================== [PASSED] no_relay =====================
[10:42:42] ================== pf_relay (14 subtests) ==================
[10:42:42] [PASSED] pf_rejects_guc2pf_too_short
[10:42:42] [PASSED] pf_rejects_guc2pf_too_long
[10:42:42] [PASSED] pf_rejects_guc2pf_no_payload
[10:42:42] [PASSED] pf_fails_no_payload
[10:42:42] [PASSED] pf_fails_bad_origin
[10:42:42] [PASSED] pf_fails_bad_type
[10:42:42] [PASSED] pf_txn_reports_error
[10:42:42] [PASSED] pf_txn_sends_pf2guc
[10:42:42] [PASSED] pf_sends_pf2guc
[10:42:42] [SKIPPED] pf_loopback_nop
[10:42:42] [SKIPPED] pf_loopback_echo
[10:42:42] [SKIPPED] pf_loopback_fail
[10:42:42] [SKIPPED] pf_loopback_busy
[10:42:42] [SKIPPED] pf_loopback_retry
[10:42:42] ==================== [PASSED] pf_relay =====================
[10:42:42] ================== vf_relay (3 subtests) ===================
[10:42:42] [PASSED] vf_rejects_guc2vf_too_short
[10:42:42] [PASSED] vf_rejects_guc2vf_too_long
[10:42:42] [PASSED] vf_rejects_guc2vf_no_payload
[10:42:42] ==================== [PASSED] vf_relay =====================
[10:42:42] ===================== lmtt (1 subtest) =====================
[10:42:42] ======================== test_ops =========================
[10:42:42] [PASSED] 2-level
[10:42:42] [PASSED] multi-level
[10:42:42] ==================== [PASSED] test_ops =====================
[10:42:42] ====================== [PASSED] lmtt =======================
[10:42:42] ================= pf_service (11 subtests) =================
[10:42:42] [PASSED] pf_negotiate_any
[10:42:42] [PASSED] pf_negotiate_base_match
[10:42:42] [PASSED] pf_negotiate_base_newer
[10:42:42] [PASSED] pf_negotiate_base_next
[10:42:42] [SKIPPED] pf_negotiate_base_older
[10:42:42] [PASSED] pf_negotiate_base_prev
[10:42:42] [PASSED] pf_negotiate_latest_match
[10:42:42] [PASSED] pf_negotiate_latest_newer
[10:42:42] [PASSED] pf_negotiate_latest_next
[10:42:42] [SKIPPED] pf_negotiate_latest_older
[10:42:42] [SKIPPED] pf_negotiate_latest_prev
[10:42:42] =================== [PASSED] pf_service ====================
[10:42:42] =================== xe_mocs (2 subtests) ===================
[10:42:42] ================ xe_live_mocs_kernel_kunit ================
[10:42:42] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[10:42:42] ================ xe_live_mocs_reset_kunit =================
[10:42:42] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[10:42:42] ==================== [SKIPPED] xe_mocs =====================
[10:42:42] ================= xe_migrate (2 subtests) ==================
[10:42:42] ================= xe_migrate_sanity_kunit =================
[10:42:42] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[10:42:42] ================== xe_validate_ccs_kunit ==================
[10:42:42] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[10:42:42] =================== [SKIPPED] xe_migrate ===================
[10:42:42] ================== xe_dma_buf (1 subtest) ==================
[10:42:42] ==================== xe_dma_buf_kunit =====================
[10:42:42] ================ [SKIPPED] xe_dma_buf_kunit ================
[10:42:42] =================== [SKIPPED] xe_dma_buf ===================
[10:42:42] ================= xe_bo_shrink (1 subtest) =================
[10:42:42] =================== xe_bo_shrink_kunit ====================
[10:42:42] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[10:42:42] ================== [SKIPPED] xe_bo_shrink ==================
[10:42:42] ==================== xe_bo (2 subtests) ====================
[10:42:42] ================== xe_ccs_migrate_kunit ===================
[10:42:42] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[10:42:42] ==================== xe_bo_evict_kunit ====================
[10:42:42] =============== [SKIPPED] xe_bo_evict_kunit ================
[10:42:42] ===================== [SKIPPED] xe_bo ======================
[10:42:42] ==================== args (11 subtests) ====================
[10:42:42] [PASSED] count_args_test
[10:42:42] [PASSED] call_args_example
[10:42:42] [PASSED] call_args_test
[10:42:42] [PASSED] drop_first_arg_example
[10:42:42] [PASSED] drop_first_arg_test
[10:42:42] [PASSED] first_arg_example
[10:42:42] [PASSED] first_arg_test
[10:42:42] [PASSED] last_arg_example
[10:42:42] [PASSED] last_arg_test
[10:42:42] [PASSED] pick_arg_example
[10:42:42] [PASSED] sep_comma_example
[10:42:42] ====================== [PASSED] args =======================
[10:42:42] =================== xe_pci (3 subtests) ====================
[10:42:42] ==================== check_graphics_ip ====================
[10:42:42] [PASSED] 12.70 Xe_LPG
[10:42:42] [PASSED] 12.71 Xe_LPG
[10:42:42] [PASSED] 12.74 Xe_LPG+
[10:42:42] [PASSED] 20.01 Xe2_HPG
[10:42:42] [PASSED] 20.02 Xe2_HPG
[10:42:42] [PASSED] 20.04 Xe2_LPG
[10:42:42] [PASSED] 30.00 Xe3_LPG
[10:42:42] [PASSED] 30.01 Xe3_LPG
[10:42:42] [PASSED] 30.03 Xe3_LPG
[10:42:42] ================ [PASSED] check_graphics_ip ================
[10:42:42] ===================== check_media_ip ======================
[10:42:42] [PASSED] 13.00 Xe_LPM+
[10:42:42] [PASSED] 13.01 Xe2_HPM
[10:42:42] [PASSED] 20.00 Xe2_LPM
[10:42:42] [PASSED] 30.00 Xe3_LPM
[10:42:42] [PASSED] 30.02 Xe3_LPM
[10:42:42] ================= [PASSED] check_media_ip ==================
[10:42:42] ================= check_platform_gt_count =================
[10:42:42] [PASSED] 0x9A60 (TIGERLAKE)
[10:42:42] [PASSED] 0x9A68 (TIGERLAKE)
[10:42:42] [PASSED] 0x9A70 (TIGERLAKE)
[10:42:42] [PASSED] 0x9A40 (TIGERLAKE)
[10:42:42] [PASSED] 0x9A49 (TIGERLAKE)
[10:42:42] [PASSED] 0x9A59 (TIGERLAKE)
[10:42:42] [PASSED] 0x9A78 (TIGERLAKE)
[10:42:42] [PASSED] 0x9AC0 (TIGERLAKE)
[10:42:42] [PASSED] 0x9AC9 (TIGERLAKE)
[10:42:42] [PASSED] 0x9AD9 (TIGERLAKE)
[10:42:42] [PASSED] 0x9AF8 (TIGERLAKE)
[10:42:42] [PASSED] 0x4C80 (ROCKETLAKE)
[10:42:42] [PASSED] 0x4C8A (ROCKETLAKE)
[10:42:42] [PASSED] 0x4C8B (ROCKETLAKE)
[10:42:42] [PASSED] 0x4C8C (ROCKETLAKE)
[10:42:42] [PASSED] 0x4C90 (ROCKETLAKE)
[10:42:42] [PASSED] 0x4C9A (ROCKETLAKE)
[10:42:42] [PASSED] 0x4680 (ALDERLAKE_S)
[10:42:42] [PASSED] 0x4682 (ALDERLAKE_S)
[10:42:42] [PASSED] 0x4688 (ALDERLAKE_S)
[10:42:42] [PASSED] 0x468A (ALDERLAKE_S)
[10:42:42] [PASSED] 0x468B (ALDERLAKE_S)
[10:42:42] [PASSED] 0x4690 (ALDERLAKE_S)
[10:42:42] [PASSED] 0x4692 (ALDERLAKE_S)
[10:42:42] [PASSED] 0x4693 (ALDERLAKE_S)
[10:42:42] [PASSED] 0x46A0 (ALDERLAKE_P)
[10:42:42] [PASSED] 0x46A1 (ALDERLAKE_P)
[10:42:42] [PASSED] 0x46A2 (ALDERLAKE_P)
[10:42:42] [PASSED] 0x46A3 (ALDERLAKE_P)
[10:42:42] [PASSED] 0x46A6 (ALDERLAKE_P)
[10:42:42] [PASSED] 0x46A8 (ALDERLAKE_P)
[10:42:42] [PASSED] 0x46AA (ALDERLAKE_P)
[10:42:42] [PASSED] 0x462A (ALDERLAKE_P)
[10:42:42] [PASSED] 0x4626 (ALDERLAKE_P)
[10:42:42] [PASSED] 0x4628 (ALDERLAKE_P)
[10:42:42] [PASSED] 0x46B0 (ALDERLAKE_P)
[10:42:42] [PASSED] 0x46B1 (ALDERLAKE_P)
[10:42:42] [PASSED] 0x46B2 (ALDERLAKE_P)
[10:42:42] [PASSED] 0x46B3 (ALDERLAKE_P)
[10:42:42] [PASSED] 0x46C0 (ALDERLAKE_P)
[10:42:42] [PASSED] 0x46C1 (ALDERLAKE_P)
[10:42:42] [PASSED] 0x46C2 (ALDERLAKE_P)
[10:42:42] [PASSED] 0x46C3 (ALDERLAKE_P)
[10:42:42] [PASSED] 0x46D0 (ALDERLAKE_N)
[10:42:42] [PASSED] 0x46D1 (ALDERLAKE_N)
[10:42:42] [PASSED] 0x46D2 (ALDERLAKE_N)
[10:42:42] [PASSED] 0x46D3 (ALDERLAKE_N)
[10:42:42] [PASSED] 0x46D4 (ALDERLAKE_N)
[10:42:42] [PASSED] 0xA721 (ALDERLAKE_P)
[10:42:42] [PASSED] 0xA7A1 (ALDERLAKE_P)
[10:42:42] [PASSED] 0xA7A9 (ALDERLAKE_P)
[10:42:42] [PASSED] 0xA7AC (ALDERLAKE_P)
[10:42:42] [PASSED] 0xA7AD (ALDERLAKE_P)
[10:42:42] [PASSED] 0xA720 (ALDERLAKE_P)
[10:42:42] [PASSED] 0xA7A0 (ALDERLAKE_P)
[10:42:42] [PASSED] 0xA7A8 (ALDERLAKE_P)
[10:42:42] [PASSED] 0xA7AA (ALDERLAKE_P)
[10:42:42] [PASSED] 0xA7AB (ALDERLAKE_P)
[10:42:42] [PASSED] 0xA780 (ALDERLAKE_S)
[10:42:42] [PASSED] 0xA781 (ALDERLAKE_S)
[10:42:42] [PASSED] 0xA782 (ALDERLAKE_S)
[10:42:42] [PASSED] 0xA783 (ALDERLAKE_S)
[10:42:42] [PASSED] 0xA788 (ALDERLAKE_S)
[10:42:42] [PASSED] 0xA789 (ALDERLAKE_S)
[10:42:42] [PASSED] 0xA78A (ALDERLAKE_S)
[10:42:42] [PASSED] 0xA78B (ALDERLAKE_S)
[10:42:42] [PASSED] 0x4905 (DG1)
[10:42:42] [PASSED] 0x4906 (DG1)
[10:42:42] [PASSED] 0x4907 (DG1)
[10:42:42] [PASSED] 0x4908 (DG1)
[10:42:42] [PASSED] 0x4909 (DG1)
[10:42:42] [PASSED] 0x56C0 (DG2)
[10:42:42] [PASSED] 0x56C2 (DG2)
[10:42:42] [PASSED] 0x56C1 (DG2)
[10:42:42] [PASSED] 0x7D51 (METEORLAKE)
[10:42:42] [PASSED] 0x7DD1 (METEORLAKE)
[10:42:42] [PASSED] 0x7D41 (METEORLAKE)
[10:42:42] [PASSED] 0x7D67 (METEORLAKE)
[10:42:42] [PASSED] 0xB640 (METEORLAKE)
[10:42:42] [PASSED] 0x56A0 (DG2)
[10:42:42] [PASSED] 0x56A1 (DG2)
[10:42:42] [PASSED] 0x56A2 (DG2)
[10:42:42] [PASSED] 0x56BE (DG2)
[10:42:42] [PASSED] 0x56BF (DG2)
[10:42:42] [PASSED] 0x5690 (DG2)
[10:42:42] [PASSED] 0x5691 (DG2)
[10:42:42] [PASSED] 0x5692 (DG2)
[10:42:42] [PASSED] 0x56A5 (DG2)
[10:42:42] [PASSED] 0x56A6 (DG2)
[10:42:42] [PASSED] 0x56B0 (DG2)
[10:42:42] [PASSED] 0x56B1 (DG2)
[10:42:42] [PASSED] 0x56BA (DG2)
[10:42:42] [PASSED] 0x56BB (DG2)
[10:42:42] [PASSED] 0x56BC (DG2)
[10:42:42] [PASSED] 0x56BD (DG2)
[10:42:42] [PASSED] 0x5693 (DG2)
[10:42:42] [PASSED] 0x5694 (DG2)
[10:42:42] [PASSED] 0x5695 (DG2)
[10:42:42] [PASSED] 0x56A3 (DG2)
[10:42:42] [PASSED] 0x56A4 (DG2)
[10:42:42] [PASSED] 0x56B2 (DG2)
[10:42:42] [PASSED] 0x56B3 (DG2)
[10:42:42] [PASSED] 0x5696 (DG2)
[10:42:42] [PASSED] 0x5697 (DG2)
[10:42:42] [PASSED] 0xB69 (PVC)
[10:42:42] [PASSED] 0xB6E (PVC)
[10:42:42] [PASSED] 0xBD4 (PVC)
[10:42:42] [PASSED] 0xBD5 (PVC)
[10:42:42] [PASSED] 0xBD6 (PVC)
[10:42:42] [PASSED] 0xBD7 (PVC)
[10:42:42] [PASSED] 0xBD8 (PVC)
[10:42:42] [PASSED] 0xBD9 (PVC)
[10:42:42] [PASSED] 0xBDA (PVC)
[10:42:42] [PASSED] 0xBDB (PVC)
[10:42:42] [PASSED] 0xBE0 (PVC)
[10:42:42] [PASSED] 0xBE1 (PVC)
[10:42:42] [PASSED] 0xBE5 (PVC)
[10:42:42] [PASSED] 0x7D40 (METEORLAKE)
[10:42:42] [PASSED] 0x7D45 (METEORLAKE)
[10:42:42] [PASSED] 0x7D55 (METEORLAKE)
[10:42:42] [PASSED] 0x7D60 (METEORLAKE)
[10:42:42] [PASSED] 0x7DD5 (METEORLAKE)
[10:42:42] [PASSED] 0x6420 (LUNARLAKE)
[10:42:42] [PASSED] 0x64A0 (LUNARLAKE)
[10:42:42] [PASSED] 0x64B0 (LUNARLAKE)
[10:42:42] [PASSED] 0xE202 (BATTLEMAGE)
[10:42:42] [PASSED] 0xE209 (BATTLEMAGE)
[10:42:42] [PASSED] 0xE20B (BATTLEMAGE)
[10:42:42] [PASSED] 0xE20C (BATTLEMAGE)
[10:42:42] [PASSED] 0xE20D (BATTLEMAGE)
[10:42:42] [PASSED] 0xE210 (BATTLEMAGE)
[10:42:42] [PASSED] 0xE211 (BATTLEMAGE)
[10:42:42] [PASSED] 0xE212 (BATTLEMAGE)
[10:42:42] [PASSED] 0xE216 (BATTLEMAGE)
[10:42:42] [PASSED] 0xE220 (BATTLEMAGE)
[10:42:42] [PASSED] 0xE221 (BATTLEMAGE)
[10:42:42] [PASSED] 0xE222 (BATTLEMAGE)
[10:42:42] [PASSED] 0xE223 (BATTLEMAGE)
[10:42:42] [PASSED] 0xB080 (PANTHERLAKE)
[10:42:42] [PASSED] 0xB081 (PANTHERLAKE)
[10:42:42] [PASSED] 0xB082 (PANTHERLAKE)
[10:42:42] [PASSED] 0xB083 (PANTHERLAKE)
[10:42:42] [PASSED] 0xB084 (PANTHERLAKE)
[10:42:42] [PASSED] 0xB085 (PANTHERLAKE)
[10:42:42] [PASSED] 0xB086 (PANTHERLAKE)
[10:42:42] [PASSED] 0xB087 (PANTHERLAKE)
[10:42:42] [PASSED] 0xB08F (PANTHERLAKE)
[10:42:42] [PASSED] 0xB090 (PANTHERLAKE)
[10:42:42] [PASSED] 0xB0A0 (PANTHERLAKE)
[10:42:42] [PASSED] 0xB0B0 (PANTHERLAKE)
[10:42:42] [PASSED] 0xFD80 (PANTHERLAKE)
[10:42:42] [PASSED] 0xFD81 (PANTHERLAKE)
[10:42:42] ============= [PASSED] check_platform_gt_count =============
[10:42:42] ===================== [PASSED] xe_pci ======================
[10:42:42] =================== xe_rtp (2 subtests) ====================
[10:42:42] =============== xe_rtp_process_to_sr_tests ================
[10:42:42] [PASSED] coalesce-same-reg
[10:42:42] [PASSED] no-match-no-add
[10:42:42] [PASSED] match-or
[10:42:42] [PASSED] match-or-xfail
[10:42:42] [PASSED] no-match-no-add-multiple-rules
[10:42:42] [PASSED] two-regs-two-entries
[10:42:42] [PASSED] clr-one-set-other
[10:42:42] [PASSED] set-field
[10:42:42] [PASSED] conflict-duplicate
[10:42:42] [PASSED] conflict-not-disjoint
[10:42:42] [PASSED] conflict-reg-type
[10:42:42] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[10:42:42] ================== xe_rtp_process_tests ===================
[10:42:42] [PASSED] active1
[10:42:42] [PASSED] active2
[10:42:42] [PASSED] active-inactive
[10:42:42] [PASSED] inactive-active
[10:42:42] [PASSED] inactive-1st_or_active-inactive
[10:42:42] [PASSED] inactive-2nd_or_active-inactive
[10:42:42] [PASSED] inactive-last_or_active-inactive
[10:42:42] [PASSED] inactive-no_or_active-inactive
[10:42:42] ============== [PASSED] xe_rtp_process_tests ===============
[10:42:42] ===================== [PASSED] xe_rtp ======================
[10:42:42] ==================== xe_wa (1 subtest) =====================
[10:42:42] ======================== xe_wa_gt =========================
[10:42:42] [PASSED] TIGERLAKE (B0)
[10:42:42] [PASSED] DG1 (A0)
[10:42:42] [PASSED] DG1 (B0)
[10:42:42] [PASSED] ALDERLAKE_S (A0)
[10:42:42] [PASSED] ALDERLAKE_S (B0)
[10:42:42] [PASSED] ALDERLAKE_S (C0)
[10:42:42] [PASSED] ALDERLAKE_S (D0)
[10:42:42] [PASSED] ALDERLAKE_P (A0)
[10:42:42] [PASSED] ALDERLAKE_P (B0)
[10:42:42] [PASSED] ALDERLAKE_P (C0)
[10:42:42] [PASSED] ALDERLAKE_S_RPLS (D0)
[10:42:42] [PASSED] ALDERLAKE_P_RPLU (E0)
[10:42:42] [PASSED] DG2_G10 (C0)
[10:42:42] [PASSED] DG2_G11 (B1)
[10:42:42] [PASSED] DG2_G12 (A1)
[10:42:42] [PASSED] METEORLAKE (g:A0, m:A0)
[10:42:42] [PASSED] METEORLAKE (g:A0, m:A0)
[10:42:42] [PASSED] METEORLAKE (g:A0, m:A0)
[10:42:42] [PASSED] LUNARLAKE (g:A0, m:A0)
[10:42:42] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[10:42:42] [PASSED] BATTLEMAGE (g:A0, m:A1)
[10:42:42] ==================== [PASSED] xe_wa_gt =====================
[10:42:42] ====================== [PASSED] xe_wa ======================
[10:42:42] ============================================================
[10:42:42] Testing complete. Ran 297 tests: passed: 281, skipped: 16
[10:42:42] Elapsed time: 31.449s total, 4.089s configuring, 27.043s building, 0.309s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[10:42:42] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:42:43] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[10:43:05] Starting KUnit Kernel (1/1)...
[10:43:05] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:43:05] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[10:43:05] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[10:43:05] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[10:43:05] =========== drm_validate_clone_mode (2 subtests) ===========
[10:43:05] ============== drm_test_check_in_clone_mode ===============
[10:43:05] [PASSED] in_clone_mode
[10:43:05] [PASSED] not_in_clone_mode
[10:43:05] ========== [PASSED] drm_test_check_in_clone_mode ===========
[10:43:05] =============== drm_test_check_valid_clones ===============
[10:43:05] [PASSED] not_in_clone_mode
[10:43:05] [PASSED] valid_clone
[10:43:05] [PASSED] invalid_clone
[10:43:05] =========== [PASSED] drm_test_check_valid_clones ===========
[10:43:05] ============= [PASSED] drm_validate_clone_mode =============
[10:43:05] ============= drm_validate_modeset (1 subtest) =============
[10:43:05] [PASSED] drm_test_check_connector_changed_modeset
[10:43:05] ============== [PASSED] drm_validate_modeset ===============
[10:43:05] ====== drm_test_bridge_get_current_state (2 subtests) ======
[10:43:05] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[10:43:05] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[10:43:05] ======== [PASSED] drm_test_bridge_get_current_state ========
[10:43:05] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[10:43:05] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[10:43:05] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[10:43:05] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[10:43:05] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[10:43:05] ============== drm_bridge_alloc (2 subtests) ===============
[10:43:05] [PASSED] drm_test_drm_bridge_alloc_basic
[10:43:05] [PASSED] drm_test_drm_bridge_alloc_get_put
[10:43:05] ================ [PASSED] drm_bridge_alloc =================
[10:43:05] ================== drm_buddy (7 subtests) ==================
[10:43:05] [PASSED] drm_test_buddy_alloc_limit
[10:43:05] [PASSED] drm_test_buddy_alloc_optimistic
[10:43:05] [PASSED] drm_test_buddy_alloc_pessimistic
[10:43:05] [PASSED] drm_test_buddy_alloc_pathological
[10:43:05] [PASSED] drm_test_buddy_alloc_contiguous
[10:43:05] [PASSED] drm_test_buddy_alloc_clear
[10:43:05] [PASSED] drm_test_buddy_alloc_range_bias
[10:43:05] ==================== [PASSED] drm_buddy ====================
[10:43:05] ============= drm_cmdline_parser (40 subtests) =============
[10:43:05] [PASSED] drm_test_cmdline_force_d_only
[10:43:05] [PASSED] drm_test_cmdline_force_D_only_dvi
[10:43:05] [PASSED] drm_test_cmdline_force_D_only_hdmi
[10:43:05] [PASSED] drm_test_cmdline_force_D_only_not_digital
[10:43:05] [PASSED] drm_test_cmdline_force_e_only
[10:43:05] [PASSED] drm_test_cmdline_res
[10:43:05] [PASSED] drm_test_cmdline_res_vesa
[10:43:05] [PASSED] drm_test_cmdline_res_vesa_rblank
[10:43:05] [PASSED] drm_test_cmdline_res_rblank
[10:43:05] [PASSED] drm_test_cmdline_res_bpp
[10:43:05] [PASSED] drm_test_cmdline_res_refresh
[10:43:05] [PASSED] drm_test_cmdline_res_bpp_refresh
[10:43:05] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[10:43:05] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[10:43:05] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[10:43:05] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[10:43:05] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[10:43:05] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[10:43:05] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[10:43:05] [PASSED] drm_test_cmdline_res_margins_force_on
[10:43:05] [PASSED] drm_test_cmdline_res_vesa_margins
[10:43:05] [PASSED] drm_test_cmdline_name
[10:43:05] [PASSED] drm_test_cmdline_name_bpp
[10:43:05] [PASSED] drm_test_cmdline_name_option
[10:43:05] [PASSED] drm_test_cmdline_name_bpp_option
[10:43:05] [PASSED] drm_test_cmdline_rotate_0
[10:43:05] [PASSED] drm_test_cmdline_rotate_90
[10:43:05] [PASSED] drm_test_cmdline_rotate_180
[10:43:05] [PASSED] drm_test_cmdline_rotate_270
[10:43:05] [PASSED] drm_test_cmdline_hmirror
[10:43:05] [PASSED] drm_test_cmdline_vmirror
[10:43:05] [PASSED] drm_test_cmdline_margin_options
[10:43:05] [PASSED] drm_test_cmdline_multiple_options
[10:43:05] [PASSED] drm_test_cmdline_bpp_extra_and_option
[10:43:05] [PASSED] drm_test_cmdline_extra_and_option
[10:43:05] [PASSED] drm_test_cmdline_freestanding_options
[10:43:05] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[10:43:05] [PASSED] drm_test_cmdline_panel_orientation
[10:43:05] ================ drm_test_cmdline_invalid =================
[10:43:05] [PASSED] margin_only
[10:43:05] [PASSED] interlace_only
[10:43:05] [PASSED] res_missing_x
[10:43:05] [PASSED] res_missing_y
[10:43:05] [PASSED] res_bad_y
[10:43:05] [PASSED] res_missing_y_bpp
[10:43:05] [PASSED] res_bad_bpp
[10:43:05] [PASSED] res_bad_refresh
[10:43:05] [PASSED] res_bpp_refresh_force_on_off
[10:43:05] [PASSED] res_invalid_mode
[10:43:05] [PASSED] res_bpp_wrong_place_mode
[10:43:05] [PASSED] name_bpp_refresh
[10:43:05] [PASSED] name_refresh
[10:43:05] [PASSED] name_refresh_wrong_mode
[10:43:05] [PASSED] name_refresh_invalid_mode
[10:43:05] [PASSED] rotate_multiple
[10:43:05] [PASSED] rotate_invalid_val
[10:43:05] [PASSED] rotate_truncated
[10:43:05] [PASSED] invalid_option
[10:43:05] [PASSED] invalid_tv_option
[10:43:05] [PASSED] truncated_tv_option
[10:43:05] ============ [PASSED] drm_test_cmdline_invalid =============
[10:43:05] =============== drm_test_cmdline_tv_options ===============
[10:43:05] [PASSED] NTSC
[10:43:05] [PASSED] NTSC_443
[10:43:05] [PASSED] NTSC_J
[10:43:05] [PASSED] PAL
[10:43:05] [PASSED] PAL_M
[10:43:05] [PASSED] PAL_N
[10:43:05] [PASSED] SECAM
[10:43:05] [PASSED] MONO_525
[10:43:05] [PASSED] MONO_625
[10:43:05] =========== [PASSED] drm_test_cmdline_tv_options ===========
[10:43:05] =============== [PASSED] drm_cmdline_parser ================
[10:43:05] ========== drmm_connector_hdmi_init (20 subtests) ==========
[10:43:05] [PASSED] drm_test_connector_hdmi_init_valid
[10:43:05] [PASSED] drm_test_connector_hdmi_init_bpc_8
[10:43:05] [PASSED] drm_test_connector_hdmi_init_bpc_10
[10:43:05] [PASSED] drm_test_connector_hdmi_init_bpc_12
[10:43:05] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[10:43:05] [PASSED] drm_test_connector_hdmi_init_bpc_null
[10:43:05] [PASSED] drm_test_connector_hdmi_init_formats_empty
[10:43:05] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[10:43:05] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[10:43:05] [PASSED] supported_formats=0x9 yuv420_allowed=1
[10:43:05] [PASSED] supported_formats=0x9 yuv420_allowed=0
[10:43:05] [PASSED] supported_formats=0x3 yuv420_allowed=1
[10:43:05] [PASSED] supported_formats=0x3 yuv420_allowed=0
[10:43:05] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[10:43:05] [PASSED] drm_test_connector_hdmi_init_null_ddc
[10:43:05] [PASSED] drm_test_connector_hdmi_init_null_product
[10:43:05] [PASSED] drm_test_connector_hdmi_init_null_vendor
[10:43:05] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[10:43:05] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[10:43:05] [PASSED] drm_test_connector_hdmi_init_product_valid
[10:43:05] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[10:43:05] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[10:43:05] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[10:43:05] ========= drm_test_connector_hdmi_init_type_valid =========
[10:43:05] [PASSED] HDMI-A
[10:43:05] [PASSED] HDMI-B
[10:43:05] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[10:43:05] ======== drm_test_connector_hdmi_init_type_invalid ========
[10:43:05] [PASSED] Unknown
[10:43:05] [PASSED] VGA
[10:43:05] [PASSED] DVI-I
[10:43:05] [PASSED] DVI-D
[10:43:05] [PASSED] DVI-A
[10:43:05] [PASSED] Composite
[10:43:05] [PASSED] SVIDEO
[10:43:05] [PASSED] LVDS
[10:43:05] [PASSED] Component
[10:43:05] [PASSED] DIN
[10:43:05] [PASSED] DP
[10:43:05] [PASSED] TV
[10:43:05] [PASSED] eDP
[10:43:05] [PASSED] Virtual
[10:43:05] [PASSED] DSI
[10:43:05] [PASSED] DPI
[10:43:05] [PASSED] Writeback
[10:43:05] [PASSED] SPI
[10:43:05] [PASSED] USB
[10:43:05] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[10:43:05] ============ [PASSED] drmm_connector_hdmi_init =============
[10:43:05] ============= drmm_connector_init (3 subtests) =============
[10:43:05] [PASSED] drm_test_drmm_connector_init
[10:43:05] [PASSED] drm_test_drmm_connector_init_null_ddc
[10:43:05] ========= drm_test_drmm_connector_init_type_valid =========
[10:43:05] [PASSED] Unknown
[10:43:05] [PASSED] VGA
[10:43:05] [PASSED] DVI-I
[10:43:05] [PASSED] DVI-D
[10:43:05] [PASSED] DVI-A
[10:43:05] [PASSED] Composite
[10:43:05] [PASSED] SVIDEO
[10:43:05] [PASSED] LVDS
[10:43:05] [PASSED] Component
[10:43:05] [PASSED] DIN
[10:43:05] [PASSED] DP
[10:43:05] [PASSED] HDMI-A
[10:43:05] [PASSED] HDMI-B
[10:43:05] [PASSED] TV
[10:43:05] [PASSED] eDP
[10:43:05] [PASSED] Virtual
[10:43:05] [PASSED] DSI
[10:43:05] [PASSED] DPI
[10:43:05] [PASSED] Writeback
[10:43:05] [PASSED] SPI
[10:43:05] [PASSED] USB
[10:43:05] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[10:43:05] =============== [PASSED] drmm_connector_init ===============
[10:43:05] ========= drm_connector_dynamic_init (6 subtests) ==========
[10:43:05] [PASSED] drm_test_drm_connector_dynamic_init
[10:43:05] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[10:43:05] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[10:43:05] [PASSED] drm_test_drm_connector_dynamic_init_properties
[10:43:05] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[10:43:05] [PASSED] Unknown
[10:43:05] [PASSED] VGA
[10:43:05] [PASSED] DVI-I
[10:43:05] [PASSED] DVI-D
[10:43:05] [PASSED] DVI-A
[10:43:05] [PASSED] Composite
[10:43:05] [PASSED] SVIDEO
[10:43:05] [PASSED] LVDS
[10:43:05] [PASSED] Component
[10:43:05] [PASSED] DIN
[10:43:05] [PASSED] DP
[10:43:05] [PASSED] HDMI-A
[10:43:05] [PASSED] HDMI-B
[10:43:05] [PASSED] TV
[10:43:05] [PASSED] eDP
[10:43:05] [PASSED] Virtual
[10:43:05] [PASSED] DSI
[10:43:05] [PASSED] DPI
[10:43:05] [PASSED] Writeback
[10:43:05] [PASSED] SPI
[10:43:05] [PASSED] USB
[10:43:05] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[10:43:05] ======== drm_test_drm_connector_dynamic_init_name =========
[10:43:05] [PASSED] Unknown
[10:43:05] [PASSED] VGA
[10:43:05] [PASSED] DVI-I
[10:43:05] [PASSED] DVI-D
[10:43:05] [PASSED] DVI-A
[10:43:05] [PASSED] Composite
[10:43:05] [PASSED] SVIDEO
[10:43:05] [PASSED] LVDS
[10:43:05] [PASSED] Component
[10:43:05] [PASSED] DIN
[10:43:05] [PASSED] DP
[10:43:05] [PASSED] HDMI-A
[10:43:05] [PASSED] HDMI-B
[10:43:05] [PASSED] TV
[10:43:05] [PASSED] eDP
[10:43:05] [PASSED] Virtual
[10:43:05] [PASSED] DSI
[10:43:05] [PASSED] DPI
[10:43:05] [PASSED] Writeback
[10:43:05] [PASSED] SPI
[10:43:05] [PASSED] USB
[10:43:05] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[10:43:05] =========== [PASSED] drm_connector_dynamic_init ============
[10:43:05] ==== drm_connector_dynamic_register_early (4 subtests) =====
[10:43:05] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[10:43:05] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[10:43:05] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[10:43:05] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[10:43:05] ====== [PASSED] drm_connector_dynamic_register_early =======
[10:43:05] ======= drm_connector_dynamic_register (7 subtests) ========
[10:43:05] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[10:43:05] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[10:43:05] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[10:43:05] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[10:43:05] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[10:43:05] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[10:43:05] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[10:43:05] ========= [PASSED] drm_connector_dynamic_register ==========
[10:43:05] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[10:43:05] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[10:43:05] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[10:43:05] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[10:43:05] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[10:43:05] ========== drm_test_get_tv_mode_from_name_valid ===========
[10:43:05] [PASSED] NTSC
[10:43:05] [PASSED] NTSC-443
[10:43:05] [PASSED] NTSC-J
[10:43:05] [PASSED] PAL
[10:43:05] [PASSED] PAL-M
[10:43:05] [PASSED] PAL-N
[10:43:05] [PASSED] SECAM
[10:43:05] [PASSED] Mono
[10:43:05] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[10:43:05] [PASSED] drm_test_get_tv_mode_from_name_truncated
[10:43:05] ============ [PASSED] drm_get_tv_mode_from_name ============
[10:43:05] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[10:43:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[10:43:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[10:43:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[10:43:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[10:43:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[10:43:05] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[10:43:05] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[10:43:05] [PASSED] VIC 96
[10:43:05] [PASSED] VIC 97
[10:43:05] [PASSED] VIC 101
[10:43:05] [PASSED] VIC 102
[10:43:05] [PASSED] VIC 106
[10:43:05] [PASSED] VIC 107
[10:43:05] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[10:43:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[10:43:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[10:43:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[10:43:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[10:43:05] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[10:43:05] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[10:43:05] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[10:43:05] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[10:43:05] [PASSED] Automatic
[10:43:05] [PASSED] Full
[10:43:05] [PASSED] Limited 16:235
[10:43:05] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[10:43:05] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[10:43:05] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[10:43:05] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[10:43:05] === drm_test_drm_hdmi_connector_get_output_format_name ====
[10:43:05] [PASSED] RGB
[10:43:05] [PASSED] YUV 4:2:0
[10:43:05] [PASSED] YUV 4:2:2
[10:43:05] [PASSED] YUV 4:4:4
[10:43:05] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[10:43:05] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[10:43:05] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[10:43:05] ============= drm_damage_helper (21 subtests) ==============
[10:43:05] [PASSED] drm_test_damage_iter_no_damage
[10:43:05] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[10:43:05] [PASSED] drm_test_damage_iter_no_damage_src_moved
[10:43:05] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[10:43:05] [PASSED] drm_test_damage_iter_no_damage_not_visible
[10:43:05] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[10:43:05] [PASSED] drm_test_damage_iter_no_damage_no_fb
[10:43:05] [PASSED] drm_test_damage_iter_simple_damage
[10:43:05] [PASSED] drm_test_damage_iter_single_damage
[10:43:05] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[10:43:05] [PASSED] drm_test_damage_iter_single_damage_outside_src
[10:43:05] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[10:43:05] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[10:43:05] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[10:43:05] [PASSED] drm_test_damage_iter_single_damage_src_moved
[10:43:05] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[10:43:05] [PASSED] drm_test_damage_iter_damage
[10:43:05] [PASSED] drm_test_damage_iter_damage_one_intersect
[10:43:05] [PASSED] drm_test_damage_iter_damage_one_outside
[10:43:05] [PASSED] drm_test_damage_iter_damage_src_moved
[10:43:05] [PASSED] drm_test_damage_iter_damage_not_visible
[10:43:05] ================ [PASSED] drm_damage_helper ================
[10:43:05] ============== drm_dp_mst_helper (3 subtests) ==============
[10:43:05] ============== drm_test_dp_mst_calc_pbn_mode ==============
[10:43:05] [PASSED] Clock 154000 BPP 30 DSC disabled
[10:43:05] [PASSED] Clock 234000 BPP 30 DSC disabled
[10:43:05] [PASSED] Clock 297000 BPP 24 DSC disabled
[10:43:05] [PASSED] Clock 332880 BPP 24 DSC enabled
[10:43:05] [PASSED] Clock 324540 BPP 24 DSC enabled
[10:43:05] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[10:43:05] ============== drm_test_dp_mst_calc_pbn_div ===============
[10:43:05] [PASSED] Link rate 2000000 lane count 4
[10:43:05] [PASSED] Link rate 2000000 lane count 2
[10:43:05] [PASSED] Link rate 2000000 lane count 1
[10:43:05] [PASSED] Link rate 1350000 lane count 4
[10:43:05] [PASSED] Link rate 1350000 lane count 2
[10:43:05] [PASSED] Link rate 1350000 lane count 1
[10:43:05] [PASSED] Link rate 1000000 lane count 4
[10:43:05] [PASSED] Link rate 1000000 lane count 2
[10:43:05] [PASSED] Link rate 1000000 lane count 1
[10:43:05] [PASSED] Link rate 810000 lane count 4
[10:43:05] [PASSED] Link rate 810000 lane count 2
[10:43:05] [PASSED] Link rate 810000 lane count 1
[10:43:05] [PASSED] Link rate 540000 lane count 4
[10:43:05] [PASSED] Link rate 540000 lane count 2
[10:43:05] [PASSED] Link rate 540000 lane count 1
[10:43:05] [PASSED] Link rate 270000 lane count 4
[10:43:05] [PASSED] Link rate 270000 lane count 2
[10:43:05] [PASSED] Link rate 270000 lane count 1
[10:43:05] [PASSED] Link rate 162000 lane count 4
[10:43:05] [PASSED] Link rate 162000 lane count 2
[10:43:05] [PASSED] Link rate 162000 lane count 1
[10:43:05] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[10:43:05] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[10:43:05] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[10:43:05] [PASSED] DP_POWER_UP_PHY with port number
[10:43:05] [PASSED] DP_POWER_DOWN_PHY with port number
[10:43:05] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[10:43:05] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[10:43:05] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[10:43:05] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[10:43:05] [PASSED] DP_QUERY_PAYLOAD with port number
[10:43:05] [PASSED] DP_QUERY_PAYLOAD with VCPI
[10:43:05] [PASSED] DP_REMOTE_DPCD_READ with port number
[10:43:05] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[10:43:05] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[10:43:05] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[10:43:05] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[10:43:05] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[10:43:05] [PASSED] DP_REMOTE_I2C_READ with port number
[10:43:05] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[10:43:05] [PASSED] DP_REMOTE_I2C_READ with transactions array
[10:43:05] [PASSED] DP_REMOTE_I2C_WRITE with port number
[10:43:05] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[10:43:05] [PASSED] DP_REMOTE_I2C_WRITE with data array
[10:43:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[10:43:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[10:43:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[10:43:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[10:43:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[10:43:05] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[10:43:05] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[10:43:05] ================ [PASSED] drm_dp_mst_helper ================
[10:43:05] ================== drm_exec (7 subtests) ===================
[10:43:05] [PASSED] sanitycheck
[10:43:05] [PASSED] test_lock
[10:43:05] [PASSED] test_lock_unlock
[10:43:05] [PASSED] test_duplicates
[10:43:05] [PASSED] test_prepare
[10:43:05] [PASSED] test_prepare_array
[10:43:05] [PASSED] test_multiple_loops
[10:43:05] ==================== [PASSED] drm_exec =====================
[10:43:05] =========== drm_format_helper_test (17 subtests) ===========
[10:43:05] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[10:43:05] [PASSED] single_pixel_source_buffer
[10:43:05] [PASSED] single_pixel_clip_rectangle
[10:43:05] [PASSED] well_known_colors
[10:43:05] [PASSED] destination_pitch
[10:43:05] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[10:43:05] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[10:43:05] [PASSED] single_pixel_source_buffer
[10:43:05] [PASSED] single_pixel_clip_rectangle
[10:43:05] [PASSED] well_known_colors
[10:43:05] [PASSED] destination_pitch
[10:43:05] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[10:43:05] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[10:43:05] [PASSED] single_pixel_source_buffer
[10:43:05] [PASSED] single_pixel_clip_rectangle
[10:43:05] [PASSED] well_known_colors
[10:43:05] [PASSED] destination_pitch
[10:43:05] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[10:43:05] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[10:43:05] [PASSED] single_pixel_source_buffer
[10:43:05] [PASSED] single_pixel_clip_rectangle
[10:43:05] [PASSED] well_known_colors
[10:43:05] [PASSED] destination_pitch
[10:43:05] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[10:43:05] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[10:43:05] [PASSED] single_pixel_source_buffer
[10:43:05] [PASSED] single_pixel_clip_rectangle
[10:43:05] [PASSED] well_known_colors
[10:43:05] [PASSED] destination_pitch
[10:43:05] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[10:43:05] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[10:43:05] [PASSED] single_pixel_source_buffer
[10:43:05] [PASSED] single_pixel_clip_rectangle
[10:43:05] [PASSED] well_known_colors
[10:43:05] [PASSED] destination_pitch
[10:43:05] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[10:43:05] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[10:43:05] [PASSED] single_pixel_source_buffer
[10:43:05] [PASSED] single_pixel_clip_rectangle
[10:43:05] [PASSED] well_known_colors
[10:43:05] [PASSED] destination_pitch
[10:43:05] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[10:43:05] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[10:43:05] [PASSED] single_pixel_source_buffer
[10:43:05] [PASSED] single_pixel_clip_rectangle
[10:43:05] [PASSED] well_known_colors
[10:43:05] [PASSED] destination_pitch
[10:43:05] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[10:43:05] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[10:43:05] [PASSED] single_pixel_source_buffer
[10:43:05] [PASSED] single_pixel_clip_rectangle
[10:43:05] [PASSED] well_known_colors
[10:43:05] [PASSED] destination_pitch
[10:43:05] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[10:43:05] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[10:43:05] [PASSED] single_pixel_source_buffer
[10:43:05] [PASSED] single_pixel_clip_rectangle
[10:43:05] [PASSED] well_known_colors
[10:43:05] [PASSED] destination_pitch
[10:43:05] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[10:43:05] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[10:43:05] [PASSED] single_pixel_source_buffer
[10:43:05] [PASSED] single_pixel_clip_rectangle
[10:43:05] [PASSED] well_known_colors
[10:43:05] [PASSED] destination_pitch
[10:43:05] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[10:43:05] ============== drm_test_fb_xrgb8888_to_mono ===============
[10:43:05] [PASSED] single_pixel_source_buffer
[10:43:05] [PASSED] single_pixel_clip_rectangle
[10:43:05] [PASSED] well_known_colors
[10:43:05] [PASSED] destination_pitch
[10:43:05] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[10:43:05] ==================== drm_test_fb_swab =====================
[10:43:05] [PASSED] single_pixel_source_buffer
[10:43:05] [PASSED] single_pixel_clip_rectangle
[10:43:05] [PASSED] well_known_colors
[10:43:05] [PASSED] destination_pitch
[10:43:05] ================ [PASSED] drm_test_fb_swab =================
[10:43:05] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[10:43:05] [PASSED] single_pixel_source_buffer
[10:43:05] [PASSED] single_pixel_clip_rectangle
[10:43:05] [PASSED] well_known_colors
[10:43:05] [PASSED] destination_pitch
[10:43:05] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[10:43:05] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[10:43:05] [PASSED] single_pixel_source_buffer
[10:43:05] [PASSED] single_pixel_clip_rectangle
[10:43:05] [PASSED] well_known_colors
[10:43:05] [PASSED] destination_pitch
[10:43:05] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[10:43:05] ================= drm_test_fb_clip_offset =================
[10:43:05] [PASSED] pass through
[10:43:05] [PASSED] horizontal offset
[10:43:05] [PASSED] vertical offset
[10:43:05] [PASSED] horizontal and vertical offset
[10:43:05] [PASSED] horizontal offset (custom pitch)
[10:43:05] [PASSED] vertical offset (custom pitch)
[10:43:05] [PASSED] horizontal and vertical offset (custom pitch)
[10:43:05] ============= [PASSED] drm_test_fb_clip_offset =============
[10:43:05] =================== drm_test_fb_memcpy ====================
[10:43:05] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[10:43:05] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[10:43:05] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[10:43:05] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[10:43:05] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[10:43:05] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[10:43:05] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[10:43:05] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[10:43:05] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[10:43:05] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[10:43:05] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[10:43:05] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[10:43:05] =============== [PASSED] drm_test_fb_memcpy ================
[10:43:05] ============= [PASSED] drm_format_helper_test ==============
[10:43:05] ================= drm_format (18 subtests) =================
[10:43:05] [PASSED] drm_test_format_block_width_invalid
[10:43:05] [PASSED] drm_test_format_block_width_one_plane
[10:43:05] [PASSED] drm_test_format_block_width_two_plane
[10:43:05] [PASSED] drm_test_format_block_width_three_plane
[10:43:05] [PASSED] drm_test_format_block_width_tiled
[10:43:05] [PASSED] drm_test_format_block_height_invalid
[10:43:05] [PASSED] drm_test_format_block_height_one_plane
[10:43:05] [PASSED] drm_test_format_block_height_two_plane
[10:43:05] [PASSED] drm_test_format_block_height_three_plane
[10:43:05] [PASSED] drm_test_format_block_height_tiled
[10:43:05] [PASSED] drm_test_format_min_pitch_invalid
[10:43:05] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[10:43:05] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[10:43:05] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[10:43:05] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[10:43:05] [PASSED] drm_test_format_min_pitch_two_plane
[10:43:05] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[10:43:05] [PASSED] drm_test_format_min_pitch_tiled
[10:43:05] =================== [PASSED] drm_format ====================
[10:43:05] ============== drm_framebuffer (10 subtests) ===============
[10:43:05] ========== drm_test_framebuffer_check_src_coords ==========
[10:43:05] [PASSED] Success: source fits into fb
[10:43:05] [PASSED] Fail: overflowing fb with x-axis coordinate
[10:43:05] [PASSED] Fail: overflowing fb with y-axis coordinate
[10:43:05] [PASSED] Fail: overflowing fb with source width
[10:43:05] [PASSED] Fail: overflowing fb with source height
[10:43:05] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[10:43:05] [PASSED] drm_test_framebuffer_cleanup
[10:43:05] =============== drm_test_framebuffer_create ===============
[10:43:05] [PASSED] ABGR8888 normal sizes
[10:43:05] [PASSED] ABGR8888 max sizes
[10:43:05] [PASSED] ABGR8888 pitch greater than min required
[10:43:05] [PASSED] ABGR8888 pitch less than min required
[10:43:05] [PASSED] ABGR8888 Invalid width
[10:43:05] [PASSED] ABGR8888 Invalid buffer handle
[10:43:05] [PASSED] No pixel format
[10:43:05] [PASSED] ABGR8888 Width 0
[10:43:05] [PASSED] ABGR8888 Height 0
[10:43:05] [PASSED] ABGR8888 Out of bound height * pitch combination
[10:43:05] [PASSED] ABGR8888 Large buffer offset
[10:43:05] [PASSED] ABGR8888 Buffer offset for inexistent plane
[10:43:05] [PASSED] ABGR8888 Invalid flag
[10:43:05] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[10:43:05] [PASSED] ABGR8888 Valid buffer modifier
[10:43:05] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[10:43:05] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[10:43:05] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[10:43:05] [PASSED] NV12 Normal sizes
[10:43:05] [PASSED] NV12 Max sizes
[10:43:05] [PASSED] NV12 Invalid pitch
[10:43:05] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[10:43:05] [PASSED] NV12 different modifier per-plane
[10:43:05] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[10:43:05] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[10:43:05] [PASSED] NV12 Modifier for inexistent plane
[10:43:05] [PASSED] NV12 Handle for inexistent plane
[10:43:05] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[10:43:05] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[10:43:05] [PASSED] YVU420 Normal sizes
[10:43:05] [PASSED] YVU420 Max sizes
[10:43:05] [PASSED] YVU420 Invalid pitch
[10:43:05] [PASSED] YVU420 Different pitches
[10:43:05] [PASSED] YVU420 Different buffer offsets/pitches
[10:43:05] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[10:43:05] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[10:43:05] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[10:43:05] [PASSED] YVU420 Valid modifier
[10:43:05] [PASSED] YVU420 Different modifiers per plane
[10:43:05] [PASSED] YVU420 Modifier for inexistent plane
[10:43:05] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[10:43:05] [PASSED] X0L2 Normal sizes
[10:43:05] [PASSED] X0L2 Max sizes
[10:43:05] [PASSED] X0L2 Invalid pitch
[10:43:05] [PASSED] X0L2 Pitch greater than minimum required
[10:43:05] [PASSED] X0L2 Handle for inexistent plane
[10:43:05] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[10:43:05] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[10:43:05] [PASSED] X0L2 Valid modifier
[10:43:05] [PASSED] X0L2 Modifier for inexistent plane
[10:43:05] =========== [PASSED] drm_test_framebuffer_create ===========
[10:43:05] [PASSED] drm_test_framebuffer_free
[10:43:05] [PASSED] drm_test_framebuffer_init
[10:43:05] [PASSED] drm_test_framebuffer_init_bad_format
[10:43:05] [PASSED] drm_test_framebuffer_init_dev_mismatch
[10:43:05] [PASSED] drm_test_framebuffer_lookup
[10:43:05] [PASSED] drm_test_framebuffer_lookup_inexistent
[10:43:05] [PASSED] drm_test_framebuffer_modifiers_not_supported
[10:43:05] ================= [PASSED] drm_framebuffer =================
[10:43:05] ================ drm_gem_shmem (8 subtests) ================
[10:43:05] [PASSED] drm_gem_shmem_test_obj_create
[10:43:05] [PASSED] drm_gem_shmem_test_obj_create_private
[10:43:05] [PASSED] drm_gem_shmem_test_pin_pages
[10:43:05] [PASSED] drm_gem_shmem_test_vmap
[10:43:05] [PASSED] drm_gem_shmem_test_get_pages_sgt
[10:43:05] [PASSED] drm_gem_shmem_test_get_sg_table
[10:43:05] [PASSED] drm_gem_shmem_test_madvise
[10:43:05] [PASSED] drm_gem_shmem_test_purge
[10:43:05] ================== [PASSED] drm_gem_shmem ==================
[10:43:05] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[10:43:05] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[10:43:05] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[10:43:05] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[10:43:05] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[10:43:05] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[10:43:05] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[10:43:05] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[10:43:05] [PASSED] Automatic
[10:43:05] [PASSED] Full
[10:43:05] [PASSED] Limited 16:235
[10:43:05] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[10:43:05] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[10:43:05] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[10:43:05] [PASSED] drm_test_check_disable_connector
[10:43:05] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[10:43:05] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[10:43:05] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[10:43:05] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[10:43:05] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[10:43:05] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[10:43:05] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[10:43:05] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[10:43:05] [PASSED] drm_test_check_output_bpc_dvi
[10:43:05] [PASSED] drm_test_check_output_bpc_format_vic_1
[10:43:05] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[10:43:05] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[10:43:05] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[10:43:05] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[10:43:05] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[10:43:05] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[10:43:05] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[10:43:05] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[10:43:05] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[10:43:05] [PASSED] drm_test_check_broadcast_rgb_value
[10:43:05] [PASSED] drm_test_check_bpc_8_value
[10:43:05] [PASSED] drm_test_check_bpc_10_value
[10:43:05] [PASSED] drm_test_check_bpc_12_value
[10:43:05] [PASSED] drm_test_check_format_value
[10:43:05] [PASSED] drm_test_check_tmds_char_value
[10:43:05] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[10:43:05] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[10:43:05] [PASSED] drm_test_check_mode_valid
[10:43:05] [PASSED] drm_test_check_mode_valid_reject
[10:43:05] [PASSED] drm_test_check_mode_valid_reject_rate
[10:43:05] [PASSED] drm_test_check_mode_valid_reject_max_clock
[10:43:05] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[10:43:05] ================= drm_managed (2 subtests) =================
[10:43:05] [PASSED] drm_test_managed_release_action
[10:43:05] [PASSED] drm_test_managed_run_action
[10:43:05] =================== [PASSED] drm_managed ===================
[10:43:05] =================== drm_mm (6 subtests) ====================
[10:43:05] [PASSED] drm_test_mm_init
[10:43:05] [PASSED] drm_test_mm_debug
[10:43:05] [PASSED] drm_test_mm_align32
[10:43:05] [PASSED] drm_test_mm_align64
[10:43:05] [PASSED] drm_test_mm_lowest
[10:43:05] [PASSED] drm_test_mm_highest
[10:43:05] ===================== [PASSED] drm_mm ======================
[10:43:05] ============= drm_modes_analog_tv (5 subtests) =============
[10:43:05] [PASSED] drm_test_modes_analog_tv_mono_576i
[10:43:05] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[10:43:05] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[10:43:05] [PASSED] drm_test_modes_analog_tv_pal_576i
[10:43:05] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[10:43:05] =============== [PASSED] drm_modes_analog_tv ===============
[10:43:05] ============== drm_plane_helper (2 subtests) ===============
[10:43:05] =============== drm_test_check_plane_state ================
[10:43:05] [PASSED] clipping_simple
[10:43:05] [PASSED] clipping_rotate_reflect
[10:43:05] [PASSED] positioning_simple
[10:43:05] [PASSED] upscaling
[10:43:05] [PASSED] downscaling
[10:43:05] [PASSED] rounding1
[10:43:05] [PASSED] rounding2
[10:43:05] [PASSED] rounding3
[10:43:05] [PASSED] rounding4
[10:43:05] =========== [PASSED] drm_test_check_plane_state ============
[10:43:05] =========== drm_test_check_invalid_plane_state ============
[10:43:05] [PASSED] positioning_invalid
[10:43:05] [PASSED] upscaling_invalid
[10:43:05] [PASSED] downscaling_invalid
[10:43:05] ======= [PASSED] drm_test_check_invalid_plane_state ========
[10:43:05] ================ [PASSED] drm_plane_helper =================
[10:43:05] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[10:43:05] ====== drm_test_connector_helper_tv_get_modes_check =======
[10:43:05] [PASSED] None
[10:43:05] [PASSED] PAL
[10:43:05] [PASSED] NTSC
[10:43:05] [PASSED] Both, NTSC Default
[10:43:05] [PASSED] Both, PAL Default
[10:43:05] [PASSED] Both, NTSC Default, with PAL on command-line
[10:43:05] [PASSED] Both, PAL Default, with NTSC on command-line
[10:43:05] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[10:43:05] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[10:43:05] ================== drm_rect (9 subtests) ===================
[10:43:05] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[10:43:05] [PASSED] drm_test_rect_clip_scaled_not_clipped
[10:43:05] [PASSED] drm_test_rect_clip_scaled_clipped
[10:43:05] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[10:43:05] ================= drm_test_rect_intersect =================
[10:43:05] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[10:43:05] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[10:43:05] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[10:43:05] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[10:43:05] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[10:43:05] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[10:43:05] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[10:43:05] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[10:43:05] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[10:43:05] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[10:43:05] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[10:43:05] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[10:43:05] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[10:43:05] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[10:43:05] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[10:43:05] ============= [PASSED] drm_test_rect_intersect =============
[10:43:05] ================ drm_test_rect_calc_hscale ================
[10:43:05] [PASSED] normal use
[10:43:05] [PASSED] out of max range
[10:43:05] [PASSED] out of min range
[10:43:05] [PASSED] zero dst
[10:43:05] [PASSED] negative src
[10:43:05] [PASSED] negative dst
[10:43:05] ============ [PASSED] drm_test_rect_calc_hscale ============
[10:43:05] ================ drm_test_rect_calc_vscale ================
[10:43:05] [PASSED] normal use
[10:43:05] [PASSED] out of max range
[10:43:05] [PASSED] out of min range
[10:43:05] [PASSED] zero dst
[10:43:05] [PASSED] negative src
[10:43:05] [PASSED] negative dst
[10:43:05] ============ [PASSED] drm_test_rect_calc_vscale ============
[10:43:05] ================== drm_test_rect_rotate ===================
[10:43:05] [PASSED] reflect-x
[10:43:05] [PASSED] reflect-y
[10:43:05] [PASSED] rotate-0
[10:43:05] [PASSED] rotate-90
[10:43:05] [PASSED] rotate-180
[10:43:05] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[10:43:05] ============== [PASSED] drm_test_rect_rotate ===============
[10:43:05] ================ drm_test_rect_rotate_inv =================
[10:43:05] [PASSED] reflect-x
[10:43:05] [PASSED] reflect-y
[10:43:05] [PASSED] rotate-0
[10:43:05] [PASSED] rotate-90
[10:43:05] [PASSED] rotate-180
[10:43:05] [PASSED] rotate-270
[10:43:05] ============ [PASSED] drm_test_rect_rotate_inv =============
[10:43:05] ==================== [PASSED] drm_rect =====================
[10:43:05] ============ drm_sysfb_modeset_test (1 subtest) ============
[10:43:05] ============ drm_test_sysfb_build_fourcc_list =============
[10:43:05] [PASSED] no native formats
[10:43:05] [PASSED] XRGB8888 as native format
[10:43:05] [PASSED] remove duplicates
[10:43:05] [PASSED] convert alpha formats
[10:43:05] [PASSED] random formats
[10:43:05] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[10:43:05] ============= [PASSED] drm_sysfb_modeset_test ==============
[10:43:05] ============================================================
[10:43:05] Testing complete. Ran 616 tests: passed: 616
[10:43:05] Elapsed time: 23.149s total, 1.667s configuring, 21.315s building, 0.144s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[10:43:05] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:43:07] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[10:43:14] Starting KUnit Kernel (1/1)...
[10:43:14] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:43:14] ================= ttm_device (5 subtests) ==================
[10:43:14] [PASSED] ttm_device_init_basic
[10:43:14] [PASSED] ttm_device_init_multiple
[10:43:14] [PASSED] ttm_device_fini_basic
[10:43:14] [PASSED] ttm_device_init_no_vma_man
[10:43:14] ================== ttm_device_init_pools ==================
[10:43:14] [PASSED] No DMA allocations, no DMA32 required
[10:43:14] [PASSED] DMA allocations, DMA32 required
[10:43:14] [PASSED] No DMA allocations, DMA32 required
[10:43:14] [PASSED] DMA allocations, no DMA32 required
[10:43:14] ============== [PASSED] ttm_device_init_pools ==============
[10:43:14] =================== [PASSED] ttm_device ====================
[10:43:14] ================== ttm_pool (8 subtests) ===================
[10:43:14] ================== ttm_pool_alloc_basic ===================
[10:43:14] [PASSED] One page
[10:43:14] [PASSED] More than one page
[10:43:14] [PASSED] Above the allocation limit
[10:43:14] [PASSED] One page, with coherent DMA mappings enabled
[10:43:14] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[10:43:14] ============== [PASSED] ttm_pool_alloc_basic ===============
[10:43:14] ============== ttm_pool_alloc_basic_dma_addr ==============
[10:43:14] [PASSED] One page
[10:43:14] [PASSED] More than one page
[10:43:14] [PASSED] Above the allocation limit
[10:43:14] [PASSED] One page, with coherent DMA mappings enabled
[10:43:14] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[10:43:14] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[10:43:14] [PASSED] ttm_pool_alloc_order_caching_match
[10:43:14] [PASSED] ttm_pool_alloc_caching_mismatch
[10:43:14] [PASSED] ttm_pool_alloc_order_mismatch
[10:43:14] [PASSED] ttm_pool_free_dma_alloc
[10:43:14] [PASSED] ttm_pool_free_no_dma_alloc
[10:43:14] [PASSED] ttm_pool_fini_basic
[10:43:14] ==================== [PASSED] ttm_pool =====================
[10:43:14] ================ ttm_resource (8 subtests) =================
[10:43:14] ================= ttm_resource_init_basic =================
[10:43:14] [PASSED] Init resource in TTM_PL_SYSTEM
[10:43:14] [PASSED] Init resource in TTM_PL_VRAM
[10:43:14] [PASSED] Init resource in a private placement
[10:43:14] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[10:43:14] ============= [PASSED] ttm_resource_init_basic =============
[10:43:14] [PASSED] ttm_resource_init_pinned
[10:43:14] [PASSED] ttm_resource_fini_basic
[10:43:14] [PASSED] ttm_resource_manager_init_basic
[10:43:14] [PASSED] ttm_resource_manager_usage_basic
[10:43:14] [PASSED] ttm_resource_manager_set_used_basic
[10:43:14] [PASSED] ttm_sys_man_alloc_basic
[10:43:14] [PASSED] ttm_sys_man_free_basic
[10:43:14] ================== [PASSED] ttm_resource ===================
[10:43:14] =================== ttm_tt (15 subtests) ===================
[10:43:14] ==================== ttm_tt_init_basic ====================
[10:43:14] [PASSED] Page-aligned size
[10:43:14] [PASSED] Extra pages requested
[10:43:14] ================ [PASSED] ttm_tt_init_basic ================
[10:43:14] [PASSED] ttm_tt_init_misaligned
[10:43:14] [PASSED] ttm_tt_fini_basic
[10:43:14] [PASSED] ttm_tt_fini_sg
[10:43:14] [PASSED] ttm_tt_fini_shmem
[10:43:14] [PASSED] ttm_tt_create_basic
[10:43:14] [PASSED] ttm_tt_create_invalid_bo_type
[10:43:14] [PASSED] ttm_tt_create_ttm_exists
[10:43:14] [PASSED] ttm_tt_create_failed
[10:43:14] [PASSED] ttm_tt_destroy_basic
[10:43:14] [PASSED] ttm_tt_populate_null_ttm
[10:43:14] [PASSED] ttm_tt_populate_populated_ttm
[10:43:14] [PASSED] ttm_tt_unpopulate_basic
[10:43:14] [PASSED] ttm_tt_unpopulate_empty_ttm
[10:43:14] [PASSED] ttm_tt_swapin_basic
[10:43:14] ===================== [PASSED] ttm_tt ======================
[10:43:14] =================== ttm_bo (14 subtests) ===================
[10:43:14] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[10:43:14] [PASSED] Cannot be interrupted and sleeps
[10:43:14] [PASSED] Cannot be interrupted, locks straight away
[10:43:14] [PASSED] Can be interrupted, sleeps
[10:43:14] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[10:43:14] [PASSED] ttm_bo_reserve_locked_no_sleep
[10:43:14] [PASSED] ttm_bo_reserve_no_wait_ticket
[10:43:15] [PASSED] ttm_bo_reserve_double_resv
[10:43:15] [PASSED] ttm_bo_reserve_interrupted
[10:43:15] [PASSED] ttm_bo_reserve_deadlock
[10:43:15] [PASSED] ttm_bo_unreserve_basic
[10:43:15] [PASSED] ttm_bo_unreserve_pinned
[10:43:15] [PASSED] ttm_bo_unreserve_bulk
[10:43:15] [PASSED] ttm_bo_put_basic
[10:43:15] [PASSED] ttm_bo_put_shared_resv
[10:43:15] [PASSED] ttm_bo_pin_basic
[10:43:15] [PASSED] ttm_bo_pin_unpin_resource
[10:43:15] [PASSED] ttm_bo_multiple_pin_one_unpin
[10:43:15] ===================== [PASSED] ttm_bo ======================
[10:43:15] ============== ttm_bo_validate (21 subtests) ===============
[10:43:15] ============== ttm_bo_init_reserved_sys_man ===============
[10:43:15] [PASSED] Buffer object for userspace
[10:43:15] [PASSED] Kernel buffer object
[10:43:15] [PASSED] Shared buffer object
[10:43:15] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[10:43:15] ============== ttm_bo_init_reserved_mock_man ==============
[10:43:15] [PASSED] Buffer object for userspace
[10:43:15] [PASSED] Kernel buffer object
[10:43:15] [PASSED] Shared buffer object
[10:43:15] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[10:43:15] [PASSED] ttm_bo_init_reserved_resv
[10:43:15] ================== ttm_bo_validate_basic ==================
[10:43:15] [PASSED] Buffer object for userspace
[10:43:15] [PASSED] Kernel buffer object
[10:43:15] [PASSED] Shared buffer object
[10:43:15] ============== [PASSED] ttm_bo_validate_basic ==============
[10:43:15] [PASSED] ttm_bo_validate_invalid_placement
[10:43:15] ============= ttm_bo_validate_same_placement ==============
[10:43:15] [PASSED] System manager
[10:43:15] [PASSED] VRAM manager
[10:43:15] ========= [PASSED] ttm_bo_validate_same_placement ==========
[10:43:15] [PASSED] ttm_bo_validate_failed_alloc
[10:43:15] [PASSED] ttm_bo_validate_pinned
[10:43:15] [PASSED] ttm_bo_validate_busy_placement
[10:43:15] ================ ttm_bo_validate_multihop =================
[10:43:15] [PASSED] Buffer object for userspace
[10:43:15] [PASSED] Kernel buffer object
[10:43:15] [PASSED] Shared buffer object
[10:43:15] ============ [PASSED] ttm_bo_validate_multihop =============
[10:43:15] ========== ttm_bo_validate_no_placement_signaled ==========
[10:43:15] [PASSED] Buffer object in system domain, no page vector
[10:43:15] [PASSED] Buffer object in system domain with an existing page vector
[10:43:15] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[10:43:15] ======== ttm_bo_validate_no_placement_not_signaled ========
[10:43:15] [PASSED] Buffer object for userspace
[10:43:15] [PASSED] Kernel buffer object
[10:43:15] [PASSED] Shared buffer object
[10:43:15] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[10:43:15] [PASSED] ttm_bo_validate_move_fence_signaled
[10:43:15] ========= ttm_bo_validate_move_fence_not_signaled =========
[10:43:15] [PASSED] Waits for GPU
[10:43:15] [PASSED] Tries to lock straight away
[10:43:15] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[10:43:15] [PASSED] ttm_bo_validate_happy_evict
[10:43:15] [PASSED] ttm_bo_validate_all_pinned_evict
[10:43:15] [PASSED] ttm_bo_validate_allowed_only_evict
[10:43:15] [PASSED] ttm_bo_validate_deleted_evict
[10:43:15] [PASSED] ttm_bo_validate_busy_domain_evict
[10:43:15] [PASSED] ttm_bo_validate_evict_gutting
[10:43:15] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[10:43:15] ================= [PASSED] ttm_bo_validate =================
[10:43:15] ============================================================
[10:43:15] Testing complete. Ran 101 tests: passed: 101
[10:43:15] Elapsed time: 9.569s total, 1.609s configuring, 7.744s building, 0.186s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ CI.checksparse: warning for User readable error codes on atomic_ioctl failure
2025-07-30 10:16 [PATCH v2 0/4] User readable error codes on atomic_ioctl failure Arun R Murthy
` (4 preceding siblings ...)
2025-07-30 10:43 ` ✓ CI.KUnit: success for User readable error codes on atomic_ioctl failure Patchwork
@ 2025-07-30 10:58 ` Patchwork
2025-07-30 11:22 ` ✓ Xe.CI.BAT: success " Patchwork
2025-07-30 13:25 ` ✗ Xe.CI.Full: failure " Patchwork
7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-07-30 10:58 UTC (permalink / raw)
To: Arun R Murthy; +Cc: intel-xe
== Series Details ==
Series: User readable error codes on atomic_ioctl failure
URL : https://patchwork.freedesktop.org/series/152277/
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 54ccd087aec954ea34b880223a17e4579eecedbe
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
-
+drivers/gpu/drm/drm_drv.c:449:6: warning: context imbalance in 'drm_dev_enter' - different lock contexts for basic block
+drivers/gpu/drm/drm_drv.c: note: in included file (through include/linux/notifier.h, arch/x86/include/asm/uprobes.h, include/linux/uprobes.h, include/linux/mm_types.h, include/linux/mmzone.h, include/linux/gfp.h, ...):
+drivers/gpu/drm/drm_plane.c:213:24: warning: Using plain integer as NULL pointer
+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:2018:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2018:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2018:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2018:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2018:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2018:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2018:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2018:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2018:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2018:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2018:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2018:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2018:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2018:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2018:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2018:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2031:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2031:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2031:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_hdcp.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_hotplug.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_pps.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_psr.c: note: in included file:
+drivers/gpu/drm/i915/gt/intel_reset.c:1572:12: warning: context imbalance in '_intel_gt_reset_lock' - different lock contexts for basic block
+drivers/gpu/drm/i915/gt/intel_sseu.c:598:17: error: too long token expansion
+drivers/gpu/drm/i915/i915_active.c:1063:16: warning: context imbalance in '__i915_active_fence_set' - different lock contexts for basic block
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: error: incompatible types in comparison expression (different address spaces):
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: error: incompatible types in comparison expression (different address spaces):
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: expected struct list_head const *list
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: got struct list_head [noderef] __rcu *pos
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head [noderef] __rcu *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head [noderef] __rcu *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: warning: incorrect type in argument 1 (different address spaces)
+drivers/gpu/drm/i915/i915_irq.c:492:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:492:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:500:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:500:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:505:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:505:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:505:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:543:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:543:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:551:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:551:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:556:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:556:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:556:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:600:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:600:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:603:15: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:603:15: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:607:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:607:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:614:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:614:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:614:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:614:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/intel_uncore.c:1927:1: warning: context imbalance in 'fwtable_read8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1928:1: warning: context imbalance in 'fwtable_read16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1929:1: warning: context imbalance in 'fwtable_read32' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1930:1: warning: context imbalance in 'fwtable_read64' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1995:1: warning: context imbalance in 'gen6_write8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1996:1: warning: context imbalance in 'gen6_write16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:1997:1: warning: context imbalance in 'gen6_write32' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2017:1: warning: context imbalance in 'fwtable_write8' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2018:1: warning: context imbalance in 'fwtable_write16' - unexpected unlock
+drivers/gpu/drm/i915/intel_uncore.c:2019:1: warning: context imbalance in 'fwtable_write32' - unexpected unlock
+drivers/gpu/drm/i915/intel_wakeref.c:145:19: warning: context imbalance in 'wakeref_auto_timeout' - unexpected unlock
+drivers/gpu/drm/ttm/ttm_bo.c:1199:31: warning: symbol 'ttm_swap_ops' was not declared. Should it be static?
+drivers/gpu/drm/ttm/ttm_bo_util.c:329:38: expected void *virtual
+drivers/gpu/drm/ttm/ttm_bo_util.c:329:38: got void [noderef] __iomem *
+drivers/gpu/drm/ttm/ttm_bo_util.c:329:38: warning: incorrect type in assignment (different address spaces)
+drivers/gpu/drm/ttm/ttm_bo_util.c:332:38: expected void *virtual
+drivers/gpu/drm/ttm/ttm_bo_util.c:332:38: got void [noderef] __iomem *
+drivers/gpu/drm/ttm/ttm_bo_util.c:332:38: warning: incorrect type in assignment (different address spaces)
+drivers/gpu/drm/ttm/ttm_bo_util.c:335:38: expected void *virtual
+drivers/gpu/drm/ttm/ttm_bo_util.c:335:38: got void [noderef] __iomem *
+drivers/gpu/drm/ttm/ttm_bo_util.c:335:38: warning: incorrect type in assignment (different address spaces)
+drivers/gpu/drm/ttm/ttm_bo_util.c:467:28: expected void volatile [noderef] __iomem *addr
+drivers/gpu/drm/ttm/ttm_bo_util.c:467:28: got void *virtual
+drivers/gpu/drm/ttm/ttm_bo_util.c:467:28: warning: incorrect type in argument 1 (different address spaces)
+./include/linux/srcu.h:400:9: warning: context imbalance in 'drm_dev_exit' - unexpected unlock
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 16+ messages in thread
* RE: [PATCH v2 1/4] drm: Define user readable error codes for atomic ioctl
2025-07-30 10:16 ` [PATCH v2 1/4] drm: Define user readable error codes for atomic ioctl Arun R Murthy
@ 2025-07-30 11:22 ` Biju Das
2025-07-30 13:45 ` Murthy, Arun R
2025-07-31 11:32 ` Xaver Hugl
1 sibling, 1 reply; 16+ messages in thread
From: Biju Das @ 2025-07-30 11:22 UTC (permalink / raw)
To: Arun R Murthy, dri-devel@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org
Cc: Simona Vetter, Maarten Lankhorst, Jani Nikula, Rodrigo Vivi,
Joonas Lahtinen, naveen1.kumar@intel.com, xaver.hugl@kde.org,
uma.shankar@intel.com, harry.wentland@amd.com
Hi Arun,
> -----Original Message-----
> From: dri-devel <dri-devel-bounces@lists.freedesktop.org> On Behalf Of Arun R Murthy
> Sent: 30 July 2025 11:17
> Subject: [PATCH v2 1/4] drm: Define user readable error codes for atomic ioctl
>
> There can be multiple reasons for a failure in atomic_ioctl. Most often in these error conditions -
> EINVAL is returned. User/Compositor would have to blindly take a call on failure of this ioctl so as
> to use ALLOW_MODESET or any. It would be good if user/compositor gets a readable error code on failure
> so they can take proper corrections in the next commit.
> The struct drm_mode_atomic is being passed by the user/compositor which holds the properties for
> modeset/flip. Reusing the same struct for returning the error code in case of failure can save by
> creating a new uapi/interface for returning the error code.
> The element 'reserved' in the struct drm_mode_atomic is used for returning the user readable error
> code.Its a 64bit variable and should suffice 64 error codes that should be sufficient.
>
> Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
> ---
> include/uapi/drm/drm_mode.h | 40 ++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 40 insertions(+)
>
> diff --git a/include/uapi/drm/drm_mode.h b/include/uapi/drm/drm_mode.h index
> a122bea2559387576150236e3a88f99c24ad3138..87e8f623bfaaab09135be104db04996f0be4dcb4 100644
> --- a/include/uapi/drm/drm_mode.h
> +++ b/include/uapi/drm/drm_mode.h
> @@ -1157,6 +1157,46 @@ struct drm_mode_destroy_dumb {
> DRM_MODE_ATOMIC_NONBLOCK |\
> DRM_MODE_ATOMIC_ALLOW_MODESET)
>
> +/* atomic not set in the drm_file */
> +#define DRM_MODE_ATOMIC_CAP_NOT_ENABLED BIT(0)
> +/* atomic flag passed not in DRM_MODE_ATOMIC_FLAGS list */
> +#define DRM_MODE_ATOMIC_INVALID_FLAG BIT(1)
> +/* DRM_MODE_PAGE_FLIP_LEGACY not supported with atomic ioctl */
> +#define DRM_MODE_ATOMIC_PAGE_FLIP_ASYNC BIT(2)
> +/* flip event with atomic check only not supported */
> +#define DRM_MODE_ATOMIC_FLIP_EVENT_WITH_CHECKONLY BIT(3)
> +/* atomic property change requested need full crtc modeset */
> +#define DRM_MODE_ATOMIC_CRTC_NEED_FULL_MODESET BIT(4)
> +/* atomic property change requested has impact on all connected crtc */
> +#define DRM_MODE_ATOMIC_NEED_FULL_MODESET BIT(5)
> +/* async flip supported on only primary plane */
> +#define DRM_MODE_ATOMIC_ASYNC_NOT_PRIMARY BIT(6)
> +/* modifier not supported by async flip */
> +#define DRM_MODE_ATOMIC_ASYNC_MODIFIER_NOT_SUPPORTED BIT(7)
> +/* async flip with pipe joiner not allowed */
> +#define DRM_MODE_ATOMIC_ASYNC_PIPEJOINER_NOTALLOWED BIT(8)
For consistency, NOTALLOWED->NOT_ALLOWED ??
Cheers,
Biju
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ Xe.CI.BAT: success for User readable error codes on atomic_ioctl failure
2025-07-30 10:16 [PATCH v2 0/4] User readable error codes on atomic_ioctl failure Arun R Murthy
` (5 preceding siblings ...)
2025-07-30 10:58 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-07-30 11:22 ` Patchwork
2025-07-30 13:25 ` ✗ Xe.CI.Full: failure " Patchwork
7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-07-30 11:22 UTC (permalink / raw)
To: Arun R Murthy; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 956 bytes --]
== Series Details ==
Series: User readable error codes on atomic_ioctl failure
URL : https://patchwork.freedesktop.org/series/152277/
State : success
== Summary ==
CI Bug Log - changes from xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe_BAT -> xe-pw-152277v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 7)
------------------------------
Missing (1): bat-adlp-vm
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe -> xe-pw-152277v1
IGT_8478: 3e7c2bd685397f852853878aef4d9c1e4889a28b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe: 54ccd087aec954ea34b880223a17e4579eecedbe
xe-pw-152277v1: 152277v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/index.html
[-- Attachment #2: Type: text/html, Size: 1504 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v2 3/4] drm/atomic: Return user readable error in atomic_ioctl
2025-07-30 10:16 ` [PATCH v2 3/4] drm/atomic: Return user readable error in atomic_ioctl Arun R Murthy
@ 2025-07-30 13:14 ` Harry Wentland
2025-07-30 13:55 ` Murthy, Arun R
0 siblings, 1 reply; 16+ messages in thread
From: Harry Wentland @ 2025-07-30 13:14 UTC (permalink / raw)
To: Arun R Murthy, dri-devel, intel-gfx, intel-xe
Cc: Simona Vetter, Maarten Lankhorst, Jani Nikula, Rodrigo Vivi,
Joonas Lahtinen, naveen1.kumar, xaver.hugl, uma.shankar
On 2025-07-30 06:16, Arun R Murthy wrote:
> Add user readable error codes for failure cases in drm_atomic_ioctl() so
> that user can decode the error code and take corrective measurements.
>
Thanks for doing this work.
> @@ -1541,6 +1548,9 @@ int drm_mode_atomic_ioctl(struct drm_device *dev,
> ret = drm_atomic_commit(state);
> }
>
> + /* update the error code if any error to allow user handling it */
> + arg->reserved = state->error_code;
Once we do this we paint ourselves into a corner.
It's nice that we have this reserved field since it allows us to
extend the atomic ioctl without the need to define a new one.
When we discussed this at the Display Next Hackfest [1] we came
to the conclusion that we would want:
- an enum to show what is the issue
- a string that can be logged to display verbose information
about the failure
- an optional array of KMS object IDs participating in the failure
We could define these in a new struct
struct drm_mode_atomic2 {
__u64 failure_reason;
__u64 failure_string;
__u32 drm_object_ids[MAX_FAILURE_OBJECT_IDS]
__u64 reserved;
}
that we link to via the drm_mode_atomic->reserved field.
Your approach of flags, as opposed to an enum, would allow reporting
of multiple failures. Do we think drivers would ever make use of it?
Normally check short-circuits when a failure/limitation is hit.
Harry
[1] https://hackmd.io/f3bDn3kyRUalLn4LbMfCVQ#Commit-Failure-Feedback
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ Xe.CI.Full: failure for User readable error codes on atomic_ioctl failure
2025-07-30 10:16 [PATCH v2 0/4] User readable error codes on atomic_ioctl failure Arun R Murthy
` (6 preceding siblings ...)
2025-07-30 11:22 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-07-30 13:25 ` Patchwork
7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-07-30 13:25 UTC (permalink / raw)
To: Arun R Murthy; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 105927 bytes --]
== Series Details ==
Series: User readable error codes on atomic_ioctl failure
URL : https://patchwork.freedesktop.org/series/152277/
State : failure
== Summary ==
CI Bug Log - changes from xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe_FULL -> xe-pw-152277v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-152277v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-152277v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-152277v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic@atomic-invalid-params:
- shard-lnl: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-lnl-3/igt@kms_atomic@atomic-invalid-params.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-lnl-3/igt@kms_atomic@atomic-invalid-params.html
* igt@kms_atomic@atomic-invalid-params@pipe-a-hdmi-a-1:
- shard-adlp: [PASS][3] -> [FAIL][4] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-adlp-6/igt@kms_atomic@atomic-invalid-params@pipe-a-hdmi-a-1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-adlp-1/igt@kms_atomic@atomic-invalid-params@pipe-a-hdmi-a-1.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][5] +257 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-nonexisting-fb@ac-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][6] -> [FAIL][7] +868 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-463/igt@kms_flip@2x-nonexisting-fb@ac-hdmi-a6-dp4.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-433/igt@kms_flip@2x-nonexisting-fb@ac-hdmi-a6-dp4.html
* igt@kms_flip@bo-too-big@d-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][8] +292 other tests fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-434/igt@kms_flip@bo-too-big@d-dp4.html
* igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
- shard-bmg: [PASS][9] -> [FAIL][10] +421 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-7/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-2/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][11] +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane@plane-panning-bottom-right@pipe-a:
- shard-dg2-set2: [PASS][12] -> [SKIP][13] +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-466/igt@kms_plane@plane-panning-bottom-right@pipe-a.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-435/igt@kms_plane@plane-panning-bottom-right@pipe-a.html
* igt@kms_plane@plane-panning-top-left@pipe-b:
- shard-bmg: [PASS][14] -> [SKIP][15] +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-2/igt@kms_plane@plane-panning-top-left@pipe-b.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_plane@plane-panning-top-left@pipe-b.html
* igt@kms_setmode@basic:
- shard-dg2-set2: [PASS][16] -> [INCOMPLETE][17] +3 other tests incomplete
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-436/igt@kms_setmode@basic.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-464/igt@kms_setmode@basic.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][18] -> [INCOMPLETE][19] +2 other tests incomplete
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@kms_setmode@clone-exclusive-crtc.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-2/igt@kms_setmode@clone-exclusive-crtc.html
#### Warnings ####
* igt@kms_cursor_crc@cursor-rapid-movement-64x64:
- shard-bmg: [SKIP][20] ([Intel XE#4950]) -> [FAIL][21] +39 other tests fail
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-64x64.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-64x64.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-bmg: [SKIP][22] ([Intel XE#2316]) -> [FAIL][23] +1 other test fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][24] ([Intel XE#5390]) -> [FAIL][25] +37 other tests fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][26] ([Intel XE#2312]) -> [FAIL][27] +1 other test fail
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][28] ([Intel XE#4947]) -> [FAIL][29] +22 other tests fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_plane@plane-position-hole-dpms:
- shard-bmg: [SKIP][30] ([Intel XE#4950]) -> [SKIP][31] +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_plane@plane-position-hole-dpms.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@kms_plane@plane-position-hole-dpms.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2-set2: [FAIL][32] ([Intel XE#4741]) -> [FAIL][33]
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-434/igt@kms_pm_rpm@basic-pci-d3-state.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-436/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: [SKIP][34] ([Intel XE#1439] / [Intel XE#836]) -> [FAIL][35]
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: [SKIP][36] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [FAIL][37] +3 other tests fail
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-bmg: [SKIP][38] ([Intel XE#4962]) -> [FAIL][39] +2 other tests fail
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: [SKIP][40] ([Intel XE#1435]) -> [INCOMPLETE][41] +1 other test incomplete
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-8/igt@kms_setmode@basic-clone-single-crtc.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html
- shard-dg2-set2: [SKIP][42] ([Intel XE#455]) -> [INCOMPLETE][43] +1 other test incomplete
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-433/igt@kms_setmode@basic-clone-single-crtc.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-434/igt@kms_setmode@basic-clone-single-crtc.html
* igt@xe_pm@d3cold-i2c:
- shard-dg2-set2: [SKIP][44] ([Intel XE#5694]) -> [FAIL][45]
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-436/igt@xe_pm@d3cold-i2c.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-464/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: [SKIP][46] ([Intel XE#2284] / [Intel XE#366]) -> [FAIL][47] +7 other tests fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-463/igt@xe_pm@d3cold-mmap-vram.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-433/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][48] ([Intel XE#2284]) -> [FAIL][49]
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-466/igt@xe_pm@d3cold-mocs.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-466/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3hot-basic-exec:
- shard-bmg: [SKIP][50] ([Intel XE#4945]) -> [FAIL][51] +3 other tests fail
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@xe_pm@d3hot-basic-exec.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@xe_pm@d3hot-basic-exec.html
* igt@xe_pm@d3hot-i2c:
- shard-dg2-set2: [SKIP][52] ([Intel XE#5695]) -> [FAIL][53]
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-433/igt@xe_pm@d3hot-i2c.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-435/igt@xe_pm@d3hot-i2c.html
- shard-bmg: [SKIP][54] ([Intel XE#5695]) -> [FAIL][55]
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-1/igt@xe_pm@d3hot-i2c.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-7/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: [SKIP][56] ([Intel XE#2284]) -> [FAIL][57] +4 other tests fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-8/igt@xe_pm@s2idle-d3cold-basic-exec.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@xe_pm@s2idle-d3cold-basic-exec.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_pipe_stress@stress-xrgb8888-4tiled}:
- shard-bmg: [PASS][58] -> [FAIL][59]
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-2/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
- shard-dg2-set2: [PASS][60] -> [FAIL][61]
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-435/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-432/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
Known issues
------------
Here are the changes found in xe-pw-152277v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unplug-rescan:
- shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#4963])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-4/igt@core_hotunplug@unplug-rescan.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@core_hotunplug@unplug-rescan.html
* igt@fbdev@info:
- shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2134]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@fbdev@info.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@fbdev@info.html
* igt@kms_addfb_basic@size-max:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#4950]) +7 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_addfb_basic@size-max.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [PASS][67] -> [INCOMPLETE][68] ([Intel XE#4912]) +6 other tests incomplete
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@crc-atomic:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][69] ([Intel XE#4912])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-433/igt@kms_async_flips@crc-atomic.html
* igt@kms_async_flips@test-time-stamp:
- shard-dg2-set2: [PASS][70] -> [INCOMPLETE][71] ([Intel XE#4912]) +11 other tests incomplete
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-466/igt@kms_async_flips@test-time-stamp.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-466/igt@kms_async_flips@test-time-stamp.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#316])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-436/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#4947]) +12 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-180.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#1124]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: [PASS][76] -> [DMESG-FAIL][77] ([Intel XE#4543])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#367])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#787]) +167 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][80] -> [INCOMPLETE][81] ([Intel XE#3862]) +1 other test incomplete
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#2907]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#455] / [Intel XE#787]) +25 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][85] -> [INCOMPLETE][86] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: [PASS][87] -> [INCOMPLETE][88] ([Intel XE#3124])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][89] -> [DMESG-WARN][90] ([Intel XE#1727] / [Intel XE#3113])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#4416]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-466/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#373]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][93] ([Intel XE#1178]) +2 other tests fail
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][94] ([Intel XE#1178]) +2 other tests fail
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-434/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][95] ([Intel XE#1188])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-434/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [PASS][96] -> [SKIP][97] ([Intel XE#2291]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [PASS][98] -> [FAIL][99] ([Intel XE#1475])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][100] -> [SKIP][101] ([Intel XE#1340])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_flip@2x-blocking-wf_vblank@cd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][102] ([Intel XE#3149])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@kms_flip@2x-blocking-wf_vblank@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-dg2-set2: [PASS][103] -> [FAIL][104] ([Intel XE#3333]) +2 other tests fail
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-466/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-466/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [PASS][105] -> [SKIP][106] ([Intel XE#2316]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [PASS][107] -> [SKIP][108] ([Intel XE#4950]) +71 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@kms_flip@2x-nonexisting-fb.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [PASS][109] -> [FAIL][110] ([Intel XE#3149]) +4 other tests fail
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1:
- shard-adlp: [PASS][111] -> [DMESG-WARN][112] ([Intel XE#4543]) +1 other test dmesg-warn
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-adlp-8/igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [PASS][113] -> [DMESG-WARN][114] ([Intel XE#2953] / [Intel XE#4173]) +2 other tests dmesg-warn
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-adlp-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-dg2-set2: [PASS][115] -> [FAIL][116] ([Intel XE#3149]) +7 other tests fail
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-432/igt@kms_flip@plain-flip-ts-check-interruptible.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-466/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#455]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2293]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#651]) +5 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#658])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#653])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#4947]) +6 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-untiled:
- shard-dg2-set2: [PASS][123] -> [FAIL][124] ([Intel XE#4427])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-434/igt@kms_pipe_stress@stress-xrgb8888-untiled.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-463/igt@kms_pipe_stress@stress-xrgb8888-untiled.html
* igt@kms_plane@plane-panning-bottom-right@pipe-b:
- shard-dg2-set2: [PASS][125] -> [SKIP][126] ([Intel XE#455]) +5 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-466/igt@kms_plane@plane-panning-bottom-right@pipe-b.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-435/igt@kms_plane@plane-panning-bottom-right@pipe-b.html
* igt@kms_plane@plane-panning-top-left:
- shard-bmg: [PASS][127] -> [SKIP][128] ([Intel XE#5377])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-2/igt@kms_plane@plane-panning-top-left.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_plane@plane-panning-top-left.html
* igt@kms_pm_rpm@i2c:
- shard-bmg: [PASS][129] -> [SKIP][130] ([Intel XE#4962]) +2 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_pm_rpm@i2c.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_pm_rpm@i2c.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#1489]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-432/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2850] / [Intel XE#929])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-436/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#1127])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#3414])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [FAIL][135] ([Intel XE#1729])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@accuracy-idle:
- shard-dg2-set2: [PASS][136] -> [FAIL][137] ([Intel XE#4445]) +7 other tests fail
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-432/igt@kms_vblank@accuracy-idle.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-466/igt@kms_vblank@accuracy-idle.html
* igt@xe_eudebug@vma-ufence-faultable:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#4837]) +4 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-436/igt@xe_eudebug@vma-ufence-faultable.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-dg2-set2: [PASS][139] -> [SKIP][140] ([Intel XE#1392]) +8 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-435/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#288]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-436/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm.html
* igt@xe_exec_system_allocator@threads-many-execqueues-free-nomemset:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#4945]) +24 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-execqueues-free-nomemset.html
* igt@xe_exec_system_allocator@threads-many-large-mmap-shared:
- shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#4915]) +37 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-432/igt@xe_exec_system_allocator@threads-many-large-mmap-shared.html
* igt@xe_oa@privileged-forked-access-vaddr:
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#3573]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-436/igt@xe_oa@privileged-forked-access-vaddr.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-adlp: [PASS][145] -> [DMESG-WARN][146] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#569])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-adlp-2/igt@xe_pm@s3-vm-bind-unbind-all.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-adlp-8/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#4733])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-436/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_spin_batch@spin-all:
- shard-bmg: [PASS][148] -> [SKIP][149] ([Intel XE#4945]) +392 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@xe_spin_batch@spin-all.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@xe_spin_batch@spin-all.html
#### Possible fixes ####
* igt@core_hotunplug@hotunbind-rebind:
- shard-bmg: [SKIP][150] ([Intel XE#4963]) -> [PASS][151] +1 other test pass
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@core_hotunplug@hotunbind-rebind.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@core_hotunplug@hotunbind-rebind.html
* igt@core_setmaster@master-drop-set-root:
- shard-bmg: [FAIL][152] ([Intel XE#4672]) -> [PASS][153]
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@core_setmaster@master-drop-set-root.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@core_setmaster@master-drop-set-root.html
* igt@fbdev@nullptr:
- shard-bmg: [SKIP][154] ([Intel XE#2134]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@fbdev@nullptr.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@fbdev@nullptr.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][156] ([Intel XE#4947]) -> [PASS][157] +27 other tests pass
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][158] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-bmg: [SKIP][160] ([Intel XE#2291]) -> [PASS][161] +2 other tests pass
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][162] ([Intel XE#4633]) -> [PASS][163]
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-bmg: [SKIP][164] ([Intel XE#4950]) -> [PASS][165] +71 other tests pass
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-adlp: [DMESG-WARN][166] ([Intel XE#4543]) -> [PASS][167] +3 other tests pass
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-adlp-4/igt@kms_flip@basic-flip-vs-wf_vblank.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-adlp-4/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][168] ([Intel XE#301]) -> [PASS][169] +1 other test pass
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][170] ([Intel XE#2571]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_dc@dc6-dpms:
- shard-adlp: [FAIL][172] ([Intel XE#718]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-adlp-2/igt@kms_pm_dc@dc6-dpms.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-adlp-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-adlp: [DMESG-WARN][174] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][175] +5 other tests pass
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-adlp-3/igt@kms_vblank@ts-continuation-dpms-suspend.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-adlp-3/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][176] ([Intel XE#4459]) -> [PASS][177] +1 other test pass
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [SKIP][178] ([Intel XE#1392]) -> [PASS][179] +6 other tests pass
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-bmg: [DMESG-WARN][180] ([Intel XE#3876]) -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-2/igt@xe_exec_reset@parallel-gt-reset.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
- shard-lnl: [FAIL][182] ([Intel XE#5018]) -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-race:
- shard-bmg: [SKIP][184] ([Intel XE#4945]) -> [PASS][185] +608 other tests pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-race.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-race.html
* igt@xe_exec_threads@threads-hang-rebind-err:
- shard-dg2-set2: [DMESG-WARN][186] ([Intel XE#3876]) -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-436/igt@xe_exec_threads@threads-hang-rebind-err.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-434/igt@xe_exec_threads@threads-hang-rebind-err.html
* igt@xe_module_load@many-reload:
- shard-bmg: [FAIL][188] ([Intel XE#5679]) -> [PASS][189]
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@xe_module_load@many-reload.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@xe_module_load@many-reload.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [FAIL][190] ([Intel XE#4819]) -> [PASS][191] +1 other test pass
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-434/igt@xe_pmu@gt-frequency.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-433/igt@xe_pmu@gt-frequency.html
#### Warnings ####
* igt@kms_async_flips@test-cursor-atomic:
- shard-bmg: [SKIP][192] ([Intel XE#4950]) -> [INCOMPLETE][193] ([Intel XE#4912]) +3 other tests incomplete
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_async_flips@test-cursor-atomic.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: [SKIP][194] ([Intel XE#2370]) -> [SKIP][195] ([Intel XE#4950])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: [SKIP][196] ([Intel XE#4947]) -> [SKIP][197] ([Intel XE#2327]) +3 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: [SKIP][198] ([Intel XE#2327]) -> [SKIP][199] ([Intel XE#4947]) +4 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: [SKIP][200] ([Intel XE#1124]) -> [SKIP][201] ([Intel XE#4947]) +9 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: [SKIP][202] ([Intel XE#4947]) -> [SKIP][203] ([Intel XE#1124]) +19 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: [SKIP][204] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][205] ([Intel XE#4950])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-bmg: [SKIP][206] ([Intel XE#4950]) -> [SKIP][207] ([Intel XE#2314] / [Intel XE#2894])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: [SKIP][208] ([Intel XE#4950]) -> [SKIP][209] ([Intel XE#367]) +3 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-bmg: [SKIP][210] ([Intel XE#367]) -> [SKIP][211] ([Intel XE#4950]) +2 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: [SKIP][212] ([Intel XE#4947]) -> [SKIP][213] ([Intel XE#2887]) +22 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][214] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][215] ([Intel XE#4947]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-bmg: [SKIP][216] ([Intel XE#2887]) -> [SKIP][217] ([Intel XE#4947]) +12 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: [SKIP][218] ([Intel XE#4947]) -> [SKIP][219] ([Intel XE#3432]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: [SKIP][220] ([Intel XE#3432]) -> [SKIP][221] ([Intel XE#4947]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][222] ([Intel XE#4947]) -> [SKIP][223] ([Intel XE#2652] / [Intel XE#787])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: [SKIP][224] ([Intel XE#4947]) -> [SKIP][225] ([Intel XE#2724])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_cdclk@mode-transition.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: [SKIP][226] ([Intel XE#4950]) -> [SKIP][227] ([Intel XE#2325])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_chamelium_color@ctm-0-50.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: [SKIP][228] ([Intel XE#2325]) -> [SKIP][229] ([Intel XE#4950]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_chamelium_color@degamma.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-bmg: [SKIP][230] ([Intel XE#4950]) -> [SKIP][231] ([Intel XE#2252]) +15 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-bmg: [SKIP][232] ([Intel XE#2252]) -> [SKIP][233] ([Intel XE#4950]) +5 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@atomic:
- shard-bmg: [SKIP][234] ([Intel XE#4950]) -> [FAIL][235] ([Intel XE#1178]) +2 other tests fail
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_content_protection@atomic.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [FAIL][236] ([Intel XE#1178]) -> [SKIP][237] ([Intel XE#2341])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@kms_content_protection@atomic-dpms.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@legacy:
- shard-bmg: [SKIP][238] ([Intel XE#4950]) -> [INCOMPLETE][239] ([Intel XE#2715] / [Intel XE#4907])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_content_protection@legacy.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_content_protection@legacy.html
- shard-dg2-set2: [FAIL][240] ([Intel XE#1178]) -> [INCOMPLETE][241] ([Intel XE#2715] / [Intel XE#4907])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-435/igt@kms_content_protection@legacy.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-432/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-bmg: [SKIP][242] ([Intel XE#4950]) -> [SKIP][243] ([Intel XE#2341])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_content_protection@mei-interface.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][244] ([Intel XE#1188]) -> [SKIP][245] ([Intel XE#2341])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-8/igt@kms_content_protection@uevent.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: [SKIP][246] ([Intel XE#2321]) -> [SKIP][247] ([Intel XE#4950]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: [SKIP][248] ([Intel XE#4950]) -> [SKIP][249] ([Intel XE#2320]) +8 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x32.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: [SKIP][250] ([Intel XE#4950]) -> [SKIP][251] ([Intel XE#2321])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x170.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-bmg: [SKIP][252] ([Intel XE#2320]) -> [SKIP][253] ([Intel XE#4950]) +3 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-bmg: [SKIP][254] ([Intel XE#2286]) -> [SKIP][255] ([Intel XE#4950])
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: [SKIP][256] ([Intel XE#4947]) -> [SKIP][257] ([Intel XE#1508]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_aux_dev:
- shard-bmg: [SKIP][258] ([Intel XE#3009]) -> [SKIP][259] ([Intel XE#4950])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_dp_aux_dev.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: [SKIP][260] ([Intel XE#4947]) -> [SKIP][261] ([Intel XE#4354])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-mst.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-basic:
- shard-bmg: [SKIP][262] ([Intel XE#2244]) -> [SKIP][263] ([Intel XE#4947]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@kms_dsc@dsc-basic.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_dsc@dsc-basic.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: [SKIP][264] ([Intel XE#4945]) -> [SKIP][265] ([Intel XE#4422]) +2 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: [SKIP][266] ([Intel XE#776]) -> [SKIP][267] ([Intel XE#4947])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@kms_fbcon_fbt@psr.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: [SKIP][268] ([Intel XE#4947]) -> [SKIP][269] ([Intel XE#776])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_fbcon_fbt@psr-suspend.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: [SKIP][270] ([Intel XE#4950]) -> [SKIP][271] ([Intel XE#2373])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_feature_discovery@display-3x.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: [SKIP][272] ([Intel XE#4950]) -> [SKIP][273] ([Intel XE#1138])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_feature_discovery@display-4x.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: [SKIP][274] ([Intel XE#2375]) -> [SKIP][275] ([Intel XE#4950])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-4/igt@kms_feature_discovery@dp-mst.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: [SKIP][276] ([Intel XE#4950]) -> [SKIP][277] ([Intel XE#2374])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_feature_discovery@psr1.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: [SKIP][278] ([Intel XE#2374]) -> [SKIP][279] ([Intel XE#4950])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_feature_discovery@psr2.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-bmg: [SKIP][280] ([Intel XE#2316]) -> [FAIL][281] ([Intel XE#3333])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-bmg: [SKIP][282] ([Intel XE#4950]) -> [FAIL][283] ([Intel XE#3333])
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-bmg: [SKIP][284] ([Intel XE#2316]) -> [SKIP][285] ([Intel XE#4950]) +2 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@dpms-off-confusion-interruptible:
- shard-bmg: [SKIP][286] ([Intel XE#4950]) -> [FAIL][287] ([Intel XE#3149]) +4 other tests fail
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_flip@dpms-off-confusion-interruptible.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_flip@dpms-off-confusion-interruptible.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-adlp: [DMESG-WARN][288] ([Intel XE#5208]) -> [DMESG-WARN][289] ([Intel XE#4543] / [Intel XE#5208])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-adlp-8/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: [SKIP][290] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][291] ([Intel XE#4947]) +5 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-bmg: [SKIP][292] ([Intel XE#4947]) -> [SKIP][293] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: [SKIP][294] ([Intel XE#2311]) -> [SKIP][295] ([Intel XE#4947]) +24 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][296] ([Intel XE#4947]) -> [SKIP][297] ([Intel XE#2311]) +44 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][298] ([Intel XE#2311]) -> [SKIP][299] ([Intel XE#2312]) +7 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-bmg: [SKIP][300] ([Intel XE#4947]) -> [SKIP][301] ([Intel XE#5427])
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][302] ([Intel XE#5390]) -> [SKIP][303] ([Intel XE#4947]) +10 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][304] ([Intel XE#2312]) -> [SKIP][305] ([Intel XE#4947]) +11 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][306] ([Intel XE#5390]) -> [SKIP][307] ([Intel XE#2312]) +3 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][308] ([Intel XE#2312]) -> [SKIP][309] ([Intel XE#2311]) +7 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: [SKIP][310] ([Intel XE#2352]) -> [SKIP][311] ([Intel XE#4947])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][312] ([Intel XE#2313]) -> [SKIP][313] ([Intel XE#4947]) +22 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][314] ([Intel XE#2312]) -> [SKIP][315] ([Intel XE#2313]) +5 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][316] ([Intel XE#2313]) -> [SKIP][317] ([Intel XE#2312]) +8 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][318] ([Intel XE#4947]) -> [SKIP][319] ([Intel XE#2313]) +41 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: [SKIP][320] ([Intel XE#4947]) -> [SKIP][321] ([Intel XE#4298])
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_joiner@basic-max-non-joiner.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: [SKIP][322] ([Intel XE#346]) -> [SKIP][323] ([Intel XE#4947])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@kms_joiner@invalid-modeset-big-joiner.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: [SKIP][324] ([Intel XE#4947]) -> [SKIP][325] ([Intel XE#4329])
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-bmg: [SKIP][326] ([Intel XE#4950]) -> [SKIP][327] ([Intel XE#5377])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_plane@plane-panning-bottom-right-suspend.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-bmg: [SKIP][328] ([Intel XE#4596]) -> [SKIP][329] ([Intel XE#4950])
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-x.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][330] ([Intel XE#5021]) -> [SKIP][331] ([Intel XE#4950])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-yf.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-bmg: [SKIP][332] ([Intel XE#2763]) -> [SKIP][333] ([Intel XE#4950])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: [SKIP][334] ([Intel XE#4947]) -> [SKIP][335] ([Intel XE#870])
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_pm_backlight@basic-brightness.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: [SKIP][336] ([Intel XE#4947]) -> [SKIP][337] ([Intel XE#2938])
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_pm_backlight@brightness-with-dpms.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-bmg: [SKIP][338] ([Intel XE#870]) -> [SKIP][339] ([Intel XE#4947])
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-4/igt@kms_pm_backlight@fade.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: [SKIP][340] ([Intel XE#4947]) -> [SKIP][341] ([Intel XE#2392])
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_pm_dc@dc5-psr.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: [SKIP][342] ([Intel XE#4947]) -> [SKIP][343] ([Intel XE#3309])
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_pm_dc@dc5-retention-flops.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: [SKIP][344] ([Intel XE#2392]) -> [SKIP][345] ([Intel XE#4947])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@kms_pm_dc@dc6-psr.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: [SKIP][346] ([Intel XE#2505]) -> [SKIP][347] ([Intel XE#4947])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@kms_pm_dc@deep-pkgc.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: [SKIP][348] ([Intel XE#4947]) -> [SKIP][349] ([Intel XE#2499])
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_pm_lpsp@kms-lpsp.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: [SKIP][350] ([Intel XE#1489]) -> [SKIP][351] ([Intel XE#4947]) +6 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: [SKIP][352] ([Intel XE#4947]) -> [SKIP][353] ([Intel XE#1489]) +12 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-bmg: [SKIP][354] ([Intel XE#4947]) -> [SKIP][355] ([Intel XE#2387])
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: [SKIP][356] ([Intel XE#2387]) -> [SKIP][357] ([Intel XE#4947])
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@kms_psr2_su@page_flip-nv12.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: [SKIP][358] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][359] ([Intel XE#4947]) +14 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-1/igt@kms_psr@fbc-psr2-cursor-plane-move.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-bmg: [SKIP][360] ([Intel XE#4947]) -> [SKIP][361] ([Intel XE#2234] / [Intel XE#2850]) +21 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_psr@pr-sprite-plane-onoff.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: [SKIP][362] ([Intel XE#4947]) -> [SKIP][363] ([Intel XE#2414]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: [SKIP][364] ([Intel XE#4950]) -> [SKIP][365] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_rotation_crc@bad-pixel-format.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-bmg: [SKIP][366] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][367] ([Intel XE#4950]) +3 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-90.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: [SKIP][368] ([Intel XE#2330]) -> [SKIP][369] ([Intel XE#4950])
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: [SKIP][370] ([Intel XE#4950]) -> [SKIP][371] ([Intel XE#2330]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: [SKIP][372] ([Intel XE#2413]) -> [SKIP][373] ([Intel XE#4950])
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-center.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][374] ([Intel XE#4950]) -> [SKIP][375] ([Intel XE#2426])
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- shard-bmg: [SKIP][376] ([Intel XE#4950]) -> [SKIP][377] ([Intel XE#1499])
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_vrr@flip-basic.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf:
- shard-bmg: [SKIP][378] ([Intel XE#4950]) -> [SKIP][379] ([Intel XE#2168])
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@kms_vrr@lobf.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: [SKIP][380] ([Intel XE#1499]) -> [SKIP][381] ([Intel XE#4950]) +2 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@kms_vrr@seamless-rr-switch-drrs.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: [SKIP][382] ([Intel XE#2504]) -> [SKIP][383] ([Intel XE#4945])
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-4/igt@xe_create@multigpu-create-massive-size.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
- shard-bmg: [SKIP][384] ([Intel XE#4837]) -> [SKIP][385] ([Intel XE#4945]) +12 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
* igt@xe_eudebug_online@single-step:
- shard-bmg: [SKIP][386] ([Intel XE#4945]) -> [SKIP][387] ([Intel XE#4837]) +18 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@xe_eudebug_online@single-step.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@xe_eudebug_online@single-step.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: [SKIP][388] ([Intel XE#4945]) -> [SKIP][389] ([Intel XE#2322]) +13 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
- shard-bmg: [SKIP][390] ([Intel XE#2322]) -> [SKIP][391] ([Intel XE#4945]) +6 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
- shard-bmg: [SKIP][392] ([Intel XE#4943]) -> [SKIP][393] ([Intel XE#4945]) +12 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset:
- shard-bmg: [SKIP][394] ([Intel XE#4945]) -> [SKIP][395] ([Intel XE#4943]) +34 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-bmg: [ABORT][396] ([Intel XE#5530]) -> [SKIP][397] ([Intel XE#4945])
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_mmap@small-bar:
- shard-bmg: [SKIP][398] ([Intel XE#4945]) -> [SKIP][399] ([Intel XE#586])
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@xe_mmap@small-bar.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@xe_mmap@small-bar.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: [SKIP][400] ([Intel XE#4945]) -> [SKIP][401] ([Intel XE#1420])
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@xe_pat@pat-index-xehpc.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-4/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: [SKIP][402] ([Intel XE#2245]) -> [SKIP][403] ([Intel XE#4945])
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-4/igt@xe_pat@pat-index-xelp.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@xe_pat@pat-index-xelp.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [FAIL][404] ([Intel XE#1173]) -> [SKIP][405] ([Intel XE#1061])
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-dg2-435/igt@xe_peer2peer@read.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-dg2-432/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-bmg: [SKIP][406] ([Intel XE#2284]) -> [SKIP][407] ([Intel XE#4945]) +1 other test skip
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@xe_pm@d3cold-mmap-vram.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-bmg: [SKIP][408] ([Intel XE#4650]) -> [SKIP][409] ([Intel XE#4945])
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@xe_pmu@fn-engine-activity-load.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pxp@pxp-stale-queue-post-suspend:
- shard-bmg: [SKIP][410] ([Intel XE#4733]) -> [SKIP][411] ([Intel XE#4945]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-6/igt@xe_pxp@pxp-stale-queue-post-suspend.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@xe_pxp@pxp-stale-queue-post-suspend.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: [SKIP][412] ([Intel XE#4945]) -> [SKIP][413] ([Intel XE#4733]) +7 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: [SKIP][414] ([Intel XE#944]) -> [SKIP][415] ([Intel XE#4945]) +1 other test skip
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-3/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-5/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-bmg: [SKIP][416] ([Intel XE#4945]) -> [SKIP][417] ([Intel XE#944]) +1 other test skip
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@xe_query@multigpu-query-uc-fw-version-huc.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
- shard-bmg: [SKIP][418] ([Intel XE#4945]) -> [SKIP][419] ([Intel XE#4130])
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-3/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [SKIP][420] ([Intel XE#4945]) -> [SKIP][421] ([Intel XE#4273])
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@xe_sriov_flr@flr-twice.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-8/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-bmg: [SKIP][422] ([Intel XE#4945]) -> [SKIP][423] ([Intel XE#4351])
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe/shard-bmg-5/igt@xe_sriov_scheduling@equal-throughput.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/shard-bmg-1/igt@xe_sriov_scheduling@equal-throughput.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#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3333
[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#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[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#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4427
[Intel XE#4445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4445
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4672]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4672
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4741]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4741
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4907
[Intel XE#4912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4912
[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#4945]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4945
[Intel XE#4947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4947
[Intel XE#4950]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4950
[Intel XE#4962]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4962
[Intel XE#4963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4963
[Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5377
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5427
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
[Intel XE#5679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5679
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5695
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe -> xe-pw-152277v1
IGT_8478: 3e7c2bd685397f852853878aef4d9c1e4889a28b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3488-54ccd087aec954ea34b880223a17e4579eecedbe: 54ccd087aec954ea34b880223a17e4579eecedbe
xe-pw-152277v1: 152277v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152277v1/index.html
[-- Attachment #2: Type: text/html, Size: 126519 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v2 1/4] drm: Define user readable error codes for atomic ioctl
2025-07-30 11:22 ` Biju Das
@ 2025-07-30 13:45 ` Murthy, Arun R
0 siblings, 0 replies; 16+ messages in thread
From: Murthy, Arun R @ 2025-07-30 13:45 UTC (permalink / raw)
To: Biju Das, dri-devel@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org
Cc: Simona Vetter, Maarten Lankhorst, Jani Nikula, Rodrigo Vivi,
Joonas Lahtinen, naveen1.kumar@intel.com, xaver.hugl@kde.org,
uma.shankar@intel.com, harry.wentland@amd.com
On 30-07-2025 16:52, Biju Das wrote:
> Hi Arun,
>
>> -----Original Message-----
>> From: dri-devel <dri-devel-bounces@lists.freedesktop.org> On Behalf Of Arun R Murthy
>> Sent: 30 July 2025 11:17
>> Subject: [PATCH v2 1/4] drm: Define user readable error codes for atomic ioctl
>>
>> There can be multiple reasons for a failure in atomic_ioctl. Most often in these error conditions -
>> EINVAL is returned. User/Compositor would have to blindly take a call on failure of this ioctl so as
>> to use ALLOW_MODESET or any. It would be good if user/compositor gets a readable error code on failure
>> so they can take proper corrections in the next commit.
>> The struct drm_mode_atomic is being passed by the user/compositor which holds the properties for
>> modeset/flip. Reusing the same struct for returning the error code in case of failure can save by
>> creating a new uapi/interface for returning the error code.
>> The element 'reserved' in the struct drm_mode_atomic is used for returning the user readable error
>> code.Its a 64bit variable and should suffice 64 error codes that should be sufficient.
>>
>> Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
>> ---
>> include/uapi/drm/drm_mode.h | 40 ++++++++++++++++++++++++++++++++++++++++
>> 1 file changed, 40 insertions(+)
>>
>> diff --git a/include/uapi/drm/drm_mode.h b/include/uapi/drm/drm_mode.h index
>> a122bea2559387576150236e3a88f99c24ad3138..87e8f623bfaaab09135be104db04996f0be4dcb4 100644
>> --- a/include/uapi/drm/drm_mode.h
>> +++ b/include/uapi/drm/drm_mode.h
>> @@ -1157,6 +1157,46 @@ struct drm_mode_destroy_dumb {
>> DRM_MODE_ATOMIC_NONBLOCK |\
>> DRM_MODE_ATOMIC_ALLOW_MODESET)
>>
>> +/* atomic not set in the drm_file */
>> +#define DRM_MODE_ATOMIC_CAP_NOT_ENABLED BIT(0)
>> +/* atomic flag passed not in DRM_MODE_ATOMIC_FLAGS list */
>> +#define DRM_MODE_ATOMIC_INVALID_FLAG BIT(1)
>> +/* DRM_MODE_PAGE_FLIP_LEGACY not supported with atomic ioctl */
>> +#define DRM_MODE_ATOMIC_PAGE_FLIP_ASYNC BIT(2)
>> +/* flip event with atomic check only not supported */
>> +#define DRM_MODE_ATOMIC_FLIP_EVENT_WITH_CHECKONLY BIT(3)
>> +/* atomic property change requested need full crtc modeset */
>> +#define DRM_MODE_ATOMIC_CRTC_NEED_FULL_MODESET BIT(4)
>> +/* atomic property change requested has impact on all connected crtc */
>> +#define DRM_MODE_ATOMIC_NEED_FULL_MODESET BIT(5)
>> +/* async flip supported on only primary plane */
>> +#define DRM_MODE_ATOMIC_ASYNC_NOT_PRIMARY BIT(6)
>> +/* modifier not supported by async flip */
>> +#define DRM_MODE_ATOMIC_ASYNC_MODIFIER_NOT_SUPPORTED BIT(7)
>> +/* async flip with pipe joiner not allowed */
>> +#define DRM_MODE_ATOMIC_ASYNC_PIPEJOINER_NOTALLOWED BIT(8)
> For consistency, NOTALLOWED->NOT_ALLOWED ??
Sure, will get it correct!
Thanks and Regards,
Arun R Murthy
--------------------
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v2 3/4] drm/atomic: Return user readable error in atomic_ioctl
2025-07-30 13:14 ` Harry Wentland
@ 2025-07-30 13:55 ` Murthy, Arun R
2025-07-30 14:19 ` Harry Wentland
0 siblings, 1 reply; 16+ messages in thread
From: Murthy, Arun R @ 2025-07-30 13:55 UTC (permalink / raw)
To: Harry Wentland, dri-devel, intel-gfx, intel-xe
Cc: Simona Vetter, Maarten Lankhorst, Jani Nikula, Rodrigo Vivi,
Joonas Lahtinen, naveen1.kumar, xaver.hugl, uma.shankar
On 30-07-2025 18:44, Harry Wentland wrote:
>
> On 2025-07-30 06:16, Arun R Murthy wrote:
>> Add user readable error codes for failure cases in drm_atomic_ioctl() so
>> that user can decode the error code and take corrective measurements.
>>
> Thanks for doing this work.
>
>
>> @@ -1541,6 +1548,9 @@ int drm_mode_atomic_ioctl(struct drm_device *dev,
>> ret = drm_atomic_commit(state);
>> }
>>
>> + /* update the error code if any error to allow user handling it */
>> + arg->reserved = state->error_code;
> Once we do this we paint ourselves into a corner.
>
> It's nice that we have this reserved field since it allows us to
> extend the atomic ioctl without the need to define a new one.
>
> When we discussed this at the Display Next Hackfest [1] we came
> to the conclusion that we would want:
>
> - an enum to show what is the issue
> - a string that can be logged to display verbose information
> about the failure
> - an optional array of KMS object IDs participating in the failure
>
> We could define these in a new struct
>
> struct drm_mode_atomic2 {
> __u64 failure_reason;
> __u64 failure_string;
> __u32 drm_object_ids[MAX_FAILURE_OBJECT_IDS]
> __u64 reserved;
> }
>
> that we link to via the drm_mode_atomic->reserved field.
>
> Your approach of flags, as opposed to an enum, would allow reporting
> of multiple failures. Do we think drivers would ever make use of it?
> Normally check short-circuits when a failure/limitation is hit.
Thanks for the feedback. As pointed it would be good to have a struct
pointed by the reserved variable, so that we can further extend the scope.
W.r.t the enum, I feel its better to have bit notification as we can
convey multiple errors if any.
Understand that the driver at present will return on the first error but
upon adding this user readable error code can extend the driver to check
add the properties provided by user and report error at once, so that
multiple failure iterations can be overridden.
Having obj_id would be a good one, but when the flow goes to the vendor
specific driver, they may not have the link to the obj_id where a
failure is occurred. But still good to have so that at the early stage
in set_prop, sanity check failures can be reported with obj_id so that
it would be easy for the user to correct them in the next atomic ioctl.
Will take care of these feedback in my next revision of patch set.
Thanks and Regards,
Arun R Murthy
--------------------
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v2 3/4] drm/atomic: Return user readable error in atomic_ioctl
2025-07-30 13:55 ` Murthy, Arun R
@ 2025-07-30 14:19 ` Harry Wentland
0 siblings, 0 replies; 16+ messages in thread
From: Harry Wentland @ 2025-07-30 14:19 UTC (permalink / raw)
To: Murthy, Arun R, dri-devel, intel-gfx, intel-xe
Cc: Simona Vetter, Maarten Lankhorst, Jani Nikula, Rodrigo Vivi,
Joonas Lahtinen, naveen1.kumar, xaver.hugl, uma.shankar
On 2025-07-30 09:55, Murthy, Arun R wrote:
> On 30-07-2025 18:44, Harry Wentland wrote:
>>
>> On 2025-07-30 06:16, Arun R Murthy wrote:
>>> Add user readable error codes for failure cases in drm_atomic_ioctl() so
>>> that user can decode the error code and take corrective measurements.
>>>
>> Thanks for doing this work.
>>
>>
>>> @@ -1541,6 +1548,9 @@ int drm_mode_atomic_ioctl(struct drm_device *dev,
>>> ret = drm_atomic_commit(state);
>>> }
>>> + /* update the error code if any error to allow user handling it */
>>> + arg->reserved = state->error_code;
>> Once we do this we paint ourselves into a corner.
>>
>> It's nice that we have this reserved field since it allows us to
>> extend the atomic ioctl without the need to define a new one.
>>
>> When we discussed this at the Display Next Hackfest [1] we came
>> to the conclusion that we would want:
>>
>> - an enum to show what is the issue
>> - a string that can be logged to display verbose information
>> about the failure
>> - an optional array of KMS object IDs participating in the failure
>>
>> We could define these in a new struct
>>
>> struct drm_mode_atomic2 {
>> __u64 failure_reason;
>> __u64 failure_string;
>> __u32 drm_object_ids[MAX_FAILURE_OBJECT_IDS]
>> __u64 reserved;
>> }
>>
>> that we link to via the drm_mode_atomic->reserved field.
>>
>> Your approach of flags, as opposed to an enum, would allow reporting
>> of multiple failures. Do we think drivers would ever make use of it?
>> Normally check short-circuits when a failure/limitation is hit.
> Thanks for the feedback. As pointed it would be good to have a struct pointed by the reserved variable, so that we can further extend the scope.
> W.r.t the enum, I feel its better to have bit notification as we can convey multiple errors if any.
>
> Understand that the driver at present will return on the first error but upon adding this user readable error code can extend the driver to check add the properties provided by user and report error at once, so that multiple failure iterations can be overridden.
>
I don't have a strong preference either way here. I'm happy with a
set of flags so we can report multiple errors at once.
> Having obj_id would be a good one, but when the flow goes to the vendor specific driver, they may not have the link to the obj_id where a failure is occurred. But still good to have so that at the early stage in set_prop, sanity check failures can be reported with obj_id so that it would be easy for the user to correct them in the next atomic ioctl.
>
Right. This is entirely optional for scenarios where a driver (or
DRM core) can provided this additional info. It might make sense for
MST bandwidth failures where we could provide the MST connectors that
are involved, i.e., ones on the same physical connector.
It could possibly also be useful for movable HW blocks, which is not
something we can express right now. Things like a LUT that can be
assigned to any pipe. When userspace tries enabling the property that
uses the LUT but all are in use we might be able to signal what is
conflicting.
But again, entirely optional for scenarios where a driver thinks it
can provide better information. It also depends on how userspace will
implement this. I'm sure compositors don't want to overcomplicate their
failure handling.
Harry
> Will take care of these feedback in my next revision of patch set.
>
> Thanks and Regards,
> Arun R Murthy
> --------------------
>
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v2 1/4] drm: Define user readable error codes for atomic ioctl
2025-07-30 10:16 ` [PATCH v2 1/4] drm: Define user readable error codes for atomic ioctl Arun R Murthy
2025-07-30 11:22 ` Biju Das
@ 2025-07-31 11:32 ` Xaver Hugl
2025-08-01 4:48 ` Murthy, Arun R
1 sibling, 1 reply; 16+ messages in thread
From: Xaver Hugl @ 2025-07-31 11:32 UTC (permalink / raw)
To: Arun R Murthy
Cc: dri-devel, intel-gfx, intel-xe, Simona Vetter, Maarten Lankhorst,
Jani Nikula, Rodrigo Vivi, Joonas Lahtinen, naveen1.kumar,
uma.shankar, harry.wentland
Am Mi., 30. Juli 2025 um 12:36 Uhr schrieb Arun R Murthy
<arun.r.murthy@intel.com>:
>
> There can be multiple reasons for a failure in atomic_ioctl. Most often
> in these error conditions -EINVAL is returned. User/Compositor would
> have to blindly take a call on failure of this ioctl so as to use
> ALLOW_MODESET or any. It would be good if user/compositor gets a
> readable error code on failure so they can take proper corrections in
> the next commit.
> The struct drm_mode_atomic is being passed by the user/compositor which
> holds the properties for modeset/flip. Reusing the same struct for
> returning the error code in case of failure can save by creating a new
> uapi/interface for returning the error code.
> The element 'reserved' in the struct drm_mode_atomic is used for
> returning the user readable error code.Its a 64bit variable and
> should suffice 64 error codes that should be sufficient.
Hi, and thanks for working on this. Harry already mentioned what we
discussed at the hackfest, so I won't repeat that again :)
> +/* atomic not set in the drm_file */
> +#define DRM_MODE_ATOMIC_CAP_NOT_ENABLED BIT(0)
> +/* atomic flag passed not in DRM_MODE_ATOMIC_FLAGS list */
> +#define DRM_MODE_ATOMIC_INVALID_FLAG BIT(1)
> +/* DRM_MODE_PAGE_FLIP_LEGACY not supported with atomic ioctl */
This should be DRM_MODE_PAGE_FLIP_ASYNC I think?
> +#define DRM_MODE_ATOMIC_PAGE_FLIP_ASYNC BIT(2)
> +/* flip event with atomic check only not supported */
> +#define DRM_MODE_ATOMIC_FLIP_EVENT_WITH_CHECKONLY BIT(3)
> +/* atomic property change requested need full crtc modeset */
> +#define DRM_MODE_ATOMIC_CRTC_NEED_FULL_MODESET BIT(4)
> +/* atomic property change requested has impact on all connected crtc */
> +#define DRM_MODE_ATOMIC_NEED_FULL_MODESET BIT(5)
> +/* async flip supported on only primary plane */
> +#define DRM_MODE_ATOMIC_ASYNC_NOT_PRIMARY BIT(6)
This is a bit limiting when some but not all non-primary planes support async.
> +/* modifier not supported by async flip */
> +#define DRM_MODE_ATOMIC_ASYNC_MODIFIER_NOT_SUPPORTED BIT(7)
> +/* async flip with pipe joiner not allowed */
> +#define DRM_MODE_ATOMIC_ASYNC_PIPEJOINER_NOTALLOWED BIT(8)
I feel like this error is a bit too specific, or at least it needs
some more explanation - what will compositors do with it?
In general I want to mention that some of these errors are pretty
specific and not actionable for compositor code. Ideally the enum
would just be more generic things like
- invalid API usage
- needs modeset
- plane can't do async
- format/modifier can't do async (though with IN_FORMATS_ASYNC it's
kind of just "invalid API usage")
- scanout bandwidth
- connector bandwidth
- memory domain
- scanin bandwidth
which (except for "invalid API usage") compositor code can
automatically do something about, and the string that's passed to the
compositor can give more information for debugging and logging.
- Xaver
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v2 1/4] drm: Define user readable error codes for atomic ioctl
2025-07-31 11:32 ` Xaver Hugl
@ 2025-08-01 4:48 ` Murthy, Arun R
0 siblings, 0 replies; 16+ messages in thread
From: Murthy, Arun R @ 2025-08-01 4:48 UTC (permalink / raw)
To: Xaver Hugl
Cc: dri-devel, intel-gfx, intel-xe, Simona Vetter, Maarten Lankhorst,
Jani Nikula, Rodrigo Vivi, Joonas Lahtinen, naveen1.kumar,
uma.shankar, harry.wentland
On 31-07-2025 17:02, Xaver Hugl wrote:
> Am Mi., 30. Juli 2025 um 12:36 Uhr schrieb Arun R Murthy
> <arun.r.murthy@intel.com>:
>> There can be multiple reasons for a failure in atomic_ioctl. Most often
>> in these error conditions -EINVAL is returned. User/Compositor would
>> have to blindly take a call on failure of this ioctl so as to use
>> ALLOW_MODESET or any. It would be good if user/compositor gets a
>> readable error code on failure so they can take proper corrections in
>> the next commit.
>> The struct drm_mode_atomic is being passed by the user/compositor which
>> holds the properties for modeset/flip. Reusing the same struct for
>> returning the error code in case of failure can save by creating a new
>> uapi/interface for returning the error code.
>> The element 'reserved' in the struct drm_mode_atomic is used for
>> returning the user readable error code.Its a 64bit variable and
>> should suffice 64 error codes that should be sufficient.
> Hi, and thanks for working on this. Harry already mentioned what we
> discussed at the hackfest, so I won't repeat that again :)
Sure, will take care of them!
>> +/* atomic not set in the drm_file */
>> +#define DRM_MODE_ATOMIC_CAP_NOT_ENABLED BIT(0)
>> +/* atomic flag passed not in DRM_MODE_ATOMIC_FLAGS list */
>> +#define DRM_MODE_ATOMIC_INVALID_FLAG BIT(1)
>> +/* DRM_MODE_PAGE_FLIP_LEGACY not supported with atomic ioctl */
> This should be DRM_MODE_PAGE_FLIP_ASYNC I think?
Sorry my bad, it should actually be interchanged!
>> +#define DRM_MODE_ATOMIC_PAGE_FLIP_ASYNC BIT(2)
>> +/* flip event with atomic check only not supported */
>> +#define DRM_MODE_ATOMIC_FLIP_EVENT_WITH_CHECKONLY BIT(3)
>> +/* atomic property change requested need full crtc modeset */
>> +#define DRM_MODE_ATOMIC_CRTC_NEED_FULL_MODESET BIT(4)
>> +/* atomic property change requested has impact on all connected crtc */
>> +#define DRM_MODE_ATOMIC_NEED_FULL_MODESET BIT(5)
>> +/* async flip supported on only primary plane */
>> +#define DRM_MODE_ATOMIC_ASYNC_NOT_PRIMARY BIT(6)
> This is a bit limiting when some but not all non-primary planes support async.
>> +/* modifier not supported by async flip */
>> +#define DRM_MODE_ATOMIC_ASYNC_MODIFIER_NOT_SUPPORTED BIT(7)
>> +/* async flip with pipe joiner not allowed */
>> +#define DRM_MODE_ATOMIC_ASYNC_PIPEJOINER_NOTALLOWED BIT(8)
> I feel like this error is a bit too specific, or at least it needs
> some more explanation - what will compositors do with it?
Sure will add more description, compositor on getting this error will
have to either use sync flip or reduce the resolution so as to not
enable pipejoiner feature.
> In general I want to mention that some of these errors are pretty
> specific and not actionable for compositor code. Ideally the enum
> would just be more generic things like
> - invalid API usage
> - needs modeset
> - plane can't do async
> - format/modifier can't do async (though with IN_FORMATS_ASYNC it's
> kind of just "invalid API usage")
> - scanout bandwidth
> - connector bandwidth
> - memory domain
> - scanin bandwidth
>
> which (except for "invalid API usage") compositor code can
> automatically do something about, and the string that's passed to the
> compositor can give more information for debugging and logging.
Sure will add error string as pointer by Harry as well.
Thanks and Regards,
Arun R Murthy
--------------------
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2025-08-01 4:48 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-30 10:16 [PATCH v2 0/4] User readable error codes on atomic_ioctl failure Arun R Murthy
2025-07-30 10:16 ` [PATCH v2 1/4] drm: Define user readable error codes for atomic ioctl Arun R Murthy
2025-07-30 11:22 ` Biju Das
2025-07-30 13:45 ` Murthy, Arun R
2025-07-31 11:32 ` Xaver Hugl
2025-08-01 4:48 ` Murthy, Arun R
2025-07-30 10:16 ` [PATCH v2 2/4] drm/atomic: Add error_code element in atomic_state Arun R Murthy
2025-07-30 10:16 ` [PATCH v2 3/4] drm/atomic: Return user readable error in atomic_ioctl Arun R Murthy
2025-07-30 13:14 ` Harry Wentland
2025-07-30 13:55 ` Murthy, Arun R
2025-07-30 14:19 ` Harry Wentland
2025-07-30 10:16 ` [PATCH v2 4/4] drm/i915/display: Error codes for async flip failures Arun R Murthy
2025-07-30 10:43 ` ✓ CI.KUnit: success for User readable error codes on atomic_ioctl failure Patchwork
2025-07-30 10:58 ` ✗ CI.checksparse: warning " Patchwork
2025-07-30 11:22 ` ✓ Xe.CI.BAT: success " Patchwork
2025-07-30 13:25 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).