* [PATCH v5 0/4] drm/xe: Update Wa_22019338487
@ 2025-06-18 18:49 Lucas De Marchi
2025-06-18 18:49 ` [PATCH v5 1/4] drm/xe/guc_pc: Add _locked variant for min/max freq Lucas De Marchi
` (8 more replies)
0 siblings, 9 replies; 12+ messages in thread
From: Lucas De Marchi @ 2025-06-18 18:49 UTC (permalink / raw)
To: intel-xe
Cc: Lucas De Marchi, Vinay Belgaumkar, Rodrigo Vivi, Badal Nilawar,
Stuart Summers
Extracted from https://lore.kernel.org/r/20250602234415.2015921-4-vinay.belgaumkar@intel.com.
Now that the other workarounds were already update, also update this
one that had more changes.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
Changes in v5:
- Drop additional steps in case we are doing L2 flush
- Link to v4: https://lore.kernel.org/r/20250615-wa-22019338487-v4-0-704830697cbc@intel.com
---
Lucas De Marchi (3):
drm/xe/guc_pc: Add _locked variant for min/max freq
drm/xe/xe_guc_pc: Lock once to update stashed frequencies
drm/xe: Split xe_device_td_flush()
Vinay Belgaumkar (1):
drm/xe/bmg: Update Wa_22019338487
drivers/gpu/drm/xe/xe_device.c | 72 +++++----
drivers/gpu/drm/xe/xe_guc_pc.c | 280 ++++++++++++++++++++++++++---------
drivers/gpu/drm/xe/xe_guc_pc.h | 2 +
drivers/gpu/drm/xe/xe_guc_pc_types.h | 2 +
4 files changed, 259 insertions(+), 97 deletions(-)
base-commit: 55cbd02fa784e94b4f658c1e547371ac804c62a9
change-id: 20250613-wa-22019338487-d18a019d79a8
Lucas De Marchi
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v5 1/4] drm/xe/guc_pc: Add _locked variant for min/max freq
2025-06-18 18:49 [PATCH v5 0/4] drm/xe: Update Wa_22019338487 Lucas De Marchi
@ 2025-06-18 18:49 ` Lucas De Marchi
2025-06-18 18:49 ` [PATCH v5 2/4] drm/xe/xe_guc_pc: Lock once to update stashed frequencies Lucas De Marchi
` (7 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Lucas De Marchi @ 2025-06-18 18:49 UTC (permalink / raw)
To: intel-xe
Cc: Lucas De Marchi, Vinay Belgaumkar, Rodrigo Vivi, Badal Nilawar,
Stuart Summers
There are places in which the getters/setters are called one after the
other causing a multiple lock()/unlock(). These are not currently a
problem since they are all happening from the same thread, but there's a
race possibility as calls are added outside of the early init when the
max/min and stashed values need to be correlated.
Add the _locked() variants to prepare for that.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
drivers/gpu/drm/xe/xe_guc_pc.c | 124 +++++++++++++++++++++++------------------
1 file changed, 70 insertions(+), 54 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c
index 9fab5f5b10fa3..a01fbe1ac4d46 100644
--- a/drivers/gpu/drm/xe/xe_guc_pc.c
+++ b/drivers/gpu/drm/xe/xe_guc_pc.c
@@ -5,6 +5,7 @@
#include "xe_guc_pc.h"
+#include <linux/cleanup.h>
#include <linux/delay.h>
#include <linux/ktime.h>
@@ -554,6 +555,25 @@ u32 xe_guc_pc_get_rpn_freq(struct xe_guc_pc *pc)
return pc->rpn_freq;
}
+static int xe_guc_pc_get_min_freq_locked(struct xe_guc_pc *pc, u32 *freq)
+{
+ int ret;
+
+ lockdep_assert_held(&pc->freq_lock);
+
+ /* Might be in the middle of a gt reset */
+ if (!pc->freq_ready)
+ return -EAGAIN;
+
+ ret = pc_action_query_task_state(pc);
+ if (ret)
+ return ret;
+
+ *freq = pc_get_min_freq(pc);
+
+ return 0;
+}
+
/**
* xe_guc_pc_get_min_freq - Get the min operational frequency
* @pc: The GuC PC
@@ -563,27 +583,29 @@ u32 xe_guc_pc_get_rpn_freq(struct xe_guc_pc *pc)
* -EAGAIN if GuC PC not ready (likely in middle of a reset).
*/
int xe_guc_pc_get_min_freq(struct xe_guc_pc *pc, u32 *freq)
+{
+ guard(mutex)(&pc->freq_lock);
+
+ return xe_guc_pc_get_min_freq_locked(pc, freq);
+}
+
+static int xe_guc_pc_set_min_freq_locked(struct xe_guc_pc *pc, u32 freq)
{
int ret;
- xe_device_assert_mem_access(pc_to_xe(pc));
+ lockdep_assert_held(&pc->freq_lock);
- mutex_lock(&pc->freq_lock);
- if (!pc->freq_ready) {
- /* Might be in the middle of a gt reset */
- ret = -EAGAIN;
- goto out;
- }
+ /* Might be in the middle of a gt reset */
+ if (!pc->freq_ready)
+ return -EAGAIN;
- ret = pc_action_query_task_state(pc);
+ ret = pc_set_min_freq(pc, freq);
if (ret)
- goto out;
+ return ret;
- *freq = pc_get_min_freq(pc);
+ pc->user_requested_min = freq;
-out:
- mutex_unlock(&pc->freq_lock);
- return ret;
+ return 0;
}
/**
@@ -596,25 +618,30 @@ int xe_guc_pc_get_min_freq(struct xe_guc_pc *pc, u32 *freq)
* -EINVAL if value out of bounds.
*/
int xe_guc_pc_set_min_freq(struct xe_guc_pc *pc, u32 freq)
+{
+ guard(mutex)(&pc->freq_lock);
+
+ return xe_guc_pc_set_min_freq_locked(pc, freq);
+}
+
+
+static int xe_guc_pc_get_max_freq_locked(struct xe_guc_pc *pc, u32 *freq)
{
int ret;
- mutex_lock(&pc->freq_lock);
- if (!pc->freq_ready) {
- /* Might be in the middle of a gt reset */
- ret = -EAGAIN;
- goto out;
- }
+ lockdep_assert_held(&pc->freq_lock);
- ret = pc_set_min_freq(pc, freq);
+ /* Might be in the middle of a gt reset */
+ if (!pc->freq_ready)
+ return -EAGAIN;
+
+ ret = pc_action_query_task_state(pc);
if (ret)
- goto out;
+ return ret;
- pc->user_requested_min = freq;
+ *freq = pc_get_max_freq(pc);
-out:
- mutex_unlock(&pc->freq_lock);
- return ret;
+ return 0;
}
/**
@@ -626,25 +653,29 @@ int xe_guc_pc_set_min_freq(struct xe_guc_pc *pc, u32 freq)
* -EAGAIN if GuC PC not ready (likely in middle of a reset).
*/
int xe_guc_pc_get_max_freq(struct xe_guc_pc *pc, u32 *freq)
+{
+ guard(mutex)(&pc->freq_lock);
+
+ return xe_guc_pc_get_max_freq_locked(pc, freq);
+}
+
+static int xe_guc_pc_set_max_freq_locked(struct xe_guc_pc *pc, u32 freq)
{
int ret;
- mutex_lock(&pc->freq_lock);
- if (!pc->freq_ready) {
- /* Might be in the middle of a gt reset */
- ret = -EAGAIN;
- goto out;
- }
+ lockdep_assert_held(&pc->freq_lock);
- ret = pc_action_query_task_state(pc);
+ /* Might be in the middle of a gt reset */
+ if (!pc->freq_ready)
+ return -EAGAIN;
+
+ ret = pc_set_max_freq(pc, freq);
if (ret)
- goto out;
+ return ret;
- *freq = pc_get_max_freq(pc);
+ pc->user_requested_max = freq;
-out:
- mutex_unlock(&pc->freq_lock);
- return ret;
+ return 0;
}
/**
@@ -658,24 +689,9 @@ int xe_guc_pc_get_max_freq(struct xe_guc_pc *pc, u32 *freq)
*/
int xe_guc_pc_set_max_freq(struct xe_guc_pc *pc, u32 freq)
{
- int ret;
-
- mutex_lock(&pc->freq_lock);
- if (!pc->freq_ready) {
- /* Might be in the middle of a gt reset */
- ret = -EAGAIN;
- goto out;
- }
-
- ret = pc_set_max_freq(pc, freq);
- if (ret)
- goto out;
+ guard(mutex)(&pc->freq_lock);
- pc->user_requested_max = freq;
-
-out:
- mutex_unlock(&pc->freq_lock);
- return ret;
+ return xe_guc_pc_set_max_freq_locked(pc, freq);
}
/**
--
2.49.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v5 2/4] drm/xe/xe_guc_pc: Lock once to update stashed frequencies
2025-06-18 18:49 [PATCH v5 0/4] drm/xe: Update Wa_22019338487 Lucas De Marchi
2025-06-18 18:49 ` [PATCH v5 1/4] drm/xe/guc_pc: Add _locked variant for min/max freq Lucas De Marchi
@ 2025-06-18 18:49 ` Lucas De Marchi
2025-06-18 18:50 ` [PATCH v5 3/4] drm/xe: Split xe_device_td_flush() Lucas De Marchi
` (6 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Lucas De Marchi @ 2025-06-18 18:49 UTC (permalink / raw)
To: intel-xe
Cc: Lucas De Marchi, Vinay Belgaumkar, Rodrigo Vivi, Badal Nilawar,
Stuart Summers
pc_set_mert_freq_cap() currently lock()/unlock() the mutex multiple times
to stash the current frequencies. It's not a problem since
xe_guc_pc_restore_stashed_freq() is guaranteed to be called only later
in the init sequence. However, now that we have _locked() variants for
this functions, use them and avoid potential issues when called from
other places or using the same pattern.
While at it, prefer and early return for the WA check to reduce
indentation.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
drivers/gpu/drm/xe/xe_guc_pc.c | 39 ++++++++++++++++++++-------------------
1 file changed, 20 insertions(+), 19 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c
index a01fbe1ac4d46..538b4ea61c17c 100644
--- a/drivers/gpu/drm/xe/xe_guc_pc.c
+++ b/drivers/gpu/drm/xe/xe_guc_pc.c
@@ -891,27 +891,28 @@ static int pc_adjust_requested_freq(struct xe_guc_pc *pc)
static int pc_set_mert_freq_cap(struct xe_guc_pc *pc)
{
- int ret = 0;
+ int ret;
- if (XE_WA(pc_to_gt(pc), 22019338487)) {
- /*
- * Get updated min/max and stash them.
- */
- ret = xe_guc_pc_get_min_freq(pc, &pc->stashed_min_freq);
- if (!ret)
- ret = xe_guc_pc_get_max_freq(pc, &pc->stashed_max_freq);
- if (ret)
- return ret;
+ if (!XE_WA(pc_to_gt(pc), 22019338487))
+ return 0;
- /*
- * Ensure min and max are bound by MERT_FREQ_CAP until driver loads.
- */
- mutex_lock(&pc->freq_lock);
- ret = pc_set_min_freq(pc, min(pc->rpe_freq, pc_max_freq_cap(pc)));
- if (!ret)
- ret = pc_set_max_freq(pc, min(pc->rp0_freq, pc_max_freq_cap(pc)));
- mutex_unlock(&pc->freq_lock);
- }
+ guard(mutex)(&pc->freq_lock);
+
+ /*
+ * Get updated min/max and stash them.
+ */
+ ret = xe_guc_pc_get_min_freq_locked(pc, &pc->stashed_min_freq);
+ if (!ret)
+ ret = xe_guc_pc_get_max_freq_locked(pc, &pc->stashed_max_freq);
+ if (ret)
+ return ret;
+
+ /*
+ * Ensure min and max are bound by MERT_FREQ_CAP until driver loads.
+ */
+ ret = pc_set_min_freq(pc, min(pc->rpe_freq, pc_max_freq_cap(pc)));
+ if (!ret)
+ ret = pc_set_max_freq(pc, min(pc->rp0_freq, pc_max_freq_cap(pc)));
return ret;
}
--
2.49.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v5 3/4] drm/xe: Split xe_device_td_flush()
2025-06-18 18:49 [PATCH v5 0/4] drm/xe: Update Wa_22019338487 Lucas De Marchi
2025-06-18 18:49 ` [PATCH v5 1/4] drm/xe/guc_pc: Add _locked variant for min/max freq Lucas De Marchi
2025-06-18 18:49 ` [PATCH v5 2/4] drm/xe/xe_guc_pc: Lock once to update stashed frequencies Lucas De Marchi
@ 2025-06-18 18:50 ` Lucas De Marchi
2025-06-20 11:01 ` Matthew Auld
2025-06-18 18:50 ` [PATCH v5 4/4] drm/xe/bmg: Update Wa_22019338487 Lucas De Marchi
` (5 subsequent siblings)
8 siblings, 1 reply; 12+ messages in thread
From: Lucas De Marchi @ 2025-06-18 18:50 UTC (permalink / raw)
To: intel-xe
Cc: Lucas De Marchi, Vinay Belgaumkar, Rodrigo Vivi, Badal Nilawar,
Stuart Summers
xe_device_td_flush() has 2 possible implementations: an entire L2 flush
or a transient flush, depending on WA 16023588340. Make this clear by
splitting the function so it calls each of them.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
drivers/gpu/drm/xe/xe_device.c | 68 +++++++++++++++++++++++++-----------------
1 file changed, 40 insertions(+), 28 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index 8cfcfff250ca5..8396612b68d4b 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -981,38 +981,15 @@ void xe_device_wmb(struct xe_device *xe)
xe_mmio_write32(xe_root_tile_mmio(xe), VF_CAP_REG, 0);
}
-/**
- * xe_device_td_flush() - Flush transient L3 cache entries
- * @xe: The device
- *
- * Display engine has direct access to memory and is never coherent with L3/L4
- * caches (or CPU caches), however KMD is responsible for specifically flushing
- * transient L3 GPU cache entries prior to the flip sequence to ensure scanout
- * can happen from such a surface without seeing corruption.
- *
- * Display surfaces can be tagged as transient by mapping it using one of the
- * various L3:XD PAT index modes on Xe2.
- *
- * Note: On non-discrete xe2 platforms, like LNL, the entire L3 cache is flushed
- * at the end of each submission via PIPE_CONTROL for compute/render, since SA
- * Media is not coherent with L3 and we want to support render-vs-media
- * usescases. For other engines like copy/blt the HW internally forces uncached
- * behaviour, hence why we can skip the TDF on such platforms.
+/*
+ * Issue a TRANSIENT_FLUSH_REQUEST and wait for completion on each gt.
*/
-void xe_device_td_flush(struct xe_device *xe)
+static void tdf_request_sync(struct xe_device *xe)
{
- struct xe_gt *gt;
unsigned int fw_ref;
+ struct xe_gt *gt;
u8 id;
- if (!IS_DGFX(xe) || GRAPHICS_VER(xe) < 20)
- return;
-
- if (XE_WA(xe_root_mmio_gt(xe), 16023588340)) {
- xe_device_l2_flush(xe);
- return;
- }
-
for_each_gt(gt, xe, id) {
if (xe_gt_is_media_type(gt))
continue;
@@ -1022,6 +999,7 @@ void xe_device_td_flush(struct xe_device *xe)
return;
xe_mmio_write32(>->mmio, XE2_TDF_CTRL, TRANSIENT_FLUSH_REQUEST);
+
/*
* FIXME: We can likely do better here with our choice of
* timeout. Currently we just assume the worst case, i.e. 150us,
@@ -1052,15 +1030,49 @@ void xe_device_l2_flush(struct xe_device *xe)
return;
spin_lock(>->global_invl_lock);
- xe_mmio_write32(>->mmio, XE2_GLOBAL_INVAL, 0x1);
+ xe_mmio_write32(>->mmio, XE2_GLOBAL_INVAL, 0x1);
if (xe_mmio_wait32(>->mmio, XE2_GLOBAL_INVAL, 0x1, 0x0, 500, NULL, true))
xe_gt_err_once(gt, "Global invalidation timeout\n");
+
spin_unlock(>->global_invl_lock);
xe_force_wake_put(gt_to_fw(gt), fw_ref);
}
+/**
+ * xe_device_td_flush() - Flush transient L3 cache entries
+ * @xe: The device
+ *
+ * Display engine has direct access to memory and is never coherent with L3/L4
+ * caches (or CPU caches), however KMD is responsible for specifically flushing
+ * transient L3 GPU cache entries prior to the flip sequence to ensure scanout
+ * can happen from such a surface without seeing corruption.
+ *
+ * Display surfaces can be tagged as transient by mapping it using one of the
+ * various L3:XD PAT index modes on Xe2.
+ *
+ * Note: On non-discrete xe2 platforms, like LNL, the entire L3 cache is flushed
+ * at the end of each submission via PIPE_CONTROL for compute/render, since SA
+ * Media is not coherent with L3 and we want to support render-vs-media
+ * usescases. For other engines like copy/blt the HW internally forces uncached
+ * behaviour, hence why we can skip the TDF on such platforms.
+ */
+void xe_device_td_flush(struct xe_device *xe)
+{
+ struct xe_gt *root_gt;
+
+ if (!IS_DGFX(xe) || GRAPHICS_VER(xe) < 20)
+ return;
+
+ root_gt = xe_root_mmio_gt(xe);
+ if (XE_WA(root_gt, 16023588340))
+ /* A transient flush is not sufficient: flush the L2 */
+ xe_device_l2_flush(xe);
+ else
+ tdf_request_sync(xe);
+}
+
u32 xe_device_ccs_bytes(struct xe_device *xe, u64 size)
{
return xe_device_has_flat_ccs(xe) ?
--
2.49.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v5 4/4] drm/xe/bmg: Update Wa_22019338487
2025-06-18 18:49 [PATCH v5 0/4] drm/xe: Update Wa_22019338487 Lucas De Marchi
` (2 preceding siblings ...)
2025-06-18 18:50 ` [PATCH v5 3/4] drm/xe: Split xe_device_td_flush() Lucas De Marchi
@ 2025-06-18 18:50 ` Lucas De Marchi
2025-06-20 13:44 ` Rodrigo Vivi
2025-06-18 18:56 ` ✗ CI.checkpatch: warning for drm/xe: Update Wa_22019338487 (rev2) Patchwork
` (4 subsequent siblings)
8 siblings, 1 reply; 12+ messages in thread
From: Lucas De Marchi @ 2025-06-18 18:50 UTC (permalink / raw)
To: intel-xe
Cc: Lucas De Marchi, Vinay Belgaumkar, Rodrigo Vivi, Badal Nilawar,
Stuart Summers
From: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Limit GT max frequency to 2600MHz and wait for frequency to reduce
before proceeding with a transient flush. This is really only needed for
the transient flush: if L2 flush is needed due to 16023588340 then
there's no need to do this additional wait since we are already using
the bigger hammer.
v2: Use generic names, ensure user set max frequency requests wait
for flush to complete (Rodrigo)
v3:
- User requests wait via wait_var_event_timeout (Lucas)
- Close races on flush + user requests (Lucas)
- Fix xe_guc_pc_remove_flush_freq_limit() being called on last gt
rather than root gt (Lucas)
v4:
- Only apply the freq reducing part if a TDF is needed: L2 flush trumps
the need for waiting a lower frequency
Fixes: aaa08078e725 ("drm/xe/bmg: Apply Wa_22019338487")
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> # v3
Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
Rodrigo, since the change in v4 changed it considerably, please let me
know if your review still stands
---
drivers/gpu/drm/xe/xe_device.c | 8 ++-
drivers/gpu/drm/xe/xe_guc_pc.c | 125 +++++++++++++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_guc_pc.h | 2 +
drivers/gpu/drm/xe/xe_guc_pc_types.h | 2 +
4 files changed, 135 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index 8396612b68d4b..c3aee79aa1acb 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -40,6 +40,7 @@
#include "xe_gt_printk.h"
#include "xe_gt_sriov_vf.h"
#include "xe_guc.h"
+#include "xe_guc_pc.h"
#include "xe_hw_engine_group.h"
#include "xe_hwmon.h"
#include "xe_irq.h"
@@ -1066,11 +1067,14 @@ void xe_device_td_flush(struct xe_device *xe)
return;
root_gt = xe_root_mmio_gt(xe);
- if (XE_WA(root_gt, 16023588340))
+ if (XE_WA(root_gt, 16023588340)) {
/* A transient flush is not sufficient: flush the L2 */
xe_device_l2_flush(xe);
- else
+ } else {
+ xe_guc_pc_apply_flush_freq_limit(&root_gt->uc.guc.pc);
tdf_request_sync(xe);
+ xe_guc_pc_remove_flush_freq_limit(&root_gt->uc.guc.pc);
+ }
}
u32 xe_device_ccs_bytes(struct xe_device *xe, u64 size)
diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c
index 538b4ea61c17c..eb3552baa6029 100644
--- a/drivers/gpu/drm/xe/xe_guc_pc.c
+++ b/drivers/gpu/drm/xe/xe_guc_pc.c
@@ -7,7 +7,9 @@
#include <linux/cleanup.h>
#include <linux/delay.h>
+#include <linux/jiffies.h>
#include <linux/ktime.h>
+#include <linux/wait_bit.h>
#include <drm/drm_managed.h>
#include <drm/drm_print.h>
@@ -53,9 +55,11 @@
#define LNL_MERT_FREQ_CAP 800
#define BMG_MERT_FREQ_CAP 2133
#define BMG_MIN_FREQ 1200
+#define BMG_MERT_FLUSH_FREQ_CAP 2600
#define SLPC_RESET_TIMEOUT_MS 5 /* roughly 5ms, but no need for precision */
#define SLPC_RESET_EXTENDED_TIMEOUT_MS 1000 /* To be used only at pc_start */
+#define SLPC_ACT_FREQ_TIMEOUT_MS 100
/**
* DOC: GuC Power Conservation (PC)
@@ -143,6 +147,36 @@ static int wait_for_pc_state(struct xe_guc_pc *pc,
return -ETIMEDOUT;
}
+static int wait_for_flush_complete(struct xe_guc_pc *pc)
+{
+ const unsigned long timeout = msecs_to_jiffies(30);
+
+ if (!wait_var_event_timeout(&pc->flush_freq_limit,
+ !atomic_read(&pc->flush_freq_limit),
+ timeout))
+ return -ETIMEDOUT;
+
+ return 0;
+}
+
+static int wait_for_act_freq_limit(struct xe_guc_pc *pc, u32 freq)
+{
+ int timeout_us = SLPC_ACT_FREQ_TIMEOUT_MS * USEC_PER_MSEC;
+ int slept, wait = 10;
+
+ for (slept = 0; slept < timeout_us;) {
+ if (xe_guc_pc_get_act_freq(pc) <= freq)
+ return 0;
+
+ usleep_range(wait, wait << 1);
+ slept += wait;
+ wait <<= 1;
+ if (slept + wait > timeout_us)
+ wait = timeout_us - slept;
+ }
+
+ return -ETIMEDOUT;
+}
static int pc_action_reset(struct xe_guc_pc *pc)
{
struct xe_guc_ct *ct = pc_to_ct(pc);
@@ -689,6 +723,11 @@ static int xe_guc_pc_set_max_freq_locked(struct xe_guc_pc *pc, u32 freq)
*/
int xe_guc_pc_set_max_freq(struct xe_guc_pc *pc, u32 freq)
{
+ if (XE_WA(pc_to_gt(pc), 22019338487)) {
+ if (wait_for_flush_complete(pc) != 0)
+ return -EAGAIN;
+ }
+
guard(mutex)(&pc->freq_lock);
return xe_guc_pc_set_max_freq_locked(pc, freq);
@@ -889,6 +928,92 @@ static int pc_adjust_requested_freq(struct xe_guc_pc *pc)
return ret;
}
+static bool needs_flush_freq_limit(struct xe_guc_pc *pc)
+{
+ struct xe_gt *gt = pc_to_gt(pc);
+
+ return XE_WA(gt, 22019338487) &&
+ pc->rp0_freq > BMG_MERT_FLUSH_FREQ_CAP;
+}
+
+/**
+ * xe_guc_pc_apply_flush_freq_limit() - Limit max GT freq during L2 flush
+ * @pc: the xe_guc_pc object
+ *
+ * As per the WA, reduce max GT frequency during L2 cache flush
+ */
+void xe_guc_pc_apply_flush_freq_limit(struct xe_guc_pc *pc)
+{
+ struct xe_gt *gt = pc_to_gt(pc);
+ u32 max_freq;
+ int ret;
+
+ if (!needs_flush_freq_limit(pc))
+ return;
+
+ guard(mutex)(&pc->freq_lock);
+
+ ret = xe_guc_pc_get_max_freq_locked(pc, &max_freq);
+ if (!ret && max_freq > BMG_MERT_FLUSH_FREQ_CAP) {
+ ret = pc_set_max_freq(pc, BMG_MERT_FLUSH_FREQ_CAP);
+ if (ret) {
+ xe_gt_err_once(gt, "Failed to cap max freq on flush to %u, %pe\n",
+ BMG_MERT_FLUSH_FREQ_CAP, ERR_PTR(ret));
+ return;
+ }
+
+ atomic_set(&pc->flush_freq_limit, 1);
+
+ /*
+ * If user has previously changed max freq, stash that value to
+ * restore later, otherwise use the current max. New user
+ * requests wait on flush.
+ */
+ if (pc->user_requested_max != 0)
+ pc->stashed_max_freq = pc->user_requested_max;
+ else
+ pc->stashed_max_freq = max_freq;
+ }
+
+ /*
+ * Wait for actual freq to go below the flush cap: even if the previous
+ * max was below cap, the current one might still be above it
+ */
+ ret = wait_for_act_freq_limit(pc, BMG_MERT_FLUSH_FREQ_CAP);
+ if (ret)
+ xe_gt_err_once(gt, "Actual freq did not reduce to %u, %pe\n",
+ BMG_MERT_FLUSH_FREQ_CAP, ERR_PTR(ret));
+}
+
+/**
+ * xe_guc_pc_remove_flush_freq_limit() - Remove max GT freq limit after L2 flush completes.
+ * @pc: the xe_guc_pc object
+ *
+ * Retrieve the previous GT max frequency value.
+ */
+void xe_guc_pc_remove_flush_freq_limit(struct xe_guc_pc *pc)
+{
+ struct xe_gt *gt = pc_to_gt(pc);
+ int ret = 0;
+
+ if (!needs_flush_freq_limit(pc))
+ return;
+
+ if (!atomic_read(&pc->flush_freq_limit))
+ return;
+
+ mutex_lock(&pc->freq_lock);
+
+ ret = pc_set_max_freq(>->uc.guc.pc, pc->stashed_max_freq);
+ if (ret)
+ xe_gt_err_once(gt, "Failed to restore max freq %u:%d",
+ pc->stashed_max_freq, ret);
+
+ atomic_set(&pc->flush_freq_limit, 0);
+ mutex_unlock(&pc->freq_lock);
+ wake_up_var(&pc->flush_freq_limit);
+}
+
static int pc_set_mert_freq_cap(struct xe_guc_pc *pc)
{
int ret;
diff --git a/drivers/gpu/drm/xe/xe_guc_pc.h b/drivers/gpu/drm/xe/xe_guc_pc.h
index 0a2664d5c8114..52ecdd5ddbff2 100644
--- a/drivers/gpu/drm/xe/xe_guc_pc.h
+++ b/drivers/gpu/drm/xe/xe_guc_pc.h
@@ -38,5 +38,7 @@ u64 xe_guc_pc_mc6_residency(struct xe_guc_pc *pc);
void xe_guc_pc_init_early(struct xe_guc_pc *pc);
int xe_guc_pc_restore_stashed_freq(struct xe_guc_pc *pc);
void xe_guc_pc_raise_unslice(struct xe_guc_pc *pc);
+void xe_guc_pc_apply_flush_freq_limit(struct xe_guc_pc *pc);
+void xe_guc_pc_remove_flush_freq_limit(struct xe_guc_pc *pc);
#endif /* _XE_GUC_PC_H_ */
diff --git a/drivers/gpu/drm/xe/xe_guc_pc_types.h b/drivers/gpu/drm/xe/xe_guc_pc_types.h
index 2978ac9a249b5..c02053948a579 100644
--- a/drivers/gpu/drm/xe/xe_guc_pc_types.h
+++ b/drivers/gpu/drm/xe/xe_guc_pc_types.h
@@ -15,6 +15,8 @@
struct xe_guc_pc {
/** @bo: GGTT buffer object that is shared with GuC PC */
struct xe_bo *bo;
+ /** @flush_freq_limit: 1 when max freq changes are limited by driver */
+ atomic_t flush_freq_limit;
/** @rp0_freq: HW RP0 frequency - The Maximum one */
u32 rp0_freq;
/** @rpa_freq: HW RPa frequency - The Achievable one */
--
2.49.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* ✗ CI.checkpatch: warning for drm/xe: Update Wa_22019338487 (rev2)
2025-06-18 18:49 [PATCH v5 0/4] drm/xe: Update Wa_22019338487 Lucas De Marchi
` (3 preceding siblings ...)
2025-06-18 18:50 ` [PATCH v5 4/4] drm/xe/bmg: Update Wa_22019338487 Lucas De Marchi
@ 2025-06-18 18:56 ` Patchwork
2025-06-18 18:59 ` ✓ CI.KUnit: success " Patchwork
` (3 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-06-18 18:56 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Update Wa_22019338487 (rev2)
URL : https://patchwork.freedesktop.org/series/150300/
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
f8ff75ae1d2127635239b134695774ed4045d05b
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 10c14f1596364be0400b92da66ae948103b6f602
Author: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Date: Wed Jun 18 11:50:01 2025 -0700
drm/xe/bmg: Update Wa_22019338487
Limit GT max frequency to 2600MHz and wait for frequency to reduce
before proceeding with a transient flush. This is really only needed for
the transient flush: if L2 flush is needed due to 16023588340 then
there's no need to do this additional wait since we are already using
the bigger hammer.
v2: Use generic names, ensure user set max frequency requests wait
for flush to complete (Rodrigo)
v3:
- User requests wait via wait_var_event_timeout (Lucas)
- Close races on flush + user requests (Lucas)
- Fix xe_guc_pc_remove_flush_freq_limit() being called on last gt
rather than root gt (Lucas)
v4:
- Only apply the freq reducing part if a TDF is needed: L2 flush trumps
the need for waiting a lower frequency
Fixes: aaa08078e725 ("drm/xe/bmg: Apply Wa_22019338487")
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> # v3
Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
+ /mt/dim checkpatch b5956fc71790f85e9c9113adf1d9c7332c995f13 drm-intel
576b9209863c drm/xe/guc_pc: Add _locked variant for min/max freq
-:108: CHECK:LINE_SPACING: Please don't use multiple blank lines
#108: FILE: drivers/gpu/drm/xe/xe_guc_pc.c:627:
+
+
total: 0 errors, 0 warnings, 1 checks, 183 lines checked
cfceef313427 drm/xe/xe_guc_pc: Lock once to update stashed frequencies
8dd48df5907e drm/xe: Split xe_device_td_flush()
10c14f159636 drm/xe/bmg: Update Wa_22019338487
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Update Wa_22019338487 (rev2)
2025-06-18 18:49 [PATCH v5 0/4] drm/xe: Update Wa_22019338487 Lucas De Marchi
` (4 preceding siblings ...)
2025-06-18 18:56 ` ✗ CI.checkpatch: warning for drm/xe: Update Wa_22019338487 (rev2) Patchwork
@ 2025-06-18 18:59 ` Patchwork
2025-06-18 19:56 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-06-18 18:59 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Update Wa_22019338487 (rev2)
URL : https://patchwork.freedesktop.org/series/150300/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[18:56:02] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:56:06] 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:56:33] Starting KUnit Kernel (1/1)...
[18:56:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:56:33] ================== guc_buf (11 subtests) ===================
[18:56:33] [PASSED] test_smallest
[18:56:33] [PASSED] test_largest
[18:56:33] [PASSED] test_granular
[18:56:33] [PASSED] test_unique
[18:56:33] [PASSED] test_overlap
[18:56:33] [PASSED] test_reusable
[18:56:33] [PASSED] test_too_big
[18:56:33] [PASSED] test_flush
[18:56:33] [PASSED] test_lookup
[18:56:33] [PASSED] test_data
[18:56:33] [PASSED] test_class
[18:56:33] ===================== [PASSED] guc_buf =====================
[18:56:33] =================== guc_dbm (7 subtests) ===================
[18:56:33] [PASSED] test_empty
[18:56:33] [PASSED] test_default
[18:56:33] ======================== test_size ========================
[18:56:33] [PASSED] 4
[18:56:33] [PASSED] 8
[18:56:33] [PASSED] 32
[18:56:33] [PASSED] 256
[18:56:33] ==================== [PASSED] test_size ====================
[18:56:33] ======================= test_reuse ========================
[18:56:33] [PASSED] 4
[18:56:33] [PASSED] 8
[18:56:33] [PASSED] 32
[18:56:33] [PASSED] 256
[18:56:33] =================== [PASSED] test_reuse ====================
[18:56:33] =================== test_range_overlap ====================
[18:56:33] [PASSED] 4
[18:56:33] [PASSED] 8
[18:56:33] [PASSED] 32
[18:56:33] [PASSED] 256
[18:56:33] =============== [PASSED] test_range_overlap ================
[18:56:33] =================== test_range_compact ====================
[18:56:33] [PASSED] 4
[18:56:33] [PASSED] 8
[18:56:33] [PASSED] 32
[18:56:33] [PASSED] 256
[18:56:33] =============== [PASSED] test_range_compact ================
[18:56:33] ==================== test_range_spare =====================
[18:56:33] [PASSED] 4
[18:56:33] [PASSED] 8
[18:56:33] [PASSED] 32
[18:56:33] [PASSED] 256
[18:56:33] ================ [PASSED] test_range_spare =================
[18:56:33] ===================== [PASSED] guc_dbm =====================
[18:56:33] =================== guc_idm (6 subtests) ===================
[18:56:33] [PASSED] bad_init
[18:56:33] [PASSED] no_init
[18:56:33] [PASSED] init_fini
[18:56:33] [PASSED] check_used
[18:56:33] [PASSED] check_quota
[18:56:33] [PASSED] check_all
[18:56:33] ===================== [PASSED] guc_idm =====================
[18:56:33] ================== no_relay (3 subtests) ===================
[18:56:33] [PASSED] xe_drops_guc2pf_if_not_ready
[18:56:33] [PASSED] xe_drops_guc2vf_if_not_ready
[18:56:33] [PASSED] xe_rejects_send_if_not_ready
[18:56:33] ==================== [PASSED] no_relay =====================
[18:56:33] ================== pf_relay (14 subtests) ==================
[18:56:33] [PASSED] pf_rejects_guc2pf_too_short
[18:56:33] [PASSED] pf_rejects_guc2pf_too_long
[18:56:33] [PASSED] pf_rejects_guc2pf_no_payload
[18:56:33] [PASSED] pf_fails_no_payload
[18:56:33] [PASSED] pf_fails_bad_origin
[18:56:33] [PASSED] pf_fails_bad_type
[18:56:33] [PASSED] pf_txn_reports_error
[18:56:33] [PASSED] pf_txn_sends_pf2guc
[18:56:33] [PASSED] pf_sends_pf2guc
[18:56:33] [SKIPPED] pf_loopback_nop
[18:56:33] [SKIPPED] pf_loopback_echo
[18:56:33] [SKIPPED] pf_loopback_fail
[18:56:33] [SKIPPED] pf_loopback_busy
[18:56:33] [SKIPPED] pf_loopback_retry
[18:56:33] ==================== [PASSED] pf_relay =====================
[18:56:33] ================== vf_relay (3 subtests) ===================
[18:56:33] [PASSED] vf_rejects_guc2vf_too_short
[18:56:33] [PASSED] vf_rejects_guc2vf_too_long
[18:56:33] [PASSED] vf_rejects_guc2vf_no_payload
[18:56:33] ==================== [PASSED] vf_relay =====================
[18:56:33] ================= pf_service (11 subtests) =================
[18:56:33] [PASSED] pf_negotiate_any
[18:56:33] [PASSED] pf_negotiate_base_match
[18:56:33] [PASSED] pf_negotiate_base_newer
[18:56:33] [PASSED] pf_negotiate_base_next
[18:56:33] [SKIPPED] pf_negotiate_base_older
[18:56:33] [PASSED] pf_negotiate_base_prev
[18:56:33] [PASSED] pf_negotiate_latest_match
[18:56:33] [PASSED] pf_negotiate_latest_newer
[18:56:33] [PASSED] pf_negotiate_latest_next
[18:56:33] [SKIPPED] pf_negotiate_latest_older
[18:56:33] [SKIPPED] pf_negotiate_latest_prev
[18:56:33] =================== [PASSED] pf_service ====================
[18:56:33] ===================== lmtt (1 subtest) =====================
[18:56:33] ======================== test_ops =========================
[18:56:33] [PASSED] 2-level
[18:56:33] [PASSED] multi-level
[18:56:33] ==================== [PASSED] test_ops =====================
[18:56:33] ====================== [PASSED] lmtt =======================
[18:56:33] =================== xe_mocs (2 subtests) ===================
[18:56:33] ================ xe_live_mocs_kernel_kunit ================
[18:56:33] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[18:56:33] ================ xe_live_mocs_reset_kunit =================
[18:56:33] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[18:56:33] ==================== [SKIPPED] xe_mocs =====================
[18:56:33] ================= xe_migrate (2 subtests) ==================
[18:56:33] ================= xe_migrate_sanity_kunit =================
[18:56:33] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[18:56:33] ================== xe_validate_ccs_kunit ==================
[18:56:33] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[18:56:33] =================== [SKIPPED] xe_migrate ===================
[18:56:33] ================== xe_dma_buf (1 subtest) ==================
[18:56:33] ==================== xe_dma_buf_kunit =====================
[18:56:33] ================ [SKIPPED] xe_dma_buf_kunit ================
[18:56:33] =================== [SKIPPED] xe_dma_buf ===================
[18:56:33] ================= xe_bo_shrink (1 subtest) =================
[18:56:33] =================== xe_bo_shrink_kunit ====================
[18:56:33] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[18:56:33] ================== [SKIPPED] xe_bo_shrink ==================
[18:56:33] ==================== xe_bo (2 subtests) ====================
[18:56:33] ================== xe_ccs_migrate_kunit ===================
[18:56:33] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[18:56:33] ==================== xe_bo_evict_kunit ====================
[18:56:33] =============== [SKIPPED] xe_bo_evict_kunit ================
[18:56:33] ===================== [SKIPPED] xe_bo ======================
[18:56:33] ==================== args (11 subtests) ====================
[18:56:33] [PASSED] count_args_test
[18:56:33] [PASSED] call_args_example
[18:56:33] [PASSED] call_args_test
[18:56:33] [PASSED] drop_first_arg_example
[18:56:33] [PASSED] drop_first_arg_test
[18:56:33] [PASSED] first_arg_example
[18:56:33] [PASSED] first_arg_test
[18:56:33] [PASSED] last_arg_example
[18:56:33] [PASSED] last_arg_test
[18:56:33] [PASSED] pick_arg_example
[18:56:33] [PASSED] sep_comma_example
[18:56:33] ====================== [PASSED] args =======================
[18:56:33] =================== xe_pci (2 subtests) ====================
[18:56:33] ==================== check_graphics_ip ====================
[18:56:33] [PASSED] 12.70 Xe_LPG
[18:56:33] [PASSED] 12.71 Xe_LPG
[18:56:33] [PASSED] 12.74 Xe_LPG+
[18:56:33] [PASSED] 20.01 Xe2_HPG
[18:56:33] [PASSED] 20.02 Xe2_HPG
[18:56:33] [PASSED] 20.04 Xe2_LPG
[18:56:33] [PASSED] 30.00 Xe3_LPG
[18:56:33] [PASSED] 30.01 Xe3_LPG
[18:56:33] ================ [PASSED] check_graphics_ip ================
[18:56:33] ===================== check_media_ip ======================
[18:56:33] [PASSED] 13.00 Xe_LPM+
[18:56:33] [PASSED] 13.01 Xe2_HPM
[18:56:33] [PASSED] 20.00 Xe2_LPM
[18:56:33] [PASSED] 30.00 Xe3_LPM
[18:56:33] ================= [PASSED] check_media_ip ==================
stty: 'standard input': Inappropriate ioctl for device
[18:56:33] ===================== [PASSED] xe_pci ======================
[18:56:33] =================== xe_rtp (2 subtests) ====================
[18:56:33] =============== xe_rtp_process_to_sr_tests ================
[18:56:33] [PASSED] coalesce-same-reg
[18:56:33] [PASSED] no-match-no-add
[18:56:33] [PASSED] match-or
[18:56:33] [PASSED] match-or-xfail
[18:56:33] [PASSED] no-match-no-add-multiple-rules
[18:56:33] [PASSED] two-regs-two-entries
[18:56:33] [PASSED] clr-one-set-other
[18:56:33] [PASSED] set-field
[18:56:33] [PASSED] conflict-duplicate
[18:56:33] [PASSED] conflict-not-disjoint
[18:56:33] [PASSED] conflict-reg-type
[18:56:33] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[18:56:33] ================== xe_rtp_process_tests ===================
[18:56:33] [PASSED] active1
[18:56:33] [PASSED] active2
[18:56:33] [PASSED] active-inactive
[18:56:33] [PASSED] inactive-active
[18:56:33] [PASSED] inactive-1st_or_active-inactive
[18:56:33] [PASSED] inactive-2nd_or_active-inactive
[18:56:33] [PASSED] inactive-last_or_active-inactive
[18:56:33] [PASSED] inactive-no_or_active-inactive
[18:56:33] ============== [PASSED] xe_rtp_process_tests ===============
[18:56:33] ===================== [PASSED] xe_rtp ======================
[18:56:33] ==================== xe_wa (1 subtest) =====================
[18:56:33] ======================== xe_wa_gt =========================
[18:56:33] [PASSED] TIGERLAKE (B0)
[18:56:33] [PASSED] DG1 (A0)
[18:56:33] [PASSED] DG1 (B0)
[18:56:33] [PASSED] ALDERLAKE_S (A0)
[18:56:33] [PASSED] ALDERLAKE_S (B0)
[18:56:33] [PASSED] ALDERLAKE_S (C0)
[18:56:33] [PASSED] ALDERLAKE_S (D0)
[18:56:33] [PASSED] ALDERLAKE_P (A0)
[18:56:33] [PASSED] ALDERLAKE_P (B0)
[18:56:33] [PASSED] ALDERLAKE_P (C0)
[18:56:33] [PASSED] ALDERLAKE_S_RPLS (D0)
[18:56:33] [PASSED] ALDERLAKE_P_RPLU (E0)
[18:56:33] [PASSED] DG2_G10 (C0)
[18:56:33] [PASSED] DG2_G11 (B1)
[18:56:33] [PASSED] DG2_G12 (A1)
[18:56:33] [PASSED] METEORLAKE (g:A0, m:A0)
[18:56:33] [PASSED] METEORLAKE (g:A0, m:A0)
[18:56:33] [PASSED] METEORLAKE (g:A0, m:A0)
[18:56:33] [PASSED] LUNARLAKE (g:A0, m:A0)
[18:56:33] [PASSED] LUNARLAKE (g:B0, m:A0)
[18:56:33] [PASSED] BATTLEMAGE (g:A0, m:A1)
[18:56:33] ==================== [PASSED] xe_wa_gt =====================
[18:56:33] ====================== [PASSED] xe_wa ======================
[18:56:33] ============================================================
[18:56:33] Testing complete. Ran 143 tests: passed: 127, skipped: 16
[18:56:33] Elapsed time: 31.038s total, 4.165s configuring, 26.558s building, 0.295s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[18:56:33] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:56:35] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[18:56:56] Starting KUnit Kernel (1/1)...
[18:56:56] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:56:56] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[18:56:56] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[18:56:56] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[18:56:56] =========== drm_validate_clone_mode (2 subtests) ===========
[18:56:56] ============== drm_test_check_in_clone_mode ===============
[18:56:56] [PASSED] in_clone_mode
[18:56:56] [PASSED] not_in_clone_mode
[18:56:56] ========== [PASSED] drm_test_check_in_clone_mode ===========
[18:56:56] =============== drm_test_check_valid_clones ===============
[18:56:56] [PASSED] not_in_clone_mode
[18:56:56] [PASSED] valid_clone
[18:56:56] [PASSED] invalid_clone
[18:56:56] =========== [PASSED] drm_test_check_valid_clones ===========
[18:56:56] ============= [PASSED] drm_validate_clone_mode =============
[18:56:56] ============= drm_validate_modeset (1 subtest) =============
[18:56:56] [PASSED] drm_test_check_connector_changed_modeset
[18:56:56] ============== [PASSED] drm_validate_modeset ===============
[18:56:56] ====== drm_test_bridge_get_current_state (2 subtests) ======
[18:56:56] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[18:56:56] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[18:56:56] ======== [PASSED] drm_test_bridge_get_current_state ========
[18:56:56] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[18:56:56] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[18:56:56] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[18:56:56] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[18:56:56] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[18:56:56] ============== drm_bridge_alloc (2 subtests) ===============
[18:56:56] [PASSED] drm_test_drm_bridge_alloc_basic
[18:56:56] [PASSED] drm_test_drm_bridge_alloc_get_put
[18:56:56] ================ [PASSED] drm_bridge_alloc =================
[18:56:56] ================== drm_buddy (7 subtests) ==================
[18:56:56] [PASSED] drm_test_buddy_alloc_limit
[18:56:56] [PASSED] drm_test_buddy_alloc_optimistic
[18:56:56] [PASSED] drm_test_buddy_alloc_pessimistic
[18:56:56] [PASSED] drm_test_buddy_alloc_pathological
[18:56:56] [PASSED] drm_test_buddy_alloc_contiguous
[18:56:56] [PASSED] drm_test_buddy_alloc_clear
[18:56:56] [PASSED] drm_test_buddy_alloc_range_bias
[18:56:56] ==================== [PASSED] drm_buddy ====================
[18:56:56] ============= drm_cmdline_parser (40 subtests) =============
[18:56:56] [PASSED] drm_test_cmdline_force_d_only
[18:56:56] [PASSED] drm_test_cmdline_force_D_only_dvi
[18:56:56] [PASSED] drm_test_cmdline_force_D_only_hdmi
[18:56:56] [PASSED] drm_test_cmdline_force_D_only_not_digital
[18:56:56] [PASSED] drm_test_cmdline_force_e_only
[18:56:56] [PASSED] drm_test_cmdline_res
[18:56:56] [PASSED] drm_test_cmdline_res_vesa
[18:56:56] [PASSED] drm_test_cmdline_res_vesa_rblank
[18:56:56] [PASSED] drm_test_cmdline_res_rblank
[18:56:56] [PASSED] drm_test_cmdline_res_bpp
[18:56:56] [PASSED] drm_test_cmdline_res_refresh
[18:56:56] [PASSED] drm_test_cmdline_res_bpp_refresh
[18:56:56] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[18:56:56] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[18:56:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[18:56:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[18:56:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[18:56:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[18:56:56] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[18:56:56] [PASSED] drm_test_cmdline_res_margins_force_on
[18:56:56] [PASSED] drm_test_cmdline_res_vesa_margins
[18:56:56] [PASSED] drm_test_cmdline_name
[18:56:56] [PASSED] drm_test_cmdline_name_bpp
[18:56:56] [PASSED] drm_test_cmdline_name_option
[18:56:56] [PASSED] drm_test_cmdline_name_bpp_option
[18:56:56] [PASSED] drm_test_cmdline_rotate_0
[18:56:56] [PASSED] drm_test_cmdline_rotate_90
[18:56:56] [PASSED] drm_test_cmdline_rotate_180
[18:56:56] [PASSED] drm_test_cmdline_rotate_270
[18:56:56] [PASSED] drm_test_cmdline_hmirror
[18:56:56] [PASSED] drm_test_cmdline_vmirror
[18:56:56] [PASSED] drm_test_cmdline_margin_options
[18:56:56] [PASSED] drm_test_cmdline_multiple_options
[18:56:56] [PASSED] drm_test_cmdline_bpp_extra_and_option
[18:56:56] [PASSED] drm_test_cmdline_extra_and_option
[18:56:56] [PASSED] drm_test_cmdline_freestanding_options
[18:56:56] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[18:56:56] [PASSED] drm_test_cmdline_panel_orientation
[18:56:56] ================ drm_test_cmdline_invalid =================
[18:56:56] [PASSED] margin_only
[18:56:56] [PASSED] interlace_only
[18:56:56] [PASSED] res_missing_x
[18:56:56] [PASSED] res_missing_y
[18:56:56] [PASSED] res_bad_y
[18:56:56] [PASSED] res_missing_y_bpp
[18:56:56] [PASSED] res_bad_bpp
[18:56:56] [PASSED] res_bad_refresh
[18:56:56] [PASSED] res_bpp_refresh_force_on_off
[18:56:56] [PASSED] res_invalid_mode
[18:56:56] [PASSED] res_bpp_wrong_place_mode
[18:56:56] [PASSED] name_bpp_refresh
[18:56:56] [PASSED] name_refresh
[18:56:56] [PASSED] name_refresh_wrong_mode
[18:56:56] [PASSED] name_refresh_invalid_mode
[18:56:56] [PASSED] rotate_multiple
[18:56:56] [PASSED] rotate_invalid_val
[18:56:56] [PASSED] rotate_truncated
[18:56:56] [PASSED] invalid_option
[18:56:56] [PASSED] invalid_tv_option
[18:56:56] [PASSED] truncated_tv_option
[18:56:56] ============ [PASSED] drm_test_cmdline_invalid =============
[18:56:56] =============== drm_test_cmdline_tv_options ===============
[18:56:56] [PASSED] NTSC
[18:56:56] [PASSED] NTSC_443
[18:56:56] [PASSED] NTSC_J
[18:56:56] [PASSED] PAL
[18:56:56] [PASSED] PAL_M
[18:56:56] [PASSED] PAL_N
[18:56:56] [PASSED] SECAM
[18:56:56] [PASSED] MONO_525
[18:56:56] [PASSED] MONO_625
[18:56:56] =========== [PASSED] drm_test_cmdline_tv_options ===========
[18:56:56] =============== [PASSED] drm_cmdline_parser ================
[18:56:56] ========== drmm_connector_hdmi_init (20 subtests) ==========
[18:56:56] [PASSED] drm_test_connector_hdmi_init_valid
[18:56:56] [PASSED] drm_test_connector_hdmi_init_bpc_8
[18:56:56] [PASSED] drm_test_connector_hdmi_init_bpc_10
[18:56:56] [PASSED] drm_test_connector_hdmi_init_bpc_12
[18:56:56] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[18:56:56] [PASSED] drm_test_connector_hdmi_init_bpc_null
[18:56:56] [PASSED] drm_test_connector_hdmi_init_formats_empty
[18:56:56] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[18:56:56] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[18:56:56] [PASSED] supported_formats=0x9 yuv420_allowed=1
[18:56:56] [PASSED] supported_formats=0x9 yuv420_allowed=0
[18:56:56] [PASSED] supported_formats=0x3 yuv420_allowed=1
[18:56:56] [PASSED] supported_formats=0x3 yuv420_allowed=0
[18:56:56] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[18:56:56] [PASSED] drm_test_connector_hdmi_init_null_ddc
[18:56:56] [PASSED] drm_test_connector_hdmi_init_null_product
[18:56:56] [PASSED] drm_test_connector_hdmi_init_null_vendor
[18:56:56] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[18:56:56] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[18:56:56] [PASSED] drm_test_connector_hdmi_init_product_valid
[18:56:56] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[18:56:56] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[18:56:56] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[18:56:56] ========= drm_test_connector_hdmi_init_type_valid =========
[18:56:56] [PASSED] HDMI-A
[18:56:56] [PASSED] HDMI-B
[18:56:56] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[18:56:56] ======== drm_test_connector_hdmi_init_type_invalid ========
[18:56:56] [PASSED] Unknown
[18:56:56] [PASSED] VGA
[18:56:56] [PASSED] DVI-I
[18:56:56] [PASSED] DVI-D
[18:56:56] [PASSED] DVI-A
[18:56:56] [PASSED] Composite
[18:56:56] [PASSED] SVIDEO
[18:56:56] [PASSED] LVDS
[18:56:56] [PASSED] Component
[18:56:56] [PASSED] DIN
[18:56:56] [PASSED] DP
[18:56:56] [PASSED] TV
[18:56:56] [PASSED] eDP
[18:56:56] [PASSED] Virtual
[18:56:56] [PASSED] DSI
[18:56:56] [PASSED] DPI
[18:56:56] [PASSED] Writeback
[18:56:56] [PASSED] SPI
[18:56:56] [PASSED] USB
[18:56:56] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[18:56:56] ============ [PASSED] drmm_connector_hdmi_init =============
[18:56:56] ============= drmm_connector_init (3 subtests) =============
[18:56:56] [PASSED] drm_test_drmm_connector_init
[18:56:56] [PASSED] drm_test_drmm_connector_init_null_ddc
[18:56:56] ========= drm_test_drmm_connector_init_type_valid =========
[18:56:56] [PASSED] Unknown
[18:56:56] [PASSED] VGA
[18:56:56] [PASSED] DVI-I
[18:56:56] [PASSED] DVI-D
[18:56:56] [PASSED] DVI-A
[18:56:56] [PASSED] Composite
[18:56:56] [PASSED] SVIDEO
[18:56:56] [PASSED] LVDS
[18:56:56] [PASSED] Component
[18:56:56] [PASSED] DIN
[18:56:56] [PASSED] DP
[18:56:56] [PASSED] HDMI-A
[18:56:56] [PASSED] HDMI-B
[18:56:56] [PASSED] TV
[18:56:56] [PASSED] eDP
[18:56:56] [PASSED] Virtual
[18:56:56] [PASSED] DSI
[18:56:56] [PASSED] DPI
[18:56:56] [PASSED] Writeback
[18:56:56] [PASSED] SPI
[18:56:56] [PASSED] USB
[18:56:56] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[18:56:56] =============== [PASSED] drmm_connector_init ===============
[18:56:56] ========= drm_connector_dynamic_init (6 subtests) ==========
[18:56:56] [PASSED] drm_test_drm_connector_dynamic_init
[18:56:56] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[18:56:56] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[18:56:56] [PASSED] drm_test_drm_connector_dynamic_init_properties
[18:56:56] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[18:56:56] [PASSED] Unknown
[18:56:56] [PASSED] VGA
[18:56:56] [PASSED] DVI-I
[18:56:56] [PASSED] DVI-D
[18:56:56] [PASSED] DVI-A
[18:56:56] [PASSED] Composite
[18:56:56] [PASSED] SVIDEO
[18:56:56] [PASSED] LVDS
[18:56:56] [PASSED] Component
[18:56:56] [PASSED] DIN
[18:56:56] [PASSED] DP
[18:56:56] [PASSED] HDMI-A
[18:56:56] [PASSED] HDMI-B
[18:56:56] [PASSED] TV
[18:56:56] [PASSED] eDP
[18:56:56] [PASSED] Virtual
[18:56:56] [PASSED] DSI
[18:56:56] [PASSED] DPI
[18:56:56] [PASSED] Writeback
[18:56:56] [PASSED] SPI
[18:56:56] [PASSED] USB
[18:56:56] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[18:56:56] ======== drm_test_drm_connector_dynamic_init_name =========
[18:56:56] [PASSED] Unknown
[18:56:56] [PASSED] VGA
[18:56:56] [PASSED] DVI-I
[18:56:56] [PASSED] DVI-D
[18:56:56] [PASSED] DVI-A
[18:56:56] [PASSED] Composite
[18:56:56] [PASSED] SVIDEO
[18:56:56] [PASSED] LVDS
[18:56:56] [PASSED] Component
[18:56:56] [PASSED] DIN
[18:56:56] [PASSED] DP
[18:56:56] [PASSED] HDMI-A
[18:56:56] [PASSED] HDMI-B
[18:56:56] [PASSED] TV
[18:56:56] [PASSED] eDP
[18:56:56] [PASSED] Virtual
[18:56:56] [PASSED] DSI
[18:56:56] [PASSED] DPI
[18:56:56] [PASSED] Writeback
[18:56:56] [PASSED] SPI
[18:56:56] [PASSED] USB
[18:56:56] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[18:56:56] =========== [PASSED] drm_connector_dynamic_init ============
[18:56:56] ==== drm_connector_dynamic_register_early (4 subtests) =====
[18:56:56] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[18:56:56] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[18:56:56] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[18:56:56] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[18:56:56] ====== [PASSED] drm_connector_dynamic_register_early =======
[18:56:56] ======= drm_connector_dynamic_register (7 subtests) ========
[18:56:56] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[18:56:56] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[18:56:56] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[18:56:56] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[18:56:56] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[18:56:56] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[18:56:56] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[18:56:56] ========= [PASSED] drm_connector_dynamic_register ==========
[18:56:56] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[18:56:56] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[18:56:56] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[18:56:56] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[18:56:56] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[18:56:56] ========== drm_test_get_tv_mode_from_name_valid ===========
[18:56:56] [PASSED] NTSC
[18:56:56] [PASSED] NTSC-443
[18:56:56] [PASSED] NTSC-J
[18:56:56] [PASSED] PAL
[18:56:56] [PASSED] PAL-M
[18:56:56] [PASSED] PAL-N
[18:56:56] [PASSED] SECAM
[18:56:56] [PASSED] Mono
[18:56:56] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[18:56:56] [PASSED] drm_test_get_tv_mode_from_name_truncated
[18:56:56] ============ [PASSED] drm_get_tv_mode_from_name ============
[18:56:56] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[18:56:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[18:56:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[18:56:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[18:56:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[18:56:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[18:56:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[18:56:56] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[18:56:56] [PASSED] VIC 96
[18:56:56] [PASSED] VIC 97
[18:56:56] [PASSED] VIC 101
[18:56:56] [PASSED] VIC 102
[18:56:56] [PASSED] VIC 106
[18:56:56] [PASSED] VIC 107
[18:56:56] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[18:56:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[18:56:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[18:56:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[18:56:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[18:56:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[18:56:56] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[18:56:56] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[18:56:56] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[18:56:56] [PASSED] Automatic
[18:56:56] [PASSED] Full
[18:56:56] [PASSED] Limited 16:235
[18:56:56] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[18:56:56] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[18:56:56] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[18:56:56] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[18:56:56] === drm_test_drm_hdmi_connector_get_output_format_name ====
[18:56:56] [PASSED] RGB
[18:56:56] [PASSED] YUV 4:2:0
[18:56:56] [PASSED] YUV 4:2:2
[18:56:56] [PASSED] YUV 4:4:4
[18:56:56] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[18:56:56] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[18:56:56] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[18:56:56] ============= drm_damage_helper (21 subtests) ==============
[18:56:56] [PASSED] drm_test_damage_iter_no_damage
[18:56:56] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[18:56:56] [PASSED] drm_test_damage_iter_no_damage_src_moved
[18:56:56] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[18:56:56] [PASSED] drm_test_damage_iter_no_damage_not_visible
[18:56:56] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[18:56:56] [PASSED] drm_test_damage_iter_no_damage_no_fb
[18:56:56] [PASSED] drm_test_damage_iter_simple_damage
[18:56:56] [PASSED] drm_test_damage_iter_single_damage
[18:56:56] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[18:56:56] [PASSED] drm_test_damage_iter_single_damage_outside_src
[18:56:56] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[18:56:56] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[18:56:56] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[18:56:56] [PASSED] drm_test_damage_iter_single_damage_src_moved
[18:56:56] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[18:56:56] [PASSED] drm_test_damage_iter_damage
[18:56:56] [PASSED] drm_test_damage_iter_damage_one_intersect
[18:56:56] [PASSED] drm_test_damage_iter_damage_one_outside
[18:56:56] [PASSED] drm_test_damage_iter_damage_src_moved
[18:56:56] [PASSED] drm_test_damage_iter_damage_not_visible
[18:56:56] ================ [PASSED] drm_damage_helper ================
[18:56:56] ============== drm_dp_mst_helper (3 subtests) ==============
[18:56:56] ============== drm_test_dp_mst_calc_pbn_mode ==============
[18:56:56] [PASSED] Clock 154000 BPP 30 DSC disabled
[18:56:56] [PASSED] Clock 234000 BPP 30 DSC disabled
[18:56:56] [PASSED] Clock 297000 BPP 24 DSC disabled
[18:56:56] [PASSED] Clock 332880 BPP 24 DSC enabled
[18:56:56] [PASSED] Clock 324540 BPP 24 DSC enabled
[18:56:56] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[18:56:56] ============== drm_test_dp_mst_calc_pbn_div ===============
[18:56:56] [PASSED] Link rate 2000000 lane count 4
[18:56:56] [PASSED] Link rate 2000000 lane count 2
[18:56:56] [PASSED] Link rate 2000000 lane count 1
[18:56:56] [PASSED] Link rate 1350000 lane count 4
[18:56:56] [PASSED] Link rate 1350000 lane count 2
[18:56:56] [PASSED] Link rate 1350000 lane count 1
[18:56:56] [PASSED] Link rate 1000000 lane count 4
[18:56:56] [PASSED] Link rate 1000000 lane count 2
[18:56:56] [PASSED] Link rate 1000000 lane count 1
[18:56:56] [PASSED] Link rate 810000 lane count 4
[18:56:56] [PASSED] Link rate 810000 lane count 2
[18:56:56] [PASSED] Link rate 810000 lane count 1
[18:56:56] [PASSED] Link rate 540000 lane count 4
[18:56:56] [PASSED] Link rate 540000 lane count 2
[18:56:56] [PASSED] Link rate 540000 lane count 1
[18:56:56] [PASSED] Link rate 270000 lane count 4
[18:56:56] [PASSED] Link rate 270000 lane count 2
[18:56:56] [PASSED] Link rate 270000 lane count 1
[18:56:56] [PASSED] Link rate 162000 lane count 4
[18:56:56] [PASSED] Link rate 162000 lane count 2
[18:56:56] [PASSED] Link rate 162000 lane count 1
[18:56:56] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[18:56:56] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[18:56:56] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[18:56:56] [PASSED] DP_POWER_UP_PHY with port number
[18:56:56] [PASSED] DP_POWER_DOWN_PHY with port number
[18:56:56] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[18:56:56] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[18:56:56] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[18:56:56] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[18:56:56] [PASSED] DP_QUERY_PAYLOAD with port number
[18:56:56] [PASSED] DP_QUERY_PAYLOAD with VCPI
[18:56:56] [PASSED] DP_REMOTE_DPCD_READ with port number
[18:56:56] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[18:56:56] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[18:56:56] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[18:56:56] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[18:56:56] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[18:56:56] [PASSED] DP_REMOTE_I2C_READ with port number
[18:56:56] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[18:56:56] [PASSED] DP_REMOTE_I2C_READ with transactions array
[18:56:56] [PASSED] DP_REMOTE_I2C_WRITE with port number
[18:56:56] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[18:56:56] [PASSED] DP_REMOTE_I2C_WRITE with data array
[18:56:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[18:56:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[18:56:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[18:56:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[18:56:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[18:56:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[18:56:56] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[18:56:56] ================ [PASSED] drm_dp_mst_helper ================
[18:56:56] ================== drm_exec (7 subtests) ===================
[18:56:56] [PASSED] sanitycheck
[18:56:56] [PASSED] test_lock
[18:56:56] [PASSED] test_lock_unlock
[18:56:56] [PASSED] test_duplicates
[18:56:56] [PASSED] test_prepare
[18:56:56] [PASSED] test_prepare_array
[18:56:56] [PASSED] test_multiple_loops
[18:56:56] ==================== [PASSED] drm_exec =====================
[18:56:56] =========== drm_format_helper_test (17 subtests) ===========
[18:56:56] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[18:56:56] [PASSED] single_pixel_source_buffer
[18:56:56] [PASSED] single_pixel_clip_rectangle
[18:56:56] [PASSED] well_known_colors
[18:56:56] [PASSED] destination_pitch
[18:56:56] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[18:56:56] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[18:56:56] [PASSED] single_pixel_source_buffer
[18:56:56] [PASSED] single_pixel_clip_rectangle
[18:56:56] [PASSED] well_known_colors
[18:56:56] [PASSED] destination_pitch
[18:56:56] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[18:56:56] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[18:56:56] [PASSED] single_pixel_source_buffer
[18:56:56] [PASSED] single_pixel_clip_rectangle
[18:56:56] [PASSED] well_known_colors
[18:56:56] [PASSED] destination_pitch
[18:56:56] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[18:56:56] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[18:56:56] [PASSED] single_pixel_source_buffer
[18:56:56] [PASSED] single_pixel_clip_rectangle
[18:56:56] [PASSED] well_known_colors
[18:56:56] [PASSED] destination_pitch
[18:56:56] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[18:56:56] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[18:56:56] [PASSED] single_pixel_source_buffer
[18:56:56] [PASSED] single_pixel_clip_rectangle
[18:56:56] [PASSED] well_known_colors
[18:56:56] [PASSED] destination_pitch
[18:56:56] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[18:56:56] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[18:56:56] [PASSED] single_pixel_source_buffer
[18:56:56] [PASSED] single_pixel_clip_rectangle
[18:56:56] [PASSED] well_known_colors
[18:56:56] [PASSED] destination_pitch
[18:56:56] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[18:56:56] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[18:56:56] [PASSED] single_pixel_source_buffer
[18:56:56] [PASSED] single_pixel_clip_rectangle
[18:56:56] [PASSED] well_known_colors
[18:56:56] [PASSED] destination_pitch
[18:56:56] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[18:56:56] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[18:56:56] [PASSED] single_pixel_source_buffer
[18:56:56] [PASSED] single_pixel_clip_rectangle
[18:56:56] [PASSED] well_known_colors
[18:56:56] [PASSED] destination_pitch
[18:56:56] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[18:56:56] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[18:56:56] [PASSED] single_pixel_source_buffer
[18:56:56] [PASSED] single_pixel_clip_rectangle
[18:56:56] [PASSED] well_known_colors
[18:56:56] [PASSED] destination_pitch
[18:56:56] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[18:56:56] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[18:56:56] [PASSED] single_pixel_source_buffer
[18:56:56] [PASSED] single_pixel_clip_rectangle
[18:56:56] [PASSED] well_known_colors
[18:56:56] [PASSED] destination_pitch
[18:56:56] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[18:56:56] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[18:56:56] [PASSED] single_pixel_source_buffer
[18:56:56] [PASSED] single_pixel_clip_rectangle
[18:56:56] [PASSED] well_known_colors
[18:56:56] [PASSED] destination_pitch
[18:56:56] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[18:56:56] ============== drm_test_fb_xrgb8888_to_mono ===============
[18:56:56] [PASSED] single_pixel_source_buffer
[18:56:56] [PASSED] single_pixel_clip_rectangle
[18:56:56] [PASSED] well_known_colors
[18:56:56] [PASSED] destination_pitch
[18:56:56] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[18:56:56] ==================== drm_test_fb_swab =====================
[18:56:56] [PASSED] single_pixel_source_buffer
[18:56:56] [PASSED] single_pixel_clip_rectangle
[18:56:56] [PASSED] well_known_colors
[18:56:56] [PASSED] destination_pitch
[18:56:56] ================ [PASSED] drm_test_fb_swab =================
[18:56:56] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[18:56:56] [PASSED] single_pixel_source_buffer
[18:56:56] [PASSED] single_pixel_clip_rectangle
[18:56:56] [PASSED] well_known_colors
[18:56:56] [PASSED] destination_pitch
[18:56:56] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[18:56:56] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[18:56:56] [PASSED] single_pixel_source_buffer
[18:56:56] [PASSED] single_pixel_clip_rectangle
[18:56:56] [PASSED] well_known_colors
[18:56:56] [PASSED] destination_pitch
[18:56:56] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[18:56:56] ================= drm_test_fb_clip_offset =================
[18:56:56] [PASSED] pass through
[18:56:56] [PASSED] horizontal offset
[18:56:56] [PASSED] vertical offset
[18:56:56] [PASSED] horizontal and vertical offset
[18:56:56] [PASSED] horizontal offset (custom pitch)
[18:56:56] [PASSED] vertical offset (custom pitch)
[18:56:56] [PASSED] horizontal and vertical offset (custom pitch)
[18:56:56] ============= [PASSED] drm_test_fb_clip_offset =============
[18:56:56] =================== drm_test_fb_memcpy ====================
[18:56:56] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[18:56:56] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[18:56:56] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[18:56:56] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[18:56:56] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[18:56:56] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[18:56:56] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[18:56:56] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[18:56:56] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[18:56:56] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[18:56:56] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[18:56:56] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[18:56:56] =============== [PASSED] drm_test_fb_memcpy ================
[18:56:56] ============= [PASSED] drm_format_helper_test ==============
[18:56:56] ================= drm_format (18 subtests) =================
[18:56:56] [PASSED] drm_test_format_block_width_invalid
[18:56:56] [PASSED] drm_test_format_block_width_one_plane
[18:56:56] [PASSED] drm_test_format_block_width_two_plane
[18:56:56] [PASSED] drm_test_format_block_width_three_plane
[18:56:56] [PASSED] drm_test_format_block_width_tiled
[18:56:56] [PASSED] drm_test_format_block_height_invalid
[18:56:56] [PASSED] drm_test_format_block_height_one_plane
[18:56:56] [PASSED] drm_test_format_block_height_two_plane
[18:56:56] [PASSED] drm_test_format_block_height_three_plane
[18:56:56] [PASSED] drm_test_format_block_height_tiled
[18:56:56] [PASSED] drm_test_format_min_pitch_invalid
[18:56:56] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[18:56:56] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[18:56:56] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[18:56:56] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[18:56:56] [PASSED] drm_test_format_min_pitch_two_plane
[18:56:56] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[18:56:56] [PASSED] drm_test_format_min_pitch_tiled
[18:56:56] =================== [PASSED] drm_format ====================
[18:56:56] ============== drm_framebuffer (10 subtests) ===============
[18:56:56] ========== drm_test_framebuffer_check_src_coords ==========
[18:56:56] [PASSED] Success: source fits into fb
[18:56:56] [PASSED] Fail: overflowing fb with x-axis coordinate
[18:56:56] [PASSED] Fail: overflowing fb with y-axis coordinate
[18:56:56] [PASSED] Fail: overflowing fb with source width
[18:56:56] [PASSED] Fail: overflowing fb with source height
[18:56:56] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[18:56:56] [PASSED] drm_test_framebuffer_cleanup
[18:56:56] =============== drm_test_framebuffer_create ===============
[18:56:56] [PASSED] ABGR8888 normal sizes
[18:56:56] [PASSED] ABGR8888 max sizes
[18:56:56] [PASSED] ABGR8888 pitch greater than min required
[18:56:56] [PASSED] ABGR8888 pitch less than min required
[18:56:56] [PASSED] ABGR8888 Invalid width
[18:56:56] [PASSED] ABGR8888 Invalid buffer handle
[18:56:56] [PASSED] No pixel format
[18:56:56] [PASSED] ABGR8888 Width 0
[18:56:56] [PASSED] ABGR8888 Height 0
[18:56:56] [PASSED] ABGR8888 Out of bound height * pitch combination
[18:56:56] [PASSED] ABGR8888 Large buffer offset
[18:56:56] [PASSED] ABGR8888 Buffer offset for inexistent plane
[18:56:56] [PASSED] ABGR8888 Invalid flag
[18:56:56] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[18:56:56] [PASSED] ABGR8888 Valid buffer modifier
[18:56:56] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[18:56:56] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[18:56:56] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[18:56:56] [PASSED] NV12 Normal sizes
[18:56:56] [PASSED] NV12 Max sizes
[18:56:56] [PASSED] NV12 Invalid pitch
[18:56:56] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[18:56:56] [PASSED] NV12 different modifier per-plane
[18:56:56] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[18:56:56] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[18:56:56] [PASSED] NV12 Modifier for inexistent plane
[18:56:56] [PASSED] NV12 Handle for inexistent plane
[18:56:56] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[18:56:56] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[18:56:56] [PASSED] YVU420 Normal sizes
[18:56:56] [PASSED] YVU420 Max sizes
[18:56:56] [PASSED] YVU420 Invalid pitch
[18:56:56] [PASSED] YVU420 Different pitches
[18:56:56] [PASSED] YVU420 Different buffer offsets/pitches
[18:56:56] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[18:56:56] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[18:56:56] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[18:56:56] [PASSED] YVU420 Valid modifier
[18:56:56] [PASSED] YVU420 Different modifiers per plane
[18:56:56] [PASSED] YVU420 Modifier for inexistent plane
[18:56:56] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[18:56:56] [PASSED] X0L2 Normal sizes
[18:56:56] [PASSED] X0L2 Max sizes
[18:56:56] [PASSED] X0L2 Invalid pitch
[18:56:56] [PASSED] X0L2 Pitch greater than minimum required
[18:56:56] [PASSED] X0L2 Handle for inexistent plane
[18:56:56] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[18:56:56] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[18:56:56] [PASSED] X0L2 Valid modifier
[18:56:56] [PASSED] X0L2 Modifier for inexistent plane
[18:56:56] =========== [PASSED] drm_test_framebuffer_create ===========
[18:56:56] [PASSED] drm_test_framebuffer_free
[18:56:56] [PASSED] drm_test_framebuffer_init
[18:56:56] [PASSED] drm_test_framebuffer_init_bad_format
[18:56:56] [PASSED] drm_test_framebuffer_init_dev_mismatch
[18:56:56] [PASSED] drm_test_framebuffer_lookup
[18:56:56] [PASSED] drm_test_framebuffer_lookup_inexistent
[18:56:56] [PASSED] drm_test_framebuffer_modifiers_not_supported
[18:56:56] ================= [PASSED] drm_framebuffer =================
[18:56:56] ================ drm_gem_shmem (8 subtests) ================
[18:56:56] [PASSED] drm_gem_shmem_test_obj_create
[18:56:56] [PASSED] drm_gem_shmem_test_obj_create_private
[18:56:56] [PASSED] drm_gem_shmem_test_pin_pages
[18:56:56] [PASSED] drm_gem_shmem_test_vmap
[18:56:56] [PASSED] drm_gem_shmem_test_get_pages_sgt
[18:56:56] [PASSED] drm_gem_shmem_test_get_sg_table
[18:56:56] [PASSED] drm_gem_shmem_test_madvise
[18:56:56] [PASSED] drm_gem_shmem_test_purge
[18:56:56] ================== [PASSED] drm_gem_shmem ==================
[18:56:56] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[18:56:56] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[18:56:56] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[18:56:56] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[18:56:56] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[18:56:56] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[18:56:56] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[18:56:56] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[18:56:56] [PASSED] Automatic
[18:56:56] [PASSED] Full
[18:56:56] [PASSED] Limited 16:235
[18:56:56] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[18:56:56] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[18:56:56] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[18:56:56] [PASSED] drm_test_check_disable_connector
[18:56:56] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[18:56:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[18:56:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[18:56:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[18:56:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[18:56:56] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[18:56:56] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[18:56:56] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[18:56:56] [PASSED] drm_test_check_output_bpc_dvi
[18:56:56] [PASSED] drm_test_check_output_bpc_format_vic_1
[18:56:56] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[18:56:56] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[18:56:56] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[18:56:56] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[18:56:56] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[18:56:56] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[18:56:56] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[18:56:56] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[18:56:56] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[18:56:56] [PASSED] drm_test_check_broadcast_rgb_value
[18:56:56] [PASSED] drm_test_check_bpc_8_value
[18:56:56] [PASSED] drm_test_check_bpc_10_value
[18:56:56] [PASSED] drm_test_check_bpc_12_value
[18:56:56] [PASSED] drm_test_check_format_value
[18:56:56] [PASSED] drm_test_check_tmds_char_value
[18:56:56] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[18:56:56] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[18:56:56] [PASSED] drm_test_check_mode_valid
[18:56:56] [PASSED] drm_test_check_mode_valid_reject
[18:56:56] [PASSED] drm_test_check_mode_valid_reject_rate
[18:56:56] [PASSED] drm_test_check_mode_valid_reject_max_clock
[18:56:56] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[18:56:56] ================= drm_managed (2 subtests) =================
[18:56:56] [PASSED] drm_test_managed_release_action
[18:56:56] [PASSED] drm_test_managed_run_action
[18:56:56] =================== [PASSED] drm_managed ===================
[18:56:56] =================== drm_mm (6 subtests) ====================
[18:56:56] [PASSED] drm_test_mm_init
[18:56:56] [PASSED] drm_test_mm_debug
[18:56:56] [PASSED] drm_test_mm_align32
[18:56:56] [PASSED] drm_test_mm_align64
[18:56:56] [PASSED] drm_test_mm_lowest
[18:56:56] [PASSED] drm_test_mm_highest
[18:56:56] ===================== [PASSED] drm_mm ======================
[18:56:56] ============= drm_modes_analog_tv (5 subtests) =============
[18:56:56] [PASSED] drm_test_modes_analog_tv_mono_576i
[18:56:56] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[18:56:56] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[18:56:56] [PASSED] drm_test_modes_analog_tv_pal_576i
[18:56:56] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[18:56:56] =============== [PASSED] drm_modes_analog_tv ===============
[18:56:56] ============== drm_plane_helper (2 subtests) ===============
[18:56:56] =============== drm_test_check_plane_state ================
[18:56:56] [PASSED] clipping_simple
[18:56:56] [PASSED] clipping_rotate_reflect
[18:56:56] [PASSED] positioning_simple
[18:56:56] [PASSED] upscaling
[18:56:56] [PASSED] downscaling
[18:56:56] [PASSED] rounding1
[18:56:56] [PASSED] rounding2
[18:56:56] [PASSED] rounding3
[18:56:56] [PASSED] rounding4
[18:56:56] =========== [PASSED] drm_test_check_plane_state ============
[18:56:56] =========== drm_test_check_invalid_plane_state ============
[18:56:56] [PASSED] positioning_invalid
[18:56:56] [PASSED] upscaling_invalid
[18:56:56] [PASSED] downscaling_invalid
[18:56:56] ======= [PASSED] drm_test_check_invalid_plane_state ========
[18:56:56] ================ [PASSED] drm_plane_helper =================
[18:56:56] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[18:56:56] ====== drm_test_connector_helper_tv_get_modes_check =======
[18:56:56] [PASSED] None
[18:56:56] [PASSED] PAL
[18:56:56] [PASSED] NTSC
[18:56:56] [PASSED] Both, NTSC Default
[18:56:56] [PASSED] Both, PAL Default
[18:56:56] [PASSED] Both, NTSC Default, with PAL on command-line
[18:56:56] [PASSED] Both, PAL Default, with NTSC on command-line
[18:56:56] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[18:56:56] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[18:56:56] ================== drm_rect (9 subtests) ===================
[18:56:56] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[18:56:56] [PASSED] drm_test_rect_clip_scaled_not_clipped
[18:56:56] [PASSED] drm_test_rect_clip_scaled_clipped
[18:56:56] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[18:56:56] ================= drm_test_rect_intersect =================
[18:56:56] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[18:56:56] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[18:56:56] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[18:56:56] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[18:56:56] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[18:56:56] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[18:56:56] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[18:56:56] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[18:56:56] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[18:56:56] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[18:56:56] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[18:56:56] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[18:56:56] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[18:56:56] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[18:56:56] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[18:56:56] ============= [PASSED] drm_test_rect_intersect =============
[18:56:56] ================ drm_test_rect_calc_hscale ================
[18:56:56] [PASSED] normal use
[18:56:56] [PASSED] out of max range
[18:56:56] [PASSED] out of min range
[18:56:56] [PASSED] zero dst
[18:56:56] [PASSED] negative src
[18:56:56] [PASSED] negative dst
[18:56:56] ============ [PASSED] drm_test_rect_calc_hscale ============
[18:56:56] ================ drm_test_rect_calc_vscale ================
[18:56:56] [PASSED] normal use
[18:56:56] [PASSED] out of max range
[18:56:56] [PASSED] out of min range
[18:56:56] [PASSED] zero dst
[18:56:56] [PASSED] negative src
[18:56:56] [PASSED] negative dst
[18:56:56] ============ [PASSED] drm_test_rect_calc_vscale ============
[18:56:56] ================== drm_test_rect_rotate ===================
[18:56:56] [PASSED] reflect-x
[18:56:56] [PASSED] reflect-y
[18:56:56] [PASSED] rotate-0
[18:56:56] [PASSED] rotate-90
[18:56:56] [PASSED] rotate-180
[18:56:56] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[18:56:56] ============== [PASSED] drm_test_rect_rotate ===============
[18:56:56] ================ drm_test_rect_rotate_inv =================
[18:56:56] [PASSED] reflect-x
[18:56:56] [PASSED] reflect-y
[18:56:56] [PASSED] rotate-0
[18:56:56] [PASSED] rotate-90
[18:56:56] [PASSED] rotate-180
[18:56:56] [PASSED] rotate-270
[18:56:56] ============ [PASSED] drm_test_rect_rotate_inv =============
[18:56:56] ==================== [PASSED] drm_rect =====================
[18:56:56] ============ drm_sysfb_modeset_test (1 subtest) ============
[18:56:56] ============ drm_test_sysfb_build_fourcc_list =============
[18:56:56] [PASSED] no native formats
[18:56:56] [PASSED] XRGB8888 as native format
[18:56:56] [PASSED] remove duplicates
[18:56:56] [PASSED] convert alpha formats
[18:56:56] [PASSED] random formats
[18:56:56] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[18:56:56] ============= [PASSED] drm_sysfb_modeset_test ==============
[18:56:56] ============================================================
[18:56:56] Testing complete. Ran 616 tests: passed: 616
[18:56:56] Elapsed time: 23.305s total, 1.632s configuring, 21.455s building, 0.189s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[18:56:56] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:56:58] 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:57:06] Starting KUnit Kernel (1/1)...
[18:57:06] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:57:06] ================= ttm_device (5 subtests) ==================
[18:57:06] [PASSED] ttm_device_init_basic
[18:57:06] [PASSED] ttm_device_init_multiple
[18:57:06] [PASSED] ttm_device_fini_basic
[18:57:06] [PASSED] ttm_device_init_no_vma_man
[18:57:06] ================== ttm_device_init_pools ==================
[18:57:06] [PASSED] No DMA allocations, no DMA32 required
[18:57:06] [PASSED] DMA allocations, DMA32 required
[18:57:06] [PASSED] No DMA allocations, DMA32 required
[18:57:06] [PASSED] DMA allocations, no DMA32 required
[18:57:06] ============== [PASSED] ttm_device_init_pools ==============
[18:57:06] =================== [PASSED] ttm_device ====================
[18:57:06] ================== ttm_pool (8 subtests) ===================
[18:57:06] ================== ttm_pool_alloc_basic ===================
[18:57:06] [PASSED] One page
[18:57:06] [PASSED] More than one page
[18:57:06] [PASSED] Above the allocation limit
[18:57:06] [PASSED] One page, with coherent DMA mappings enabled
[18:57:06] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[18:57:06] ============== [PASSED] ttm_pool_alloc_basic ===============
[18:57:06] ============== ttm_pool_alloc_basic_dma_addr ==============
[18:57:06] [PASSED] One page
[18:57:06] [PASSED] More than one page
[18:57:06] [PASSED] Above the allocation limit
[18:57:06] [PASSED] One page, with coherent DMA mappings enabled
[18:57:06] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[18:57:06] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[18:57:06] [PASSED] ttm_pool_alloc_order_caching_match
[18:57:06] [PASSED] ttm_pool_alloc_caching_mismatch
[18:57:06] [PASSED] ttm_pool_alloc_order_mismatch
[18:57:06] [PASSED] ttm_pool_free_dma_alloc
[18:57:06] [PASSED] ttm_pool_free_no_dma_alloc
[18:57:06] [PASSED] ttm_pool_fini_basic
[18:57:06] ==================== [PASSED] ttm_pool =====================
[18:57:06] ================ ttm_resource (8 subtests) =================
[18:57:06] ================= ttm_resource_init_basic =================
[18:57:06] [PASSED] Init resource in TTM_PL_SYSTEM
[18:57:06] [PASSED] Init resource in TTM_PL_VRAM
[18:57:06] [PASSED] Init resource in a private placement
[18:57:06] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[18:57:06] ============= [PASSED] ttm_resource_init_basic =============
[18:57:06] [PASSED] ttm_resource_init_pinned
[18:57:06] [PASSED] ttm_resource_fini_basic
[18:57:06] [PASSED] ttm_resource_manager_init_basic
[18:57:06] [PASSED] ttm_resource_manager_usage_basic
[18:57:06] [PASSED] ttm_resource_manager_set_used_basic
[18:57:06] [PASSED] ttm_sys_man_alloc_basic
[18:57:06] [PASSED] ttm_sys_man_free_basic
[18:57:06] ================== [PASSED] ttm_resource ===================
[18:57:06] =================== ttm_tt (15 subtests) ===================
[18:57:06] ==================== ttm_tt_init_basic ====================
[18:57:06] [PASSED] Page-aligned size
[18:57:06] [PASSED] Extra pages requested
[18:57:06] ================ [PASSED] ttm_tt_init_basic ================
[18:57:06] [PASSED] ttm_tt_init_misaligned
[18:57:06] [PASSED] ttm_tt_fini_basic
[18:57:06] [PASSED] ttm_tt_fini_sg
[18:57:06] [PASSED] ttm_tt_fini_shmem
[18:57:06] [PASSED] ttm_tt_create_basic
[18:57:06] [PASSED] ttm_tt_create_invalid_bo_type
[18:57:06] [PASSED] ttm_tt_create_ttm_exists
[18:57:06] [PASSED] ttm_tt_create_failed
[18:57:06] [PASSED] ttm_tt_destroy_basic
[18:57:06] [PASSED] ttm_tt_populate_null_ttm
[18:57:06] [PASSED] ttm_tt_populate_populated_ttm
[18:57:06] [PASSED] ttm_tt_unpopulate_basic
[18:57:06] [PASSED] ttm_tt_unpopulate_empty_ttm
[18:57:06] [PASSED] ttm_tt_swapin_basic
[18:57:06] ===================== [PASSED] ttm_tt ======================
[18:57:06] =================== ttm_bo (14 subtests) ===================
[18:57:06] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[18:57:06] [PASSED] Cannot be interrupted and sleeps
[18:57:06] [PASSED] Cannot be interrupted, locks straight away
[18:57:06] [PASSED] Can be interrupted, sleeps
[18:57:06] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[18:57:06] [PASSED] ttm_bo_reserve_locked_no_sleep
[18:57:06] [PASSED] ttm_bo_reserve_no_wait_ticket
[18:57:06] [PASSED] ttm_bo_reserve_double_resv
[18:57:06] [PASSED] ttm_bo_reserve_interrupted
[18:57:06] [PASSED] ttm_bo_reserve_deadlock
[18:57:06] [PASSED] ttm_bo_unreserve_basic
[18:57:06] [PASSED] ttm_bo_unreserve_pinned
[18:57:06] [PASSED] ttm_bo_unreserve_bulk
[18:57:06] [PASSED] ttm_bo_put_basic
[18:57:06] [PASSED] ttm_bo_put_shared_resv
[18:57:06] [PASSED] ttm_bo_pin_basic
[18:57:06] [PASSED] ttm_bo_pin_unpin_resource
[18:57:06] [PASSED] ttm_bo_multiple_pin_one_unpin
[18:57:06] ===================== [PASSED] ttm_bo ======================
[18:57:06] ============== ttm_bo_validate (22 subtests) ===============
[18:57:06] ============== ttm_bo_init_reserved_sys_man ===============
[18:57:06] [PASSED] Buffer object for userspace
[18:57:06] [PASSED] Kernel buffer object
[18:57:06] [PASSED] Shared buffer object
[18:57:06] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[18:57:06] ============== ttm_bo_init_reserved_mock_man ==============
[18:57:06] [PASSED] Buffer object for userspace
[18:57:06] [PASSED] Kernel buffer object
[18:57:06] [PASSED] Shared buffer object
[18:57:06] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[18:57:06] [PASSED] ttm_bo_init_reserved_resv
[18:57:06] ================== ttm_bo_validate_basic ==================
[18:57:06] [PASSED] Buffer object for userspace
[18:57:06] [PASSED] Kernel buffer object
[18:57:06] [PASSED] Shared buffer object
[18:57:06] ============== [PASSED] ttm_bo_validate_basic ==============
[18:57:06] [PASSED] ttm_bo_validate_invalid_placement
[18:57:06] ============= ttm_bo_validate_same_placement ==============
[18:57:06] [PASSED] System manager
[18:57:06] [PASSED] VRAM manager
[18:57:06] ========= [PASSED] ttm_bo_validate_same_placement ==========
[18:57:06] [PASSED] ttm_bo_validate_failed_alloc
[18:57:06] [PASSED] ttm_bo_validate_pinned
[18:57:06] [PASSED] ttm_bo_validate_busy_placement
[18:57:06] ================ ttm_bo_validate_multihop =================
[18:57:06] [PASSED] Buffer object for userspace
[18:57:06] [PASSED] Kernel buffer object
[18:57:06] [PASSED] Shared buffer object
[18:57:06] ============ [PASSED] ttm_bo_validate_multihop =============
[18:57:06] ========== ttm_bo_validate_no_placement_signaled ==========
[18:57:06] [PASSED] Buffer object in system domain, no page vector
[18:57:06] [PASSED] Buffer object in system domain with an existing page vector
[18:57:06] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[18:57:06] ======== ttm_bo_validate_no_placement_not_signaled ========
[18:57:06] [PASSED] Buffer object for userspace
[18:57:06] [PASSED] Kernel buffer object
[18:57:06] [PASSED] Shared buffer object
[18:57:06] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[18:57:06] [PASSED] ttm_bo_validate_move_fence_signaled
[18:57:06] ========= ttm_bo_validate_move_fence_not_signaled =========
[18:57:06] [PASSED] Waits for GPU
[18:57:06] [PASSED] Tries to lock straight away
[18:57:06] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[18:57:06] [PASSED] ttm_bo_validate_swapout
[18:57:06] [PASSED] ttm_bo_validate_happy_evict
[18:57:06] [PASSED] ttm_bo_validate_all_pinned_evict
[18:57:06] [PASSED] ttm_bo_validate_allowed_only_evict
[18:57:06] [PASSED] ttm_bo_validate_deleted_evict
[18:57:06] [PASSED] ttm_bo_validate_busy_domain_evict
[18:57:06] [PASSED] ttm_bo_validate_evict_gutting
[18:57:06] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[18:57:06] ================= [PASSED] ttm_bo_validate =================
[18:57:06] ============================================================
[18:57:06] Testing complete. Ran 102 tests: passed: 102
[18:57:06] Elapsed time: 10.048s total, 1.664s configuring, 7.768s building, 0.520s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Update Wa_22019338487 (rev2)
2025-06-18 18:49 [PATCH v5 0/4] drm/xe: Update Wa_22019338487 Lucas De Marchi
` (5 preceding siblings ...)
2025-06-18 18:59 ` ✓ CI.KUnit: success " Patchwork
@ 2025-06-18 19:56 ` Patchwork
2025-06-19 8:54 ` ✗ Xe.CI.Full: failure " Patchwork
2025-06-24 17:23 ` [PATCH v5 0/4] drm/xe: Update Wa_22019338487 Lucas De Marchi
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-06-18 19:56 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 899 bytes --]
== Series Details ==
Series: drm/xe: Update Wa_22019338487 (rev2)
URL : https://patchwork.freedesktop.org/series/150300/
State : success
== Summary ==
CI Bug Log - changes from xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13_BAT -> xe-pw-150300v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 8)
------------------------------
Missing (1): bat-adlp-vm
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8417 -> IGT_8418
* Linux: xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13 -> xe-pw-150300v2
IGT_8417: 8417
IGT_8418: 8418
xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13: b5956fc71790f85e9c9113adf1d9c7332c995f13
xe-pw-150300v2: 150300v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/index.html
[-- Attachment #2: Type: text/html, Size: 1461 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe: Update Wa_22019338487 (rev2)
2025-06-18 18:49 [PATCH v5 0/4] drm/xe: Update Wa_22019338487 Lucas De Marchi
` (6 preceding siblings ...)
2025-06-18 19:56 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-06-19 8:54 ` Patchwork
2025-06-24 17:23 ` [PATCH v5 0/4] drm/xe: Update Wa_22019338487 Lucas De Marchi
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-06-19 8:54 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 94969 bytes --]
== Series Details ==
Series: drm/xe: Update Wa_22019338487 (rev2)
URL : https://patchwork.freedesktop.org/series/150300/
State : failure
== Summary ==
CI Bug Log - changes from xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13_FULL -> xe-pw-150300v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-150300v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-150300v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-150300v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2-set2: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-436/igt@kms_hdr@bpc-switch-dpms.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@kms_hdr@bpc-switch-dpms.html
* igt@xe_eu_stall@blocking-re-enable:
- shard-dg2-set2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@xe_eu_stall@blocking-re-enable.html
* igt@xe_exec_system_allocator@process-many-malloc-mlock:
- shard-bmg: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-4/igt@xe_exec_system_allocator@process-many-malloc-mlock.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-1/igt@xe_exec_system_allocator@process-many-malloc-mlock.html
#### Warnings ####
* igt@xe_eu_stall@blocking-re-enable:
- shard-adlp: [SKIP][6] ([Intel XE#4497]) -> [SKIP][7] +7 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-adlp-3/igt@xe_eu_stall@blocking-re-enable.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-2/igt@xe_eu_stall@blocking-re-enable.html
* igt@xe_eu_stall@invalid-event-report-count:
- shard-dg2-set2: [SKIP][8] ([Intel XE#4497]) -> [SKIP][9] +4 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-434/igt@xe_eu_stall@invalid-event-report-count.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@xe_eu_stall@invalid-event-report-count.html
Known issues
------------
Here are the changes found in xe-pw-150300v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1125])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-8/igt@intel_hwmon@hwmon-write.html
* igt@kms_3d:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1465])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-5/igt@kms_3d.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg2-set2: [PASS][12] -> [SKIP][13] ([Intel XE#4208] / [i915#2575]) +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-466/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2233])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1466])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y:
- shard-adlp: [PASS][16] -> [DMESG-WARN][17] ([Intel XE#4543]) +3 other tests dmesg-warn
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-adlp-3/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-2/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2327]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#316]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-5/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#610])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-adlp: [PASS][22] -> [DMESG-FAIL][23] ([Intel XE#4543]) +5 other tests dmesg-fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1477])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-adlp: NOTRUN -> [SKIP][25] ([Intel XE#610])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +6 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +14 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#2314] / [Intel XE#2894])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-adlp: NOTRUN -> [SKIP][31] ([Intel XE#367]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-4/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#367]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#367]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#367]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-4/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#787]) +146 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#2907])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2669]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2887]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-1/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2887]) +8 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-adlp: NOTRUN -> [SKIP][41] ([Intel XE#3442])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#3432]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#3432]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][44] ([Intel XE#787]) +20 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: [PASS][45] -> [INCOMPLETE][46] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][47] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#455] / [Intel XE#787]) +41 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#4417]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-3/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#4417]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-negative:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#306]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-6/igt@kms_chamelium_color@ctm-negative.html
- shard-adlp: NOTRUN -> [SKIP][52] ([Intel XE#306])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-3/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2325]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-6/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#306]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#373]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-2/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-adlp: NOTRUN -> [SKIP][56] ([Intel XE#373]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-3/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2252]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-6/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#373]) +12 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_color@invalid-gamma-lut-sizes:
- shard-adlp: [PASS][59] -> [DMESG-WARN][60] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-adlp-4/igt@kms_color@invalid-gamma-lut-sizes.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-3/igt@kms_color@invalid-gamma-lut-sizes.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#307])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-9/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#307]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][63] ([Intel XE#1178])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-2/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@mei-interface:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2341]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-7/igt@kms_content_protection@mei-interface.html
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1468])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-2/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-adlp: NOTRUN -> [SKIP][66] ([Intel XE#455]) +5 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-2/igt@kms_content_protection@type1.html
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#3278])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-8/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2320]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#2321]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-adlp: NOTRUN -> [SKIP][70] ([Intel XE#308])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1424]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-2/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2321]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-7/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#308]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-adlp: NOTRUN -> [SKIP][74] ([Intel XE#309]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#4208] / [i915#2575])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][76] -> [SKIP][77] ([Intel XE#2291]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#309]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#323])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#2244]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-2/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2244]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#4422])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][83] -> [SKIP][84] ([Intel XE#2373])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-3/igt@kms_feature_discovery@display-2x.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-adlp: NOTRUN -> [SKIP][85] ([Intel XE#703])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-8/igt@kms_feature_discovery@display-3x.html
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#703])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#1138])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-3/igt@kms_feature_discovery@display-4x.html
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#1138])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#1135])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [PASS][90] -> [SKIP][91] ([Intel XE#2316]) +10 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][92] ([Intel XE#301]) +6 other tests fail
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1421]) +6 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-3/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2316])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#310]) +5 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp4:
- shard-dg2-set2: [PASS][96] -> [FAIL][97] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-lnl: [PASS][98] -> [FAIL][99] ([Intel XE#3149] / [Intel XE#886])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-lnl: [PASS][100] -> [FAIL][101] ([Intel XE#886]) +4 other tests fail
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1401]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2293]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#455]) +23 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
- shard-adlp: [PASS][107] -> [DMESG-FAIL][108] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-adlp: NOTRUN -> [DMESG-FAIL][109] ([Intel XE#4543]) +2 other tests dmesg-fail
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2311]) +14 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][112] ([Intel XE#656]) +10 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#651]) +42 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#4141]) +5 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#651]) +8 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][116] ([Intel XE#651]) +6 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2312]) +9 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1469])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2352])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#653]) +38 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
- shard-adlp: NOTRUN -> [SKIP][121] ([Intel XE#1151])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#1158])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2350])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2313]) +16 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#656]) +19 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-adlp: NOTRUN -> [SKIP][126] ([Intel XE#653]) +7 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2934])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2925])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#4298])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@kms_joiner@basic-max-non-joiner.html
- shard-adlp: NOTRUN -> [SKIP][130] ([Intel XE#4298])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-2/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][131] ([Intel XE#3012])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#2927])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#4359])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][134] ([Intel XE#616]) +3 other tests fail
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2393])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-7/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#4596])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-2/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#5020])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#2763]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2938])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-1/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-adlp: NOTRUN -> [SKIP][140] ([Intel XE#870])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-9/igt@kms_pm_backlight@fade.html
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#870]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#908])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#1439] / [Intel XE#836])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#1489]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-adlp: NOTRUN -> [SKIP][145] ([Intel XE#1489]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#4608])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#2893]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#1489]) +10 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2387])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-8/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#2850] / [Intel XE#929]) +18 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@fbc-psr2-basic:
- shard-adlp: NOTRUN -> [SKIP][151] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-8/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1406]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#4609])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-1/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2234])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-4/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2414])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#3414]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_rotation_crc@bad-tiling.html
- shard-adlp: NOTRUN -> [SKIP][158] ([Intel XE#3414])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-4/igt@kms_rotation_crc@bad-tiling.html
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-8/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-adlp: NOTRUN -> [FAIL][160] ([Intel XE#1874])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-4/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#1499])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#1091] / [Intel XE#2849])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_ccs@block-copy-compressed-inc-dimension:
- shard-adlp: NOTRUN -> [SKIP][164] ([Intel XE#455] / [Intel XE#488])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-8/igt@xe_ccs@block-copy-compressed-inc-dimension.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_configfs@survivability-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#5249])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@xe_configfs@survivability-mode.html
- shard-adlp: NOTRUN -> [SKIP][167] ([Intel XE#5249])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-2/igt@xe_configfs@survivability-mode.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-adlp: NOTRUN -> [SKIP][168] ([Intel XE#1126])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-4/igt@xe_copy_basic@mem-set-linear-0x369.html
- shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#1126])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#4837]) +17 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@discovery-empty-clients:
- shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#4837]) +8 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-5/igt@xe_eudebug@discovery-empty-clients.html
* igt@xe_eudebug_online@interrupt-other:
- shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#4837]) +12 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-1/igt@xe_eudebug_online@interrupt-other.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-adlp: NOTRUN -> [SKIP][173] ([Intel XE#4837]) +5 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-1/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_evict@evict-small-external-cm:
- shard-adlp: NOTRUN -> [SKIP][174] ([Intel XE#261] / [Intel XE#688]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-1/igt@xe_evict@evict-small-external-cm.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
- shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#688]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#1392]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2322]) +3 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
- shard-adlp: NOTRUN -> [SKIP][178] ([Intel XE#1392]) +4 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch:
- shard-adlp: NOTRUN -> [SKIP][179] ([Intel XE#288]) +7 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-2/igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#288]) +28 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_reset@cm-close-fd:
- shard-adlp: [PASS][181] -> [DMESG-WARN][182] ([Intel XE#3868])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-adlp-1/igt@xe_exec_reset@cm-close-fd.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-bmg: NOTRUN -> [DMESG-WARN][183] ([Intel XE#3876])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-5/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#4943]) +25 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-6/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#4943]) +18 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-8/igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
- shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#4915]) +352 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
- shard-lnl: [PASS][187] -> [FAIL][188] ([Intel XE#4937])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-shared-remap:
- shard-adlp: NOTRUN -> [SKIP][189] ([Intel XE#4915]) +109 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-8/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-shared-remap.html
* igt@xe_exec_threads@threads-hang-fd-rebind:
- shard-lnl: [PASS][190] -> [DMESG-WARN][191] ([Intel XE#3876])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-lnl-4/igt@xe_exec_threads@threads-hang-fd-rebind.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-8/igt@xe_exec_threads@threads-hang-fd-rebind.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#2459] / [Intel XE#2596])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-4/igt@xe_media_fill@media-fill.html
- shard-dg2-set2: NOTRUN -> [SKIP][193] ([Intel XE#560])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@xe_media_fill@media-fill.html
- shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#560])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-8/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@pci-membarrier-bad-object:
- shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#5100])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-1/igt@xe_mmap@pci-membarrier-bad-object.html
* igt@xe_mmap@small-bar:
- shard-adlp: NOTRUN -> [SKIP][196] ([Intel XE#512])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-8/igt@xe_mmap@small-bar.html
- shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#512])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@xe_mmap@small-bar.html
* igt@xe_oa@non-privileged-map-oa-buffer:
- shard-adlp: NOTRUN -> [SKIP][198] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-6/igt@xe_oa@non-privileged-map-oa-buffer.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: NOTRUN -> [SKIP][199] ([Intel XE#2541] / [Intel XE#3573]) +9 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@xe_oa@polling-small-buf.html
* igt@xe_oa@syncs-syncobj-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@xe_oa@syncs-syncobj-wait-cfg.html
* igt@xe_oa@syncs-ufence-wait:
- shard-adlp: NOTRUN -> [SKIP][201] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-8/igt@xe_oa@syncs-ufence-wait.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][202] ([Intel XE#977])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][203] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][204] ([Intel XE#2284]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-6/igt@xe_pm@s3-d3cold-basic-exec.html
- shard-lnl: NOTRUN -> [SKIP][205] ([Intel XE#2284] / [Intel XE#366])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-8/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s4-mocs:
- shard-adlp: NOTRUN -> [ABORT][206] ([Intel XE#1794])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-9/igt@xe_pm@s4-mocs.html
* igt@xe_pm@s4-multiple-execs:
- shard-adlp: [PASS][207] -> [ABORT][208] ([Intel XE#1794])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-adlp-3/igt@xe_pm@s4-multiple-execs.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-9/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm_residency@cpg-basic:
- shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#584])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-6/igt@xe_pm_residency@cpg-basic.html
* igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][210] ([Intel XE#4733]) +3 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
- shard-bmg: NOTRUN -> [SKIP][211] ([Intel XE#4733])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-6/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
* igt@xe_query@multigpu-query-config:
- shard-bmg: NOTRUN -> [SKIP][212] ([Intel XE#944]) +3 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-5/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-gt-list:
- shard-adlp: NOTRUN -> [SKIP][213] ([Intel XE#944]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-2/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: NOTRUN -> [SKIP][214] ([Intel XE#944]) +4 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-guc.html
- shard-lnl: NOTRUN -> [SKIP][215] ([Intel XE#944])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-5/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_render_copy@render-stress-2-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][216] ([Intel XE#4814]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@xe_render_copy@render-stress-2-copies.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-lnl: NOTRUN -> [SKIP][217] ([Intel XE#4130])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-5/igt@xe_sriov_auto_provisioning@fair-allocation.html
- shard-dg2-set2: NOTRUN -> [SKIP][218] ([Intel XE#4130])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_flr@flr-twice:
- shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#4273])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@xe_sriov_flr@flr-twice.html
* igt@xe_vm@large-misaligned-binds-2097152:
- shard-dg2-set2: NOTRUN -> [SKIP][220] ([Intel XE#4208]) +21 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@xe_vm@large-misaligned-binds-2097152.html
* igt@xe_vm@munmap-style-unbind-many-either-side-partial:
- shard-dg2-set2: [PASS][221] -> [SKIP][222] ([Intel XE#4208]) +7 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-436/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][223] ([Intel XE#4665]) -> [PASS][224]
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-4/igt@intel_hwmon@hwmon-write.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-6/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [FAIL][225] ([Intel XE#911]) -> [PASS][226] +7 other tests pass
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
- shard-adlp: [FAIL][227] ([Intel XE#3884]) -> [PASS][228] +1 other test pass
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-adlp-4/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-4/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-0:
- shard-adlp: [DMESG-WARN][229] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][230] +5 other tests pass
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-adlp-6/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-8/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-adlp: [DMESG-FAIL][231] ([Intel XE#4543]) -> [PASS][232] +8 other tests pass
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-adlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [INCOMPLETE][233] ([Intel XE#3862]) -> [PASS][234] +1 other test pass
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][235] ([Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345]) -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][237] ([Intel XE#2291]) -> [PASS][238] +2 other tests pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][239] ([Intel XE#1340]) -> [PASS][240]
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-bmg: [SKIP][241] ([Intel XE#2316]) -> [PASS][242] +2 other tests pass
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-adlp: [FAIL][243] ([Intel XE#886]) -> [PASS][244] +2 other tests pass
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-adlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-8/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1:
- shard-lnl: [FAIL][245] ([Intel XE#886]) -> [PASS][246] +4 other tests pass
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-lnl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-4/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: [FAIL][247] ([Intel XE#301]) -> [PASS][248] +6 other tests pass
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-adlp: [DMESG-FAIL][249] ([Intel XE#4543] / [Intel XE#4921]) -> [PASS][250] +1 other test pass
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_hdr@static-swap:
- shard-bmg: [SKIP][251] ([Intel XE#1503]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-6/igt@kms_hdr@static-swap.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-7/igt@kms_hdr@static-swap.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][253] ([Intel XE#718]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][255] ([Intel XE#2883]) -> [PASS][256] +2 other tests pass
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [SKIP][257] ([Intel XE#1435]) -> [PASS][258] +2 other tests pass
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-2/igt@kms_setmode@clone-exclusive-crtc.html
* igt@xe_exec_fault_mode@many-execqueues-rebind-prefetch:
- shard-lnl: [FAIL][259] ([Intel XE#5058]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-rebind-prefetch.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-7/igt@xe_exec_fault_mode@many-execqueues-rebind-prefetch.html
* igt@xe_exec_reset@gt-reset-stress:
- shard-adlp: [DMESG-WARN][261] ([Intel XE#4812]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-adlp-6/igt@xe_exec_reset@gt-reset-stress.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-3/igt@xe_exec_reset@gt-reset-stress.html
* igt@xe_module_load@load:
- shard-dg2-set2: ([PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [SKIP][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281]) ([Intel XE#378]) -> ([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])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-435/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-466/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-434/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-434/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-435/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-466/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-436/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-436/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-436/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-435/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-435/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-466/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-466/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-436/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-434/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-434/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-434/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-434/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-466/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@xe_module_load@load.html
* igt@xe_oa@oa-exponents@ccs-0:
- shard-lnl: [TIMEOUT][299] -> [PASS][300] +1 other test pass
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-lnl-6/igt@xe_oa@oa-exponents@ccs-0.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-6/igt@xe_oa@oa-exponents@ccs-0.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-bmg: [ABORT][301] ([Intel XE#1794]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-6/igt@xe_pm@s4-d3hot-basic-exec.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-2/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@s4-multiple-execs:
- shard-lnl: [ABORT][303] ([Intel XE#1794]) -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-lnl-1/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-adlp: [ABORT][305] ([Intel XE#1794]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-adlp-9/igt@xe_pm@s4-vm-bind-unbind-all.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-adlp-2/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [FAIL][307] ([Intel XE#4819]) -> [PASS][308] +1 other test pass
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-435/igt@xe_pmu@gt-frequency.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-435/igt@xe_pmu@gt-frequency.html
#### Warnings ####
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][309] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][310] ([Intel XE#4208]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-466/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][311] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345]) -> [INCOMPLETE][312] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][313] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [INCOMPLETE][314] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][315] ([Intel XE#1178]) -> [SKIP][316] ([Intel XE#2341])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-2/igt@kms_content_protection@atomic.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-6/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][317] ([Intel XE#2341]) -> [FAIL][318] ([Intel XE#1178])
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-5/igt@kms_content_protection@lic-type-0.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-2/igt@kms_content_protection@lic-type-0.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][319] ([Intel XE#2311]) -> [SKIP][320] ([Intel XE#2312]) +18 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][321] ([Intel XE#2312]) -> [SKIP][322] ([Intel XE#2311]) +11 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][323] ([Intel XE#4141]) -> [SKIP][324] ([Intel XE#2312]) +5 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][325] ([Intel XE#2312]) -> [SKIP][326] ([Intel XE#4141]) +4 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][327] ([Intel XE#651]) -> [SKIP][328] ([Intel XE#4208]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][329] ([Intel XE#2312]) -> [SKIP][330] ([Intel XE#2313]) +11 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][331] ([Intel XE#2313]) -> [SKIP][332] ([Intel XE#2312]) +17 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
- shard-dg2-set2: [SKIP][333] ([Intel XE#653]) -> [SKIP][334] ([Intel XE#4208]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][335] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][336] ([Intel XE#3544])
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][337] ([Intel XE#1489]) -> [SKIP][338] ([Intel XE#4208])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][339] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][340] ([Intel XE#2351] / [Intel XE#4208])
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-435/igt@kms_psr@pr-sprite-plane-onoff.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2-set2: [SKIP][341] ([Intel XE#455]) -> [SKIP][342] ([Intel XE#4208] / [i915#2575])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-435/igt@kms_vrr@seamless-rr-switch-virtual.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- shard-dg2-set2: [SKIP][343] ([Intel XE#288]) -> [SKIP][344] ([Intel XE#4208]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-436/igt@xe_exec_fault_mode@twice-invalid-fault.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap-remap-dontunmap-eocheck:
- shard-dg2-set2: [SKIP][345] ([Intel XE#4915]) -> [SKIP][346] ([Intel XE#4208]) +13 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-remap-dontunmap-eocheck.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-remap-dontunmap-eocheck.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-dg2-set2: [SKIP][347] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][348] ([Intel XE#4208])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-434/igt@xe_oa@unprivileged-single-ctx-counters.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: [SKIP][349] ([Intel XE#944]) -> [SKIP][350] ([Intel XE#4208])
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13/shard-dg2-436/igt@xe_query@multigpu-query-engines.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/shard-dg2-434/igt@xe_query@multigpu-query-engines.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[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#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[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#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[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#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4665
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4812]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4812
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5058]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5058
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5249
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8417 -> IGT_8418
* Linux: xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13 -> xe-pw-150300v2
IGT_8417: 8417
IGT_8418: 8418
xe-3273-b5956fc71790f85e9c9113adf1d9c7332c995f13: b5956fc71790f85e9c9113adf1d9c7332c995f13
xe-pw-150300v2: 150300v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150300v2/index.html
[-- Attachment #2: Type: text/html, Size: 113268 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v5 3/4] drm/xe: Split xe_device_td_flush()
2025-06-18 18:50 ` [PATCH v5 3/4] drm/xe: Split xe_device_td_flush() Lucas De Marchi
@ 2025-06-20 11:01 ` Matthew Auld
0 siblings, 0 replies; 12+ messages in thread
From: Matthew Auld @ 2025-06-20 11:01 UTC (permalink / raw)
To: Lucas De Marchi, intel-xe
Cc: Vinay Belgaumkar, Rodrigo Vivi, Badal Nilawar, Stuart Summers
On 18/06/2025 19:50, Lucas De Marchi wrote:
> xe_device_td_flush() has 2 possible implementations: an entire L2 flush
> or a transient flush, depending on WA 16023588340. Make this clear by
> splitting the function so it calls each of them.
>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
> ---
> drivers/gpu/drm/xe/xe_device.c | 68 +++++++++++++++++++++++++-----------------
> 1 file changed, 40 insertions(+), 28 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
> index 8cfcfff250ca5..8396612b68d4b 100644
> --- a/drivers/gpu/drm/xe/xe_device.c
> +++ b/drivers/gpu/drm/xe/xe_device.c
> @@ -981,38 +981,15 @@ void xe_device_wmb(struct xe_device *xe)
> xe_mmio_write32(xe_root_tile_mmio(xe), VF_CAP_REG, 0);
> }
>
> -/**
> - * xe_device_td_flush() - Flush transient L3 cache entries
> - * @xe: The device
> - *
> - * Display engine has direct access to memory and is never coherent with L3/L4
> - * caches (or CPU caches), however KMD is responsible for specifically flushing
> - * transient L3 GPU cache entries prior to the flip sequence to ensure scanout
> - * can happen from such a surface without seeing corruption.
> - *
> - * Display surfaces can be tagged as transient by mapping it using one of the
> - * various L3:XD PAT index modes on Xe2.
> - *
> - * Note: On non-discrete xe2 platforms, like LNL, the entire L3 cache is flushed
> - * at the end of each submission via PIPE_CONTROL for compute/render, since SA
> - * Media is not coherent with L3 and we want to support render-vs-media
> - * usescases. For other engines like copy/blt the HW internally forces uncached
> - * behaviour, hence why we can skip the TDF on such platforms.
> +/*
> + * Issue a TRANSIENT_FLUSH_REQUEST and wait for completion on each gt.
> */
> -void xe_device_td_flush(struct xe_device *xe)
> +static void tdf_request_sync(struct xe_device *xe)
> {
> - struct xe_gt *gt;
> unsigned int fw_ref;
> + struct xe_gt *gt;
> u8 id;
>
> - if (!IS_DGFX(xe) || GRAPHICS_VER(xe) < 20)
> - return;
> -
> - if (XE_WA(xe_root_mmio_gt(xe), 16023588340)) {
> - xe_device_l2_flush(xe);
> - return;
> - }
> -
> for_each_gt(gt, xe, id) {
> if (xe_gt_is_media_type(gt))
> continue;
> @@ -1022,6 +999,7 @@ void xe_device_td_flush(struct xe_device *xe)
> return;
>
> xe_mmio_write32(>->mmio, XE2_TDF_CTRL, TRANSIENT_FLUSH_REQUEST);
> +
> /*
> * FIXME: We can likely do better here with our choice of
> * timeout. Currently we just assume the worst case, i.e. 150us,
> @@ -1052,15 +1030,49 @@ void xe_device_l2_flush(struct xe_device *xe)
> return;
>
> spin_lock(>->global_invl_lock);
> - xe_mmio_write32(>->mmio, XE2_GLOBAL_INVAL, 0x1);
>
> + xe_mmio_write32(>->mmio, XE2_GLOBAL_INVAL, 0x1);
> if (xe_mmio_wait32(>->mmio, XE2_GLOBAL_INVAL, 0x1, 0x0, 500, NULL, true))
> xe_gt_err_once(gt, "Global invalidation timeout\n");
> +
> spin_unlock(>->global_invl_lock);
>
> xe_force_wake_put(gt_to_fw(gt), fw_ref);
> }
>
> +/**
> + * xe_device_td_flush() - Flush transient L3 cache entries
> + * @xe: The device
> + *
> + * Display engine has direct access to memory and is never coherent with L3/L4
> + * caches (or CPU caches), however KMD is responsible for specifically flushing
> + * transient L3 GPU cache entries prior to the flip sequence to ensure scanout
> + * can happen from such a surface without seeing corruption.
> + *
> + * Display surfaces can be tagged as transient by mapping it using one of the
> + * various L3:XD PAT index modes on Xe2.
> + *
> + * Note: On non-discrete xe2 platforms, like LNL, the entire L3 cache is flushed
> + * at the end of each submission via PIPE_CONTROL for compute/render, since SA
> + * Media is not coherent with L3 and we want to support render-vs-media
> + * usescases. For other engines like copy/blt the HW internally forces uncached
> + * behaviour, hence why we can skip the TDF on such platforms.
> + */
> +void xe_device_td_flush(struct xe_device *xe)
> +{
> + struct xe_gt *root_gt;
> +
> + if (!IS_DGFX(xe) || GRAPHICS_VER(xe) < 20)
> + return;
> +
> + root_gt = xe_root_mmio_gt(xe);
> + if (XE_WA(root_gt, 16023588340))
> + /* A transient flush is not sufficient: flush the L2 */
> + xe_device_l2_flush(xe);
> + else
> + tdf_request_sync(xe);
> +}
> +
> u32 xe_device_ccs_bytes(struct xe_device *xe, u64 size)
> {
> return xe_device_has_flat_ccs(xe) ?
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v5 4/4] drm/xe/bmg: Update Wa_22019338487
2025-06-18 18:50 ` [PATCH v5 4/4] drm/xe/bmg: Update Wa_22019338487 Lucas De Marchi
@ 2025-06-20 13:44 ` Rodrigo Vivi
0 siblings, 0 replies; 12+ messages in thread
From: Rodrigo Vivi @ 2025-06-20 13:44 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe, Vinay Belgaumkar, Badal Nilawar, Stuart Summers
On Wed, Jun 18, 2025 at 11:50:01AM -0700, Lucas De Marchi wrote:
> From: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
>
> Limit GT max frequency to 2600MHz and wait for frequency to reduce
> before proceeding with a transient flush. This is really only needed for
> the transient flush: if L2 flush is needed due to 16023588340 then
> there's no need to do this additional wait since we are already using
> the bigger hammer.
>
> v2: Use generic names, ensure user set max frequency requests wait
> for flush to complete (Rodrigo)
> v3:
> - User requests wait via wait_var_event_timeout (Lucas)
> - Close races on flush + user requests (Lucas)
> - Fix xe_guc_pc_remove_flush_freq_limit() being called on last gt
> rather than root gt (Lucas)
> v4:
> - Only apply the freq reducing part if a TDF is needed: L2 flush trumps
> the need for waiting a lower frequency
>
> Fixes: aaa08078e725 ("drm/xe/bmg: Apply Wa_22019338487")
> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> # v3
> Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
> ---
>
> Rodrigo, since the change in v4 changed it considerably, please let me
> know if your review still stands
It does. I'm glad we could reduce the scope and impact of this w/a here.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> drivers/gpu/drm/xe/xe_device.c | 8 ++-
> drivers/gpu/drm/xe/xe_guc_pc.c | 125 +++++++++++++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_guc_pc.h | 2 +
> drivers/gpu/drm/xe/xe_guc_pc_types.h | 2 +
> 4 files changed, 135 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
> index 8396612b68d4b..c3aee79aa1acb 100644
> --- a/drivers/gpu/drm/xe/xe_device.c
> +++ b/drivers/gpu/drm/xe/xe_device.c
> @@ -40,6 +40,7 @@
> #include "xe_gt_printk.h"
> #include "xe_gt_sriov_vf.h"
> #include "xe_guc.h"
> +#include "xe_guc_pc.h"
> #include "xe_hw_engine_group.h"
> #include "xe_hwmon.h"
> #include "xe_irq.h"
> @@ -1066,11 +1067,14 @@ void xe_device_td_flush(struct xe_device *xe)
> return;
>
> root_gt = xe_root_mmio_gt(xe);
> - if (XE_WA(root_gt, 16023588340))
> + if (XE_WA(root_gt, 16023588340)) {
> /* A transient flush is not sufficient: flush the L2 */
> xe_device_l2_flush(xe);
> - else
> + } else {
> + xe_guc_pc_apply_flush_freq_limit(&root_gt->uc.guc.pc);
> tdf_request_sync(xe);
> + xe_guc_pc_remove_flush_freq_limit(&root_gt->uc.guc.pc);
> + }
> }
>
> u32 xe_device_ccs_bytes(struct xe_device *xe, u64 size)
> diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c
> index 538b4ea61c17c..eb3552baa6029 100644
> --- a/drivers/gpu/drm/xe/xe_guc_pc.c
> +++ b/drivers/gpu/drm/xe/xe_guc_pc.c
> @@ -7,7 +7,9 @@
>
> #include <linux/cleanup.h>
> #include <linux/delay.h>
> +#include <linux/jiffies.h>
> #include <linux/ktime.h>
> +#include <linux/wait_bit.h>
>
> #include <drm/drm_managed.h>
> #include <drm/drm_print.h>
> @@ -53,9 +55,11 @@
> #define LNL_MERT_FREQ_CAP 800
> #define BMG_MERT_FREQ_CAP 2133
> #define BMG_MIN_FREQ 1200
> +#define BMG_MERT_FLUSH_FREQ_CAP 2600
>
> #define SLPC_RESET_TIMEOUT_MS 5 /* roughly 5ms, but no need for precision */
> #define SLPC_RESET_EXTENDED_TIMEOUT_MS 1000 /* To be used only at pc_start */
> +#define SLPC_ACT_FREQ_TIMEOUT_MS 100
>
> /**
> * DOC: GuC Power Conservation (PC)
> @@ -143,6 +147,36 @@ static int wait_for_pc_state(struct xe_guc_pc *pc,
> return -ETIMEDOUT;
> }
>
> +static int wait_for_flush_complete(struct xe_guc_pc *pc)
> +{
> + const unsigned long timeout = msecs_to_jiffies(30);
> +
> + if (!wait_var_event_timeout(&pc->flush_freq_limit,
> + !atomic_read(&pc->flush_freq_limit),
> + timeout))
> + return -ETIMEDOUT;
> +
> + return 0;
> +}
> +
> +static int wait_for_act_freq_limit(struct xe_guc_pc *pc, u32 freq)
> +{
> + int timeout_us = SLPC_ACT_FREQ_TIMEOUT_MS * USEC_PER_MSEC;
> + int slept, wait = 10;
> +
> + for (slept = 0; slept < timeout_us;) {
> + if (xe_guc_pc_get_act_freq(pc) <= freq)
> + return 0;
> +
> + usleep_range(wait, wait << 1);
> + slept += wait;
> + wait <<= 1;
> + if (slept + wait > timeout_us)
> + wait = timeout_us - slept;
> + }
> +
> + return -ETIMEDOUT;
> +}
> static int pc_action_reset(struct xe_guc_pc *pc)
> {
> struct xe_guc_ct *ct = pc_to_ct(pc);
> @@ -689,6 +723,11 @@ static int xe_guc_pc_set_max_freq_locked(struct xe_guc_pc *pc, u32 freq)
> */
> int xe_guc_pc_set_max_freq(struct xe_guc_pc *pc, u32 freq)
> {
> + if (XE_WA(pc_to_gt(pc), 22019338487)) {
> + if (wait_for_flush_complete(pc) != 0)
> + return -EAGAIN;
> + }
> +
> guard(mutex)(&pc->freq_lock);
>
> return xe_guc_pc_set_max_freq_locked(pc, freq);
> @@ -889,6 +928,92 @@ static int pc_adjust_requested_freq(struct xe_guc_pc *pc)
> return ret;
> }
>
> +static bool needs_flush_freq_limit(struct xe_guc_pc *pc)
> +{
> + struct xe_gt *gt = pc_to_gt(pc);
> +
> + return XE_WA(gt, 22019338487) &&
> + pc->rp0_freq > BMG_MERT_FLUSH_FREQ_CAP;
> +}
> +
> +/**
> + * xe_guc_pc_apply_flush_freq_limit() - Limit max GT freq during L2 flush
> + * @pc: the xe_guc_pc object
> + *
> + * As per the WA, reduce max GT frequency during L2 cache flush
> + */
> +void xe_guc_pc_apply_flush_freq_limit(struct xe_guc_pc *pc)
> +{
> + struct xe_gt *gt = pc_to_gt(pc);
> + u32 max_freq;
> + int ret;
> +
> + if (!needs_flush_freq_limit(pc))
> + return;
> +
> + guard(mutex)(&pc->freq_lock);
> +
> + ret = xe_guc_pc_get_max_freq_locked(pc, &max_freq);
> + if (!ret && max_freq > BMG_MERT_FLUSH_FREQ_CAP) {
> + ret = pc_set_max_freq(pc, BMG_MERT_FLUSH_FREQ_CAP);
> + if (ret) {
> + xe_gt_err_once(gt, "Failed to cap max freq on flush to %u, %pe\n",
> + BMG_MERT_FLUSH_FREQ_CAP, ERR_PTR(ret));
> + return;
> + }
> +
> + atomic_set(&pc->flush_freq_limit, 1);
> +
> + /*
> + * If user has previously changed max freq, stash that value to
> + * restore later, otherwise use the current max. New user
> + * requests wait on flush.
> + */
> + if (pc->user_requested_max != 0)
> + pc->stashed_max_freq = pc->user_requested_max;
> + else
> + pc->stashed_max_freq = max_freq;
> + }
> +
> + /*
> + * Wait for actual freq to go below the flush cap: even if the previous
> + * max was below cap, the current one might still be above it
> + */
> + ret = wait_for_act_freq_limit(pc, BMG_MERT_FLUSH_FREQ_CAP);
> + if (ret)
> + xe_gt_err_once(gt, "Actual freq did not reduce to %u, %pe\n",
> + BMG_MERT_FLUSH_FREQ_CAP, ERR_PTR(ret));
> +}
> +
> +/**
> + * xe_guc_pc_remove_flush_freq_limit() - Remove max GT freq limit after L2 flush completes.
> + * @pc: the xe_guc_pc object
> + *
> + * Retrieve the previous GT max frequency value.
> + */
> +void xe_guc_pc_remove_flush_freq_limit(struct xe_guc_pc *pc)
> +{
> + struct xe_gt *gt = pc_to_gt(pc);
> + int ret = 0;
> +
> + if (!needs_flush_freq_limit(pc))
> + return;
> +
> + if (!atomic_read(&pc->flush_freq_limit))
> + return;
> +
> + mutex_lock(&pc->freq_lock);
> +
> + ret = pc_set_max_freq(>->uc.guc.pc, pc->stashed_max_freq);
> + if (ret)
> + xe_gt_err_once(gt, "Failed to restore max freq %u:%d",
> + pc->stashed_max_freq, ret);
> +
> + atomic_set(&pc->flush_freq_limit, 0);
> + mutex_unlock(&pc->freq_lock);
> + wake_up_var(&pc->flush_freq_limit);
> +}
> +
> static int pc_set_mert_freq_cap(struct xe_guc_pc *pc)
> {
> int ret;
> diff --git a/drivers/gpu/drm/xe/xe_guc_pc.h b/drivers/gpu/drm/xe/xe_guc_pc.h
> index 0a2664d5c8114..52ecdd5ddbff2 100644
> --- a/drivers/gpu/drm/xe/xe_guc_pc.h
> +++ b/drivers/gpu/drm/xe/xe_guc_pc.h
> @@ -38,5 +38,7 @@ u64 xe_guc_pc_mc6_residency(struct xe_guc_pc *pc);
> void xe_guc_pc_init_early(struct xe_guc_pc *pc);
> int xe_guc_pc_restore_stashed_freq(struct xe_guc_pc *pc);
> void xe_guc_pc_raise_unslice(struct xe_guc_pc *pc);
> +void xe_guc_pc_apply_flush_freq_limit(struct xe_guc_pc *pc);
> +void xe_guc_pc_remove_flush_freq_limit(struct xe_guc_pc *pc);
>
> #endif /* _XE_GUC_PC_H_ */
> diff --git a/drivers/gpu/drm/xe/xe_guc_pc_types.h b/drivers/gpu/drm/xe/xe_guc_pc_types.h
> index 2978ac9a249b5..c02053948a579 100644
> --- a/drivers/gpu/drm/xe/xe_guc_pc_types.h
> +++ b/drivers/gpu/drm/xe/xe_guc_pc_types.h
> @@ -15,6 +15,8 @@
> struct xe_guc_pc {
> /** @bo: GGTT buffer object that is shared with GuC PC */
> struct xe_bo *bo;
> + /** @flush_freq_limit: 1 when max freq changes are limited by driver */
> + atomic_t flush_freq_limit;
> /** @rp0_freq: HW RP0 frequency - The Maximum one */
> u32 rp0_freq;
> /** @rpa_freq: HW RPa frequency - The Achievable one */
>
> --
> 2.49.0
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v5 0/4] drm/xe: Update Wa_22019338487
2025-06-18 18:49 [PATCH v5 0/4] drm/xe: Update Wa_22019338487 Lucas De Marchi
` (7 preceding siblings ...)
2025-06-19 8:54 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-06-24 17:23 ` Lucas De Marchi
8 siblings, 0 replies; 12+ messages in thread
From: Lucas De Marchi @ 2025-06-24 17:23 UTC (permalink / raw)
To: intel-xe, Lucas De Marchi
Cc: Matthew Auld, Vinay Belgaumkar, Rodrigo Vivi, Badal Nilawar,
Stuart Summers
On Wed, 18 Jun 2025 11:49:57 -0700, Lucas De Marchi wrote:
> Extracted from https://lore.kernel.org/r/20250602234415.2015921-4-vinay.belgaumkar@intel.com.
> Now that the other workarounds were already update, also update this
> one that had more changes.
>
>
Thanks, applied to drm-xe-next.
[1/4] drm/xe/guc_pc: Add _locked variant for min/max freq
commit: 1beae9aa2b88d3a02eb666e7b777eb2d7bc645f4
[2/4] drm/xe/xe_guc_pc: Lock once to update stashed frequencies
commit: d878c97daa603573e5af01fd8beec2fffdb42ad1
[3/4] drm/xe: Split xe_device_td_flush()
commit: 5e300ed8a545bdffc26b579c526b5fef7b2d5365
[4/4] drm/xe/bmg: Update Wa_22019338487
commit: deea6a7d6d803d6bb874a3e6f1b312e560e6c6df
Best regards,
--
Lucas De Marchi
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2025-06-24 17:23 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-18 18:49 [PATCH v5 0/4] drm/xe: Update Wa_22019338487 Lucas De Marchi
2025-06-18 18:49 ` [PATCH v5 1/4] drm/xe/guc_pc: Add _locked variant for min/max freq Lucas De Marchi
2025-06-18 18:49 ` [PATCH v5 2/4] drm/xe/xe_guc_pc: Lock once to update stashed frequencies Lucas De Marchi
2025-06-18 18:50 ` [PATCH v5 3/4] drm/xe: Split xe_device_td_flush() Lucas De Marchi
2025-06-20 11:01 ` Matthew Auld
2025-06-18 18:50 ` [PATCH v5 4/4] drm/xe/bmg: Update Wa_22019338487 Lucas De Marchi
2025-06-20 13:44 ` Rodrigo Vivi
2025-06-18 18:56 ` ✗ CI.checkpatch: warning for drm/xe: Update Wa_22019338487 (rev2) Patchwork
2025-06-18 18:59 ` ✓ CI.KUnit: success " Patchwork
2025-06-18 19:56 ` ✓ Xe.CI.BAT: " Patchwork
2025-06-19 8:54 ` ✗ Xe.CI.Full: failure " Patchwork
2025-06-24 17:23 ` [PATCH v5 0/4] drm/xe: Update Wa_22019338487 Lucas De Marchi
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.