* [PATCH 1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream
@ 2026-09-07 17:44 Imre Deak
2026-09-07 17:44 ` [PATCH 2/2] drm/i915/dp_mst: Fix configuring TUs " Imre Deak
` (6 more replies)
0 siblings, 7 replies; 13+ messages in thread
From: Imre Deak @ 2026-09-07 17:44 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: stable
During an atomic commit after all the MST stream CRTC state is computed
the driver ensures that the FEC is configured the same way (enabled or
disabled) for all the streams on a given MST topology's link.
drm_dp_mst_port_downstream_of_parent() used to determine if a stream is
downstream of an MST port will return false if the whole topology is
disconnected, since in that case it can't verify that the port/
parent_port passed to it is in the given MST topology. This is a problem
during the above FEC configuration check, since
intel_dp_mst_check_dsc_change()->get_pipes_downstream_of_mst_ports()
will not return all the stream CRTCs/pipes for the topology as expected.
Since passing parent_port==NULL to get_pipes_downstream_of_mst_port()
is meant to return all the streams for the given topology (i.e. mst_mgr)
skip checking if an MST port is downstream of a parent port in this
case.
This fixes a problem where the FEC configuration check explained above
failed to ensure that all streams' FEC is configured the same way if the
topology was disconnected, leading to a FEC state mismatch error.
Cc: stable@vger.kernel.org # v6.10+
Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16384
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
drivers/gpu/drm/i915/display/intel_dp_mst.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
index 6a869d0f6ffc0..20766b6c0bcfa 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
@@ -856,7 +856,8 @@ static u8 get_pipes_downstream_of_mst_port(struct intel_atomic_state *state,
if (&connector->mst.dp->mst.mgr != mst_mgr)
continue;
- if (connector->mst.port != parent_port &&
+ if (parent_port &&
+ connector->mst.port != parent_port &&
!drm_dp_mst_port_downstream_of_parent(mst_mgr,
connector->mst.port,
parent_port))
--
2.49.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 2/2] drm/i915/dp_mst: Fix configuring TUs for a disconnected stream
2026-09-07 17:44 [PATCH 1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream Imre Deak
@ 2026-09-07 17:44 ` Imre Deak
2026-09-07 17:59 ` sashiko-bot
2026-09-10 9:50 ` Luca Coelho
2026-09-07 18:09 ` ✗ CI.checkpatch: warning for series starting with [1/2] drm/i915/dp_mst: Fix configuring FEC " Patchwork
` (5 subsequent siblings)
6 siblings, 2 replies; 13+ messages in thread
From: Imre Deak @ 2026-09-07 17:44 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: stable
During an atomic commit after all the MST stream CRTC state is computed
the driver ensures that the sum of TUs of all the streams on a given MST
topology link is within limits (63 for 8b10 and 64 for 128b132b). For a
disconnected stream the DRM MST core's BW verification doesn't ensure
this, because the topology state it uses for this is destroyed as soon
as the stream (i.e. MST connector/port) is disconnected. The driver
should keep the link state valid even for such disconnected streams, as
userspace may disable them one-by-one only in a deferred way. Ensure the
link's sum of TUs stays within limits in this case by simply reusing the
maximum link BPP limit from the stream's (i.e. CRTC's) old state.
The disconnection can happen either via the whole topology getting
disconnected or via only the given stream's port getting disconnected.
Check for both of these conditions separately, as a connector gets
unregistered after a link disconnect event only in a deferred way.
Cc: stable@vger.kernel.org # v6.10+
Link: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
Link: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16384
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
drivers/gpu/drm/i915/display/intel_dp_mst.c | 21 ++++++++++++++++++++
drivers/gpu/drm/i915/display/intel_dp_mst.h | 2 ++
drivers/gpu/drm/i915/display/intel_link_bw.c | 3 ++-
3 files changed, 25 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
index 20766b6c0bcfa..0c362784afe4a 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
@@ -2172,6 +2172,27 @@ bool intel_dp_mst_crtc_needs_modeset(struct intel_atomic_state *state,
return false;
}
+bool intel_dp_mst_stream_disconnected(struct intel_atomic_state *state,
+ const struct intel_crtc *crtc)
+{
+ struct intel_connector *connector;
+
+ connector = get_connector_in_state_for_crtc(state, crtc);
+ if (!connector)
+ return false;
+
+ if (!connector->mst.dp)
+ return false;
+
+ if (!connector->mst.dp->mst.mgr.mst_state)
+ return true;
+
+ if (drm_connector_is_unregistered(&connector->base))
+ return true;
+
+ return false;
+}
+
/**
* intel_dp_mst_prepare_probe - Prepare an MST link for topology probing
* @intel_dp: DP port object
diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.h b/drivers/gpu/drm/i915/display/intel_dp_mst.h
index ab09b487c6bb5..8ce89242c05c9 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_mst.h
+++ b/drivers/gpu/drm/i915/display/intel_dp_mst.h
@@ -28,6 +28,8 @@ int intel_dp_mst_atomic_check_link(struct intel_atomic_state *state,
struct intel_link_bw_limits *limits);
bool intel_dp_mst_crtc_needs_modeset(struct intel_atomic_state *state,
struct intel_crtc *crtc);
+bool intel_dp_mst_stream_disconnected(struct intel_atomic_state *state,
+ const struct intel_crtc *crtc);
void intel_dp_mst_prepare_probe(struct intel_dp *intel_dp);
bool intel_dp_mst_verify_dpcd_state(struct intel_dp *intel_dp);
diff --git a/drivers/gpu/drm/i915/display/intel_link_bw.c b/drivers/gpu/drm/i915/display/intel_link_bw.c
index b47474a3e9fec..e71e76d6fd3e0 100644
--- a/drivers/gpu/drm/i915/display/intel_link_bw.c
+++ b/drivers/gpu/drm/i915/display/intel_link_bw.c
@@ -64,7 +64,8 @@ void intel_link_bw_init_limits(struct intel_atomic_state *state,
intel_atomic_get_new_crtc_state(state, crtc);
int forced_bpp_x16 = get_forced_link_bpp_x16(state, crtc);
- if (state->base.duplicated && crtc_state) {
+ if ((state->base.duplicated && crtc_state) ||
+ intel_dp_mst_stream_disconnected(state, crtc)) {
limits->max_bpp_x16[pipe] = crtc_state->max_link_bpp_x16;
if (intel_dsc_enabled_on_link(crtc_state))
limits->link_dsc_pipes |= BIT(pipe);
--
2.49.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 2/2] drm/i915/dp_mst: Fix configuring TUs for a disconnected stream
2026-09-07 17:44 ` [PATCH 2/2] drm/i915/dp_mst: Fix configuring TUs " Imre Deak
@ 2026-09-07 17:59 ` sashiko-bot
2026-09-10 9:50 ` Luca Coelho
1 sibling, 0 replies; 13+ messages in thread
From: sashiko-bot @ 2026-09-07 17:59 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-gfx, intel-xe
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [High] NULL pointer dereference when accessing `crtc_state` for disconnected MST streams during a partial atomic commit.
--
commit 2c1463a6e51d57b066fd631411fc6eb110086a46
Author: Imre Deak <imre.deak@intel.com>
drm/i915/dp_mst: Fix configuring TUs for a disconnected stream
This commit fixes the TU configuration for a disconnected MST stream by reusing
the maximum link BPP limit from the stream's old state. This ensures the link's
sum of TUs stays within limits instead of destroying the link state completely,
as userspace may disable them one-by-one in a deferred way.
Cc: stable@vger.kernel.org # v6.10+
Link: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
Link: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16384
[ ... ]
> diff --git a/drivers/gpu/drm/i915/display/intel_link_bw.c b/drivers/gpu/drm/i915/display/intel_link_bw.c
> index b47474a3e9fec..e71e76d6fd3e0 100644
> --- a/drivers/gpu/drm/i915/display/intel_link_bw.c
> +++ b/drivers/gpu/drm/i915/display/intel_link_bw.c
> @@ -64,7 +64,8 @@ void intel_link_bw_init_limits(struct intel_atomic_state *state,
> intel_atomic_get_new_crtc_state(state, crtc);
> int forced_bpp_x16 = get_forced_link_bpp_x16(state, crtc);
>
> - if (state->base.duplicated && crtc_state) {
> + if ((state->base.duplicated && crtc_state) ||
> + intel_dp_mst_stream_disconnected(state, crtc)) {
> limits->max_bpp_x16[pipe] = crtc_state->max_link_bpp_x16;
[Severity: High]
Could this lead to a NULL pointer dereference in intel_link_bw_init_limits()
if crtc_state is NULL?
If userspace issues an atomic commit that modifies a non-routing property
on a disconnected connector, the connector is added to the atomic state
but its CRTC might not be. In this scenario, intel_atomic_get_new_crtc_state()
returns NULL.
Since intel_dp_mst_stream_disconnected() evaluates to true when the connector
is unregistered, this block is entered even when crtc_state is NULL.
This results in an unconditional dereference of crtc_state when assigning
crtc_state->max_link_bpp_x16, which is reachable from unprivileged userspace
via the DRM atomic ioctl and could crash the system.
> if (intel_dsc_enabled_on_link(crtc_state))
> limits->link_dsc_pipes |= BIT(pipe);
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260907174413.741851-1-imre.deak@intel.com?part=2
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.checkpatch: warning for series starting with [1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream
2026-09-07 17:44 [PATCH 1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream Imre Deak
2026-09-07 17:44 ` [PATCH 2/2] drm/i915/dp_mst: Fix configuring TUs " Imre Deak
@ 2026-09-07 18:09 ` Patchwork
2026-09-07 18:11 ` ✓ CI.KUnit: success " Patchwork
` (4 subsequent siblings)
6 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-09-07 18:09 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-xe
== Series Details ==
Series: series starting with [1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream
URL : https://patchwork.freedesktop.org/series/173530/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
d875049d2b299159a272bd5151994970cdcd1e31
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit b796095f1875bf25ef49ec165f3b8f345515377b
Author: Imre Deak <imre.deak@intel.com>
Date: Mon Sep 7 20:44:13 2026 +0300
drm/i915/dp_mst: Fix configuring TUs for a disconnected stream
During an atomic commit after all the MST stream CRTC state is computed
the driver ensures that the sum of TUs of all the streams on a given MST
topology link is within limits (63 for 8b10 and 64 for 128b132b). For a
disconnected stream the DRM MST core's BW verification doesn't ensure
this, because the topology state it uses for this is destroyed as soon
as the stream (i.e. MST connector/port) is disconnected. The driver
should keep the link state valid even for such disconnected streams, as
userspace may disable them one-by-one only in a deferred way. Ensure the
link's sum of TUs stays within limits in this case by simply reusing the
maximum link BPP limit from the stream's (i.e. CRTC's) old state.
The disconnection can happen either via the whole topology getting
disconnected or via only the given stream's port getting disconnected.
Check for both of these conditions separately, as a connector gets
unregistered after a link disconnect event only in a deferred way.
Cc: stable@vger.kernel.org # v6.10+
Link: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
Link: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16384
Signed-off-by: Imre Deak <imre.deak@intel.com>
+ /mt/dim checkpatch 16562a45b1291d85f8402628a1f7d3778e2bebce drm-intel
fcfeac2e8f7a drm/i915/dp_mst: Fix configuring FEC for a disconnected stream
-:44: WARNING:MISSING_FIXES_TAG: The commit message has 'stable@', perhaps it also needs a 'Fixes:' tag?
total: 0 errors, 1 warnings, 0 checks, 9 lines checked
b796095f1875 drm/i915/dp_mst: Fix configuring TUs for a disconnected stream
-:86: WARNING:MISSING_FIXES_TAG: The commit message has 'stable@', perhaps it also needs a 'Fixes:' tag?
total: 0 errors, 1 warnings, 0 checks, 44 lines checked
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ CI.KUnit: success for series starting with [1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream
2026-09-07 17:44 [PATCH 1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream Imre Deak
2026-09-07 17:44 ` [PATCH 2/2] drm/i915/dp_mst: Fix configuring TUs " Imre Deak
2026-09-07 18:09 ` ✗ CI.checkpatch: warning for series starting with [1/2] drm/i915/dp_mst: Fix configuring FEC " Patchwork
@ 2026-09-07 18:11 ` Patchwork
2026-09-07 18:52 ` ✓ Xe.CI.BAT: " Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-09-07 18:11 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-xe
== Series Details ==
Series: series starting with [1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream
URL : https://patchwork.freedesktop.org/series/173530/
State : success
== Summary ==
+ trap cleanup EXIT
+ kunitconfigs=('/kernel/drivers/gpu/tests/.kunitconfig' '/kernel/drivers/gpu/drm/xe/.kunitconfig' '/kernel/drivers/gpu/drm/tests/.kunitconfig' '/kernel/drivers/gpu/drm/ttm/tests/.kunitconfig' '/kernel/drivers/dma-buf/.kunitconfig')
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/tests/.kunitconfig
[18:09:45] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:09:50] 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
[18:10:10] Starting KUnit Kernel (1/1)...
[18:10:10] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:10:10] ============= refcount_interrupt (4 subtests) ==============
[18:10:10] [PASSED] test_single_irq_change
[18:10:10] [PASSED] test_nested_irq_change
[18:10:10] [PASSED] test_multiple_irq_change
[18:10:10] [PASSED] test_irq_save
[18:10:10] =============== [PASSED] refcount_interrupt ================
[18:10:10] ================= gpu_buddy (14 subtests) ==================
[18:10:10] [PASSED] gpu_test_buddy_alloc_limit
[18:10:10] [PASSED] gpu_test_buddy_alloc_optimistic
[18:10:10] [PASSED] gpu_test_buddy_alloc_pessimistic
[18:10:10] [PASSED] gpu_test_buddy_alloc_pathological
[18:10:10] [PASSED] gpu_test_buddy_alloc_contiguous
[18:10:10] [PASSED] gpu_test_buddy_alloc_clear
[18:10:10] [PASSED] gpu_test_buddy_alloc_range
[18:10:10] [PASSED] gpu_test_buddy_alloc_range_bias
[18:10:11] [PASSED] gpu_test_buddy_fragmentation_performance
[18:10:12] [PASSED] gpu_test_buddy_dirty_tracker_performance
[18:10:12] [PASSED] gpu_test_buddy_alloc_exceeds_max_order
[18:10:12] [PASSED] gpu_test_buddy_offset_aligned_allocation
[18:10:12] [PASSED] gpu_test_buddy_subtree_offset_alignment_stress
[18:10:12] [PASSED] gpu_test_buddy_addr_to_block
[18:10:12] ==================== [PASSED] gpu_buddy ====================
[18:10:12] ============================================================
[18:10:12] Testing complete. Ran 18 tests: passed: 18
[18:10:12] Elapsed time: 26.912s total, 4.398s configuring, 20.545s building, 1.920s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/xe/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[18:10:12] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:10: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
[18:10:48] Starting KUnit Kernel (1/1)...
[18:10:48] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:10:48] ============= refcount_interrupt (4 subtests) ==============
[18:10:48] [PASSED] test_single_irq_change
[18:10:48] [PASSED] test_nested_irq_change
[18:10:48] [PASSED] test_multiple_irq_change
[18:10:48] [PASSED] test_irq_save
[18:10:48] =============== [PASSED] refcount_interrupt ================
[18:10:48] ================== guc_buf (11 subtests) ===================
[18:10:48] [PASSED] test_smallest
[18:10:48] [PASSED] test_largest
[18:10:48] [PASSED] test_granular
[18:10:48] [PASSED] test_unique
[18:10:48] [PASSED] test_overlap
[18:10:48] [PASSED] test_reusable
[18:10:48] [PASSED] test_too_big
[18:10:48] [PASSED] test_flush
[18:10:48] [PASSED] test_lookup
[18:10:48] [PASSED] test_data
[18:10:48] [PASSED] test_class
[18:10:48] ===================== [PASSED] guc_buf =====================
[18:10:48] =================== guc_dbm (7 subtests) ===================
[18:10:48] [PASSED] test_empty
[18:10:48] [PASSED] test_default
[18:10:48] ======================== test_size ========================
[18:10:48] [PASSED] 4
[18:10:48] [PASSED] 8
[18:10:48] [PASSED] 32
[18:10:48] [PASSED] 256
[18:10:48] ==================== [PASSED] test_size ====================
[18:10:48] ======================= test_reuse ========================
[18:10:48] [PASSED] 4
[18:10:48] [PASSED] 8
[18:10:48] [PASSED] 32
[18:10:48] [PASSED] 256
[18:10:48] =================== [PASSED] test_reuse ====================
[18:10:48] =================== test_range_overlap ====================
[18:10:48] [PASSED] 4
[18:10:48] [PASSED] 8
[18:10:48] [PASSED] 32
[18:10:48] [PASSED] 256
[18:10:48] =============== [PASSED] test_range_overlap ================
[18:10:48] =================== test_range_compact ====================
[18:10:48] [PASSED] 4
[18:10:48] [PASSED] 8
[18:10:48] [PASSED] 32
[18:10:48] [PASSED] 256
[18:10:48] =============== [PASSED] test_range_compact ================
[18:10:48] ==================== test_range_spare =====================
[18:10:48] [PASSED] 4
[18:10:48] [PASSED] 8
[18:10:48] [PASSED] 32
[18:10:48] [PASSED] 256
[18:10:48] ================ [PASSED] test_range_spare =================
[18:10:48] ===================== [PASSED] guc_dbm =====================
[18:10:48] =================== guc_idm (6 subtests) ===================
[18:10:48] [PASSED] bad_init
[18:10:48] [PASSED] no_init
[18:10:48] [PASSED] init_fini
[18:10:48] [PASSED] check_used
[18:10:48] [PASSED] check_quota
[18:10:48] [PASSED] check_all
[18:10:48] ===================== [PASSED] guc_idm =====================
[18:10:48] =============== guc_klv_helpers (9 subtests) ===============
[18:10:48] [PASSED] test_count
[18:10:48] [PASSED] test_encode_u32
[18:10:48] [PASSED] test_encode_u64
[18:10:48] [PASSED] test_encode_string
[18:10:48] [PASSED] test_encode_object_raw
[18:10:48] [PASSED] test_encode_object_klv
[18:10:48] [PASSED] test_encode_object_nested
[18:10:48] [PASSED] test_encode_object_basic
[18:10:48] [PASSED] test_print
[18:10:48] ================= [PASSED] guc_klv_helpers =================
[18:10:48] =================== xe_log (4 subtests) ====================
[18:10:48] [PASSED] demo_cper
[18:10:48] [PASSED] demo_dmesg
[18:10:48] ======================= test_dmesg ========================
[18:10:48] [PASSED] test_fatal
[18:10:48] [PASSED] test_fatal_tile
[18:10:48] [PASSED] test_fatal_gt
[18:10:48] [PASSED] test_fatal_comp
[18:10:48] [PASSED] test_fatal_comp_tile
[18:10:48] [PASSED] test_fatal_comp_gt
[18:10:48] [PASSED] test_fatal_all
[18:10:48] [PASSED] test_recoverable
[18:10:48] [PASSED] test_recoverable_tile
[18:10:48] [PASSED] test_recoverable_gt
[18:10:48] [PASSED] test_recoverable_comp
[18:10:48] [PASSED] test_recoverable_comp_tile
[18:10:48] [PASSED] test_recoverable_comp_gt
[18:10:48] [PASSED] test_recoverable_all
[18:10:48] [PASSED] test_info
[18:10:48] [PASSED] test_info_tile
[18:10:48] [PASSED] test_info_gt
[18:10:48] [PASSED] test_info_err
[18:10:48] [PASSED] test_info_comp
[18:10:48] [PASSED] test_info_comp_tile
[18:10:48] [PASSED] test_info_comp_gt
[18:10:48] [PASSED] test_info_all
[18:10:48] [PASSED] test_hw_fatal
[18:10:48] [PASSED] test_hw_recoverable
[18:10:48] [PASSED] test_hw_corrected
[18:10:48] [PASSED] test_hw_informational
[18:10:48] =================== [PASSED] test_dmesg ====================
[18:10:48] ====================== test_invalid =======================
[18:10:48] [SKIPPED] no-component no-location no-warn (requires CONFIG_DRM_XE_DEBUG)
[18:10:48] [SKIPPED] reserved location (requires CONFIG_DRM_XE_DEBUG)
[18:10:48] [SKIPPED] unknown location (requires CONFIG_DRM_XE_DEBUG)
[18:10:48] [SKIPPED] nonzero-device-id location (requires CONFIG_DRM_XE_DEBUG)
[18:10:48] [SKIPPED] invalid-tile-id location (requires CONFIG_DRM_XE_DEBUG)
[18:10:48] [SKIPPED] invalid-gt-id location (requires CONFIG_DRM_XE_DEBUG)
[18:10:48] [SKIPPED] unknown component class (requires CONFIG_DRM_XE_DEBUG)
[18:10:48] [SKIPPED] unknown system component (requires CONFIG_DRM_XE_DEBUG)
[18:10:48] [SKIPPED] unknown hardware component (requires CONFIG_DRM_XE_DEBUG)
[18:10:48] [SKIPPED] unknown component and location (requires CONFIG_DRM_XE_DEBUG)
[18:10:48] ================== [SKIPPED] test_invalid ==================
[18:10:48] ===================== [PASSED] xe_log ======================
[18:10:48] ================== no_relay (3 subtests) ===================
[18:10:48] [PASSED] xe_drops_guc2pf_if_not_ready
[18:10:48] [PASSED] xe_drops_guc2vf_if_not_ready
[18:10:48] [PASSED] xe_rejects_send_if_not_ready
[18:10:48] ==================== [PASSED] no_relay =====================
[18:10:48] ================== pf_relay (14 subtests) ==================
[18:10:48] [PASSED] pf_rejects_guc2pf_too_short
[18:10:48] [PASSED] pf_rejects_guc2pf_too_long
[18:10:48] [PASSED] pf_rejects_guc2pf_no_payload
[18:10:48] [PASSED] pf_fails_no_payload
[18:10:48] [PASSED] pf_fails_bad_origin
[18:10:48] [PASSED] pf_fails_bad_type
[18:10:48] [PASSED] pf_txn_reports_error
[18:10:48] [PASSED] pf_txn_sends_pf2guc
[18:10:48] [PASSED] pf_sends_pf2guc
[18:10:48] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[18:10:48] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[18:10:48] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[18:10:48] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[18:10:48] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[18:10:48] ==================== [PASSED] pf_relay =====================
[18:10:48] ================== vf_relay (3 subtests) ===================
[18:10:48] [PASSED] vf_rejects_guc2vf_too_short
[18:10:48] [PASSED] vf_rejects_guc2vf_too_long
[18:10:48] [PASSED] vf_rejects_guc2vf_no_payload
[18:10:48] ==================== [PASSED] vf_relay =====================
[18:10:48] ================ pf_gt_config (9 subtests) =================
[18:10:48] [PASSED] fair_contexts_1vf
[18:10:48] [PASSED] fair_doorbells_1vf
[18:10:48] [PASSED] fair_ggtt_1vf
[18:10:48] ====================== fair_vram_1vf ======================
[18:10:48] [PASSED] 3.50 GiB
[18:10:48] [PASSED] 11.5 GiB
[18:10:48] [PASSED] 15.5 GiB
[18:10:48] [PASSED] 31.5 GiB
[18:10:48] [PASSED] 63.5 GiB
[18:10:48] [PASSED] 1.91 GiB
[18:10:48] ================== [PASSED] fair_vram_1vf ==================
[18:10:48] ================ fair_vram_1vf_admin_only =================
[18:10:48] [PASSED] 3.50 GiB
[18:10:48] [PASSED] 11.5 GiB
[18:10:48] [PASSED] 15.5 GiB
[18:10:48] [PASSED] 31.5 GiB
[18:10:48] [PASSED] 63.5 GiB
[18:10:48] [PASSED] 1.91 GiB
[18:10:48] ============ [PASSED] fair_vram_1vf_admin_only =============
[18:10:48] ====================== fair_contexts ======================
[18:10:48] [PASSED] 1 VF
[18:10:48] [PASSED] 2 VFs
[18:10:48] [PASSED] 3 VFs
[18:10:48] [PASSED] 4 VFs
[18:10:48] [PASSED] 5 VFs
[18:10:48] [PASSED] 6 VFs
[18:10:48] [PASSED] 7 VFs
[18:10:48] [PASSED] 8 VFs
[18:10:48] [PASSED] 9 VFs
[18:10:48] [PASSED] 10 VFs
[18:10:48] [PASSED] 11 VFs
[18:10:48] [PASSED] 12 VFs
[18:10:48] [PASSED] 13 VFs
[18:10:48] [PASSED] 14 VFs
[18:10:48] [PASSED] 15 VFs
[18:10:48] [PASSED] 16 VFs
[18:10:48] [PASSED] 17 VFs
[18:10:48] [PASSED] 18 VFs
[18:10:48] [PASSED] 19 VFs
[18:10:48] [PASSED] 20 VFs
[18:10:48] [PASSED] 21 VFs
[18:10:48] [PASSED] 22 VFs
[18:10:48] [PASSED] 23 VFs
[18:10:48] [PASSED] 24 VFs
[18:10:48] [PASSED] 25 VFs
[18:10:48] [PASSED] 26 VFs
[18:10:48] [PASSED] 27 VFs
[18:10:48] [PASSED] 28 VFs
[18:10:48] [PASSED] 29 VFs
[18:10:48] [PASSED] 30 VFs
[18:10:48] [PASSED] 31 VFs
[18:10:48] [PASSED] 32 VFs
[18:10:48] [PASSED] 33 VFs
[18:10:48] [PASSED] 34 VFs
[18:10:48] [PASSED] 35 VFs
[18:10:48] [PASSED] 36 VFs
[18:10:48] [PASSED] 37 VFs
[18:10:48] [PASSED] 38 VFs
[18:10:48] [PASSED] 39 VFs
[18:10:48] [PASSED] 40 VFs
[18:10:48] [PASSED] 41 VFs
[18:10:48] [PASSED] 42 VFs
[18:10:48] [PASSED] 43 VFs
[18:10:48] [PASSED] 44 VFs
[18:10:48] [PASSED] 45 VFs
[18:10:48] [PASSED] 46 VFs
[18:10:48] [PASSED] 47 VFs
[18:10:48] [PASSED] 48 VFs
[18:10:48] [PASSED] 49 VFs
[18:10:48] [PASSED] 50 VFs
[18:10:48] [PASSED] 51 VFs
[18:10:48] [PASSED] 52 VFs
[18:10:48] [PASSED] 53 VFs
[18:10:48] [PASSED] 54 VFs
[18:10:48] [PASSED] 55 VFs
[18:10:48] [PASSED] 56 VFs
[18:10:48] [PASSED] 57 VFs
[18:10:48] [PASSED] 58 VFs
[18:10:48] [PASSED] 59 VFs
[18:10:48] [PASSED] 60 VFs
[18:10:48] [PASSED] 61 VFs
[18:10:48] [PASSED] 62 VFs
[18:10:48] [PASSED] 63 VFs
[18:10:48] ================== [PASSED] fair_contexts ==================
[18:10:48] ===================== fair_doorbells ======================
[18:10:48] [PASSED] 1 VF
[18:10:48] [PASSED] 2 VFs
[18:10:48] [PASSED] 3 VFs
[18:10:48] [PASSED] 4 VFs
[18:10:48] [PASSED] 5 VFs
[18:10:48] [PASSED] 6 VFs
[18:10:48] [PASSED] 7 VFs
[18:10:48] [PASSED] 8 VFs
[18:10:48] [PASSED] 9 VFs
[18:10:48] [PASSED] 10 VFs
[18:10:48] [PASSED] 11 VFs
[18:10:48] [PASSED] 12 VFs
[18:10:48] [PASSED] 13 VFs
[18:10:48] [PASSED] 14 VFs
[18:10:48] [PASSED] 15 VFs
[18:10:48] [PASSED] 16 VFs
[18:10:48] [PASSED] 17 VFs
[18:10:48] [PASSED] 18 VFs
[18:10:48] [PASSED] 19 VFs
[18:10:48] [PASSED] 20 VFs
[18:10:48] [PASSED] 21 VFs
[18:10:48] [PASSED] 22 VFs
[18:10:48] [PASSED] 23 VFs
[18:10:48] [PASSED] 24 VFs
[18:10:48] [PASSED] 25 VFs
[18:10:48] [PASSED] 26 VFs
[18:10:48] [PASSED] 27 VFs
[18:10:48] [PASSED] 28 VFs
[18:10:48] [PASSED] 29 VFs
[18:10:48] [PASSED] 30 VFs
[18:10:48] [PASSED] 31 VFs
[18:10:48] [PASSED] 32 VFs
[18:10:48] [PASSED] 33 VFs
[18:10:48] [PASSED] 34 VFs
[18:10:48] [PASSED] 35 VFs
[18:10:48] [PASSED] 36 VFs
[18:10:48] [PASSED] 37 VFs
[18:10:48] [PASSED] 38 VFs
[18:10:48] [PASSED] 39 VFs
[18:10:48] [PASSED] 40 VFs
[18:10:48] [PASSED] 41 VFs
[18:10:48] [PASSED] 42 VFs
[18:10:48] [PASSED] 43 VFs
[18:10:48] [PASSED] 44 VFs
[18:10:48] [PASSED] 45 VFs
[18:10:48] [PASSED] 46 VFs
[18:10:48] [PASSED] 47 VFs
[18:10:48] [PASSED] 48 VFs
[18:10:48] [PASSED] 49 VFs
[18:10:48] [PASSED] 50 VFs
[18:10:48] [PASSED] 51 VFs
[18:10:48] [PASSED] 52 VFs
[18:10:48] [PASSED] 53 VFs
[18:10:48] [PASSED] 54 VFs
[18:10:48] [PASSED] 55 VFs
[18:10:48] [PASSED] 56 VFs
[18:10:48] [PASSED] 57 VFs
[18:10:48] [PASSED] 58 VFs
[18:10:48] [PASSED] 59 VFs
[18:10:48] [PASSED] 60 VFs
[18:10:48] [PASSED] 61 VFs
[18:10:48] [PASSED] 62 VFs
[18:10:48] [PASSED] 63 VFs
[18:10:48] ================= [PASSED] fair_doorbells ==================
[18:10:48] ======================== fair_ggtt ========================
[18:10:48] [PASSED] 1 VF
[18:10:48] [PASSED] 2 VFs
[18:10:48] [PASSED] 3 VFs
[18:10:48] [PASSED] 4 VFs
[18:10:48] [PASSED] 5 VFs
[18:10:48] [PASSED] 6 VFs
[18:10:48] [PASSED] 7 VFs
[18:10:48] [PASSED] 8 VFs
[18:10:48] [PASSED] 9 VFs
[18:10:48] [PASSED] 10 VFs
[18:10:48] [PASSED] 11 VFs
[18:10:48] [PASSED] 12 VFs
[18:10:48] [PASSED] 13 VFs
[18:10:48] [PASSED] 14 VFs
[18:10:48] [PASSED] 15 VFs
[18:10:48] [PASSED] 16 VFs
[18:10:48] [PASSED] 17 VFs
[18:10:48] [PASSED] 18 VFs
[18:10:48] [PASSED] 19 VFs
[18:10:48] [PASSED] 20 VFs
[18:10:48] [PASSED] 21 VFs
[18:10:48] [PASSED] 22 VFs
[18:10:48] [PASSED] 23 VFs
[18:10:48] [PASSED] 24 VFs
[18:10:48] [PASSED] 25 VFs
[18:10:48] [PASSED] 26 VFs
[18:10:48] [PASSED] 27 VFs
[18:10:48] [PASSED] 28 VFs
[18:10:48] [PASSED] 29 VFs
[18:10:48] [PASSED] 30 VFs
[18:10:48] [PASSED] 31 VFs
[18:10:48] [PASSED] 32 VFs
[18:10:48] [PASSED] 33 VFs
[18:10:48] [PASSED] 34 VFs
[18:10:48] [PASSED] 35 VFs
[18:10:48] [PASSED] 36 VFs
[18:10:48] [PASSED] 37 VFs
[18:10:48] [PASSED] 38 VFs
[18:10:48] [PASSED] 39 VFs
[18:10:48] [PASSED] 40 VFs
[18:10:48] [PASSED] 41 VFs
[18:10:48] [PASSED] 42 VFs
[18:10:48] [PASSED] 43 VFs
[18:10:48] [PASSED] 44 VFs
[18:10:48] [PASSED] 45 VFs
[18:10:48] [PASSED] 46 VFs
[18:10:48] [PASSED] 47 VFs
[18:10:48] [PASSED] 48 VFs
[18:10:48] [PASSED] 49 VFs
[18:10:48] [PASSED] 50 VFs
[18:10:48] [PASSED] 51 VFs
[18:10:48] [PASSED] 52 VFs
[18:10:48] [PASSED] 53 VFs
[18:10:48] [PASSED] 54 VFs
[18:10:48] [PASSED] 55 VFs
[18:10:48] [PASSED] 56 VFs
[18:10:48] [PASSED] 57 VFs
[18:10:48] [PASSED] 58 VFs
[18:10:48] [PASSED] 59 VFs
[18:10:48] [PASSED] 60 VFs
[18:10:48] [PASSED] 61 VFs
[18:10:48] [PASSED] 62 VFs
[18:10:48] [PASSED] 63 VFs
[18:10:48] ==================== [PASSED] fair_ggtt ====================
[18:10:48] ======================== fair_vram ========================
[18:10:48] [PASSED] 1 VF
[18:10:48] [PASSED] 2 VFs
[18:10:48] [PASSED] 3 VFs
[18:10:48] [PASSED] 4 VFs
[18:10:48] [PASSED] 5 VFs
[18:10:48] [PASSED] 6 VFs
[18:10:48] [PASSED] 7 VFs
[18:10:48] [PASSED] 8 VFs
[18:10:48] [PASSED] 9 VFs
[18:10:48] [PASSED] 10 VFs
[18:10:48] [PASSED] 11 VFs
[18:10:48] [PASSED] 12 VFs
[18:10:48] [PASSED] 13 VFs
[18:10:48] [PASSED] 14 VFs
[18:10:48] [PASSED] 15 VFs
[18:10:48] [PASSED] 16 VFs
[18:10:48] [PASSED] 17 VFs
[18:10:48] [PASSED] 18 VFs
[18:10:48] [PASSED] 19 VFs
[18:10:48] [PASSED] 20 VFs
[18:10:48] [PASSED] 21 VFs
[18:10:48] [PASSED] 22 VFs
[18:10:48] [PASSED] 23 VFs
[18:10:48] [PASSED] 24 VFs
[18:10:48] [PASSED] 25 VFs
[18:10:48] [PASSED] 26 VFs
[18:10:48] [PASSED] 27 VFs
[18:10:48] [PASSED] 28 VFs
[18:10:48] [PASSED] 29 VFs
[18:10:48] [PASSED] 30 VFs
[18:10:48] [PASSED] 31 VFs
[18:10:48] [PASSED] 32 VFs
[18:10:48] [PASSED] 33 VFs
[18:10:48] [PASSED] 34 VFs
[18:10:48] [PASSED] 35 VFs
[18:10:48] [PASSED] 36 VFs
[18:10:48] [PASSED] 37 VFs
[18:10:48] [PASSED] 38 VFs
[18:10:48] [PASSED] 39 VFs
[18:10:48] [PASSED] 40 VFs
[18:10:48] [PASSED] 41 VFs
[18:10:48] [PASSED] 42 VFs
[18:10:48] [PASSED] 43 VFs
[18:10:48] [PASSED] 44 VFs
[18:10:48] [PASSED] 45 VFs
[18:10:48] [PASSED] 46 VFs
[18:10:48] [PASSED] 47 VFs
[18:10:48] [PASSED] 48 VFs
[18:10:48] [PASSED] 49 VFs
[18:10:48] [PASSED] 50 VFs
[18:10:48] [PASSED] 51 VFs
[18:10:48] [PASSED] 52 VFs
[18:10:48] [PASSED] 53 VFs
[18:10:48] [PASSED] 54 VFs
[18:10:48] [PASSED] 55 VFs
[18:10:48] [PASSED] 56 VFs
[18:10:48] [PASSED] 57 VFs
[18:10:48] [PASSED] 58 VFs
[18:10:48] [PASSED] 59 VFs
[18:10:48] [PASSED] 60 VFs
[18:10:48] [PASSED] 61 VFs
[18:10:48] [PASSED] 62 VFs
[18:10:48] [PASSED] 63 VFs
[18:10:48] ==================== [PASSED] fair_vram ====================
[18:10:48] ================== [PASSED] pf_gt_config ===================
[18:10:48] ===================== lmtt (1 subtest) =====================
[18:10:48] ======================== test_ops =========================
[18:10:48] [PASSED] 2-level
[18:10:48] [PASSED] multi-level
[18:10:48] ==================== [PASSED] test_ops =====================
[18:10:48] ====================== [PASSED] lmtt =======================
[18:10:48] ================= sriov_packet (1 subtest) =================
[18:10:48] [PASSED] test_descriptor_init
[18:10:48] ================== [PASSED] sriov_packet ===================
[18:10:48] ================= pf_service (11 subtests) =================
[18:10:48] [PASSED] pf_negotiate_any
[18:10:48] [PASSED] pf_negotiate_base_match
[18:10:48] [PASSED] pf_negotiate_base_newer
[18:10:48] [PASSED] pf_negotiate_base_next
[18:10:48] [SKIPPED] pf_negotiate_base_older (no older minor)
[18:10:48] [PASSED] pf_negotiate_base_prev
[18:10:48] [PASSED] pf_negotiate_latest_match
[18:10:48] [PASSED] pf_negotiate_latest_newer
[18:10:48] [PASSED] pf_negotiate_latest_next
[18:10:48] [SKIPPED] pf_negotiate_latest_older (no older minor)
[18:10:48] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[18:10:48] =================== [PASSED] pf_service ====================
[18:10:48] ================= xe_guc_g2g (2 subtests) ==================
[18:10:48] ============== xe_live_guc_g2g_kunit_default ==============
[18:10:48] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[18:10:48] ============== xe_live_guc_g2g_kunit_allmem ===============
[18:10:48] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[18:10:48] =================== [SKIPPED] xe_guc_g2g ===================
[18:10:48] =================== xe_mocs (2 subtests) ===================
[18:10:48] ================ xe_live_mocs_kernel_kunit ================
[18:10:48] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[18:10:48] ================ xe_live_mocs_reset_kunit =================
[18:10:48] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[18:10:48] ==================== [SKIPPED] xe_mocs =====================
[18:10:48] ================= xe_migrate (2 subtests) ==================
[18:10:48] ================= xe_migrate_sanity_kunit =================
[18:10:48] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[18:10:48] ================== xe_validate_ccs_kunit ==================
[18:10:48] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[18:10:48] =================== [SKIPPED] xe_migrate ===================
[18:10:48] ================== xe_dma_buf (1 subtest) ==================
[18:10:48] ==================== xe_dma_buf_kunit =====================
[18:10:48] ================ [SKIPPED] xe_dma_buf_kunit ================
[18:10:48] =================== [SKIPPED] xe_dma_buf ===================
[18:10:48] ================= xe_bo_shrink (1 subtest) =================
[18:10:48] =================== xe_bo_shrink_kunit ====================
[18:10:48] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[18:10:48] ================== [SKIPPED] xe_bo_shrink ==================
[18:10:48] ==================== xe_bo (2 subtests) ====================
[18:10:48] ================== xe_ccs_migrate_kunit ===================
[18:10:48] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[18:10:48] ==================== xe_bo_evict_kunit ====================
[18:10:48] =============== [SKIPPED] xe_bo_evict_kunit ================
[18:10:48] ===================== [SKIPPED] xe_bo ======================
[18:10:48] =================== xe_any (9 subtests) ====================
[18:10:48] [PASSED] test_to_xe
[18:10:48] [PASSED] test_to_dev
[18:10:48] [PASSED] test_to_pdev
[18:10:48] [PASSED] test_to_drm
[18:10:48] [PASSED] test_if_pdev
[18:10:48] [PASSED] test_if_xe
[18:10:48] [PASSED] test_if_tile
[18:10:48] [PASSED] test_if_gt
[18:10:48] [PASSED] test_to_id
[18:10:48] ===================== [PASSED] xe_any ======================
[18:10:48] ==================== args (13 subtests) ====================
[18:10:48] [PASSED] count_args_test
[18:10:48] [PASSED] call_args_example
[18:10:48] [PASSED] call_args_test
[18:10:48] [PASSED] drop_first_arg_example
[18:10:48] [PASSED] drop_first_arg_test
[18:10:48] [PASSED] first_arg_example
[18:10:48] [PASSED] first_arg_test
[18:10:48] [PASSED] last_arg_example
[18:10:48] [PASSED] last_arg_test
[18:10:48] [PASSED] pick_arg_example
[18:10:48] [PASSED] if_args_example
[18:10:48] [PASSED] if_args_test
[18:10:48] [PASSED] sep_comma_example
[18:10:48] ====================== [PASSED] args =======================
[18:10:48] =================== xe_pci (3 subtests) ====================
[18:10:48] ==================== check_graphics_ip ====================
[18:10:48] [PASSED] 12.00 Xe_LP
[18:10:48] [PASSED] 12.10 Xe_LP+
[18:10:48] [PASSED] 12.55 Xe_HPG
[18:10:48] [PASSED] 12.60 Xe_HPC
[18:10:48] [PASSED] 12.70 Xe_LPG
[18:10:48] [PASSED] 12.71 Xe_LPG
[18:10:48] [PASSED] 12.74 Xe_LPG+
[18:10:48] [PASSED] 20.01 Xe2_HPG
[18:10:48] [PASSED] 20.02 Xe2_HPG
[18:10:48] [PASSED] 20.04 Xe2_LPG
[18:10:48] [PASSED] 30.00 Xe3_LPG
[18:10:48] [PASSED] 30.01 Xe3_LPG
[18:10:48] [PASSED] 30.03 Xe3_LPG
[18:10:48] [PASSED] 30.04 Xe3_LPG
[18:10:48] [PASSED] 30.05 Xe3_LPG
[18:10:48] [PASSED] 35.10 Xe3p_LPG
[18:10:48] [PASSED] 35.11 Xe3p_XPC
[18:10:48] ================ [PASSED] check_graphics_ip ================
[18:10:48] ===================== check_media_ip ======================
[18:10:48] [PASSED] 12.00 Xe_M
[18:10:48] [PASSED] 12.55 Xe_HPM
[18:10:48] [PASSED] 13.00 Xe_LPM+
[18:10:48] [PASSED] 13.01 Xe2_HPM
[18:10:48] [PASSED] 20.00 Xe2_LPM
[18:10:48] [PASSED] 30.00 Xe3_LPM
[18:10:48] [PASSED] 30.02 Xe3_LPM
[18:10:48] [PASSED] 35.00 Xe3p_LPM
[18:10:48] [PASSED] 35.03 Xe3p_HPM
[18:10:48] ================= [PASSED] check_media_ip ==================
[18:10:48] =================== check_platform_desc ===================
[18:10:48] [PASSED] 0x9A60 (TIGERLAKE)
[18:10:48] [PASSED] 0x9A68 (TIGERLAKE)
[18:10:48] [PASSED] 0x9A70 (TIGERLAKE)
[18:10:48] [PASSED] 0x9A40 (TIGERLAKE)
[18:10:48] [PASSED] 0x9A49 (TIGERLAKE)
[18:10:48] [PASSED] 0x9A59 (TIGERLAKE)
[18:10:48] [PASSED] 0x9A78 (TIGERLAKE)
[18:10:48] [PASSED] 0x9AC0 (TIGERLAKE)
[18:10:48] [PASSED] 0x9AC9 (TIGERLAKE)
[18:10:48] [PASSED] 0x9AD9 (TIGERLAKE)
[18:10:48] [PASSED] 0x9AF8 (TIGERLAKE)
[18:10:48] [PASSED] 0x4C80 (ROCKETLAKE)
[18:10:48] [PASSED] 0x4C8A (ROCKETLAKE)
[18:10:48] [PASSED] 0x4C8B (ROCKETLAKE)
[18:10:48] [PASSED] 0x4C8C (ROCKETLAKE)
[18:10:48] [PASSED] 0x4C90 (ROCKETLAKE)
[18:10:48] [PASSED] 0x4C9A (ROCKETLAKE)
[18:10:48] [PASSED] 0x4680 (ALDERLAKE_S)
[18:10:48] [PASSED] 0x4682 (ALDERLAKE_S)
[18:10:48] [PASSED] 0x4688 (ALDERLAKE_S)
[18:10:48] [PASSED] 0x468A (ALDERLAKE_S)
[18:10:48] [PASSED] 0x468B (ALDERLAKE_S)
[18:10:48] [PASSED] 0x4690 (ALDERLAKE_S)
[18:10:48] [PASSED] 0x4692 (ALDERLAKE_S)
[18:10:48] [PASSED] 0x4693 (ALDERLAKE_S)
[18:10:48] [PASSED] 0x46A0 (ALDERLAKE_P)
[18:10:48] [PASSED] 0x46A1 (ALDERLAKE_P)
[18:10:48] [PASSED] 0x46A2 (ALDERLAKE_P)
[18:10:48] [PASSED] 0x46A3 (ALDERLAKE_P)
[18:10:48] [PASSED] 0x46A6 (ALDERLAKE_P)
[18:10:48] [PASSED] 0x46A8 (ALDERLAKE_P)
[18:10:48] [PASSED] 0x46AA (ALDERLAKE_P)
[18:10:48] [PASSED] 0x462A (ALDERLAKE_P)
[18:10:48] [PASSED] 0x4626 (ALDERLAKE_P)
[18:10:48] [PASSED] 0x4628 (ALDERLAKE_P)
[18:10:48] [PASSED] 0x46B0 (ALDERLAKE_P)
[18:10:48] [PASSED] 0x46B1 (ALDERLAKE_P)
[18:10:48] [PASSED] 0x46B2 (ALDERLAKE_P)
[18:10:48] [PASSED] 0x46B3 (ALDERLAKE_P)
[18:10:48] [PASSED] 0x46C0 (ALDERLAKE_P)
[18:10:48] [PASSED] 0x46C1 (ALDERLAKE_P)
[18:10:48] [PASSED] 0x46C2 (ALDERLAKE_P)
[18:10:48] [PASSED] 0x46C3 (ALDERLAKE_P)
[18:10:48] [PASSED] 0x46D0 (ALDERLAKE_N)
[18:10:48] [PASSED] 0x46D1 (ALDERLAKE_N)
[18:10:48] [PASSED] 0x46D2 (ALDERLAKE_N)
[18:10:48] [PASSED] 0x46D3 (ALDERLAKE_N)
[18:10:48] [PASSED] 0x46D4 (ALDERLAKE_N)
[18:10:48] [PASSED] 0xA721 (ALDERLAKE_P)
[18:10:48] [PASSED] 0xA7A1 (ALDERLAKE_P)
[18:10:48] [PASSED] 0xA7A9 (ALDERLAKE_P)
[18:10:48] [PASSED] 0xA7AC (ALDERLAKE_P)
[18:10:48] [PASSED] 0xA7AD (ALDERLAKE_P)
[18:10:48] [PASSED] 0xA720 (ALDERLAKE_P)
[18:10:48] [PASSED] 0xA7A0 (ALDERLAKE_P)
[18:10:48] [PASSED] 0xA7A8 (ALDERLAKE_P)
[18:10:48] [PASSED] 0xA7AA (ALDERLAKE_P)
[18:10:48] [PASSED] 0xA7AB (ALDERLAKE_P)
[18:10:48] [PASSED] 0xA780 (ALDERLAKE_S)
[18:10:48] [PASSED] 0xA781 (ALDERLAKE_S)
[18:10:48] [PASSED] 0xA782 (ALDERLAKE_S)
[18:10:48] [PASSED] 0xA783 (ALDERLAKE_S)
[18:10:48] [PASSED] 0xA788 (ALDERLAKE_S)
[18:10:48] [PASSED] 0xA789 (ALDERLAKE_S)
[18:10:48] [PASSED] 0xA78A (ALDERLAKE_S)
[18:10:48] [PASSED] 0xA78B (ALDERLAKE_S)
[18:10:48] [PASSED] 0x4905 (DG1)
[18:10:48] [PASSED] 0x4906 (DG1)
[18:10:48] [PASSED] 0x4907 (DG1)
[18:10:48] [PASSED] 0x4908 (DG1)
[18:10:48] [PASSED] 0x4909 (DG1)
[18:10:48] [PASSED] 0x56C0 (DG2)
[18:10:48] [PASSED] 0x56C2 (DG2)
[18:10:48] [PASSED] 0x56C1 (DG2)
[18:10:48] [PASSED] 0x7D51 (METEORLAKE)
[18:10:48] [PASSED] 0x7DD1 (METEORLAKE)
[18:10:48] [PASSED] 0x7D41 (METEORLAKE)
[18:10:48] [PASSED] 0x7D67 (METEORLAKE)
[18:10:48] [PASSED] 0xB640 (METEORLAKE)
[18:10:48] [PASSED] 0x56A0 (DG2)
[18:10:48] [PASSED] 0x56A1 (DG2)
[18:10:48] [PASSED] 0x56A2 (DG2)
[18:10:48] [PASSED] 0x56BE (DG2)
[18:10:48] [PASSED] 0x56BF (DG2)
[18:10:48] [PASSED] 0x5690 (DG2)
[18:10:48] [PASSED] 0x5691 (DG2)
[18:10:48] [PASSED] 0x5692 (DG2)
[18:10:48] [PASSED] 0x56A5 (DG2)
[18:10:48] [PASSED] 0x56A6 (DG2)
[18:10:48] [PASSED] 0x56B0 (DG2)
[18:10:48] [PASSED] 0x56B1 (DG2)
[18:10:48] [PASSED] 0x56BA (DG2)
[18:10:48] [PASSED] 0x56BB (DG2)
[18:10:48] [PASSED] 0x56BC (DG2)
[18:10:48] [PASSED] 0x56BD (DG2)
[18:10:48] [PASSED] 0x5693 (DG2)
[18:10:48] [PASSED] 0x5694 (DG2)
[18:10:48] [PASSED] 0x5695 (DG2)
[18:10:48] [PASSED] 0x56A3 (DG2)
[18:10:48] [PASSED] 0x56A4 (DG2)
[18:10:48] [PASSED] 0x56B2 (DG2)
[18:10:48] [PASSED] 0x56B3 (DG2)
[18:10:48] [PASSED] 0x5696 (DG2)
[18:10:48] [PASSED] 0x5697 (DG2)
[18:10:48] [PASSED] 0xB69 (PVC)
[18:10:48] [PASSED] 0xB6E (PVC)
[18:10:48] [PASSED] 0xBD4 (PVC)
[18:10:48] [PASSED] 0xBD5 (PVC)
[18:10:48] [PASSED] 0xBD6 (PVC)
[18:10:48] [PASSED] 0xBD7 (PVC)
[18:10:48] [PASSED] 0xBD8 (PVC)
[18:10:48] [PASSED] 0xBD9 (PVC)
[18:10:48] [PASSED] 0xBDA (PVC)
[18:10:48] [PASSED] 0xBDB (PVC)
[18:10:48] [PASSED] 0xBE0 (PVC)
[18:10:48] [PASSED] 0xBE1 (PVC)
[18:10:48] [PASSED] 0xBE5 (PVC)
[18:10:48] [PASSED] 0x7D40 (METEORLAKE)
[18:10:48] [PASSED] 0x7D45 (METEORLAKE)
[18:10:48] [PASSED] 0x7D55 (METEORLAKE)
[18:10:48] [PASSED] 0x7D60 (METEORLAKE)
[18:10:48] [PASSED] 0x7DD5 (METEORLAKE)
[18:10:48] [PASSED] 0x6420 (LUNARLAKE)
[18:10:48] [PASSED] 0x64A0 (LUNARLAKE)
[18:10:48] [PASSED] 0x64B0 (LUNARLAKE)
[18:10:48] [PASSED] 0xE202 (BATTLEMAGE)
[18:10:48] [PASSED] 0xE209 (BATTLEMAGE)
[18:10:48] [PASSED] 0xE20B (BATTLEMAGE)
[18:10:48] [PASSED] 0xE20C (BATTLEMAGE)
[18:10:48] [PASSED] 0xE20D (BATTLEMAGE)
[18:10:48] [PASSED] 0xE210 (BATTLEMAGE)
[18:10:48] [PASSED] 0xE211 (BATTLEMAGE)
[18:10:48] [PASSED] 0xE212 (BATTLEMAGE)
[18:10:48] [PASSED] 0xE216 (BATTLEMAGE)
[18:10:48] [PASSED] 0xE220 (BATTLEMAGE)
[18:10:48] [PASSED] 0xE221 (BATTLEMAGE)
[18:10:48] [PASSED] 0xE222 (BATTLEMAGE)
[18:10:48] [PASSED] 0xE223 (BATTLEMAGE)
[18:10:48] [PASSED] 0xB080 (PANTHERLAKE)
[18:10:48] [PASSED] 0xB081 (PANTHERLAKE)
[18:10:48] [PASSED] 0xB082 (PANTHERLAKE)
[18:10:48] [PASSED] 0xB083 (PANTHERLAKE)
[18:10:48] [PASSED] 0xB084 (PANTHERLAKE)
[18:10:48] [PASSED] 0xB085 (PANTHERLAKE)
[18:10:48] [PASSED] 0xB086 (PANTHERLAKE)
[18:10:48] [PASSED] 0xB087 (PANTHERLAKE)
[18:10:48] [PASSED] 0xB08F (PANTHERLAKE)
[18:10:48] [PASSED] 0xB090 (PANTHERLAKE)
[18:10:48] [PASSED] 0xB0A0 (PANTHERLAKE)
[18:10:48] [PASSED] 0xB0B0 (PANTHERLAKE)
[18:10:48] [PASSED] 0xFD80 (PANTHERLAKE)
[18:10:48] [PASSED] 0xFD81 (PANTHERLAKE)
[18:10:48] [PASSED] 0xD740 (NOVALAKE_S)
[18:10:48] [PASSED] 0xD741 (NOVALAKE_S)
[18:10:48] [PASSED] 0xD742 (NOVALAKE_S)
[18:10:48] [PASSED] 0xD743 (NOVALAKE_S)
[18:10:48] [PASSED] 0xD745 (NOVALAKE_S)
[18:10:48] [PASSED] 0xD74A (NOVALAKE_S)
[18:10:48] [PASSED] 0xD74B (NOVALAKE_S)
[18:10:48] [PASSED] 0x674C (CRESCENTISLAND)
[18:10:48] [PASSED] 0x674D (CRESCENTISLAND)
[18:10:48] [PASSED] 0x674E (CRESCENTISLAND)
[18:10:48] [PASSED] 0x674F (CRESCENTISLAND)
[18:10:48] [PASSED] 0x6750 (CRESCENTISLAND)
[18:10:48] [PASSED] 0xD750 (NOVALAKE_P)
[18:10:48] [PASSED] 0xD751 (NOVALAKE_P)
[18:10:48] [PASSED] 0xD752 (NOVALAKE_P)
[18:10:48] [PASSED] 0xD753 (NOVALAKE_P)
[18:10:48] [PASSED] 0xD754 (NOVALAKE_P)
[18:10:48] [PASSED] 0xD755 (NOVALAKE_P)
[18:10:48] [PASSED] 0xD756 (NOVALAKE_P)
[18:10:48] [PASSED] 0xD757 (NOVALAKE_P)
[18:10:48] [PASSED] 0xD75F (NOVALAKE_P)
[18:10:48] =============== [PASSED] check_platform_desc ===============
[18:10:48] ===================== [PASSED] xe_pci ======================
[18:10:48] ============= xe_rtp_tables_test (5 subtests) ==============
[18:10:48] ================== xe_rtp_table_gt_test ===================
[18:10:48] [PASSED] gt_was/14011060649
[18:10:48] [PASSED] gt_was/14011059788
[18:10:48] [PASSED] gt_was/14015795083
[18:10:48] [PASSED] gt_was/16021867713
[18:10:48] [PASSED] gt_was/14019449301
[18:10:48] [PASSED] gt_was/16028005424
[18:10:48] [PASSED] gt_was/14026578760
[18:10:48] [PASSED] gt_was/1409420604
[18:10:48] [PASSED] gt_was/1408615072
[18:10:48] [PASSED] gt_was/22010523718
[18:10:48] [PASSED] gt_was/14011006942
[18:10:48] [PASSED] gt_was/14014830051
[18:10:48] [PASSED] gt_was/18018781329
[18:10:48] [PASSED] gt_was/1509235366
[18:10:48] [PASSED] gt_was/18018781329
[18:10:48] [PASSED] gt_was/16016694945
[18:10:48] [PASSED] gt_was/14018575942
[18:10:48] [PASSED] gt_was/22016670082
[18:10:48] [PASSED] gt_was/22016670082
[18:10:48] [PASSED] gt_was/14017421178
[18:10:48] [PASSED] gt_was/16025250150
[18:10:48] [PASSED] gt_was/14021871409
[18:10:48] [PASSED] gt_was/16021865536
[18:10:48] [PASSED] gt_was/14021486841
[18:10:48] [PASSED] gt_was/14025160223
[18:10:48] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[18:10:48] [PASSED] gt_was/14025635424
[18:10:48] [PASSED] gt_was/16028005424
[18:10:48] ============== [PASSED] xe_rtp_table_gt_test ===============
[18:10:48] ================== xe_rtp_table_gt_test ===================
[18:10:48] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[18:10:48] [PASSED] gt_tunings/Tuning: 32B Access Enable
[18:10:48] [PASSED] gt_tunings/Tuning: L3 cache
[18:10:48] [PASSED] gt_tunings/Tuning: L3 cache - media
[18:10:48] [PASSED] gt_tunings/Tuning: Compression Overfetch
[18:10:48] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[18:10:48] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[18:10:48] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[18:10:48] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[18:10:48] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[18:10:48] [PASSED] gt_tunings/Tuning: Stateless compression control
[18:10:48] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[18:10:48] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[18:10:48] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[18:10:48] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[18:10:48] ============== [PASSED] xe_rtp_table_gt_test ===============
[18:10:48] ================== xe_rtp_table_oob_test ==================
[18:10:48] [PASSED] oob_was/1607983814
[18:10:48] [PASSED] oob_was/16010904313
[18:10:48] [PASSED] oob_was/18022495364
[18:10:48] [PASSED] oob_was/22012773006
[18:10:48] [PASSED] oob_was/14014475959
[18:10:48] [PASSED] oob_was/22011391025
[18:10:48] [PASSED] oob_was/22012727170
[18:10:48] [PASSED] oob_was/22012727685
[18:10:48] [PASSED] oob_was/22016596838
[18:10:48] [PASSED] oob_was/18020744125
[18:10:48] [PASSED] oob_was/1409600907
[18:10:48] [PASSED] oob_was/22014953428
[18:10:48] [PASSED] oob_was/16017236439
[18:10:48] [PASSED] oob_was/14019821291
[18:10:48] [PASSED] oob_was/14015076503
[18:10:48] [PASSED] oob_was/14018913170
[18:10:48] [PASSED] oob_was/14018094691
[18:10:48] [PASSED] oob_was/18024947630
[18:10:48] [PASSED] oob_was/16022287689
[18:10:48] [PASSED] oob_was/13011645652
[18:10:48] [PASSED] oob_was/14022293748
[18:10:48] [PASSED] oob_was/22019794406
[18:10:48] [PASSED] oob_was/22019338487
[18:10:48] [PASSED] oob_was/16023588340
[18:10:48] [PASSED] oob_was/14019789679
[18:10:48] [PASSED] oob_was/14022866841
[18:10:48] [PASSED] oob_was/16021333562
[18:10:48] [PASSED] oob_was/14016712196
[18:10:48] [PASSED] oob_was/14015568240
[18:10:48] [PASSED] oob_was/18013179988
[18:10:48] [PASSED] oob_was/1508761755
[18:10:48] [PASSED] oob_was/16023105232
[18:10:48] [PASSED] oob_was/16026508708
[18:10:48] [PASSED] oob_was/14020001231
[18:10:48] [PASSED] oob_was/16023683509
[18:10:48] [PASSED] oob_was/14025515070
[18:10:48] [PASSED] oob_was/15015404425_disable
[18:10:48] [PASSED] oob_was/16026007364
[18:10:48] [PASSED] oob_was/14020316580
[18:10:48] [PASSED] oob_was/14025883347
[18:10:48] [PASSED] oob_was/16029380221
[18:10:48] [PASSED] oob_was/22022079272
[18:10:48] [PASSED] oob_was/16029897822
[18:10:48] [PASSED] oob_was/14027054324
[18:10:48] ============== [PASSED] xe_rtp_table_oob_test ==============
[18:10:48] ================ xe_rtp_table_dev_oob_test ================
[18:10:48] [PASSED] device_oob_was/22010954014
[18:10:48] [PASSED] device_oob_was/15015404425
[18:10:48] [PASSED] device_oob_was/22019338487_display
[18:10:48] [PASSED] device_oob_was/14022085890
[18:10:48] [PASSED] device_oob_was/14026539277
[18:10:48] [PASSED] device_oob_was/14026633728
[18:10:48] [PASSED] device_oob_was/14026746987
[18:10:48] [PASSED] device_oob_was/14026779378
[18:10:48] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[18:10:48] ========== xe_rtp_table_missing_upper_bound_test ==========
[18:10:48] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[18:10:48] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[18:10:48] [PASSED] register_whitelist/1806527549
[18:10:48] [PASSED] register_whitelist/allow_read_ctx_timestamp
[18:10:48] [PASSED] register_whitelist/allow_read_queue_timestamp
[18:10:48] [PASSED] register_whitelist/16014440446
[18:10:48] [PASSED] register_whitelist/16017236439
[18:10:48] [PASSED] register_whitelist/16020183090
[18:10:48] [PASSED] register_whitelist/14024997852
[18:10:48] [PASSED] register_whitelist/14024997852
[18:10:48] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[18:10:48] =============== [PASSED] xe_rtp_tables_test ================
[18:10:48] =================== xe_rtp (3 subtests) ====================
[18:10:48] =================== xe_rtp_rules_tests ====================
[18:10:48] [PASSED] no
[18:10:48] [PASSED] yes
[18:10:48] [PASSED] no-and-no
[18:10:48] [PASSED] no-and-yes
[18:10:48] [PASSED] yes-and-no
[18:10:48] [PASSED] yes-and-yes
[18:10:48] [PASSED] no-or-no
[18:10:48] [PASSED] no-or-yes
[18:10:48] [PASSED] yes-or-no
[18:10:48] [PASSED] yes-or-yes
[18:10:48] [PASSED] no-yes-or-yes-no
[18:10:48] [PASSED] no-yes-or-yes-yes
[18:10:48] [PASSED] yes-yes-or-no-yes
[18:10:48] [PASSED] yes-yes-or-yes-yes
[18:10:48] [PASSED] no-no-or-yes-or-no
[18:10:48] [PASSED] or
[18:10:48] [PASSED] or-yes
[18:10:48] [PASSED] or-no
[18:10:48] [PASSED] yes-or
[18:10:48] [PASSED] no-or
[18:10:48] [PASSED] no-or-or-yes
[18:10:48] [PASSED] yes-or-or-no
[18:10:48] [PASSED] no-or-or-no
[18:10:48] [PASSED] missing-context-engine-class
[18:10:48] [PASSED] missing-context-engine-class-or-yes
[18:10:48] [PASSED] missing-context-engine-class-or-or-yes
[18:10:48] =============== [PASSED] xe_rtp_rules_tests ================
[18:10:48] =============== xe_rtp_process_to_sr_tests ================
[18:10:48] [PASSED] coalesce-same-reg
[18:10:48] [PASSED] coalesce-same-reg-literal-and-func
[18:10:48] [PASSED] no-match-no-add
[18:10:48] [PASSED] two-regs-two-entries
[18:10:48] [PASSED] clr-one-set-other
[18:10:48] [PASSED] set-field
[18:10:48] [PASSED] conflict-duplicate
[18:10:48] [PASSED] conflict-not-disjoint
[18:10:48] [PASSED] conflict-not-disjoint-literal-and-func
[18:10:48] [PASSED] conflict-reg-type
[18:10:48] [PASSED] bad-mcr-reg-forced-to-regular
[18:10:48] [PASSED] bad-regular-reg-forced-to-mcr
[18:10:48] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[18:10:48] ================== xe_rtp_process_tests ===================
[18:10:48] [PASSED] active1
[18:10:48] [PASSED] active2
[18:10:48] [PASSED] active-inactive
[18:10:48] [PASSED] inactive-active
[18:10:48] [PASSED] inactive-active-inactive
[18:10:48] [PASSED] inactive-inactive-inactive
[18:10:48] ============== [PASSED] xe_rtp_process_tests ===============
[18:10:48] ===================== [PASSED] xe_rtp ======================
[18:10:48] ==================== xe_wa (1 subtest) =====================
[18:10:48] ======================== xe_wa_gt =========================
[18:10:48] [PASSED] TIGERLAKE B0
[18:10:48] [PASSED] DG1 A0
[18:10:48] [PASSED] DG1 B0
[18:10:48] [PASSED] ALDERLAKE_S A0
[18:10:48] [PASSED] ALDERLAKE_S B0
[18:10:48] [PASSED] ALDERLAKE_S C0
[18:10:48] [PASSED] ALDERLAKE_S D0
[18:10:48] [PASSED] ALDERLAKE_P A0
[18:10:48] [PASSED] ALDERLAKE_P B0
[18:10:48] [PASSED] ALDERLAKE_P C0
[18:10:48] [PASSED] ALDERLAKE_S RPLS D0
[18:10:48] [PASSED] ALDERLAKE_P RPLU E0
[18:10:48] [PASSED] DG2 G10 C0
[18:10:48] [PASSED] DG2 G11 B1
[18:10:48] [PASSED] DG2 G12 A1
[18:10:48] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[18:10:48] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[18:10:48] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[18:10:48] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[18:10:48] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[18:10:48] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[18:10:48] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[18:10:48] ==================== [PASSED] xe_wa_gt =====================
[18:10:48] ====================== [PASSED] xe_wa ======================
[18:10:48] ============================================================
[18:10:48] Testing complete. Ran 793 tests: passed: 765, skipped: 28
[18:10:48] Elapsed time: 36.247s total, 1.783s configuring, 33.747s building, 0.709s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[18:10:49] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:10:50] 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
[18:11:16] Starting KUnit Kernel (1/1)...
[18:11:16] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:11:16] ============= refcount_interrupt (4 subtests) ==============
[18:11:16] [PASSED] test_single_irq_change
[18:11:16] [PASSED] test_nested_irq_change
[18:11:16] [PASSED] test_multiple_irq_change
[18:11:16] [PASSED] test_irq_save
[18:11:16] =============== [PASSED] refcount_interrupt ================
[18:11:16] ============ drm_test_pick_cmdline (2 subtests) ============
[18:11:16] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[18:11:16] =============== drm_test_pick_cmdline_named ===============
[18:11:16] [PASSED] NTSC
[18:11:16] [PASSED] NTSC-J
[18:11:16] [PASSED] PAL
[18:11:16] [PASSED] PAL-M
[18:11:16] =========== [PASSED] drm_test_pick_cmdline_named ===========
[18:11:16] ============== [PASSED] drm_test_pick_cmdline ==============
[18:11:16] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[18:11:16] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[18:11:16] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[18:11:16] =========== drm_validate_clone_mode (2 subtests) ===========
[18:11:16] ============== drm_test_check_in_clone_mode ===============
[18:11:16] [PASSED] in_clone_mode
[18:11:16] [PASSED] not_in_clone_mode
[18:11:16] ========== [PASSED] drm_test_check_in_clone_mode ===========
[18:11:16] =============== drm_test_check_valid_clones ===============
[18:11:16] [PASSED] not_in_clone_mode
[18:11:16] [PASSED] valid_clone
[18:11:16] [PASSED] invalid_clone
[18:11:16] =========== [PASSED] drm_test_check_valid_clones ===========
[18:11:16] ============= [PASSED] drm_validate_clone_mode =============
[18:11:16] ============= drm_validate_modeset (1 subtest) =============
[18:11:16] [PASSED] drm_test_check_connector_changed_modeset
[18:11:16] ============== [PASSED] drm_validate_modeset ===============
[18:11:16] ====== drm_test_bridge_get_current_state (1 subtest) =======
[18:11:16] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[18:11:16] ======== [PASSED] drm_test_bridge_get_current_state ========
[18:11:16] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[18:11:16] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[18:11:16] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[18:11:16] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[18:11:16] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[18:11:16] ============== drm_bridge_alloc (2 subtests) ===============
[18:11:16] [PASSED] drm_test_drm_bridge_alloc_basic
[18:11:16] [PASSED] drm_test_drm_bridge_alloc_get_put
[18:11:16] ================ [PASSED] drm_bridge_alloc =================
[18:11:16] ============= drm_bridge_bus_fmt (5 subtests) ==============
[18:11:16] [PASSED] drm_test_bridge_rgb_yuv_rgb
[18:11:16] [PASSED] drm_test_bridge_must_convert_to_yuv444
[18:11:16] [PASSED] drm_test_bridge_hdmi_auto_rgb
[18:11:16] [PASSED] drm_test_bridge_auto_first
[18:11:16] [PASSED] drm_test_bridge_rgb_yuv_no_path
[18:11:16] =============== [PASSED] drm_bridge_bus_fmt ================
[18:11:16] ============= drm_cmdline_parser (40 subtests) =============
[18:11:16] [PASSED] drm_test_cmdline_force_d_only
[18:11:16] [PASSED] drm_test_cmdline_force_D_only_dvi
[18:11:16] [PASSED] drm_test_cmdline_force_D_only_hdmi
[18:11:16] [PASSED] drm_test_cmdline_force_D_only_not_digital
[18:11:16] [PASSED] drm_test_cmdline_force_e_only
[18:11:16] [PASSED] drm_test_cmdline_res
[18:11:16] [PASSED] drm_test_cmdline_res_vesa
[18:11:16] [PASSED] drm_test_cmdline_res_vesa_rblank
[18:11:16] [PASSED] drm_test_cmdline_res_rblank
[18:11:16] [PASSED] drm_test_cmdline_res_bpp
[18:11:16] [PASSED] drm_test_cmdline_res_refresh
[18:11:16] [PASSED] drm_test_cmdline_res_bpp_refresh
[18:11:16] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[18:11:16] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[18:11:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[18:11:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[18:11:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[18:11:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[18:11:16] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[18:11:16] [PASSED] drm_test_cmdline_res_margins_force_on
[18:11:16] [PASSED] drm_test_cmdline_res_vesa_margins
[18:11:16] [PASSED] drm_test_cmdline_name
[18:11:16] [PASSED] drm_test_cmdline_name_bpp
[18:11:16] [PASSED] drm_test_cmdline_name_option
[18:11:16] [PASSED] drm_test_cmdline_name_bpp_option
[18:11:16] [PASSED] drm_test_cmdline_rotate_0
[18:11:16] [PASSED] drm_test_cmdline_rotate_90
[18:11:16] [PASSED] drm_test_cmdline_rotate_180
[18:11:16] [PASSED] drm_test_cmdline_rotate_270
[18:11:16] [PASSED] drm_test_cmdline_hmirror
[18:11:16] [PASSED] drm_test_cmdline_vmirror
[18:11:16] [PASSED] drm_test_cmdline_margin_options
[18:11:16] [PASSED] drm_test_cmdline_multiple_options
[18:11:16] [PASSED] drm_test_cmdline_bpp_extra_and_option
[18:11:16] [PASSED] drm_test_cmdline_extra_and_option
[18:11:16] [PASSED] drm_test_cmdline_freestanding_options
[18:11:16] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[18:11:16] [PASSED] drm_test_cmdline_panel_orientation
[18:11:16] ================ drm_test_cmdline_invalid =================
[18:11:16] [PASSED] margin_only
[18:11:16] [PASSED] interlace_only
[18:11:16] [PASSED] res_missing_x
[18:11:16] [PASSED] res_missing_y
[18:11:16] [PASSED] res_bad_y
[18:11:16] [PASSED] res_missing_y_bpp
[18:11:16] [PASSED] res_bad_bpp
[18:11:16] [PASSED] res_bad_refresh
[18:11:16] [PASSED] res_bpp_refresh_force_on_off
[18:11:16] [PASSED] res_invalid_mode
[18:11:16] [PASSED] res_bpp_wrong_place_mode
[18:11:16] [PASSED] name_bpp_refresh
[18:11:16] [PASSED] name_refresh
[18:11:16] [PASSED] name_refresh_wrong_mode
[18:11:16] [PASSED] name_refresh_invalid_mode
[18:11:16] [PASSED] rotate_multiple
[18:11:16] [PASSED] rotate_invalid_val
[18:11:16] [PASSED] rotate_truncated
[18:11:16] [PASSED] invalid_option
[18:11:16] [PASSED] invalid_tv_option
[18:11:16] [PASSED] truncated_tv_option
[18:11:16] ============ [PASSED] drm_test_cmdline_invalid =============
[18:11:16] =============== drm_test_cmdline_tv_options ===============
[18:11:16] [PASSED] NTSC
[18:11:16] [PASSED] NTSC_443
[18:11:16] [PASSED] NTSC_J
[18:11:16] [PASSED] PAL
[18:11:16] [PASSED] PAL_M
[18:11:16] [PASSED] PAL_N
[18:11:16] [PASSED] SECAM
[18:11:16] [PASSED] MONO_525
[18:11:16] [PASSED] MONO_625
[18:11:16] =========== [PASSED] drm_test_cmdline_tv_options ===========
[18:11:16] =============== [PASSED] drm_cmdline_parser ================
[18:11:16] ========== drmm_connector_hdmi_init (20 subtests) ==========
[18:11:16] [PASSED] drm_test_connector_hdmi_init_valid
[18:11:16] [PASSED] drm_test_connector_hdmi_init_bpc_8
[18:11:16] [PASSED] drm_test_connector_hdmi_init_bpc_10
[18:11:16] [PASSED] drm_test_connector_hdmi_init_bpc_12
[18:11:16] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[18:11:16] [PASSED] drm_test_connector_hdmi_init_bpc_null
[18:11:16] [PASSED] drm_test_connector_hdmi_init_formats_empty
[18:11:16] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[18:11:16] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[18:11:16] [PASSED] supported_formats=0x9 yuv420_allowed=1
[18:11:16] [PASSED] supported_formats=0x9 yuv420_allowed=0
[18:11:16] [PASSED] supported_formats=0x5 yuv420_allowed=1
[18:11:16] [PASSED] supported_formats=0x5 yuv420_allowed=0
[18:11:16] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[18:11:16] [PASSED] drm_test_connector_hdmi_init_null_ddc
[18:11:16] [PASSED] drm_test_connector_hdmi_init_null_product
[18:11:16] [PASSED] drm_test_connector_hdmi_init_null_vendor
[18:11:16] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[18:11:16] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[18:11:16] [PASSED] drm_test_connector_hdmi_init_product_valid
[18:11:16] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[18:11:16] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[18:11:16] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[18:11:16] ========= drm_test_connector_hdmi_init_type_valid =========
[18:11:16] [PASSED] HDMI-A
[18:11:16] [PASSED] HDMI-B
[18:11:16] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[18:11:16] ======== drm_test_connector_hdmi_init_type_invalid ========
[18:11:16] [PASSED] Unknown
[18:11:16] [PASSED] VGA
[18:11:16] [PASSED] DVI-I
[18:11:16] [PASSED] DVI-D
[18:11:16] [PASSED] DVI-A
[18:11:16] [PASSED] Composite
[18:11:16] [PASSED] SVIDEO
[18:11:16] [PASSED] LVDS
[18:11:16] [PASSED] Component
[18:11:16] [PASSED] DIN
[18:11:16] [PASSED] DP
[18:11:16] [PASSED] TV
[18:11:16] [PASSED] eDP
[18:11:16] [PASSED] Virtual
[18:11:16] [PASSED] DSI
[18:11:16] [PASSED] DPI
[18:11:16] [PASSED] Writeback
[18:11:16] [PASSED] SPI
[18:11:16] [PASSED] USB
[18:11:16] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[18:11:16] ============ [PASSED] drmm_connector_hdmi_init =============
[18:11:16] ============= drmm_connector_init (3 subtests) =============
[18:11:16] [PASSED] drm_test_drmm_connector_init
[18:11:16] [PASSED] drm_test_drmm_connector_init_null_ddc
[18:11:16] ========= drm_test_drmm_connector_init_type_valid =========
[18:11:16] [PASSED] Unknown
[18:11:16] [PASSED] VGA
[18:11:16] [PASSED] DVI-I
[18:11:16] [PASSED] DVI-D
[18:11:16] [PASSED] DVI-A
[18:11:16] [PASSED] Composite
[18:11:16] [PASSED] SVIDEO
[18:11:16] [PASSED] LVDS
[18:11:16] [PASSED] Component
[18:11:16] [PASSED] DIN
[18:11:16] [PASSED] DP
[18:11:16] [PASSED] HDMI-A
[18:11:16] [PASSED] HDMI-B
[18:11:16] [PASSED] TV
[18:11:16] [PASSED] eDP
[18:11:16] [PASSED] Virtual
[18:11:16] [PASSED] DSI
[18:11:16] [PASSED] DPI
[18:11:16] [PASSED] Writeback
[18:11:16] [PASSED] SPI
[18:11:16] [PASSED] USB
[18:11:16] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[18:11:16] =============== [PASSED] drmm_connector_init ===============
[18:11:16] ========= drm_connector_dynamic_init (6 subtests) ==========
[18:11:16] [PASSED] drm_test_drm_connector_dynamic_init
[18:11:16] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[18:11:16] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[18:11:16] [PASSED] drm_test_drm_connector_dynamic_init_properties
[18:11:16] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[18:11:16] [PASSED] Unknown
[18:11:16] [PASSED] VGA
[18:11:16] [PASSED] DVI-I
[18:11:16] [PASSED] DVI-D
[18:11:16] [PASSED] DVI-A
[18:11:16] [PASSED] Composite
[18:11:16] [PASSED] SVIDEO
[18:11:16] [PASSED] LVDS
[18:11:16] [PASSED] Component
[18:11:16] [PASSED] DIN
[18:11:16] [PASSED] DP
[18:11:16] [PASSED] HDMI-A
[18:11:16] [PASSED] HDMI-B
[18:11:16] [PASSED] TV
[18:11:16] [PASSED] eDP
[18:11:16] [PASSED] Virtual
[18:11:16] [PASSED] DSI
[18:11:16] [PASSED] DPI
[18:11:16] [PASSED] Writeback
[18:11:16] [PASSED] SPI
[18:11:16] [PASSED] USB
[18:11:16] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[18:11:16] ======== drm_test_drm_connector_dynamic_init_name =========
[18:11:16] [PASSED] Unknown
[18:11:16] [PASSED] VGA
[18:11:16] [PASSED] DVI-I
[18:11:16] [PASSED] DVI-D
[18:11:16] [PASSED] DVI-A
[18:11:16] [PASSED] Composite
[18:11:16] [PASSED] SVIDEO
[18:11:16] [PASSED] LVDS
[18:11:16] [PASSED] Component
[18:11:16] [PASSED] DIN
[18:11:16] [PASSED] DP
[18:11:16] [PASSED] HDMI-A
[18:11:16] [PASSED] HDMI-B
[18:11:16] [PASSED] TV
[18:11:16] [PASSED] eDP
[18:11:16] [PASSED] Virtual
[18:11:16] [PASSED] DSI
[18:11:16] [PASSED] DPI
[18:11:16] [PASSED] Writeback
[18:11:16] [PASSED] SPI
[18:11:16] [PASSED] USB
[18:11:16] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[18:11:16] =========== [PASSED] drm_connector_dynamic_init ============
[18:11:16] ==== drm_connector_dynamic_register_early (4 subtests) =====
[18:11:16] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[18:11:16] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[18:11:16] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[18:11:16] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[18:11:16] ====== [PASSED] drm_connector_dynamic_register_early =======
[18:11:16] ======= drm_connector_dynamic_register (7 subtests) ========
[18:11:16] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[18:11:16] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[18:11:16] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[18:11:16] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[18:11:16] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[18:11:16] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[18:11:16] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[18:11:16] ========= [PASSED] drm_connector_dynamic_register ==========
[18:11:16] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[18:11:16] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[18:11:16] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[18:11:16] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[18:11:16] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[18:11:16] ========== drm_test_get_tv_mode_from_name_valid ===========
[18:11:16] [PASSED] NTSC
[18:11:16] [PASSED] NTSC-443
[18:11:16] [PASSED] NTSC-J
[18:11:16] [PASSED] PAL
[18:11:16] [PASSED] PAL-M
[18:11:16] [PASSED] PAL-N
[18:11:16] [PASSED] SECAM
[18:11:16] [PASSED] Mono
[18:11:16] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[18:11:16] [PASSED] drm_test_get_tv_mode_from_name_truncated
[18:11:16] ============ [PASSED] drm_get_tv_mode_from_name ============
[18:11:16] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[18:11:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[18:11:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[18:11:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[18:11:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[18:11:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[18:11:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[18:11:16] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[18:11:16] [PASSED] VIC 96
[18:11:16] [PASSED] VIC 97
[18:11:16] [PASSED] VIC 101
[18:11:16] [PASSED] VIC 102
[18:11:16] [PASSED] VIC 106
[18:11:16] [PASSED] VIC 107
[18:11:16] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[18:11:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[18:11:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[18:11:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[18:11:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[18:11:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[18:11:16] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[18:11:16] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[18:11:16] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[18:11:16] [PASSED] Automatic
[18:11:16] [PASSED] Full
[18:11:16] [PASSED] Limited 16:235
[18:11:16] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[18:11:16] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[18:11:16] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[18:11:16] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[18:11:16] === drm_test_drm_hdmi_connector_get_output_format_name ====
[18:11:16] [PASSED] RGB
[18:11:16] [PASSED] YUV 4:2:0
[18:11:16] [PASSED] YUV 4:2:2
[18:11:16] [PASSED] YUV 4:4:4
[18:11:16] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[18:11:16] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[18:11:16] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[18:11:16] ============= drm_damage_helper (21 subtests) ==============
[18:11:16] [PASSED] drm_test_damage_iter_no_damage
[18:11:16] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[18:11:16] [PASSED] drm_test_damage_iter_no_damage_src_moved
[18:11:16] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[18:11:16] [PASSED] drm_test_damage_iter_no_damage_not_visible
[18:11:16] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[18:11:16] [PASSED] drm_test_damage_iter_no_damage_no_fb
[18:11:16] [PASSED] drm_test_damage_iter_simple_damage
[18:11:16] [PASSED] drm_test_damage_iter_single_damage
[18:11:16] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[18:11:16] [PASSED] drm_test_damage_iter_single_damage_outside_src
[18:11:16] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[18:11:16] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[18:11:16] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[18:11:16] [PASSED] drm_test_damage_iter_single_damage_src_moved
[18:11:16] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[18:11:16] [PASSED] drm_test_damage_iter_damage
[18:11:16] [PASSED] drm_test_damage_iter_damage_one_intersect
[18:11:16] [PASSED] drm_test_damage_iter_damage_one_outside
[18:11:16] [PASSED] drm_test_damage_iter_damage_src_moved
[18:11:16] [PASSED] drm_test_damage_iter_damage_not_visible
[18:11:16] ================ [PASSED] drm_damage_helper ================
[18:11:16] ============== drm_dp_mst_helper (3 subtests) ==============
[18:11:16] ============== drm_test_dp_mst_calc_pbn_mode ==============
[18:11:16] [PASSED] Clock 154000 BPP 30 DSC disabled
[18:11:16] [PASSED] Clock 234000 BPP 30 DSC disabled
[18:11:16] [PASSED] Clock 297000 BPP 24 DSC disabled
[18:11:16] [PASSED] Clock 332880 BPP 24 DSC enabled
[18:11:16] [PASSED] Clock 324540 BPP 24 DSC enabled
[18:11:16] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[18:11:16] ============== drm_test_dp_mst_calc_pbn_div ===============
[18:11:16] [PASSED] Link rate 2000000 lane count 4
[18:11:16] [PASSED] Link rate 2000000 lane count 2
[18:11:16] [PASSED] Link rate 2000000 lane count 1
[18:11:16] [PASSED] Link rate 1350000 lane count 4
[18:11:16] [PASSED] Link rate 1350000 lane count 2
[18:11:16] [PASSED] Link rate 1350000 lane count 1
[18:11:16] [PASSED] Link rate 1000000 lane count 4
[18:11:16] [PASSED] Link rate 1000000 lane count 2
[18:11:16] [PASSED] Link rate 1000000 lane count 1
[18:11:16] [PASSED] Link rate 810000 lane count 4
[18:11:16] [PASSED] Link rate 810000 lane count 2
[18:11:16] [PASSED] Link rate 810000 lane count 1
[18:11:16] [PASSED] Link rate 540000 lane count 4
[18:11:16] [PASSED] Link rate 540000 lane count 2
[18:11:16] [PASSED] Link rate 540000 lane count 1
[18:11:16] [PASSED] Link rate 270000 lane count 4
[18:11:16] [PASSED] Link rate 270000 lane count 2
[18:11:16] [PASSED] Link rate 270000 lane count 1
[18:11:16] [PASSED] Link rate 162000 lane count 4
[18:11:16] [PASSED] Link rate 162000 lane count 2
[18:11:16] [PASSED] Link rate 162000 lane count 1
[18:11:16] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[18:11:16] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[18:11:16] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[18:11:16] [PASSED] DP_POWER_UP_PHY with port number
[18:11:16] [PASSED] DP_POWER_DOWN_PHY with port number
[18:11:16] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[18:11:16] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[18:11:16] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[18:11:16] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[18:11:16] [PASSED] DP_QUERY_PAYLOAD with port number
[18:11:16] [PASSED] DP_QUERY_PAYLOAD with VCPI
[18:11:16] [PASSED] DP_REMOTE_DPCD_READ with port number
[18:11:16] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[18:11:16] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[18:11:16] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[18:11:16] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[18:11:16] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[18:11:16] [PASSED] DP_REMOTE_I2C_READ with port number
[18:11:16] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[18:11:16] [PASSED] DP_REMOTE_I2C_READ with transactions array
[18:11:16] [PASSED] DP_REMOTE_I2C_WRITE with port number
[18:11:16] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[18:11:16] [PASSED] DP_REMOTE_I2C_WRITE with data array
[18:11:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[18:11:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[18:11:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[18:11:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[18:11:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[18:11:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[18:11:16] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[18:11:16] ================ [PASSED] drm_dp_mst_helper ================
[18:11:16] ================== drm_exec (7 subtests) ===================
[18:11:16] [PASSED] sanitycheck
[18:11:16] [PASSED] test_lock
[18:11:16] [PASSED] test_lock_unlock
[18:11:16] [PASSED] test_duplicates
[18:11:16] [PASSED] test_prepare
[18:11:16] [PASSED] test_prepare_array
[18:11:16] [PASSED] test_multiple_loops
[18:11:16] ==================== [PASSED] drm_exec =====================
[18:11:16] =========== drm_format_helper_test (17 subtests) ===========
[18:11:16] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[18:11:16] [PASSED] single_pixel_source_buffer
[18:11:16] [PASSED] single_pixel_clip_rectangle
[18:11:16] [PASSED] well_known_colors
[18:11:16] [PASSED] destination_pitch
[18:11:16] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[18:11:16] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[18:11:16] [PASSED] single_pixel_source_buffer
[18:11:16] [PASSED] single_pixel_clip_rectangle
[18:11:16] [PASSED] well_known_colors
[18:11:16] [PASSED] destination_pitch
[18:11:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[18:11:16] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[18:11:16] [PASSED] single_pixel_source_buffer
[18:11:16] [PASSED] single_pixel_clip_rectangle
[18:11:16] [PASSED] well_known_colors
[18:11:16] [PASSED] destination_pitch
[18:11:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[18:11:16] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[18:11:16] [PASSED] single_pixel_source_buffer
[18:11:16] [PASSED] single_pixel_clip_rectangle
[18:11:16] [PASSED] well_known_colors
[18:11:16] [PASSED] destination_pitch
[18:11:16] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[18:11:16] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[18:11:16] [PASSED] single_pixel_source_buffer
[18:11:16] [PASSED] single_pixel_clip_rectangle
[18:11:16] [PASSED] well_known_colors
[18:11:16] [PASSED] destination_pitch
[18:11:16] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[18:11:16] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[18:11:16] [PASSED] single_pixel_source_buffer
[18:11:16] [PASSED] single_pixel_clip_rectangle
[18:11:16] [PASSED] well_known_colors
[18:11:16] [PASSED] destination_pitch
[18:11:16] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[18:11:16] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[18:11:16] [PASSED] single_pixel_source_buffer
[18:11:16] [PASSED] single_pixel_clip_rectangle
[18:11:16] [PASSED] well_known_colors
[18:11:16] [PASSED] destination_pitch
[18:11:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[18:11:16] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[18:11:16] [PASSED] single_pixel_source_buffer
[18:11:16] [PASSED] single_pixel_clip_rectangle
[18:11:16] [PASSED] well_known_colors
[18:11:16] [PASSED] destination_pitch
[18:11:16] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[18:11:16] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[18:11:16] [PASSED] single_pixel_source_buffer
[18:11:16] [PASSED] single_pixel_clip_rectangle
[18:11:16] [PASSED] well_known_colors
[18:11:16] [PASSED] destination_pitch
[18:11:16] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[18:11:16] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[18:11:16] [PASSED] single_pixel_source_buffer
[18:11:16] [PASSED] single_pixel_clip_rectangle
[18:11:16] [PASSED] well_known_colors
[18:11:16] [PASSED] destination_pitch
[18:11:16] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[18:11:16] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[18:11:16] [PASSED] single_pixel_source_buffer
[18:11:16] [PASSED] single_pixel_clip_rectangle
[18:11:16] [PASSED] well_known_colors
[18:11:16] [PASSED] destination_pitch
[18:11:16] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[18:11:16] ============== drm_test_fb_xrgb8888_to_mono ===============
[18:11:16] [PASSED] single_pixel_source_buffer
[18:11:16] [PASSED] single_pixel_clip_rectangle
[18:11:16] [PASSED] well_known_colors
[18:11:16] [PASSED] destination_pitch
[18:11:16] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[18:11:16] ==================== drm_test_fb_swab =====================
[18:11:16] [PASSED] single_pixel_source_buffer
[18:11:16] [PASSED] single_pixel_clip_rectangle
[18:11:16] [PASSED] well_known_colors
[18:11:16] [PASSED] destination_pitch
[18:11:16] ================ [PASSED] drm_test_fb_swab =================
[18:11:16] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[18:11:16] [PASSED] single_pixel_source_buffer
[18:11:16] [PASSED] single_pixel_clip_rectangle
[18:11:16] [PASSED] well_known_colors
[18:11:16] [PASSED] destination_pitch
[18:11:16] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[18:11:16] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[18:11:16] [PASSED] single_pixel_source_buffer
[18:11:16] [PASSED] single_pixel_clip_rectangle
[18:11:16] [PASSED] well_known_colors
[18:11:16] [PASSED] destination_pitch
[18:11:16] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[18:11:16] ================= drm_test_fb_clip_offset =================
[18:11:16] [PASSED] pass through
[18:11:16] [PASSED] horizontal offset
[18:11:16] [PASSED] vertical offset
[18:11:16] [PASSED] horizontal and vertical offset
[18:11:16] [PASSED] horizontal offset (custom pitch)
[18:11:16] [PASSED] vertical offset (custom pitch)
[18:11:16] [PASSED] horizontal and vertical offset (custom pitch)
[18:11:16] ============= [PASSED] drm_test_fb_clip_offset =============
[18:11:16] =================== drm_test_fb_memcpy ====================
[18:11:16] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[18:11:16] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[18:11:16] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[18:11:16] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[18:11:16] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[18:11:16] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[18:11:16] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[18:11:16] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[18:11:16] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[18:11:16] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[18:11:16] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[18:11:16] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[18:11:16] =============== [PASSED] drm_test_fb_memcpy ================
[18:11:16] ============= [PASSED] drm_format_helper_test ==============
[18:11:16] ================= drm_format (18 subtests) =================
[18:11:16] [PASSED] drm_test_format_block_width_invalid
[18:11:16] [PASSED] drm_test_format_block_width_one_plane
[18:11:16] [PASSED] drm_test_format_block_width_two_plane
[18:11:16] [PASSED] drm_test_format_block_width_three_plane
[18:11:16] [PASSED] drm_test_format_block_width_tiled
[18:11:16] [PASSED] drm_test_format_block_height_invalid
[18:11:16] [PASSED] drm_test_format_block_height_one_plane
[18:11:16] [PASSED] drm_test_format_block_height_two_plane
[18:11:16] [PASSED] drm_test_format_block_height_three_plane
[18:11:16] [PASSED] drm_test_format_block_height_tiled
[18:11:16] [PASSED] drm_test_format_min_pitch_invalid
[18:11:16] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[18:11:16] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[18:11:16] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[18:11:16] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[18:11:16] [PASSED] drm_test_format_min_pitch_two_plane
[18:11:16] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[18:11:16] [PASSED] drm_test_format_min_pitch_tiled
[18:11:16] =================== [PASSED] drm_format ====================
[18:11:16] ============== drm_framebuffer (10 subtests) ===============
[18:11:16] ========== drm_test_framebuffer_check_src_coords ==========
[18:11:16] [PASSED] Success: source fits into fb
[18:11:16] [PASSED] Fail: overflowing fb with x-axis coordinate
[18:11:16] [PASSED] Fail: overflowing fb with y-axis coordinate
[18:11:16] [PASSED] Fail: overflowing fb with source width
[18:11:16] [PASSED] Fail: overflowing fb with source height
[18:11:16] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[18:11:16] [PASSED] drm_test_framebuffer_cleanup
[18:11:16] =============== drm_test_framebuffer_create ===============
[18:11:16] [PASSED] ABGR8888 normal sizes
[18:11:16] [PASSED] ABGR8888 max sizes
[18:11:16] [PASSED] ABGR8888 pitch greater than min required
[18:11:16] [PASSED] ABGR8888 pitch less than min required
[18:11:16] [PASSED] ABGR8888 Invalid width
[18:11:16] [PASSED] ABGR8888 Invalid buffer handle
[18:11:16] [PASSED] No pixel format
[18:11:16] [PASSED] ABGR8888 Width 0
[18:11:16] [PASSED] ABGR8888 Height 0
[18:11:16] [PASSED] ABGR8888 Out of bound height * pitch combination
[18:11:16] [PASSED] ABGR8888 Large buffer offset
[18:11:16] [PASSED] ABGR8888 Buffer offset for inexistent plane
[18:11:16] [PASSED] ABGR8888 Invalid flag
[18:11:16] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[18:11:16] [PASSED] ABGR8888 Valid buffer modifier
[18:11:16] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[18:11:16] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[18:11:16] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[18:11:16] [PASSED] NV12 Normal sizes
[18:11:16] [PASSED] NV12 Max sizes
[18:11:16] [PASSED] NV12 Invalid pitch
[18:11:16] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[18:11:16] [PASSED] NV12 different modifier per-plane
[18:11:16] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[18:11:16] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[18:11:16] [PASSED] NV12 Modifier for inexistent plane
[18:11:16] [PASSED] NV12 Handle for inexistent plane
[18:11:16] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[18:11:16] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[18:11:16] [PASSED] YVU420 Normal sizes
[18:11:16] [PASSED] YVU420 Max sizes
[18:11:16] [PASSED] YVU420 Invalid pitch
[18:11:16] [PASSED] YVU420 Different pitches
[18:11:16] [PASSED] YVU420 Different buffer offsets/pitches
[18:11:16] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[18:11:16] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[18:11:16] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[18:11:16] [PASSED] YVU420 Valid modifier
[18:11:16] [PASSED] YVU420 Different modifiers per plane
[18:11:16] [PASSED] YVU420 Modifier for inexistent plane
[18:11:16] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[18:11:16] [PASSED] X0L2 Normal sizes
[18:11:16] [PASSED] X0L2 Max sizes
[18:11:16] [PASSED] X0L2 Invalid pitch
[18:11:16] [PASSED] X0L2 Pitch greater than minimum required
[18:11:16] [PASSED] X0L2 Handle for inexistent plane
[18:11:16] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[18:11:16] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[18:11:16] [PASSED] X0L2 Valid modifier
[18:11:16] [PASSED] X0L2 Modifier for inexistent plane
[18:11:16] =========== [PASSED] drm_test_framebuffer_create ===========
[18:11:16] [PASSED] drm_test_framebuffer_free
[18:11:16] [PASSED] drm_test_framebuffer_init
[18:11:16] [PASSED] drm_test_framebuffer_init_bad_format
[18:11:16] [PASSED] drm_test_framebuffer_init_dev_mismatch
[18:11:16] [PASSED] drm_test_framebuffer_lookup
[18:11:16] [PASSED] drm_test_framebuffer_lookup_inexistent
[18:11:16] [PASSED] drm_test_framebuffer_modifiers_not_supported
[18:11:16] ================= [PASSED] drm_framebuffer =================
[18:11:16] ================ drm_gem_shmem (8 subtests) ================
[18:11:16] [PASSED] drm_gem_shmem_test_obj_create
[18:11:16] [PASSED] drm_gem_shmem_test_obj_create_private
[18:11:16] [PASSED] drm_gem_shmem_test_pin_pages
[18:11:16] [PASSED] drm_gem_shmem_test_vmap
[18:11:16] [PASSED] drm_gem_shmem_test_get_sg_table
[18:11:16] [PASSED] drm_gem_shmem_test_get_pages_sgt
[18:11:16] [PASSED] drm_gem_shmem_test_madvise
[18:11:16] [PASSED] drm_gem_shmem_test_purge
[18:11:16] ================== [PASSED] drm_gem_shmem ==================
[18:11:16] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[18:11:16] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[18:11:16] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[18:11:16] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[18:11:16] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[18:11:16] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[18:11:16] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[18:11:16] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[18:11:16] [PASSED] Automatic
[18:11:16] [PASSED] Full
[18:11:16] [PASSED] Limited 16:235
[18:11:16] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[18:11:16] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[18:11:16] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[18:11:16] [PASSED] drm_test_check_disable_connector
[18:11:16] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[18:11:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[18:11:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[18:11:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[18:11:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[18:11:16] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[18:11:16] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[18:11:16] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[18:11:16] [PASSED] drm_test_check_output_bpc_dvi
[18:11:16] [PASSED] drm_test_check_output_bpc_format_vic_1
[18:11:16] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[18:11:16] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[18:11:16] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[18:11:16] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[18:11:16] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[18:11:16] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[18:11:16] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[18:11:16] ============ drm_test_check_hdmi_color_format =============
[18:11:16] [PASSED] AUTO -> RGB
[18:11:16] [PASSED] YCBCR422 -> YUV422
[18:11:16] [PASSED] YCBCR420 -> YUV420
[18:11:16] [PASSED] YCBCR444 -> YUV444
[18:11:16] [PASSED] RGB -> RGB
[18:11:16] ======== [PASSED] drm_test_check_hdmi_color_format =========
[18:11:16] ======== drm_test_check_hdmi_color_format_420_only ========
[18:11:16] [PASSED] RGB should fail
[18:11:16] [PASSED] YUV444 should fail
[18:11:16] [PASSED] YUV422 should fail
[18:11:16] [PASSED] YUV420 should work
[18:11:16] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[18:11:16] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[18:11:16] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[18:11:16] [PASSED] drm_test_check_broadcast_rgb_value
[18:11:16] [PASSED] drm_test_check_bpc_8_value
[18:11:16] [PASSED] drm_test_check_bpc_10_value
[18:11:16] [PASSED] drm_test_check_bpc_12_value
[18:11:16] [PASSED] drm_test_check_format_value
[18:11:16] [PASSED] drm_test_check_tmds_char_value
[18:11:16] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[18:11:16] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[18:11:16] [PASSED] drm_test_check_mode_valid
[18:11:16] [PASSED] drm_test_check_mode_valid_reject
[18:11:16] [PASSED] drm_test_check_mode_valid_reject_rate
[18:11:16] [PASSED] drm_test_check_mode_valid_reject_max_clock
[18:11:16] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[18:11:16] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[18:11:16] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[18:11:16] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[18:11:16] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[18:11:16] [PASSED] drm_test_check_infoframes
[18:11:16] [PASSED] drm_test_check_reject_avi_infoframe
[18:11:16] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[18:11:16] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[18:11:16] [PASSED] drm_test_check_reject_audio_infoframe
[18:11:16] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[18:11:16] ================= drm_managed (2 subtests) =================
[18:11:16] [PASSED] drm_test_managed_release_action
[18:11:16] [PASSED] drm_test_managed_run_action
[18:11:16] =================== [PASSED] drm_managed ===================
[18:11:16] =================== drm_mm (6 subtests) ====================
[18:11:16] [PASSED] drm_test_mm_init
[18:11:16] [PASSED] drm_test_mm_debug
[18:11:16] [PASSED] drm_test_mm_align32
[18:11:16] [PASSED] drm_test_mm_align64
[18:11:16] [PASSED] drm_test_mm_lowest
[18:11:16] [PASSED] drm_test_mm_highest
[18:11:16] ===================== [PASSED] drm_mm ======================
[18:11:16] ============= drm_modes_analog_tv (5 subtests) =============
[18:11:16] [PASSED] drm_test_modes_analog_tv_mono_576i
[18:11:16] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[18:11:16] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[18:11:16] [PASSED] drm_test_modes_analog_tv_pal_576i
[18:11:16] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[18:11:16] =============== [PASSED] drm_modes_analog_tv ===============
[18:11:16] ============== drm_plane_helper (2 subtests) ===============
[18:11:16] =============== drm_test_check_plane_state ================
[18:11:16] [PASSED] clipping_simple
[18:11:16] [PASSED] clipping_rotate_reflect
[18:11:16] [PASSED] positioning_simple
[18:11:16] [PASSED] upscaling
[18:11:16] [PASSED] downscaling
[18:11:16] [PASSED] rounding1
[18:11:16] [PASSED] rounding2
[18:11:16] [PASSED] rounding3
[18:11:16] [PASSED] rounding4
[18:11:16] =========== [PASSED] drm_test_check_plane_state ============
[18:11:16] =========== drm_test_check_invalid_plane_state ============
[18:11:16] [PASSED] positioning_invalid
[18:11:16] [PASSED] upscaling_invalid
[18:11:16] [PASSED] downscaling_invalid
[18:11:16] ======= [PASSED] drm_test_check_invalid_plane_state ========
[18:11:16] ================ [PASSED] drm_plane_helper =================
[18:11:16] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[18:11:16] ====== drm_test_connector_helper_tv_get_modes_check =======
[18:11:16] [PASSED] None
[18:11:16] [PASSED] PAL
[18:11:16] [PASSED] NTSC
[18:11:16] [PASSED] Both, NTSC Default
[18:11:16] [PASSED] Both, PAL Default
[18:11:16] [PASSED] Both, NTSC Default, with PAL on command-line
[18:11:16] [PASSED] Both, PAL Default, with NTSC on command-line
[18:11:16] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[18:11:16] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[18:11:16] ================== drm_rect (9 subtests) ===================
[18:11:16] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[18:11:16] [PASSED] drm_test_rect_clip_scaled_not_clipped
[18:11:16] [PASSED] drm_test_rect_clip_scaled_clipped
[18:11:16] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[18:11:16] ================= drm_test_rect_intersect =================
[18:11:16] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[18:11:16] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[18:11:16] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[18:11:16] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[18:11:16] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[18:11:16] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[18:11:16] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[18:11:16] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[18:11:16] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[18:11:16] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[18:11:16] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[18:11:16] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[18:11:16] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[18:11:16] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[18:11:16] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[18:11:16] ============= [PASSED] drm_test_rect_intersect =============
[18:11:16] ================ drm_test_rect_calc_hscale ================
[18:11:16] [PASSED] normal use
[18:11:16] [PASSED] out of max range
[18:11:16] [PASSED] out of min range
[18:11:16] [PASSED] zero dst
[18:11:16] [PASSED] negative src
[18:11:16] [PASSED] negative dst
[18:11:16] ============ [PASSED] drm_test_rect_calc_hscale ============
[18:11:16] ================ drm_test_rect_calc_vscale ================
[18:11:16] [PASSED] normal use
[18:11:16] [PASSED] out of max range
[18:11:16] [PASSED] out of min range
[18:11:16] [PASSED] zero dst
[18:11:16] [PASSED] negative src
[18:11:16] [PASSED] negative dst
[18:11:16] ============ [PASSED] drm_test_rect_calc_vscale ============
[18:11:16] ================== drm_test_rect_rotate ===================
[18:11:16] [PASSED] reflect-x
[18:11:16] [PASSED] reflect-y
[18:11:16] [PASSED] rotate-0
[18:11:16] [PASSED] rotate-90
[18:11:16] [PASSED] rotate-180
[18:11:16] [PASSED] rotate-270
[18:11:16] ============== [PASSED] drm_test_rect_rotate ===============
[18:11:16] ================ drm_test_rect_rotate_inv =================
[18:11:16] [PASSED] reflect-x
[18:11:16] [PASSED] reflect-y
[18:11:16] [PASSED] rotate-0
[18:11:16] [PASSED] rotate-90
[18:11:16] [PASSED] rotate-180
[18:11:16] [PASSED] rotate-270
[18:11:16] ============ [PASSED] drm_test_rect_rotate_inv =============
[18:11:16] ==================== [PASSED] drm_rect =====================
[18:11:16] ============ drm_sysfb_modeset_test (1 subtest) ============
[18:11:16] ============ drm_test_sysfb_build_fourcc_list =============
[18:11:16] [PASSED] no native formats
[18:11:16] [PASSED] XRGB8888 as native format
[18:11:16] [PASSED] remove duplicates
[18:11:16] [PASSED] convert alpha formats
[18:11:16] [PASSED] random formats
[18:11:16] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[18:11:16] ============= [PASSED] drm_sysfb_modeset_test ==============
[18:11:16] ================== drm_fixp (2 subtests) ===================
[18:11:16] [PASSED] drm_test_int2fixp
[18:11:16] [PASSED] drm_test_sm2fixp
[18:11:16] ==================== [PASSED] drm_fixp =====================
[18:11:16] ============================================================
[18:11:16] Testing complete. Ran 641 tests: passed: 641
[18:11:16] Elapsed time: 27.207s total, 1.842s configuring, 25.195s building, 0.148s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[18:11:16] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:11:18] 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
[18:11:28] Starting KUnit Kernel (1/1)...
[18:11:28] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:11:28] ============= refcount_interrupt (4 subtests) ==============
[18:11:28] [PASSED] test_single_irq_change
[18:11:28] [PASSED] test_nested_irq_change
[18:11:28] [PASSED] test_multiple_irq_change
[18:11:28] [PASSED] test_irq_save
[18:11:28] =============== [PASSED] refcount_interrupt ================
[18:11:28] ================= ttm_device (5 subtests) ==================
[18:11:28] [PASSED] ttm_device_init_basic
[18:11:28] [PASSED] ttm_device_init_multiple
[18:11:28] [PASSED] ttm_device_fini_basic
[18:11:28] [PASSED] ttm_device_init_no_vma_man
[18:11:28] ================== ttm_device_init_pools ==================
[18:11:28] [PASSED] No DMA allocations, no DMA32 required
[18:11:28] [PASSED] DMA allocations, DMA32 required
[18:11:28] [PASSED] No DMA allocations, DMA32 required
[18:11:28] [PASSED] DMA allocations, no DMA32 required
[18:11:28] ============== [PASSED] ttm_device_init_pools ==============
[18:11:28] =================== [PASSED] ttm_device ====================
[18:11:28] ================== ttm_pool (8 subtests) ===================
[18:11:28] ================== ttm_pool_alloc_basic ===================
[18:11:28] [PASSED] One page
[18:11:28] [PASSED] More than one page
[18:11:28] [PASSED] Above the allocation limit
[18:11:28] [PASSED] One page, with coherent DMA mappings enabled
[18:11:28] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[18:11:28] ============== [PASSED] ttm_pool_alloc_basic ===============
[18:11:28] ============== ttm_pool_alloc_basic_dma_addr ==============
[18:11:28] [PASSED] One page
[18:11:28] [PASSED] More than one page
[18:11:28] [PASSED] Above the allocation limit
[18:11:28] [PASSED] One page, with coherent DMA mappings enabled
[18:11:28] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[18:11:28] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[18:11:28] [PASSED] ttm_pool_alloc_order_caching_match
[18:11:28] [PASSED] ttm_pool_alloc_caching_mismatch
[18:11:28] [PASSED] ttm_pool_alloc_order_mismatch
[18:11:28] [PASSED] ttm_pool_free_dma_alloc
[18:11:28] [PASSED] ttm_pool_free_no_dma_alloc
[18:11:28] [PASSED] ttm_pool_fini_basic
[18:11:28] ==================== [PASSED] ttm_pool =====================
[18:11:28] ================ ttm_resource (8 subtests) =================
[18:11:28] ================= ttm_resource_init_basic =================
[18:11:28] [PASSED] Init resource in TTM_PL_SYSTEM
[18:11:28] [PASSED] Init resource in TTM_PL_VRAM
[18:11:28] [PASSED] Init resource in a private placement
[18:11:28] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[18:11:28] ============= [PASSED] ttm_resource_init_basic =============
[18:11:28] [PASSED] ttm_resource_init_pinned
[18:11:28] [PASSED] ttm_resource_fini_basic
[18:11:28] [PASSED] ttm_resource_manager_init_basic
[18:11:28] [PASSED] ttm_resource_manager_usage_basic
[18:11:28] [PASSED] ttm_resource_manager_set_used_basic
[18:11:28] [PASSED] ttm_sys_man_alloc_basic
[18:11:28] [PASSED] ttm_sys_man_free_basic
[18:11:28] ================== [PASSED] ttm_resource ===================
[18:11:28] =================== ttm_tt (15 subtests) ===================
[18:11:28] ==================== ttm_tt_init_basic ====================
[18:11:28] [PASSED] Page-aligned size
[18:11:28] [PASSED] Extra pages requested
[18:11:28] ================ [PASSED] ttm_tt_init_basic ================
[18:11:28] [PASSED] ttm_tt_init_misaligned
[18:11:28] [PASSED] ttm_tt_fini_basic
[18:11:28] [PASSED] ttm_tt_fini_sg
[18:11:28] [PASSED] ttm_tt_fini_shmem
[18:11:28] [PASSED] ttm_tt_create_basic
[18:11:28] [PASSED] ttm_tt_create_invalid_bo_type
[18:11:28] [PASSED] ttm_tt_create_ttm_exists
[18:11:28] [PASSED] ttm_tt_create_failed
[18:11:28] [PASSED] ttm_tt_destroy_basic
[18:11:28] [PASSED] ttm_tt_populate_null_ttm
[18:11:28] [PASSED] ttm_tt_populate_populated_ttm
[18:11:28] [PASSED] ttm_tt_unpopulate_basic
[18:11:28] [PASSED] ttm_tt_unpopulate_empty_ttm
[18:11:28] [PASSED] ttm_tt_swapin_basic
[18:11:28] ===================== [PASSED] ttm_tt ======================
[18:11:28] =================== ttm_bo (14 subtests) ===================
[18:11:28] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[18:11:28] [PASSED] Cannot be interrupted and sleeps
[18:11:28] [PASSED] Cannot be interrupted, locks straight away
[18:11:28] [PASSED] Can be interrupted, sleeps
[18:11:28] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[18:11:28] [PASSED] ttm_bo_reserve_locked_no_sleep
[18:11:28] [PASSED] ttm_bo_reserve_no_wait_ticket
[18:11:28] [PASSED] ttm_bo_reserve_double_resv
[18:11:28] [PASSED] ttm_bo_reserve_interrupted
[18:11:28] [PASSED] ttm_bo_reserve_deadlock
[18:11:28] [PASSED] ttm_bo_unreserve_basic
[18:11:28] [PASSED] ttm_bo_unreserve_pinned
[18:11:28] [PASSED] ttm_bo_unreserve_bulk
[18:11:28] [PASSED] ttm_bo_fini_basic
[18:11:28] [PASSED] ttm_bo_fini_shared_resv
[18:11:28] [PASSED] ttm_bo_pin_basic
[18:11:28] [PASSED] ttm_bo_pin_unpin_resource
[18:11:28] [PASSED] ttm_bo_multiple_pin_one_unpin
[18:11:28] ===================== [PASSED] ttm_bo ======================
[18:11:28] ============== ttm_bo_validate (22 subtests) ===============
[18:11:28] ============== ttm_bo_init_reserved_sys_man ===============
[18:11:28] [PASSED] Buffer object for userspace
[18:11:28] [PASSED] Kernel buffer object
[18:11:28] [PASSED] Shared buffer object
[18:11:28] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[18:11:28] ============== ttm_bo_init_reserved_mock_man ==============
[18:11:28] [PASSED] Buffer object for userspace
[18:11:28] [PASSED] Kernel buffer object
[18:11:28] [PASSED] Shared buffer object
[18:11:28] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[18:11:28] [PASSED] ttm_bo_init_reserved_resv
[18:11:28] ================== ttm_bo_validate_basic ==================
[18:11:28] [PASSED] Buffer object for userspace
[18:11:28] [PASSED] Kernel buffer object
[18:11:28] [PASSED] Shared buffer object
[18:11:28] ============== [PASSED] ttm_bo_validate_basic ==============
[18:11:28] [PASSED] ttm_bo_validate_invalid_placement
[18:11:28] ============= ttm_bo_validate_same_placement ==============
[18:11:28] [PASSED] System manager
[18:11:28] [PASSED] VRAM manager
[18:11:28] ========= [PASSED] ttm_bo_validate_same_placement ==========
[18:11:28] [PASSED] ttm_bo_validate_failed_alloc
[18:11:28] [PASSED] ttm_bo_validate_pinned
[18:11:28] [PASSED] ttm_bo_validate_busy_placement
[18:11:28] ================ ttm_bo_validate_multihop =================
[18:11:28] [PASSED] Buffer object for userspace
[18:11:28] [PASSED] Kernel buffer object
[18:11:28] [PASSED] Shared buffer object
[18:11:28] ============ [PASSED] ttm_bo_validate_multihop =============
[18:11:28] ========== ttm_bo_validate_no_placement_signaled ==========
[18:11:28] [PASSED] Buffer object in system domain, no page vector
[18:11:28] [PASSED] Buffer object in system domain with an existing page vector
[18:11:28] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[18:11:28] ======== ttm_bo_validate_no_placement_not_signaled ========
[18:11:28] [PASSED] Buffer object for userspace
[18:11:28] [PASSED] Kernel buffer object
[18:11:28] [PASSED] Shared buffer object
[18:11:28] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[18:11:28] [PASSED] ttm_bo_validate_move_fence_signaled
[18:11:28] ========= ttm_bo_validate_move_fence_not_signaled =========
[18:11:28] [PASSED] Waits for GPU
[18:11:28] [PASSED] Tries to lock straight away
[18:11:28] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[18:11:28] [PASSED] ttm_bo_validate_swapout
[18:11:28] [PASSED] ttm_bo_validate_happy_evict
[18:11:28] [PASSED] ttm_bo_validate_all_pinned_evict
[18:11:28] [PASSED] ttm_bo_validate_allowed_only_evict
[18:11:28] [PASSED] ttm_bo_validate_deleted_evict
[18:11:28] [PASSED] ttm_bo_validate_busy_domain_evict
[18:11:28] [PASSED] ttm_bo_validate_evict_gutting
[18:11:28] [PASSED] ttm_bo_validate_recrusive_evict
[18:11:28] ================= [PASSED] ttm_bo_validate =================
[18:11:28] ============================================================
[18:11:28] Testing complete. Ran 106 tests: passed: 106
[18:11:28] Elapsed time: 12.141s total, 1.775s configuring, 10.151s building, 0.185s running
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/dma-buf/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/dma-buf/.kunitconfig
[18:11:28] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:11:30] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[18:11:39] Starting KUnit Kernel (1/1)...
[18:11:39] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:11:39] ============= refcount_interrupt (4 subtests) ==============
[18:11:39] [PASSED] test_single_irq_change
[18:11:39] [PASSED] test_nested_irq_change
[18:11:39] [PASSED] test_multiple_irq_change
[18:11:39] [PASSED] test_irq_save
[18:11:39] =============== [PASSED] refcount_interrupt ================
[18:11:39] =============== dma-buf-fence (12 subtests) ================
[18:11:39] [PASSED] test_sanitycheck
[18:11:39] [PASSED] test_signaling
[18:11:39] [PASSED] test_add_callback
[18:11:39] [PASSED] test_late_add_callback
[18:11:39] [PASSED] test_rm_callback
[18:11:39] [PASSED] test_late_rm_callback
[18:11:39] [PASSED] test_status
[18:11:39] [PASSED] test_error
[18:11:39] [PASSED] test_wait
[18:11:39] [PASSED] test_wait_timeout
[18:11:39] [PASSED] test_stub
[18:11:39] [SKIPPED] test_race_signal_callback (requires at least 2 CPUs)
[18:11:39] ================== [PASSED] dma-buf-fence ==================
[18:11:39] ============ dma-buf-fence-chain (11 subtests) =============
[18:11:39] [PASSED] test_sanitycheck
[18:11:39] [PASSED] test_find_seqno
[18:11:39] [PASSED] test_find_signaled
[18:11:39] [PASSED] test_find_out_of_order
[18:11:44] [PASSED] test_find_gap
[18:11:44] [PASSED] test_find_race
[18:11:44] [PASSED] test_signal_forward
[18:11:44] [PASSED] test_signal_backward
[18:11:44] [PASSED] test_wait_forward
[18:11:44] [PASSED] test_wait_backward
[18:11:44] [PASSED] test_wait_random
[18:11:44] =============== [PASSED] dma-buf-fence-chain ===============
[18:11:44] ============ dma-buf-fence-unwrap (10 subtests) ============
[18:11:44] [PASSED] test_sanitycheck
[18:11:44] [PASSED] test_unwrap_array
[18:11:44] [PASSED] test_unwrap_chain
[18:11:44] [PASSED] test_unwrap_chain_array
[18:11:44] [PASSED] test_unwrap_merge
[18:11:44] [PASSED] test_unwrap_merge_duplicate
[18:11:44] [PASSED] test_unwrap_merge_seqno
[18:11:44] [PASSED] test_unwrap_merge_order
[18:11:44] [PASSED] test_unwrap_merge_complex
[18:11:44] [PASSED] test_unwrap_merge_complex_seqno
[18:11:44] ============== [PASSED] dma-buf-fence-unwrap ===============
[18:11:44] ================ dma-buf-resv (5 subtests) =================
[18:11:44] [PASSED] test_sanitycheck
[18:11:44] ===================== test_signaling ======================
[18:11:44] [PASSED] kernel
[18:11:44] [PASSED] write
[18:11:44] [PASSED] read
[18:11:44] [PASSED] bookkeep
[18:11:44] ================= [PASSED] test_signaling ==================
[18:11:44] ====================== test_for_each ======================
[18:11:44] [PASSED] kernel
[18:11:44] [PASSED] write
[18:11:44] [PASSED] read
[18:11:44] [PASSED] bookkeep
[18:11:44] ================== [PASSED] test_for_each ==================
[18:11:44] ================= test_for_each_unlocked ==================
[18:11:44] [PASSED] kernel
[18:11:44] [PASSED] write
[18:11:44] [PASSED] read
[18:11:44] [PASSED] bookkeep
[18:11:44] ============= [PASSED] test_for_each_unlocked ==============
[18:11:44] ===================== test_get_fences =====================
[18:11:44] [PASSED] kernel
[18:11:44] [PASSED] write
[18:11:44] [PASSED] read
[18:11:44] [PASSED] bookkeep
[18:11:44] ================= [PASSED] test_get_fences =================
[18:11:44] ================== [PASSED] dma-buf-resv ===================
[18:11:44] ============================================================
[18:11:44] Testing complete. Ran 54 tests: passed: 53, skipped: 1
[18:11:44] Elapsed time: 15.965s total, 1.849s configuring, 8.744s building, 5.346s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream
2026-09-07 17:44 [PATCH 1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream Imre Deak
` (2 preceding siblings ...)
2026-09-07 18:11 ` ✓ CI.KUnit: success " Patchwork
@ 2026-09-07 18:52 ` Patchwork
2026-09-07 23:00 ` ✓ Xe.CI.FULL: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-09-07 18:52 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 5507 bytes --]
== Series Details ==
Series: series starting with [1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream
URL : https://patchwork.freedesktop.org/series/173530/
State : success
== Summary ==
CI Bug Log - changes from xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17_BAT -> xe-pw-173530v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
Additional (1): bat-bmg-2
Missing (1): bat-nvls-2
Known issues
------------
Here are the changes found in xe-pw-173530v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- bat-nvls-1: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#8762] / [Intel XE#9069])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/bat-nvls-1/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/bat-nvls-1/igt@core_hotunplug@unbind-rebind.html
* igt@fbdev@write:
- bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2134]) +4 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/bat-bmg-2/igt@fbdev@write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2233])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2482]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_frontbuffer_tracking@basic:
- bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@xe_exec_multi_queue@priority:
- bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#8364]) +13 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/bat-bmg-2/igt@xe_exec_multi_queue@priority.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][10] ([Intel XE#2229])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_pat@pat-index-xehpc:
- bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#1420] / [Intel XE#7590])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: NOTRUN -> [SKIP][12] ([Intel XE#2245] / [Intel XE#7590])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-2: NOTRUN -> [SKIP][13] ([Intel XE#2236] / [Intel XE#7590])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
[Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8762]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8762
[Intel XE#9069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9069
Build changes
-------------
* IGT: IGT_9084 -> IGT_9085
* Linux: xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17 -> xe-pw-173530v1
IGT_9084: 9084
IGT_9085: 9085
xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17: 547f981c369d4b8adf60c5d282b37854f11dab17
xe-pw-173530v1: 173530v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/index.html
[-- Attachment #2: Type: text/html, Size: 6453 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Xe.CI.FULL: success for series starting with [1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream
2026-09-07 17:44 [PATCH 1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream Imre Deak
` (3 preceding siblings ...)
2026-09-07 18:52 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-09-07 23:00 ` Patchwork
2026-09-08 3:25 ` [PATCH 1/2] " Murthy, Arun R
2026-09-10 9:31 ` Luca Coelho
6 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-09-07 23:00 UTC (permalink / raw)
To: Imre Deak; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 109103 bytes --]
== Series Details ==
Series: series starting with [1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream
URL : https://patchwork.freedesktop.org/series/173530/
State : success
== Summary ==
CI Bug Log - changes from xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17_FULL -> xe-pw-173530v1_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-173530v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@eof:
- shard-lnl: [PASS][1] -> [SKIP][2] ([Intel XE#2134])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-4/igt@fbdev@eof.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@fbdev@eof.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#3157])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2370])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-9/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#7059] / [Intel XE#7085])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-9/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +12 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-3/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2328] / [Intel XE#7367]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#8365])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#7679]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#367]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-10/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +19 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2652]) +8 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#3432]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +5 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2724] / [Intel XE#7449])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-3/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio-after-suspend:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2252])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2325] / [Intel XE#7358]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#7358])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut3d-green-only:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7358]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-3/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2252]) +7 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-9/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#373]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_color@ctm-0-75:
- shard-lnl: [PASS][25] -> [SKIP][26] ([Intel XE#3297])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-7/igt@kms_color@ctm-0-75.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_color@ctm-0-75.html
* igt@kms_color_pipeline@plane-lut1d-pre-ctm3x4:
- shard-lnl: [PASS][27] -> [SKIP][28] ([Intel XE#7006])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-7/igt@kms_color_pipeline@plane-lut1d-pre-ctm3x4.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_color_pipeline@plane-lut1d-pre-ctm3x4.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#6969]) +10 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#6969] / [Intel XE#7006]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#307] / [Intel XE#6974])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#6974])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][33] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-9/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#7642])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7642])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2320]) +5 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2321] / [Intel XE#7355])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic:
- shard-lnl: [PASS][39] -> [SKIP][40] ([Intel XE#9125]) +39 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-4/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#309] / [Intel XE#7343])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1340] / [Intel XE#7435])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dsc@dsc-basic-bigjoiner:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#8265]) +4 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-5/igt@kms_dsc@dsc-basic-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#8265])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#4422] / [Intel XE#7442]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#4156] / [Intel XE#7425])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-2/igt@kms_fbcon_fbt@fbc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-lnl: [PASS][47] -> [SKIP][48] ([Intel XE#8680])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-3/igt@kms_fbcon_fbt@psr-suspend.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@dsc:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#8586]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-8/igt@kms_feature_discovery@dsc.html
* igt@kms_feature_discovery@psr2:
- shard-lnl: [PASS][50] -> [SKIP][51] ([Intel XE#1135] / [Intel XE#6128])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-3/igt@kms_feature_discovery@psr2.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1421]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [PASS][53] -> [SKIP][54] ([Intel XE#2482]) +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-5/igt@kms_flip@blocking-wf_vblank.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#2482]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385] / [Intel XE#9144])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1397] / [Intel XE#7385] / [Intel XE#9144])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-lnl: [PASS][59] -> [SKIP][60] ([Intel XE#1745] / [Intel XE#9144])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7178] / [Intel XE#7351]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#7179])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile:
- shard-lnl: [PASS][63] -> [SKIP][64] ([Intel XE#9144])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2311]) +71 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-7/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#7905]) +16 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#7061]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-10/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#4141]) +16 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#6312] / [Intel XE#651]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-fullscreen:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#6312]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#7865]) +10 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#7779]) +13 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#7061])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-lnl: [PASS][75] -> [SKIP][76] ([Intel XE#7779]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#656] / [Intel XE#7905]) +12 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2352] / [Intel XE#7399])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-lnl: [PASS][79] -> [SKIP][80] ([Intel XE#2548] / [Intel XE#7779]) +14 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#2548] / [Intel XE#7779]) +16 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2313]) +73 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#9125]) +22 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#6901])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-6/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#6911] / [Intel XE#7466])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-7/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#4298] / [Intel XE#5873])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_joiner@basic-max-non-joiner.html
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4298] / [Intel XE#5873])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-10/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2486])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-10/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-3/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#8303]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-modifier:
- shard-lnl: [PASS][92] -> [SKIP][93] ([Intel XE#7250] / [Intel XE#9128])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-4/igt@kms_plane@pixel-format-4-tiled-modifier.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_plane@pixel-format-4-tiled-modifier.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#8303]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#7283]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@plane-position-hole:
- shard-lnl: [PASS][96] -> [SKIP][97] ([Intel XE#9128])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@kms_plane@plane-position-hole.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_plane@plane-position-hole.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#599] / [Intel XE#7382]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#2763] / [Intel XE#6886]) +9 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +7 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- shard-lnl: [PASS][101] -> [SKIP][102] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
- shard-lnl: [PASS][103] -> [SKIP][104] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2763] / [Intel XE#6886]) +9 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_backlight@fade:
- shard-lnl: [PASS][106] -> [SKIP][107] ([Intel XE#870])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@kms_pm_backlight@fade.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-2/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-framedrop-check:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#8395] / [Intel XE#8396]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@kms_pm_dc@dc3co-framedrop-check.html
* igt@kms_pm_dc@dc3co-framedrop-check@pr-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#8395] / [Intel XE#8396]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-3/igt@kms_pm_dc@dc3co-framedrop-check@pr-xrgb8888.html
* igt@kms_pm_dc@dc3co-framedrop-check@psr2-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#8396]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@kms_pm_dc@dc3co-framedrop-check@psr2-xrgb8888.html
* igt@kms_pm_dc@dc3co-framedrop-check@psr2-yuv420:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#8396]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-3/igt@kms_pm_dc@dc3co-framedrop-check@psr2-yuv420.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#7794])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-psr-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#8854])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-6/igt@kms_pm_dc@dc5-psr-suspend-resume.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][115] -> [FAIL][116] ([Intel XE#8399])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][117] -> [SKIP][118] ([Intel XE#7794])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-10/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-lnl: [PASS][120] -> [SKIP][121] ([Intel XE#7106])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-3/igt@kms_pm_rpm@system-suspend-modeset.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1489]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#4608])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#4608] / [Intel XE#7304])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#1489]) +10 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-10/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2234] / [Intel XE#2850]) +13 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-9/igt@kms_psr@fbc-psr-suspend.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1406] / [Intel XE#7345]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1406] / [Intel XE#4609] / [Intel XE#7345]) +2 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html
* igt@kms_psr@pr-primary-render:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1406])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@kms_psr@pr-primary-render.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-sprite-render:
- shard-lnl: [PASS][132] -> [SKIP][133] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@kms_psr@psr2-sprite-render.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_psr@psr2-sprite-render.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-10/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2330] / [Intel XE#5813])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1435] / [Intel XE#9142])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-plane:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#6503])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-8/igt@kms_sharpness_filter@invalid-filter-with-plane.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2450] / [Intel XE#5857])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-3/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#1499]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-2/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1499]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_vrr@negative-basic.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1062] / [Intel XE#7318] / [Intel XE#7457])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@xe_create@create-big-vram.html
* igt@xe_evict@evict-beng-cm-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#6540] / [Intel XE#688]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@xe_evict@evict-beng-cm-threads-small-multi-vm.html
* igt@xe_evict@evict-small-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#8370]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-10/igt@xe_evict@evict-small-multi-queue-cm.html
* igt@xe_exec_balancer@many-cm-virtual-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#7482]) +13 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@xe_exec_balancer@many-cm-virtual-userptr-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1392]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2322] / [Intel XE#7372]) +12 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-1/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#8374]) +17 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-1/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-rebind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#8374]) +8 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@xe_exec_fault_mode@twice-multi-queue-rebind-prefetch.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-close-fd-smem:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#8364]) +12 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-close-fd-smem.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#8364]) +32 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-9/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_reset@multi-queue-close-execqueues:
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#8369]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-10/igt@xe_exec_reset@multi-queue-close-execqueues.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr:
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#8378]) +13 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#8378]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode:
- shard-bmg: [PASS][155] -> [ABORT][156] ([Intel XE#8007])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2833])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-7/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_multigpu_svm@mgpu-coherency-prefetch:
- shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#6964]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@xe_multigpu_svm@mgpu-coherency-prefetch.html
* igt@xe_multigpu_svm@mgpu-pagefault-basic:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#6964]) +5 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-1/igt@xe_multigpu_svm@mgpu-pagefault-basic.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_page_reclaim@invalid-1g:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#7793]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-5/igt@xe_page_reclaim@invalid-1g.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#2236] / [Intel XE#7590])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-9/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pat@pat-sw-hw-compare:
- shard-lnl: NOTRUN -> [FAIL][163] ([Intel XE#7695])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@xe_pat@pat-sw-hw-compare.html
* igt@xe_pat@xa-app-transient-media-off:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#7590])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-10/igt@xe_pat@xa-app-transient-media-off.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-6/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@s3-exec-after:
- shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#584] / [Intel XE#7369])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@xe_pm@s3-exec-after.html
* igt@xe_prefetch_fault@prefetch-fault:
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#7599])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-2/igt@xe_prefetch_fault@prefetch-fault.html
* igt@xe_pxp@display-black-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#4733] / [Intel XE#7417]) +3 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-4/igt@xe_pxp@display-black-pxp-fb.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#944]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-1/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#944])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled:
- shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#7174])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#3342])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_sriov_scheduling@equal-throughput-low-priority:
- shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#8339])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@xe_sriov_scheduling@equal-throughput-low-priority.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][174] ([Intel XE#8583]) -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-6/igt@intel_hwmon@hwmon-write.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait:
- shard-lnl: [SKIP][176] ([Intel XE#9125]) -> [PASS][177] +28 other tests pass
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][178] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][179] +1 other test pass
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_color@ctm-max:
- shard-lnl: [SKIP][180] ([Intel XE#3297]) -> [PASS][181] +1 other test pass
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_color@ctm-max.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_color@ctm-max.html
* igt@kms_flip@flip-vs-wf_vblank-interruptible:
- shard-lnl: [SKIP][182] ([Intel XE#2482]) -> [PASS][183] +5 other tests pass
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling:
- shard-lnl: [SKIP][184] ([Intel XE#1745] / [Intel XE#9144]) -> [PASS][185]
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render:
- shard-lnl: [SKIP][186] ([Intel XE#7779]) -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-lnl: [SKIP][188] ([Intel XE#2548] / [Intel XE#7779]) -> [PASS][189] +10 other tests pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][190] ([Intel XE#1503]) -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane@planar-pixel-format-settings:
- shard-lnl: [SKIP][192] ([Intel XE#7780] / [Intel XE#9125]) -> [PASS][193]
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_plane@planar-pixel-format-settings.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_plane@planar-pixel-format-settings.html
* igt@kms_plane@plane-position-covered:
- shard-lnl: [SKIP][194] ([Intel XE#9128]) -> [PASS][195] +1 other test pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_plane@plane-position-covered.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_plane@plane-position-covered.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-lnl: [SKIP][196] ([Intel XE#2763] / [Intel XE#6886]) -> [PASS][197] +7 other tests pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-lnl: [SKIP][198] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) -> [PASS][199] +7 other tests pass
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_pm_dc@dc5-pageflip-negative:
- shard-lnl: [SKIP][200] ([Intel XE#6927] / [Intel XE#8854]) -> [PASS][201]
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_pm_dc@dc5-pageflip-negative.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_pm_dc@dc5-pageflip-negative.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-lnl: [SKIP][202] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) -> [PASS][203] +1 other test pass
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_pm_rpm@modeset-lpsp.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-lnl: [SKIP][204] ([Intel XE#1439] / [Intel XE#836]) -> [PASS][205]
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_psr@psr-dpms:
- shard-lnl: [SKIP][206] ([Intel XE#2850] / [Intel XE#929]) -> [PASS][207] +1 other test pass
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_psr@psr-dpms.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_psr@psr-dpms.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][208] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][209] +1 other test pass
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_reset@gt-stress-reset-mixed-engine-usage:
- shard-bmg: [INCOMPLETE][210] ([Intel XE#9041]) -> [PASS][211]
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-6/igt@xe_exec_reset@gt-stress-reset-mixed-engine-usage.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-2/igt@xe_exec_reset@gt-stress-reset-mixed-engine-usage.html
- shard-lnl: [INCOMPLETE][212] ([Intel XE#9041]) -> [PASS][213]
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-3/igt@xe_exec_reset@gt-stress-reset-mixed-engine-usage.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@xe_exec_reset@gt-stress-reset-mixed-engine-usage.html
* igt@xe_exec_threads@threads-hang-userptr-invalidate-race:
- shard-bmg: [FAIL][214] ([Intel XE#9096]) -> [PASS][215]
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-3/igt@xe_exec_threads@threads-hang-userptr-invalidate-race.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-4/igt@xe_exec_threads@threads-hang-userptr-invalidate-race.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [SKIP][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237]) ([Intel XE#378] / [Intel XE#7405]) -> ([PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-5/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-5/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-4/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-3/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-3/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-2/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-2/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-5/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-7/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-7/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-4/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-4/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-2/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@xe_module_load@load.html
- shard-bmg: ([PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [SKIP][273], [PASS][274], [PASS][275], [PASS][276]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-4/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-5/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-5/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-5/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-4/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-9/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-9/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-1/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-1/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-2/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-2/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-2/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-6/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-6/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-6/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-8/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-8/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-8/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-3/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-3/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-1/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-1/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-10/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-10/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-10/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-1/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-2/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-8/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-8/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-10/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-7/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-10/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-1/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-10/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-9/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-3/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-7/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-2/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-3/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-4/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-5/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-5/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-1/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-4/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-6/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-6/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-8/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-9/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-8/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-9/igt@xe_module_load@load.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: [SKIP][302] ([Intel XE#9125]) -> [SKIP][303] ([Intel XE#1407]) +2 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-lnl: [SKIP][304] ([Intel XE#1407]) -> [SKIP][305] ([Intel XE#9125]) +2 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-lnl: [SKIP][306] ([Intel XE#1124]) -> [SKIP][307] ([Intel XE#9125]) +6 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-lnl: [SKIP][308] ([Intel XE#9125]) -> [SKIP][309] ([Intel XE#1124]) +4 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p:
- shard-lnl: [SKIP][310] ([Intel XE#7679]) -> [SKIP][311] ([Intel XE#9125])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-7/igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p:
- shard-lnl: [SKIP][312] ([Intel XE#9125]) -> [SKIP][313] ([Intel XE#8365]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-target-1920x1080p:
- shard-lnl: [SKIP][314] ([Intel XE#367]) -> [SKIP][315] ([Intel XE#9125]) +2 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-2/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: [SKIP][316] ([Intel XE#9125]) -> [SKIP][317] ([Intel XE#2887]) +7 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-lnl: [SKIP][318] ([Intel XE#2669] / [Intel XE#7389]) -> [SKIP][319] ([Intel XE#9125])
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs:
- shard-lnl: [SKIP][320] ([Intel XE#2887]) -> [SKIP][321] ([Intel XE#9125]) +4 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-lnl: [SKIP][322] ([Intel XE#2669] / [Intel XE#3433] / [Intel XE#7389]) -> [SKIP][323] ([Intel XE#9125])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-lnl: [SKIP][324] ([Intel XE#9125]) -> [SKIP][325] ([Intel XE#3432])
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-lnl: [SKIP][326] ([Intel XE#7008]) -> [SKIP][327] ([Intel XE#9125])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@kms_cdclk@mode-transition-all-outputs.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-lnl: [SKIP][328] ([Intel XE#307] / [Intel XE#6974]) -> [SKIP][329] ([Intel XE#9125])
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-7/igt@kms_content_protection@dp-mst-type-0.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-lnl: [SKIP][330] ([Intel XE#7642]) -> [SKIP][331] ([Intel XE#9125]) +4 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-4/igt@kms_content_protection@lic-type-1.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-lnl: [SKIP][332] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][333] ([Intel XE#9125])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-lnl: [SKIP][334] ([Intel XE#9125]) -> [SKIP][335] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-lnl: [SKIP][336] ([Intel XE#9125]) -> [SKIP][337] ([Intel XE#1424]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_cursor_crc@cursor-random-256x85.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-lnl: [SKIP][338] ([Intel XE#1424]) -> [SKIP][339] ([Intel XE#9125]) +3 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-lnl: [SKIP][340] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][341] ([Intel XE#9125]) +2 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-lnl: [SKIP][342] ([Intel XE#9125]) -> [SKIP][343] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-lnl: [SKIP][344] ([Intel XE#9125]) -> [SKIP][345] ([Intel XE#323] / [Intel XE#6035])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-lnl: [SKIP][346] ([Intel XE#4331] / [Intel XE#7227]) -> [SKIP][347] ([Intel XE#9125])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-bpc:
- shard-lnl: [SKIP][348] ([Intel XE#9125]) -> [SKIP][349] ([Intel XE#8265]) +2 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_dsc@dsc-with-bpc.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner:
- shard-lnl: [SKIP][350] ([Intel XE#8265]) -> [SKIP][351] ([Intel XE#9125])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-lnl: [SKIP][352] ([Intel XE#7779]) -> [SKIP][353] ([Intel XE#6312]) +7 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
- shard-lnl: [SKIP][354] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][355] ([Intel XE#6312] / [Intel XE#651]) +6 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
- shard-lnl: [SKIP][356] ([Intel XE#656] / [Intel XE#7905]) -> [SKIP][357] ([Intel XE#2548] / [Intel XE#7779]) +24 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-lnl: [SKIP][358] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][359] ([Intel XE#656] / [Intel XE#7905]) +20 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render:
- shard-lnl: [SKIP][360] ([Intel XE#7779]) -> [SKIP][361] ([Intel XE#7061] / [Intel XE#7356]) +5 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-blt:
- shard-lnl: [SKIP][362] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][363] ([Intel XE#7779]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-blt.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-lnl: [SKIP][364] ([Intel XE#6312] / [Intel XE#651]) -> [SKIP][365] ([Intel XE#2548] / [Intel XE#7779]) +5 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff:
- shard-lnl: [SKIP][366] ([Intel XE#6312]) -> [SKIP][367] ([Intel XE#7779]) +11 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-render:
- shard-lnl: [SKIP][368] ([Intel XE#7905]) -> [SKIP][369] ([Intel XE#7779]) +27 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-render.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: [SKIP][370] ([Intel XE#7779]) -> [SKIP][371] ([Intel XE#7905]) +24 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-lnl: [SKIP][372] ([Intel XE#7779]) -> [SKIP][373] ([Intel XE#7865]) +12 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-wc.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-suspend:
- shard-lnl: [SKIP][374] ([Intel XE#7865]) -> [SKIP][375] ([Intel XE#7779]) +15 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-suspend.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-suspend.html
* igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-mmap-wc:
- shard-lnl: [SKIP][376] ([Intel XE#7061]) -> [SKIP][377] ([Intel XE#7779]) +6 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-3/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-mmap-wc.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt:
- shard-lnl: [SKIP][378] ([Intel XE#7779]) -> [SKIP][379] ([Intel XE#7061]) +3 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt.html
* igt@kms_hdr@static-swap:
- shard-lnl: [SKIP][380] ([Intel XE#9125]) -> [SKIP][381] ([Intel XE#1503])
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_hdr@static-swap.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-lnl: [SKIP][382] ([Intel XE#1503]) -> [SKIP][383] ([Intel XE#9125])
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-4/igt@kms_hdr@static-toggle-suspend.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-lnl: [SKIP][384] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][385] ([Intel XE#7343] / [Intel XE#7687] / [Intel XE#9125])
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-lnl: [SKIP][386] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) -> [SKIP][387] ([Intel XE#2763] / [Intel XE#6886]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-lnl: [SKIP][388] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][389] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +1 other test skip
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-lnl: [SKIP][390] ([Intel XE#1489]) -> [SKIP][391] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: [SKIP][392] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) -> [SKIP][393] ([Intel XE#1489])
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-lnl: [SKIP][394] ([Intel XE#1489]) -> [SKIP][395] ([Intel XE#2893] / [Intel XE#7304]) +2 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-lnl: [SKIP][396] ([Intel XE#2893] / [Intel XE#7304]) -> [SKIP][397] ([Intel XE#1489]) +2 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-4/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-lnl: [SKIP][398] ([Intel XE#1406] / [Intel XE#7345]) -> [SKIP][399] ([Intel XE#2850] / [Intel XE#929])
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@kms_psr@fbc-psr2-primary-blt.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: [SKIP][400] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][401] ([Intel XE#1406]) +1 other test skip
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_psr@pr-cursor-plane-move.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-5/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-lnl: [SKIP][402] ([Intel XE#1406]) -> [SKIP][403] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@kms_psr@pr-sprite-plane-move.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-lnl: [SKIP][404] ([Intel XE#9125]) -> [SKIP][405] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-lnl: [SKIP][406] ([Intel XE#9125]) -> [SKIP][407] ([Intel XE#1127] / [Intel XE#5813])
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-lnl: [SKIP][408] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][409] ([Intel XE#9125])
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][410] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][411] ([Intel XE#2426] / [Intel XE#5848])
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@lobf-dc3co:
- shard-lnl: [SKIP][412] ([Intel XE#8397]) -> [SKIP][413] ([Intel XE#9125])
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-lnl-1/igt@kms_vrr@lobf-dc3co.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-lnl-6/igt@kms_vrr@lobf-dc3co.html
* igt@xe_exec_reset@gt-reset-fault-injection:
- shard-bmg: [ABORT][414] ([Intel XE#9145]) -> [ABORT][415] ([Intel XE#9131] / [Intel XE#9145])
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-2/igt@xe_exec_reset@gt-reset-fault-injection.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-8/igt@xe_exec_reset@gt-reset-fault-injection.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: [DMESG-WARN][416] ([Intel XE#8963]) -> [ABORT][417] ([Intel XE#8591] / [Intel XE#8963])
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17/shard-bmg-3/igt@xe_wedged@basic-wedged.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/shard-bmg-8/igt@xe_wedged@basic-wedged.html
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[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#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[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#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[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#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3297]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3297
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[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#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
[Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
[Intel XE#7008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7008
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7106
[Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7250]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7250
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7318
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7457
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7687
[Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7779
[Intel XE#7780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7780
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
[Intel XE#8339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8339
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
[Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
[Intel XE#8397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8397
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
[Intel XE#8583]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8583
[Intel XE#8586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8586
[Intel XE#8591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8591
[Intel XE#8680]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8680
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#8854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8854
[Intel XE#8963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8963
[Intel XE#9041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9041
[Intel XE#9096]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9096
[Intel XE#9125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9125
[Intel XE#9128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9128
[Intel XE#9131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9131
[Intel XE#9142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9142
[Intel XE#9144]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9144
[Intel XE#9145]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9145
[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
-------------
* IGT: IGT_9084 -> IGT_9085
* Linux: xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17 -> xe-pw-173530v1
IGT_9084: 9084
IGT_9085: 9085
xe-5698-547f981c369d4b8adf60c5d282b37854f11dab17: 547f981c369d4b8adf60c5d282b37854f11dab17
xe-pw-173530v1: 173530v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173530v1/index.html
[-- Attachment #2: Type: text/html, Size: 132570 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* RE: [PATCH 1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream
2026-09-07 17:44 [PATCH 1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream Imre Deak
` (4 preceding siblings ...)
2026-09-07 23:00 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-09-08 3:25 ` Murthy, Arun R
2026-09-08 9:13 ` Imre Deak
2026-09-10 9:31 ` Luca Coelho
6 siblings, 1 reply; 13+ messages in thread
From: Murthy, Arun R @ 2026-09-08 3:25 UTC (permalink / raw)
To: Deak, Imre, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org
Cc: stable@vger.kernel.org
> -----Original Message-----
> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Imre
> Deak
> Sent: Monday, September 7, 2026 11:14 PM
> To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org
> Cc: stable@vger.kernel.org
> Subject: [PATCH 1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected
> stream
>
> During an atomic commit after all the MST stream CRTC state is computed the
> driver ensures that the FEC is configured the same way (enabled or
> disabled) for all the streams on a given MST topology's link.
> drm_dp_mst_port_downstream_of_parent() used to determine if a stream is
> downstream of an MST port will return false if the whole topology is
> disconnected, since in that case it can't verify that the port/ parent_port passed
> to it is in the given MST topology. This is a problem during the above FEC
> configuration check, since
> intel_dp_mst_check_dsc_change()->get_pipes_downstream_of_mst_ports()
> will not return all the stream CRTCs/pipes for the topology as expected.
> Since passing parent_port==NULL to get_pipes_downstream_of_mst_port()
> is meant to return all the streams for the given topology (i.e. mst_mgr) skip
> checking if an MST port is downstream of a parent port in this case.
>
I already have a fix for this posted long back.
https://patchwork.freedesktop.org/series/168570/
Thanks and Regards,
Arun R Murthy
--------------------
> This fixes a problem where the FEC configuration check explained above failed
> to ensure that all streams' FEC is configured the same way if the topology was
> disconnected, leading to a FEC state mismatch error.
>
> Cc: stable@vger.kernel.org # v6.10+
> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16384
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_dp_mst.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> index 6a869d0f6ffc0..20766b6c0bcfa 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> @@ -856,7 +856,8 @@ static u8 get_pipes_downstream_of_mst_port(struct
> intel_atomic_state *state,
> if (&connector->mst.dp->mst.mgr != mst_mgr)
> continue;
>
> - if (connector->mst.port != parent_port &&
> + if (parent_port &&
> + connector->mst.port != parent_port &&
> !drm_dp_mst_port_downstream_of_parent(mst_mgr,
> connector->mst.port,
> parent_port))
> --
> 2.49.1
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream
2026-09-08 3:25 ` [PATCH 1/2] " Murthy, Arun R
@ 2026-09-08 9:13 ` Imre Deak
0 siblings, 0 replies; 13+ messages in thread
From: Imre Deak @ 2026-09-08 9:13 UTC (permalink / raw)
To: Murthy, Arun R
Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
stable@vger.kernel.org
On Tue, Sep 08, 2026 at 06:25:04AM +0300, Murthy, Arun R wrote:
>
> > -----Original Message-----
> > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Imre
> > Deak
> > Sent: Monday, September 7, 2026 11:14 PM
> > To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org
> > Cc: stable@vger.kernel.org
> > Subject: [PATCH 1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected
> > stream
> >
> > During an atomic commit after all the MST stream CRTC state is computed the
> > driver ensures that the FEC is configured the same way (enabled or
> > disabled) for all the streams on a given MST topology's link.
> > drm_dp_mst_port_downstream_of_parent() used to determine if a stream is
> > downstream of an MST port will return false if the whole topology is
> > disconnected, since in that case it can't verify that the port/ parent_port passed
> > to it is in the given MST topology. This is a problem during the above FEC
> > configuration check, since
> > intel_dp_mst_check_dsc_change()->get_pipes_downstream_of_mst_ports()
> > will not return all the stream CRTCs/pipes for the topology as expected.
> > Since passing parent_port==NULL to get_pipes_downstream_of_mst_port()
> > is meant to return all the streams for the given topology (i.e. mst_mgr) skip
> > checking if an MST port is downstream of a parent port in this case.
> >
> I already have a fix for this posted long back.
> https://patchwork.freedesktop.org/series/168570/
I explained the problem of that patchset in:
https://lore.kernel.org/all/ah60jJkzbbw25R-L@ideak-desk.lan
> Thanks and Regards,
> Arun R Murthy
> --------------------
> > This fixes a problem where the FEC configuration check explained above failed
> > to ensure that all streams' FEC is configured the same way if the topology was
> > disconnected, leading to a FEC state mismatch error.
> >
> > Cc: stable@vger.kernel.org # v6.10+
> > Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
> > Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16384
> > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_dp_mst.c | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> > b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> > index 6a869d0f6ffc0..20766b6c0bcfa 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> > @@ -856,7 +856,8 @@ static u8 get_pipes_downstream_of_mst_port(struct
> > intel_atomic_state *state,
> > if (&connector->mst.dp->mst.mgr != mst_mgr)
> > continue;
> >
> > - if (connector->mst.port != parent_port &&
> > + if (parent_port &&
> > + connector->mst.port != parent_port &&
> > !drm_dp_mst_port_downstream_of_parent(mst_mgr,
> > connector->mst.port,
> > parent_port))
> > --
> > 2.49.1
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream
2026-09-07 17:44 [PATCH 1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream Imre Deak
` (5 preceding siblings ...)
2026-09-08 3:25 ` [PATCH 1/2] " Murthy, Arun R
@ 2026-09-10 9:31 ` Luca Coelho
6 siblings, 0 replies; 13+ messages in thread
From: Luca Coelho @ 2026-09-10 9:31 UTC (permalink / raw)
To: Imre Deak, intel-gfx, intel-xe; +Cc: stable
On Mon, 2026-09-07 at 20:44 +0300, Imre Deak wrote:
> During an atomic commit after all the MST stream CRTC state is computed
> the driver ensures that the FEC is configured the same way (enabled or
> disabled) for all the streams on a given MST topology's link.
> drm_dp_mst_port_downstream_of_parent() used to determine if a stream is
> downstream of an MST port will return false if the whole topology is
> disconnected, since in that case it can't verify that the port/
> parent_port passed to it is in the given MST topology. This is a problem
> during the above FEC configuration check, since
> intel_dp_mst_check_dsc_change()->get_pipes_downstream_of_mst_ports()
> will not return all the stream CRTCs/pipes for the topology as expected.
> Since passing parent_port==NULL to get_pipes_downstream_of_mst_port()
> is meant to return all the streams for the given topology (i.e. mst_mgr)
> skip checking if an MST port is downstream of a parent port in this
> case.
>
> This fixes a problem where the FEC configuration check explained above
> failed to ensure that all streams' FEC is configured the same way if the
> topology was disconnected, leading to a FEC state mismatch error.
>
> Cc: stable@vger.kernel.org # v6.10+
> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16384
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_dp_mst.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> index 6a869d0f6ffc0..20766b6c0bcfa 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> @@ -856,7 +856,8 @@ static u8 get_pipes_downstream_of_mst_port(struct intel_atomic_state *state,
> if (&connector->mst.dp->mst.mgr != mst_mgr)
> continue;
>
> - if (connector->mst.port != parent_port &&
> + if (parent_port &&
> + connector->mst.port != parent_port &&
> !drm_dp_mst_port_downstream_of_parent(mst_mgr,
> connector->mst.port,
> parent_port))
Reviewed-by: Luca Coelho <luciano.coelho@intel.com>
--
Cheers,
Luca.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 2/2] drm/i915/dp_mst: Fix configuring TUs for a disconnected stream
2026-09-07 17:44 ` [PATCH 2/2] drm/i915/dp_mst: Fix configuring TUs " Imre Deak
2026-09-07 17:59 ` sashiko-bot
@ 2026-09-10 9:50 ` Luca Coelho
2026-09-10 11:11 ` Imre Deak
1 sibling, 1 reply; 13+ messages in thread
From: Luca Coelho @ 2026-09-10 9:50 UTC (permalink / raw)
To: Imre Deak, intel-gfx, intel-xe; +Cc: stable
On Mon, 2026-09-07 at 20:44 +0300, Imre Deak wrote:
> During an atomic commit after all the MST stream CRTC state is computed
> the driver ensures that the sum of TUs of all the streams on a given MST
> topology link is within limits (63 for 8b10 and 64 for 128b132b). For a
> disconnected stream the DRM MST core's BW verification doesn't ensure
> this, because the topology state it uses for this is destroyed as soon
> as the stream (i.e. MST connector/port) is disconnected. The driver
> should keep the link state valid even for such disconnected streams, as
> userspace may disable them one-by-one only in a deferred way. Ensure the
> link's sum of TUs stays within limits in this case by simply reusing the
> maximum link BPP limit from the stream's (i.e. CRTC's) old state.
>
> The disconnection can happen either via the whole topology getting
> disconnected or via only the given stream's port getting disconnected.
> Check for both of these conditions separately, as a connector gets
> unregistered after a link disconnect event only in a deferred way.
>
> Cc: stable@vger.kernel.org # v6.10+
> Link: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
> Link: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16384
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_dp_mst.c | 21 ++++++++++++++++++++
> drivers/gpu/drm/i915/display/intel_dp_mst.h | 2 ++
> drivers/gpu/drm/i915/display/intel_link_bw.c | 3 ++-
> 3 files changed, 25 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> index 20766b6c0bcfa..0c362784afe4a 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> @@ -2172,6 +2172,27 @@ bool intel_dp_mst_crtc_needs_modeset(struct intel_atomic_state *state,
> return false;
> }
>
> +bool intel_dp_mst_stream_disconnected(struct intel_atomic_state *state,
> + const struct intel_crtc *crtc)
> +{
> + struct intel_connector *connector;
> +
> + connector = get_connector_in_state_for_crtc(state, crtc);
> + if (!connector)
> + return false;
> +
> + if (!connector->mst.dp)
> + return false;
> +
> + if (!connector->mst.dp->mst.mgr.mst_state)
> + return true;
> +
> + if (drm_connector_is_unregistered(&connector->base))
> + return true;
> +
> + return false;
> +}
> +
> /**
> * intel_dp_mst_prepare_probe - Prepare an MST link for topology probing
> * @intel_dp: DP port object
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.h b/drivers/gpu/drm/i915/display/intel_dp_mst.h
> index ab09b487c6bb5..8ce89242c05c9 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_mst.h
> +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.h
> @@ -28,6 +28,8 @@ int intel_dp_mst_atomic_check_link(struct intel_atomic_state *state,
> struct intel_link_bw_limits *limits);
> bool intel_dp_mst_crtc_needs_modeset(struct intel_atomic_state *state,
> struct intel_crtc *crtc);
> +bool intel_dp_mst_stream_disconnected(struct intel_atomic_state *state,
> + const struct intel_crtc *crtc);
> void intel_dp_mst_prepare_probe(struct intel_dp *intel_dp);
> bool intel_dp_mst_verify_dpcd_state(struct intel_dp *intel_dp);
>
> diff --git a/drivers/gpu/drm/i915/display/intel_link_bw.c b/drivers/gpu/drm/i915/display/intel_link_bw.c
> index b47474a3e9fec..e71e76d6fd3e0 100644
> --- a/drivers/gpu/drm/i915/display/intel_link_bw.c
> +++ b/drivers/gpu/drm/i915/display/intel_link_bw.c
> @@ -64,7 +64,8 @@ void intel_link_bw_init_limits(struct intel_atomic_state *state,
> intel_atomic_get_new_crtc_state(state, crtc);
> int forced_bpp_x16 = get_forced_link_bpp_x16(state, crtc);
>
> - if (state->base.duplicated && crtc_state) {
> + if ((state->base.duplicated && crtc_state) ||
> + intel_dp_mst_stream_disconnected(state, crtc)) {
> limits->max_bpp_x16[pipe] = crtc_state->max_link_bpp_x16;
> if (intel_dsc_enabled_on_link(crtc_state))
> limits->link_dsc_pipes |= BIT(pipe);
I think Sashiko's NULL-dereference commment is valid. Can you check
it?
--
Cheers,
Luca.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 2/2] drm/i915/dp_mst: Fix configuring TUs for a disconnected stream
2026-09-10 9:50 ` Luca Coelho
@ 2026-09-10 11:11 ` Imre Deak
2026-09-10 12:24 ` Luca Coelho
0 siblings, 1 reply; 13+ messages in thread
From: Imre Deak @ 2026-09-10 11:11 UTC (permalink / raw)
To: Luca Coelho; +Cc: intel-gfx, intel-xe, stable
On Thu, Sep 10, 2026 at 12:50:16PM +0300, Luca Coelho wrote:
> On Mon, 2026-09-07 at 20:44 +0300, Imre Deak wrote:
> > During an atomic commit after all the MST stream CRTC state is computed
> > the driver ensures that the sum of TUs of all the streams on a given MST
> > topology link is within limits (63 for 8b10 and 64 for 128b132b). For a
> > disconnected stream the DRM MST core's BW verification doesn't ensure
> > this, because the topology state it uses for this is destroyed as soon
> > as the stream (i.e. MST connector/port) is disconnected. The driver
> > should keep the link state valid even for such disconnected streams, as
> > userspace may disable them one-by-one only in a deferred way. Ensure the
> > link's sum of TUs stays within limits in this case by simply reusing the
> > maximum link BPP limit from the stream's (i.e. CRTC's) old state.
> >
> > The disconnection can happen either via the whole topology getting
> > disconnected or via only the given stream's port getting disconnected.
> > Check for both of these conditions separately, as a connector gets
> > unregistered after a link disconnect event only in a deferred way.
> >
> > Cc: stable@vger.kernel.org # v6.10+
> > Link: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
> > Link: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16384
> > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_dp_mst.c | 21 ++++++++++++++++++++
> > drivers/gpu/drm/i915/display/intel_dp_mst.h | 2 ++
> > drivers/gpu/drm/i915/display/intel_link_bw.c | 3 ++-
> > 3 files changed, 25 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> > index 20766b6c0bcfa..0c362784afe4a 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> > @@ -2172,6 +2172,27 @@ bool intel_dp_mst_crtc_needs_modeset(struct intel_atomic_state *state,
> > return false;
> > }
> >
> > +bool intel_dp_mst_stream_disconnected(struct intel_atomic_state *state,
> > + const struct intel_crtc *crtc)
> > +{
> > + struct intel_connector *connector;
> > +
> > + connector = get_connector_in_state_for_crtc(state, crtc);
> > + if (!connector)
> > + return false;
> > +
> > + if (!connector->mst.dp)
> > + return false;
> > +
> > + if (!connector->mst.dp->mst.mgr.mst_state)
> > + return true;
> > +
> > + if (drm_connector_is_unregistered(&connector->base))
> > + return true;
> > +
> > + return false;
> > +}
> > +
> > /**
> > * intel_dp_mst_prepare_probe - Prepare an MST link for topology probing
> > * @intel_dp: DP port object
> > diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.h b/drivers/gpu/drm/i915/display/intel_dp_mst.h
> > index ab09b487c6bb5..8ce89242c05c9 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp_mst.h
> > +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.h
> > @@ -28,6 +28,8 @@ int intel_dp_mst_atomic_check_link(struct intel_atomic_state *state,
> > struct intel_link_bw_limits *limits);
> > bool intel_dp_mst_crtc_needs_modeset(struct intel_atomic_state *state,
> > struct intel_crtc *crtc);
> > +bool intel_dp_mst_stream_disconnected(struct intel_atomic_state *state,
> > + const struct intel_crtc *crtc);
> > void intel_dp_mst_prepare_probe(struct intel_dp *intel_dp);
> > bool intel_dp_mst_verify_dpcd_state(struct intel_dp *intel_dp);
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_link_bw.c b/drivers/gpu/drm/i915/display/intel_link_bw.c
> > index b47474a3e9fec..e71e76d6fd3e0 100644
> > --- a/drivers/gpu/drm/i915/display/intel_link_bw.c
> > +++ b/drivers/gpu/drm/i915/display/intel_link_bw.c
> > @@ -64,7 +64,8 @@ void intel_link_bw_init_limits(struct intel_atomic_state *state,
> > intel_atomic_get_new_crtc_state(state, crtc);
> > int forced_bpp_x16 = get_forced_link_bpp_x16(state, crtc);
> >
> > - if (state->base.duplicated && crtc_state) {
> > + if ((state->base.duplicated && crtc_state) ||
> > + intel_dp_mst_stream_disconnected(state, crtc)) {
> > limits->max_bpp_x16[pipe] = crtc_state->max_link_bpp_x16;
> > if (intel_dsc_enabled_on_link(crtc_state))
> > limits->link_dsc_pipes |= BIT(pipe);
>
> I think Sashiko's NULL-dereference commment is valid. Can you check
> it?
At least I can't see how a connector can get into the atomic state
without the crtc state for the CRTC associated with the connector.
Sashiko didn't provide the exact scenario it had in mind.
>
> --
> Cheers,
> Luca.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 2/2] drm/i915/dp_mst: Fix configuring TUs for a disconnected stream
2026-09-10 11:11 ` Imre Deak
@ 2026-09-10 12:24 ` Luca Coelho
0 siblings, 0 replies; 13+ messages in thread
From: Luca Coelho @ 2026-09-10 12:24 UTC (permalink / raw)
To: imre.deak; +Cc: intel-gfx, intel-xe, stable
On Thu, 2026-09-10 at 14:11 +0300, Imre Deak wrote:
> On Thu, Sep 10, 2026 at 12:50:16PM +0300, Luca Coelho wrote:
> > On Mon, 2026-09-07 at 20:44 +0300, Imre Deak wrote:
> > > During an atomic commit after all the MST stream CRTC state is computed
> > > the driver ensures that the sum of TUs of all the streams on a given MST
> > > topology link is within limits (63 for 8b10 and 64 for 128b132b). For a
> > > disconnected stream the DRM MST core's BW verification doesn't ensure
> > > this, because the topology state it uses for this is destroyed as soon
> > > as the stream (i.e. MST connector/port) is disconnected. The driver
> > > should keep the link state valid even for such disconnected streams, as
> > > userspace may disable them one-by-one only in a deferred way. Ensure the
> > > link's sum of TUs stays within limits in this case by simply reusing the
> > > maximum link BPP limit from the stream's (i.e. CRTC's) old state.
> > >
> > > The disconnection can happen either via the whole topology getting
> > > disconnected or via only the given stream's port getting disconnected.
> > > Check for both of these conditions separately, as a connector gets
> > > unregistered after a link disconnect event only in a deferred way.
> > >
> > > Cc: stable@vger.kernel.org # v6.10+
> > > Link: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
> > > Link: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16384
> > > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > > ---
> > > drivers/gpu/drm/i915/display/intel_dp_mst.c | 21 ++++++++++++++++++++
> > > drivers/gpu/drm/i915/display/intel_dp_mst.h | 2 ++
> > > drivers/gpu/drm/i915/display/intel_link_bw.c | 3 ++-
> > > 3 files changed, 25 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> > > index 20766b6c0bcfa..0c362784afe4a 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
> > > +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
> > > @@ -2172,6 +2172,27 @@ bool intel_dp_mst_crtc_needs_modeset(struct intel_atomic_state *state,
> > > return false;
> > > }
> > >
> > > +bool intel_dp_mst_stream_disconnected(struct intel_atomic_state *state,
> > > + const struct intel_crtc *crtc)
> > > +{
> > > + struct intel_connector *connector;
> > > +
> > > + connector = get_connector_in_state_for_crtc(state, crtc);
> > > + if (!connector)
> > > + return false;
> > > +
> > > + if (!connector->mst.dp)
> > > + return false;
> > > +
> > > + if (!connector->mst.dp->mst.mgr.mst_state)
> > > + return true;
> > > +
> > > + if (drm_connector_is_unregistered(&connector->base))
> > > + return true;
> > > +
> > > + return false;
> > > +}
> > > +
> > > /**
> > > * intel_dp_mst_prepare_probe - Prepare an MST link for topology probing
> > > * @intel_dp: DP port object
> > > diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.h b/drivers/gpu/drm/i915/display/intel_dp_mst.h
> > > index ab09b487c6bb5..8ce89242c05c9 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_dp_mst.h
> > > +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.h
> > > @@ -28,6 +28,8 @@ int intel_dp_mst_atomic_check_link(struct intel_atomic_state *state,
> > > struct intel_link_bw_limits *limits);
> > > bool intel_dp_mst_crtc_needs_modeset(struct intel_atomic_state *state,
> > > struct intel_crtc *crtc);
> > > +bool intel_dp_mst_stream_disconnected(struct intel_atomic_state *state,
> > > + const struct intel_crtc *crtc);
> > > void intel_dp_mst_prepare_probe(struct intel_dp *intel_dp);
> > > bool intel_dp_mst_verify_dpcd_state(struct intel_dp *intel_dp);
> > >
> > > diff --git a/drivers/gpu/drm/i915/display/intel_link_bw.c b/drivers/gpu/drm/i915/display/intel_link_bw.c
> > > index b47474a3e9fec..e71e76d6fd3e0 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_link_bw.c
> > > +++ b/drivers/gpu/drm/i915/display/intel_link_bw.c
> > > @@ -64,7 +64,8 @@ void intel_link_bw_init_limits(struct intel_atomic_state *state,
> > > intel_atomic_get_new_crtc_state(state, crtc);
> > > int forced_bpp_x16 = get_forced_link_bpp_x16(state, crtc);
> > >
> > > - if (state->base.duplicated && crtc_state) {
> > > + if ((state->base.duplicated && crtc_state) ||
> > > + intel_dp_mst_stream_disconnected(state, crtc)) {
> > > limits->max_bpp_x16[pipe] = crtc_state->max_link_bpp_x16;
> > > if (intel_dsc_enabled_on_link(crtc_state))
> > > limits->link_dsc_pipes |= BIT(pipe);
> >
> > I think Sashiko's NULL-dereference commment is valid. Can you check
> > it?
>
> At least I can't see how a connector can get into the atomic state
> without the crtc state for the CRTC associated with the connector.
> Sashiko didn't provide the exact scenario it had in mind.
As discussed offline, this is not really a problem, and it's a safe
bypass the NULL pointer check here.
Reviewed-by: Luca Coelho <luciano.coelho@intel.com>
--
Cheers,
Luca.
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2026-09-10 12:24 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-07 17:44 [PATCH 1/2] drm/i915/dp_mst: Fix configuring FEC for a disconnected stream Imre Deak
2026-09-07 17:44 ` [PATCH 2/2] drm/i915/dp_mst: Fix configuring TUs " Imre Deak
2026-09-07 17:59 ` sashiko-bot
2026-09-10 9:50 ` Luca Coelho
2026-09-10 11:11 ` Imre Deak
2026-09-10 12:24 ` Luca Coelho
2026-09-07 18:09 ` ✗ CI.checkpatch: warning for series starting with [1/2] drm/i915/dp_mst: Fix configuring FEC " Patchwork
2026-09-07 18:11 ` ✓ CI.KUnit: success " Patchwork
2026-09-07 18:52 ` ✓ Xe.CI.BAT: " Patchwork
2026-09-07 23:00 ` ✓ Xe.CI.FULL: " Patchwork
2026-09-08 3:25 ` [PATCH 1/2] " Murthy, Arun R
2026-09-08 9:13 ` Imre Deak
2026-09-10 9:31 ` Luca Coelho
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox