* [PATCH v2 0/5] Use SIG_ID logs for GuC component
@ 2026-09-03 23:39 Umesh Nerlige Ramappa
2026-09-03 23:40 ` [PATCH v3 1/5] drm/xe/guc: Use different error codes for GuC load errors Umesh Nerlige Ramappa
` (7 more replies)
0 siblings, 8 replies; 10+ messages in thread
From: Umesh Nerlige Ramappa @ 2026-09-03 23:39 UTC (permalink / raw)
To: intel-xe
Cc: daniele.ceraolospurio, michal.wajdeczko, aravind.iddamsetty,
mallesh.koujalagi, alan.previn.teres.alexis, julia.filipchuk
Add SIG ID logging support for some parts of the GuC interface code.
v3: Add some review comments from v2. Some opens remain. will address in next
revision as discussion evolves.
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Daniele Ceraolo Spurio (4):
drm/xe/guc: Use different error codes for GuC load errors
drm/xe/uc: Report DMA failure using SIGID
drm/xe/guc: Report major GuC failures using SIGID
drm/xe/guc: Report errors that cause a CT shutdown using SIGID
Umesh Nerlige Ramappa (1):
drm/xe/guc: Use different error codes for CT errors
drivers/gpu/drm/xe/xe_guc.c | 41 +++++-----
drivers/gpu/drm/xe/xe_guc_ct.c | 140 +++++++++++++++++++++------------
drivers/gpu/drm/xe/xe_uc_fw.c | 13 ++-
3 files changed, 123 insertions(+), 71 deletions(-)
--
2.55.0
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH v3 1/5] drm/xe/guc: Use different error codes for GuC load errors 2026-09-03 23:39 [PATCH v2 0/5] Use SIG_ID logs for GuC component Umesh Nerlige Ramappa @ 2026-09-03 23:40 ` Umesh Nerlige Ramappa 2026-09-03 23:40 ` [PATCH v3 2/5] drm/xe/guc: Use different error codes for CT errors Umesh Nerlige Ramappa ` (6 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Umesh Nerlige Ramappa @ 2026-09-03 23:40 UTC (permalink / raw) To: intel-xe Cc: daniele.ceraolospurio, michal.wajdeczko, aravind.iddamsetty, mallesh.koujalagi, alan.previn.teres.alexis, julia.filipchuk From: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> Instead of always returning -EPROTO no matter what goes wrong, use different error codes based on the error type. v2: split to its own patch Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com> Cc: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> --- drivers/gpu/drm/xe/xe_guc.c | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c index c7f8bbd4cb92..5285d4cecbc8 100644 --- a/drivers/gpu/drm/xe/xe_guc.c +++ b/drivers/gpu/drm/xe/xe_guc.c @@ -1144,8 +1144,8 @@ static void print_load_status_err(struct xe_gt *gt, u32 status) * Check GUC_STATUS looking for known terminal states (either completion or * failure) of either the microkernel status field or the boot ROM status field. * - * Returns 1 for successful completion, -1 for failure and 0 for any - * intermediate state. + * Returns 0 for successful completion, -EBUSY for any intermediate state and + * other errno values for failure cases. */ static int guc_load_done(struct xe_gt *gt, u32 *status, u32 *tries) { @@ -1157,20 +1157,22 @@ static int guc_load_done(struct xe_gt *gt, u32 *status, u32 *tries) switch (ukernel) { case XE_GUC_LOAD_STATUS_READY: - return 1; + return 0; case XE_GUC_LOAD_STATUS_ERROR_DEVID_BUILD_MISMATCH: case XE_GUC_LOAD_STATUS_GUC_PREPROD_BUILD_MISMATCH: case XE_GUC_LOAD_STATUS_ERROR_DEVID_INVALID_GUCTYPE: case XE_GUC_LOAD_STATUS_HWCONFIG_ERROR: case XE_GUC_LOAD_STATUS_BOOTROM_VERSION_MISMATCH: + return -ENOEXEC; case XE_GUC_LOAD_STATUS_DPC_ERROR: case XE_GUC_LOAD_STATUS_EXCEPTION: + return -EIO; case XE_GUC_LOAD_STATUS_INIT_DATA_INVALID: case XE_GUC_LOAD_STATUS_MPU_DATA_INVALID: case XE_GUC_LOAD_STATUS_INIT_MMIO_SAVE_RESTORE_INVALID: case XE_GUC_LOAD_STATUS_KLV_WORKAROUND_INIT_ERROR: case XE_GUC_LOAD_STATUS_INVALID_FTR_FLAG: - return -1; + return -EINVAL; } switch (bootrom) { @@ -1184,7 +1186,7 @@ static int guc_load_done(struct xe_gt *gt, u32 *status, u32 *tries) case XE_BOOTROM_STATUS_MPUMAP_INCORRECT: case XE_BOOTROM_STATUS_EXCEPTION: case XE_BOOTROM_STATUS_PROD_KEY_CHECK_FAILURE: - return -1; + return -ENOEXEC; } if (++*tries >= 100) { @@ -1197,7 +1199,7 @@ static int guc_load_done(struct xe_gt *gt, u32 *status, u32 *tries) *status, ukernel, bootrom); } - return 0; + return -EBUSY; } static int guc_wait_ucode(struct xe_guc *guc) @@ -1213,21 +1215,21 @@ static int guc_wait_ucode(struct xe_guc *guc) before_freq = xe_guc_pc_get_act_freq(guc_pc); before = ktime_get(); - ret = poll_timeout_us(load_result = guc_load_done(gt, &status, &tries), load_result, - 10 * USEC_PER_MSEC, + ret = poll_timeout_us(load_result = guc_load_done(gt, &status, &tries), + load_result != -EBUSY, 10 * USEC_PER_MSEC, GUC_LOAD_TIMEOUT_SEC * USEC_PER_SEC, false); delta_ms = ktime_to_ms(ktime_sub(ktime_get(), before)); act_freq = xe_guc_pc_get_act_freq(guc_pc); cur_freq = xe_guc_pc_get_cur_freq_fw(guc_pc); - if (ret || load_result <= 0) { + if (ret || load_result) { xe_gt_err(gt, "load failed: status = 0x%08X, time = %lldms, freq = %dMHz (req %dMHz)\n", status, delta_ms, xe_guc_pc_get_act_freq(guc_pc), xe_guc_pc_get_cur_freq_fw(guc_pc)); print_load_status_err(gt, status); - return -EPROTO; + return ret ?: load_result; } if (delta_ms > GUC_LOAD_TIME_WARN_MSEC) { -- 2.55.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v3 2/5] drm/xe/guc: Use different error codes for CT errors 2026-09-03 23:39 [PATCH v2 0/5] Use SIG_ID logs for GuC component Umesh Nerlige Ramappa 2026-09-03 23:40 ` [PATCH v3 1/5] drm/xe/guc: Use different error codes for GuC load errors Umesh Nerlige Ramappa @ 2026-09-03 23:40 ` Umesh Nerlige Ramappa 2026-09-03 23:42 ` Umesh Nerlige Ramappa 2026-09-03 23:40 ` [PATCH v3 3/5] drm/xe/uc: Report DMA failure using SIGID Umesh Nerlige Ramappa ` (5 subsequent siblings) 7 siblings, 1 reply; 10+ messages in thread From: Umesh Nerlige Ramappa @ 2026-09-03 23:40 UTC (permalink / raw) To: intel-xe Cc: daniele.ceraolospurio, michal.wajdeczko, aravind.iddamsetty, mallesh.koujalagi, alan.previn.teres.alexis, julia.filipchuk Instead of always returning -EPROTO for most errors, use different error codes based on the error type. -EPROTO is retained for the cases that are genuine protocol violations by the GuC. The remaining cases now report what actually went wrong. receive_g2h() used to escalate to CT_DEAD + kick_reset() by matching the two error codes that dequeue_one_g2h() could return on a fatal error. Invert the check to simplify reset handling. v2: (Michal) - Sync order of errors in g2h_read and __guc_ct_send_locked - For CT errors use EPIPE and for HXG errors use EPROTO - Convert the non-fatal EPIPE to EPERM in the helper Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com> Assisted-by: Claude:claude-opus-5 --- drivers/gpu/drm/xe/xe_guc_ct.c | 51 +++++++++++++++++++++++++++------- 1 file changed, 41 insertions(+), 10 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c index 5c4733da385c..c5a417fef913 100644 --- a/drivers/gpu/drm/xe/xe_guc_ct.c +++ b/drivers/gpu/drm/xe/xe_guc_ct.c @@ -947,6 +947,7 @@ static int h2g_write(struct xe_guc_ct *ct, const u32 *action, u32 len, u32 cmd[H2G_CT_HEADERS]; u32 tail = h2g->info.tail; u32 full_len; + int err; struct iosys_map map = IOSYS_MAP_INIT_OFFSET(&h2g->cmds, tail * sizeof(u32)); @@ -961,12 +962,14 @@ static int h2g_write(struct xe_guc_ct *ct, const u32 *action, u32 len, desc_status = desc_read(xe, h2g, status); if (desc_status) { + err = -EPIPE; xe_gt_err(gt, "CT write: non-zero status: %u\n", desc_status); goto corrupted; } if (tail > h2g->info.size) { desc_write(xe, h2g, status, desc_status | GUC_CTB_STATUS_OVERFLOW); + err = -EPIPE; xe_gt_err(gt, "CT write: tail out of range: %u vs %u\n", tail, h2g->info.size); goto corrupted; @@ -974,6 +977,7 @@ static int h2g_write(struct xe_guc_ct *ct, const u32 *action, u32 len, if (desc_head >= h2g->info.size) { desc_write(xe, h2g, status, desc_status | GUC_CTB_STATUS_OVERFLOW); + err = -EPIPE; xe_gt_err(gt, "CT write: invalid head offset %u >= %u)\n", desc_head, h2g->info.size); goto corrupted; @@ -1044,7 +1048,7 @@ static int h2g_write(struct xe_guc_ct *ct, const u32 *action, u32 len, corrupted: CT_DEAD(ct, &ct->ctbs.h2g, H2G_WRITE); - return -EPIPE; + return err; } static int __guc_ct_send_locked(struct xe_guc_ct *ct, const u32 *action, @@ -1067,11 +1071,6 @@ static int __guc_ct_send_locked(struct xe_guc_ct *ct, const u32 *action, goto out; } - if (unlikely(ct->ctbs.h2g.info.broken)) { - ret = -EPIPE; - goto out; - } - if (ct->state == XE_GUC_CT_STATE_DISABLED) { ret = -ENODEV; goto out; @@ -1082,6 +1081,11 @@ static int __guc_ct_send_locked(struct xe_guc_ct *ct, const u32 *action, goto out; } + if (unlikely(ct->ctbs.h2g.info.broken)) { + ret = -EPIPE; + goto out; + } + xe_gt_assert(gt, xe_guc_ct_enabled(ct)); if (g2h_fence) { @@ -1809,10 +1813,12 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) s32 avail; u32 action; u32 *hxg; + int err; xe_gt_assert(gt, xe_guc_ct_initialized(ct)); lockdep_assert_held(&ct->fast_lock); + /* Keep in sync with g2h_err_is_fatal() */ if (xe_device_wedged(xe)) return -ENOTRECOVERABLE; @@ -1823,7 +1829,7 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) return -ECANCELED; if (g2h->info.broken) - return -EPIPE; + return -EPERM; xe_gt_assert(gt, xe_guc_ct_enabled(ct)); @@ -1840,6 +1846,7 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) } if (desc_status) { + err = -EPIPE; xe_gt_err(gt, "CT read: non-zero status: %u\n", desc_status); goto corrupted; } @@ -1871,6 +1878,7 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) if (g2h->info.head > g2h->info.size) { desc_write(xe, g2h, status, desc_status | GUC_CTB_STATUS_OVERFLOW); + err = -EPIPE; xe_gt_err(gt, "CT read: head out of range: %u vs %u\n", g2h->info.head, g2h->info.size); goto corrupted; @@ -1878,6 +1886,7 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) if (desc_tail >= g2h->info.size) { desc_write(xe, g2h, status, desc_status | GUC_CTB_STATUS_OVERFLOW); + err = -EPIPE; xe_gt_err(gt, "CT read: invalid tail offset %u >= %u)\n", desc_tail, g2h->info.size); goto corrupted; @@ -1898,6 +1907,7 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) sizeof(u32)); len = FIELD_GET(GUC_CTB_MSG_0_NUM_DWORDS, msg[0]) + GUC_CTB_MSG_MIN_LEN; if (len > avail) { + err = -EPIPE; xe_gt_err(gt, "G2H channel broken on read, avail=%d, len=%d, reset required\n", avail, len); goto corrupted; @@ -1950,7 +1960,7 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) corrupted: CT_DEAD(ct, &ct->ctbs.g2h, G2H_READ); - return -EPROTO; + return err; } static void g2h_fast_path(struct xe_guc_ct *ct, u32 *msg, u32 len) @@ -2042,6 +2052,27 @@ static int dequeue_one_g2h(struct xe_guc_ct *ct) return 1; } +/* + * Errors reported by dequeue_one_g2h() come in two flavours: either the channel + * is simply not available right now, which is expected and handled gracefully, + * or the channel state or the message itself is inconsistent, in which case the + * only way forward is to declare the CT dead and reset the GuC. Since the + * former is a short and well known list, check against that and treat anything + * else as fatal, so that new error codes don't silently escape the escalation. + */ +static bool g2h_err_is_fatal(int err) +{ + switch (err) { + case -ENOTRECOVERABLE: /* device wedged */ + case -ENODEV: /* CT disabled */ + case -ECANCELED: /* CT stopped */ + case -EPERM: /* CT already declared broken */ + return false; + default: + return true; + } +} + static void receive_g2h(struct xe_guc_ct *ct) { bool ongoing; @@ -2079,8 +2110,8 @@ static void receive_g2h(struct xe_guc_ct *ct) ret = dequeue_one_g2h(ct); mutex_unlock(&ct->lock); - if (unlikely(ret == -EPROTO || ret == -EOPNOTSUPP)) { - xe_gt_err(ct_to_gt(ct), "CT dequeue failed: %d\n", ret); + if (unlikely(ret < 0 && g2h_err_is_fatal(ret))) { + xe_gt_err(ct_to_gt(ct), "CT dequeue failed (%pe)\n", ERR_PTR(ret)); CT_DEAD(ct, NULL, G2H_RECV); kick_reset(ct); } -- 2.55.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v3 2/5] drm/xe/guc: Use different error codes for CT errors 2026-09-03 23:40 ` [PATCH v3 2/5] drm/xe/guc: Use different error codes for CT errors Umesh Nerlige Ramappa @ 2026-09-03 23:42 ` Umesh Nerlige Ramappa 0 siblings, 0 replies; 10+ messages in thread From: Umesh Nerlige Ramappa @ 2026-09-03 23:42 UTC (permalink / raw) To: intel-xe Cc: daniele.ceraolospurio, michal.wajdeczko, aravind.iddamsetty, mallesh.koujalagi, alan.previn.teres.alexis, julia.filipchuk On Thu, Sep 03, 2026 at 04:40:01PM -0700, Umesh Nerlige Ramappa wrote: >Instead of always returning -EPROTO for most errors, use different error >codes based on the error type. -EPROTO is retained for the cases that >are genuine protocol violations by the GuC. The remaining cases now >report what actually went wrong. > >receive_g2h() used to escalate to CT_DEAD + kick_reset() by matching the >two error codes that dequeue_one_g2h() could return on a fatal error. >Invert the check to simplify reset handling. > >v2: (Michal) >- Sync order of errors in g2h_read and __guc_ct_send_locked >- For CT errors use EPIPE and for HXG errors use EPROTO >- Convert the non-fatal EPIPE to EPERM in the helper I missed changing the EPIPE to EPERM in __guc_ct_send_locked. Will include that in next rev. Thanks, Umesh > >Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> >Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> >Cc: Michal Wajdeczko <michal.wajdeczko@intel.com> >Assisted-by: Claude:claude-opus-5 >--- > drivers/gpu/drm/xe/xe_guc_ct.c | 51 +++++++++++++++++++++++++++------- > 1 file changed, 41 insertions(+), 10 deletions(-) > >diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c >index 5c4733da385c..c5a417fef913 100644 >--- a/drivers/gpu/drm/xe/xe_guc_ct.c >+++ b/drivers/gpu/drm/xe/xe_guc_ct.c >@@ -947,6 +947,7 @@ static int h2g_write(struct xe_guc_ct *ct, const u32 *action, u32 len, > u32 cmd[H2G_CT_HEADERS]; > u32 tail = h2g->info.tail; > u32 full_len; >+ int err; > struct iosys_map map = IOSYS_MAP_INIT_OFFSET(&h2g->cmds, > tail * sizeof(u32)); > >@@ -961,12 +962,14 @@ static int h2g_write(struct xe_guc_ct *ct, const u32 *action, u32 len, > > desc_status = desc_read(xe, h2g, status); > if (desc_status) { >+ err = -EPIPE; > xe_gt_err(gt, "CT write: non-zero status: %u\n", desc_status); > goto corrupted; > } > > if (tail > h2g->info.size) { > desc_write(xe, h2g, status, desc_status | GUC_CTB_STATUS_OVERFLOW); >+ err = -EPIPE; > xe_gt_err(gt, "CT write: tail out of range: %u vs %u\n", > tail, h2g->info.size); > goto corrupted; >@@ -974,6 +977,7 @@ static int h2g_write(struct xe_guc_ct *ct, const u32 *action, u32 len, > > if (desc_head >= h2g->info.size) { > desc_write(xe, h2g, status, desc_status | GUC_CTB_STATUS_OVERFLOW); >+ err = -EPIPE; > xe_gt_err(gt, "CT write: invalid head offset %u >= %u)\n", > desc_head, h2g->info.size); > goto corrupted; >@@ -1044,7 +1048,7 @@ static int h2g_write(struct xe_guc_ct *ct, const u32 *action, u32 len, > > corrupted: > CT_DEAD(ct, &ct->ctbs.h2g, H2G_WRITE); >- return -EPIPE; >+ return err; > } > > static int __guc_ct_send_locked(struct xe_guc_ct *ct, const u32 *action, >@@ -1067,11 +1071,6 @@ static int __guc_ct_send_locked(struct xe_guc_ct *ct, const u32 *action, > goto out; > } > >- if (unlikely(ct->ctbs.h2g.info.broken)) { >- ret = -EPIPE; >- goto out; >- } >- > if (ct->state == XE_GUC_CT_STATE_DISABLED) { > ret = -ENODEV; > goto out; >@@ -1082,6 +1081,11 @@ static int __guc_ct_send_locked(struct xe_guc_ct *ct, const u32 *action, > goto out; > } > >+ if (unlikely(ct->ctbs.h2g.info.broken)) { >+ ret = -EPIPE; >+ goto out; >+ } >+ > xe_gt_assert(gt, xe_guc_ct_enabled(ct)); > > if (g2h_fence) { >@@ -1809,10 +1813,12 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) > s32 avail; > u32 action; > u32 *hxg; >+ int err; > > xe_gt_assert(gt, xe_guc_ct_initialized(ct)); > lockdep_assert_held(&ct->fast_lock); > >+ /* Keep in sync with g2h_err_is_fatal() */ > if (xe_device_wedged(xe)) > return -ENOTRECOVERABLE; > >@@ -1823,7 +1829,7 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) > return -ECANCELED; > > if (g2h->info.broken) >- return -EPIPE; >+ return -EPERM; > > xe_gt_assert(gt, xe_guc_ct_enabled(ct)); > >@@ -1840,6 +1846,7 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) > } > > if (desc_status) { >+ err = -EPIPE; > xe_gt_err(gt, "CT read: non-zero status: %u\n", desc_status); > goto corrupted; > } >@@ -1871,6 +1878,7 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) > > if (g2h->info.head > g2h->info.size) { > desc_write(xe, g2h, status, desc_status | GUC_CTB_STATUS_OVERFLOW); >+ err = -EPIPE; > xe_gt_err(gt, "CT read: head out of range: %u vs %u\n", > g2h->info.head, g2h->info.size); > goto corrupted; >@@ -1878,6 +1886,7 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) > > if (desc_tail >= g2h->info.size) { > desc_write(xe, g2h, status, desc_status | GUC_CTB_STATUS_OVERFLOW); >+ err = -EPIPE; > xe_gt_err(gt, "CT read: invalid tail offset %u >= %u)\n", > desc_tail, g2h->info.size); > goto corrupted; >@@ -1898,6 +1907,7 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) > sizeof(u32)); > len = FIELD_GET(GUC_CTB_MSG_0_NUM_DWORDS, msg[0]) + GUC_CTB_MSG_MIN_LEN; > if (len > avail) { >+ err = -EPIPE; > xe_gt_err(gt, "G2H channel broken on read, avail=%d, len=%d, reset required\n", > avail, len); > goto corrupted; >@@ -1950,7 +1960,7 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) > > corrupted: > CT_DEAD(ct, &ct->ctbs.g2h, G2H_READ); >- return -EPROTO; >+ return err; > } > > static void g2h_fast_path(struct xe_guc_ct *ct, u32 *msg, u32 len) >@@ -2042,6 +2052,27 @@ static int dequeue_one_g2h(struct xe_guc_ct *ct) > return 1; > } > >+/* >+ * Errors reported by dequeue_one_g2h() come in two flavours: either the channel >+ * is simply not available right now, which is expected and handled gracefully, >+ * or the channel state or the message itself is inconsistent, in which case the >+ * only way forward is to declare the CT dead and reset the GuC. Since the >+ * former is a short and well known list, check against that and treat anything >+ * else as fatal, so that new error codes don't silently escape the escalation. >+ */ >+static bool g2h_err_is_fatal(int err) >+{ >+ switch (err) { >+ case -ENOTRECOVERABLE: /* device wedged */ >+ case -ENODEV: /* CT disabled */ >+ case -ECANCELED: /* CT stopped */ >+ case -EPERM: /* CT already declared broken */ >+ return false; >+ default: >+ return true; >+ } >+} >+ > static void receive_g2h(struct xe_guc_ct *ct) > { > bool ongoing; >@@ -2079,8 +2110,8 @@ static void receive_g2h(struct xe_guc_ct *ct) > ret = dequeue_one_g2h(ct); > mutex_unlock(&ct->lock); > >- if (unlikely(ret == -EPROTO || ret == -EOPNOTSUPP)) { >- xe_gt_err(ct_to_gt(ct), "CT dequeue failed: %d\n", ret); >+ if (unlikely(ret < 0 && g2h_err_is_fatal(ret))) { >+ xe_gt_err(ct_to_gt(ct), "CT dequeue failed (%pe)\n", ERR_PTR(ret)); > CT_DEAD(ct, NULL, G2H_RECV); > kick_reset(ct); > } >-- >2.55.0 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v3 3/5] drm/xe/uc: Report DMA failure using SIGID 2026-09-03 23:39 [PATCH v2 0/5] Use SIG_ID logs for GuC component Umesh Nerlige Ramappa 2026-09-03 23:40 ` [PATCH v3 1/5] drm/xe/guc: Use different error codes for GuC load errors Umesh Nerlige Ramappa 2026-09-03 23:40 ` [PATCH v3 2/5] drm/xe/guc: Use different error codes for CT errors Umesh Nerlige Ramappa @ 2026-09-03 23:40 ` Umesh Nerlige Ramappa 2026-09-03 23:40 ` [PATCH v3 4/5] drm/xe/guc: Report major GuC failures " Umesh Nerlige Ramappa ` (4 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Umesh Nerlige Ramappa @ 2026-09-03 23:40 UTC (permalink / raw) To: intel-xe Cc: daniele.ceraolospurio, michal.wajdeczko, aravind.iddamsetty, mallesh.koujalagi, alan.previn.teres.alexis, julia.filipchuk From: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> Convert the uC DMA failure error to use the xe_log_err() helper. v2: add assert and simplify if/else Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com> Cc: Aravind Iddamsetty <aravind.iddamsetty@intel.com> Cc: Mallesh Koujalagi <mallesh.koujalagi@intel.com> Cc: Alan Previn Teres Alexis <alan.previn.teres.alexis@intel.com> Cc: Julia Filipchuk <julia.filipchuk@intel.com> Cc: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com> --- drivers/gpu/drm/xe/xe_uc_fw.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_uc_fw.c b/drivers/gpu/drm/xe/xe_uc_fw.c index e29878b255ba..ada39c1266a8 100644 --- a/drivers/gpu/drm/xe/xe_uc_fw.c +++ b/drivers/gpu/drm/xe/xe_uc_fw.c @@ -18,6 +18,7 @@ #include "xe_gt_sriov_vf.h" #include "xe_gt_types.h" #include "xe_guc.h" +#include "xe_log.h" #include "xe_map.h" #include "xe_mmio.h" #include "xe_module.h" @@ -914,8 +915,12 @@ static int uc_fw_xfer(struct xe_uc_fw *uc_fw, u32 offset, u32 dma_flags) int xe_uc_fw_upload(struct xe_uc_fw *uc_fw, u32 offset, u32 dma_flags) { struct xe_device *xe = uc_fw_to_xe(uc_fw); + struct xe_gt *gt = uc_fw_to_gt(uc_fw); int err; + xe_gt_assert(gt, uc_fw->type == XE_UC_FW_TYPE_GUC || + uc_fw->type == XE_UC_FW_TYPE_HUC); + /* make sure the status was cleared the last time we reset the uc */ xe_assert(xe, !xe_uc_fw_is_loaded(uc_fw)); @@ -931,9 +936,11 @@ int xe_uc_fw_upload(struct xe_uc_fw *uc_fw, u32 offset, u32 dma_flags) return 0; fail: - drm_err(&xe->drm, "Failed to load %s firmware %s (%d)\n", - xe_uc_fw_type_repr(uc_fw->type), uc_fw->path, - err); + if (uc_fw->type == XE_UC_FW_TYPE_GUC) + xe_log_err(gt, GUC, err, "Failed to load firmware %s\n", uc_fw->path); + else + xe_log_err(gt, HUC, err, "Failed to load firmware %s\n", uc_fw->path); + xe_uc_fw_change_status(uc_fw, XE_UC_FIRMWARE_LOAD_FAIL); return err; } -- 2.55.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v3 4/5] drm/xe/guc: Report major GuC failures using SIGID 2026-09-03 23:39 [PATCH v2 0/5] Use SIG_ID logs for GuC component Umesh Nerlige Ramappa ` (2 preceding siblings ...) 2026-09-03 23:40 ` [PATCH v3 3/5] drm/xe/uc: Report DMA failure using SIGID Umesh Nerlige Ramappa @ 2026-09-03 23:40 ` Umesh Nerlige Ramappa 2026-09-03 23:40 ` [PATCH v3 5/5] drm/xe/guc: Report errors that cause a CT shutdown " Umesh Nerlige Ramappa ` (3 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Umesh Nerlige Ramappa @ 2026-09-03 23:40 UTC (permalink / raw) To: intel-xe Cc: daniele.ceraolospurio, michal.wajdeczko, aravind.iddamsetty, mallesh.koujalagi, alan.previn.teres.alexis, julia.filipchuk From: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> Convert errors during critical GuC flows (init, load, reset, suspend) to use the xe_log_err() helper. While at it, simplify the error log for the GuC load failure to use the cached frequency values instead of fetching them again. v2: split guc_load_done changes to their own patch, use available ret value for reset errors (Michal) v3: Remove 'GuC' string from logs and cleanup logs (Michal) Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com> Cc: Aravind Iddamsetty <aravind.iddamsetty@intel.com> Cc: Mallesh Koujalagi <mallesh.koujalagi@intel.com> Cc: Alan Previn Teres Alexis <alan.previn.teres.alexis@intel.com> Cc: Julia Filipchuk <julia.filipchuk@intel.com> Cc: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> --- drivers/gpu/drm/xe/xe_guc.c | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c index 5285d4cecbc8..9684f6528641 100644 --- a/drivers/gpu/drm/xe/xe_guc.c +++ b/drivers/gpu/drm/xe/xe_guc.c @@ -777,7 +777,7 @@ int xe_guc_init_noalloc(struct xe_guc *guc) return 0; out: - xe_gt_err(gt, "GuC init failed with %pe\n", ERR_PTR(ret)); + xe_log_err(gt, GUC, ret, "Initialization error\n"); return ret; } @@ -845,7 +845,7 @@ int xe_guc_init(struct xe_guc *guc) return 0; out: - xe_gt_err(gt, "GuC init failed with %pe\n", ERR_PTR(ret)); + xe_log_err(gt, GUC, ret, "Initialization error\n"); return ret; } @@ -998,15 +998,16 @@ int xe_guc_reset(struct xe_guc *guc) ret = xe_mmio_wait32(mmio, GDRST, GRDOM_GUC, 0, 5000, &gdrst, false); if (ret) { - xe_gt_err(gt, "GuC reset timed out, GDRST=%#x\n", gdrst); + xe_log_err(gt, GUC, ret, "Reset timeout, GDRST=%#x\n", gdrst); goto err_out; } guc_status = xe_mmio_read32(mmio, GUC_STATUS); if (!(guc_status & GS_MIA_IN_RESET)) { - xe_gt_err(gt, "GuC status: %#x, MIA core expected to be in reset\n", - guc_status); ret = -EIO; + xe_log_err(gt, GUC, ret, + "MIA core not in reset, GUC_STATUS=%#x\n", + guc_status); goto err_out; } @@ -1224,9 +1225,9 @@ static int guc_wait_ucode(struct xe_guc *guc) cur_freq = xe_guc_pc_get_cur_freq_fw(guc_pc); if (ret || load_result) { - xe_gt_err(gt, "load failed: status = 0x%08X, time = %lldms, freq = %dMHz (req %dMHz)\n", - status, delta_ms, xe_guc_pc_get_act_freq(guc_pc), - xe_guc_pc_get_cur_freq_fw(guc_pc)); + xe_log_err(gt, GUC, ret ?: load_result, + "Load failed, GUC_STATUS=%#x, time = %lldms, freq = %dMHz (req %dMHz)\n", + status, delta_ms, act_freq, cur_freq); print_load_status_err(gt, status); return ret ?: load_result; @@ -1463,7 +1464,7 @@ int xe_guc_suspend(struct xe_guc *guc) ret = xe_guc_softreset(guc); if (ret) { - xe_gt_err(gt, "GuC suspend failed: %pe\n", ERR_PTR(ret)); + xe_log_err(gt, GUC, ret, "Suspend aborted\n"); return ret; } -- 2.55.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v3 5/5] drm/xe/guc: Report errors that cause a CT shutdown using SIGID 2026-09-03 23:39 [PATCH v2 0/5] Use SIG_ID logs for GuC component Umesh Nerlige Ramappa ` (3 preceding siblings ...) 2026-09-03 23:40 ` [PATCH v3 4/5] drm/xe/guc: Report major GuC failures " Umesh Nerlige Ramappa @ 2026-09-03 23:40 ` Umesh Nerlige Ramappa 2026-09-04 0:09 ` ✓ CI.KUnit: success for Use SIG_ID logs for GuC component (rev2) Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Umesh Nerlige Ramappa @ 2026-09-03 23:40 UTC (permalink / raw) To: intel-xe Cc: daniele.ceraolospurio, michal.wajdeczko, aravind.iddamsetty, mallesh.koujalagi, alan.previn.teres.alexis, julia.filipchuk From: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> Convert any errors that can cause the CT to be declared as dead to use the xe_log_err() helper. Errors that are escalated to the callers are left for the caller to report with SIGID if needed. While at it, update some of the error messages to make what went wrong clearer. v2: - use different error codes and better messages (Michal) v3: - Drop GuC from log messages (Michal) - Clean up log messages Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com> Cc: Aravind Iddamsetty <aravind.iddamsetty@intel.com> Cc: Mallesh Koujalagi <mallesh.koujalagi@intel.com> Cc: Alan Previn Teres Alexis <alan.previn.teres.alexis@intel.com> Cc: Julia Filipchuk <julia.filipchuk@intel.com> Assisted-by: Claude:claude-opus-5 --- drivers/gpu/drm/xe/xe_guc_ct.c | 91 +++++++++++++++++++--------------- 1 file changed, 51 insertions(+), 40 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c index c5a417fef913..623b8c1c6944 100644 --- a/drivers/gpu/drm/xe/xe_guc_ct.c +++ b/drivers/gpu/drm/xe/xe_guc_ct.c @@ -30,6 +30,7 @@ #include "xe_guc_relay.h" #include "xe_guc_submit.h" #include "xe_guc_tlb_inval.h" +#include "xe_log.h" #include "xe_map.h" #include "xe_page_reclaim.h" #include "xe_pm.h" @@ -679,7 +680,7 @@ static int __xe_guc_ct_start(struct xe_guc_ct *ct, bool needs_register) return 0; err_out: - xe_gt_err(gt, "Failed to enable GuC CT (%pe)\n", ERR_PTR(err)); + xe_log_err(gt, GUC, err, "CT: Failed to enable\n"); CT_DEAD(ct, NULL, SETUP); return err; @@ -803,8 +804,9 @@ static bool h2g_has_room(struct xe_guc_ct *ct, u32 cmd_len) desc_write(xe, h2g, status, desc_status | GUC_CTB_STATUS_OVERFLOW); - xe_gt_err(ct_to_gt(ct), "CT: invalid head offset %u >= %u)\n", - h2g->info.head, h2g->info.size); + xe_log_err(ct_to_gt(ct), GUC, -EPIPE, + "CT: invalid head offset %u >= %u)\n", + h2g->info.head, h2g->info.size); CT_DEAD(ct, h2g, H2G_HAS_ROOM); return false; } @@ -873,12 +875,13 @@ static void __g2h_release_space(struct xe_guc_ct *ct, u32 g2h_len) bad |= !ct->g2h_outstanding; if (bad) { - xe_gt_err(ct_to_gt(ct), "Invalid G2H release: %d + %d vs %d - %d -> %d vs %d, outstanding = %d!\n", - ct->ctbs.g2h.info.space, g2h_len, - ct->ctbs.g2h.info.size, ct->ctbs.g2h.info.resv_space, - ct->ctbs.g2h.info.space + g2h_len, - ct->ctbs.g2h.info.size - ct->ctbs.g2h.info.resv_space, - ct->g2h_outstanding); + xe_log_err(ct_to_gt(ct), GUC, -ETOOMANYREFS, + "CT: Invalid G2H release: %d + %d vs %d - %d -> %d vs %d, outstanding = %d!\n", + ct->ctbs.g2h.info.space, g2h_len, + ct->ctbs.g2h.info.size, ct->ctbs.g2h.info.resv_space, + ct->ctbs.g2h.info.space + g2h_len, + ct->ctbs.g2h.info.size - ct->ctbs.g2h.info.resv_space, + ct->g2h_outstanding); CT_DEAD(ct, &ct->ctbs.g2h, G2H_RELEASE); return; } @@ -963,23 +966,26 @@ static int h2g_write(struct xe_guc_ct *ct, const u32 *action, u32 len, desc_status = desc_read(xe, h2g, status); if (desc_status) { err = -EPIPE; - xe_gt_err(gt, "CT write: non-zero status: %u\n", desc_status); + xe_log_err(gt, GUC, err, + "CT: write: non-zero status: %u\n", desc_status); goto corrupted; } if (tail > h2g->info.size) { desc_write(xe, h2g, status, desc_status | GUC_CTB_STATUS_OVERFLOW); err = -EPIPE; - xe_gt_err(gt, "CT write: tail out of range: %u vs %u\n", - tail, h2g->info.size); + xe_log_err(gt, GUC, err, + "CT: write: tail out of range: %u vs %u\n", + tail, h2g->info.size); goto corrupted; } if (desc_head >= h2g->info.size) { desc_write(xe, h2g, status, desc_status | GUC_CTB_STATUS_OVERFLOW); err = -EPIPE; - xe_gt_err(gt, "CT write: invalid head offset %u >= %u)\n", - desc_head, h2g->info.size); + xe_log_err(gt, GUC, err, + "CT: write: invalid head offset %u >= %u)\n", + desc_head, h2g->info.size); goto corrupted; } } @@ -1224,7 +1230,7 @@ static int guc_ct_send_locked(struct xe_guc_ct *ct, const u32 *action, u32 len, return ret; broken: - xe_gt_err(gt, "No forward process on H2G, reset required\n"); + xe_log_err(gt, GUC, -EDEADLK, "CT: No forward progress on H2G, reset required\n"); CT_DEAD(ct, &ct->ctbs.h2g, DEADLOCK); return -EDEADLK; @@ -1562,11 +1568,12 @@ static int guc_crash_process_msg(struct xe_guc_ct *ct, u32 action) struct xe_gt *gt = ct_to_gt(ct); if (action == XE_GUC_ACTION_NOTIFY_CRASH_DUMP_POSTED) - xe_gt_err(gt, "GuC Crash dump notification\n"); + xe_log_err(gt, GUC, -EHOSTDOWN, "CT: Crash dump notification\n"); else if (action == XE_GUC_ACTION_NOTIFY_EXCEPTION) - xe_gt_err(gt, "GuC Exception notification\n"); + xe_log_err(gt, GUC, -EHOSTDOWN, "CT: Exception notification\n"); else - xe_gt_err(gt, "Unknown GuC crash notification: 0x%04X\n", action); + xe_log_err(gt, GUC, -EHOSTDOWN, + "CT: Unknown crash notification: 0x%04X\n", action); CT_DEAD(ct, NULL, CRASH); @@ -1596,13 +1603,15 @@ static int parse_g2h_response(struct xe_guc_ct *ct, u32 *msg, u32 len) */ if (fence & CT_SEQNO_UNTRACKED) { if (type == GUC_HXG_TYPE_RESPONSE_FAILURE) - xe_gt_err(gt, "FAST_REQ H2G fence 0x%x failed! e=0x%x, h=%u\n", - fence, - FIELD_GET(GUC_HXG_FAILURE_MSG_0_ERROR, hxg[0]), - FIELD_GET(GUC_HXG_FAILURE_MSG_0_HINT, hxg[0])); + xe_log_err(gt, GUC, -EPROTO, + "CT: FAST_REQ H2G fence 0x%x failed! e=0x%x, h=%u\n", + fence, + FIELD_GET(GUC_HXG_FAILURE_MSG_0_ERROR, hxg[0]), + FIELD_GET(GUC_HXG_FAILURE_MSG_0_HINT, hxg[0])); else - xe_gt_err(gt, "unexpected response %u for FAST_REQ H2G fence 0x%x!\n", - type, fence); + xe_log_err(gt, GUC, -EPROTO, + "CT: unexpected response %u for FAST_REQ H2G fence 0x%x!\n", + type, fence); fast_req_report(ct, fence); @@ -1678,8 +1687,9 @@ static int parse_g2h_msg(struct xe_guc_ct *ct, u32 *msg, u32 len) origin = FIELD_GET(GUC_HXG_MSG_0_ORIGIN, hxg[0]); if (unlikely(origin != GUC_HXG_ORIGIN_GUC)) { - xe_gt_err(gt, "G2H channel broken on read, origin=%u, reset required\n", - origin); + xe_log_err(gt, GUC, -EBADMSG, + "CT: Invalid G2H origin=%u, reset required\n", + origin); CT_DEAD(ct, &ct->ctbs.g2h, PARSE_G2H_ORIGIN); return -EPROTO; @@ -1697,8 +1707,9 @@ static int parse_g2h_msg(struct xe_guc_ct *ct, u32 *msg, u32 len) ret = parse_g2h_response(ct, msg, len); break; default: - xe_gt_err(gt, "G2H channel broken on read, type=%u, reset required\n", - type); + xe_log_err(gt, GUC, -EOPNOTSUPP, + "CT: Unexpected G2H message type %u, reset required\n", + type); CT_DEAD(ct, &ct->ctbs.g2h, PARSE_G2H_TYPE); ret = -EOPNOTSUPP; @@ -1796,8 +1807,8 @@ static int process_g2h_msg(struct xe_guc_ct *ct, u32 *msg, u32 len) } if (ret) { - xe_gt_err(gt, "G2H action %#04x failed (%pe) len %u msg %*ph\n", - action, ERR_PTR(ret), hxg_len, (int)sizeof(u32) * hxg_len, hxg); + xe_log_err(gt, GUC, ret, "CT: G2H action %#04x failed len %u msg %*ph\n", + action, hxg_len, (int)sizeof(u32) * hxg_len, hxg); CT_DEAD(ct, NULL, PROCESS_FAILED); } @@ -1847,7 +1858,7 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) if (desc_status) { err = -EPIPE; - xe_gt_err(gt, "CT read: non-zero status: %u\n", desc_status); + xe_log_err(gt, GUC, err, "CT: read: non-zero status: %u\n", desc_status); goto corrupted; } } @@ -1879,16 +1890,16 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) if (g2h->info.head > g2h->info.size) { desc_write(xe, g2h, status, desc_status | GUC_CTB_STATUS_OVERFLOW); err = -EPIPE; - xe_gt_err(gt, "CT read: head out of range: %u vs %u\n", - g2h->info.head, g2h->info.size); + xe_log_err(gt, GUC, err, "CT: read: head out of range: %u vs %u\n", + g2h->info.head, g2h->info.size); goto corrupted; } if (desc_tail >= g2h->info.size) { desc_write(xe, g2h, status, desc_status | GUC_CTB_STATUS_OVERFLOW); err = -EPIPE; - xe_gt_err(gt, "CT read: invalid tail offset %u >= %u)\n", - desc_tail, g2h->info.size); + xe_log_err(gt, GUC, err, "CT: read: invalid tail offset %u >= %u)\n", + desc_tail, g2h->info.size); goto corrupted; } } @@ -1908,8 +1919,9 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) len = FIELD_GET(GUC_CTB_MSG_0_NUM_DWORDS, msg[0]) + GUC_CTB_MSG_MIN_LEN; if (len > avail) { err = -EPIPE; - xe_gt_err(gt, "G2H channel broken on read, avail=%d, len=%d, reset required\n", - avail, len); + xe_log_err(gt, GUC, err, + "CT: G2H channel broken on read, avail=%d, len=%d, reset required\n", + avail, len); goto corrupted; } @@ -1991,8 +2003,7 @@ static void g2h_fast_path(struct xe_guc_ct *ct, u32 *msg, u32 len) } if (ret) { - xe_gt_err(gt, "G2H action 0x%04x failed (%pe)\n", - action, ERR_PTR(ret)); + xe_log_err(gt, GUC, ret, "CT: G2H action 0x%04x failed\n", action); CT_DEAD(ct, NULL, FAST_G2H); } } @@ -2111,7 +2122,7 @@ static void receive_g2h(struct xe_guc_ct *ct) mutex_unlock(&ct->lock); if (unlikely(ret < 0 && g2h_err_is_fatal(ret))) { - xe_gt_err(ct_to_gt(ct), "CT dequeue failed (%pe)\n", ERR_PTR(ret)); + xe_log_err(ct_to_gt(ct), GUC, ret, "CT: dequeue failed, forcing GT reset\n"); CT_DEAD(ct, NULL, G2H_RECV); kick_reset(ct); } -- 2.55.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✓ CI.KUnit: success for Use SIG_ID logs for GuC component (rev2) 2026-09-03 23:39 [PATCH v2 0/5] Use SIG_ID logs for GuC component Umesh Nerlige Ramappa ` (4 preceding siblings ...) 2026-09-03 23:40 ` [PATCH v3 5/5] drm/xe/guc: Report errors that cause a CT shutdown " Umesh Nerlige Ramappa @ 2026-09-04 0:09 ` Patchwork 2026-09-04 0:48 ` ✓ Xe.CI.BAT: " Patchwork 2026-09-04 14:00 ` ✓ Xe.CI.FULL: " Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-09-04 0:09 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: intel-xe == Series Details == Series: Use SIG_ID logs for GuC component (rev2) URL : https://patchwork.freedesktop.org/series/173177/ State : success == Summary == + trap cleanup EXIT + kunitconfigs=('/kernel/drivers/gpu/tests/.kunitconfig' '/kernel/drivers/gpu/drm/xe/.kunitconfig' '/kernel/drivers/gpu/drm/tests/.kunitconfig' '/kernel/drivers/gpu/drm/ttm/tests/.kunitconfig' '/kernel/drivers/dma-buf/.kunitconfig') + for kcfg in "${kunitconfigs[@]}" + [[ ! -f /kernel/drivers/gpu/tests/.kunitconfig ]] + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/tests/.kunitconfig [00:07:01] Configuring KUnit Kernel ... Generating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [00:07: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 [00:07:26] Starting KUnit Kernel (1/1)... [00:07:26] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [00:07:26] ============= refcount_interrupt (4 subtests) ============== [00:07:26] [PASSED] test_single_irq_change [00:07:26] [PASSED] test_nested_irq_change [00:07:26] [PASSED] test_multiple_irq_change [00:07:26] [PASSED] test_irq_save [00:07:26] =============== [PASSED] refcount_interrupt ================ [00:07:26] ================= gpu_buddy (14 subtests) ================== [00:07:26] [PASSED] gpu_test_buddy_alloc_limit [00:07:26] [PASSED] gpu_test_buddy_alloc_optimistic [00:07:26] [PASSED] gpu_test_buddy_alloc_pessimistic [00:07:26] [PASSED] gpu_test_buddy_alloc_pathological [00:07:26] [PASSED] gpu_test_buddy_alloc_contiguous [00:07:26] [PASSED] gpu_test_buddy_alloc_clear [00:07:26] [PASSED] gpu_test_buddy_alloc_range [00:07:26] [PASSED] gpu_test_buddy_alloc_range_bias [00:07:27] [PASSED] gpu_test_buddy_fragmentation_performance [00:07:28] [PASSED] gpu_test_buddy_dirty_tracker_performance [00:07:28] [PASSED] gpu_test_buddy_alloc_exceeds_max_order [00:07:28] [PASSED] gpu_test_buddy_offset_aligned_allocation [00:07:28] [PASSED] gpu_test_buddy_subtree_offset_alignment_stress [00:07:28] [PASSED] gpu_test_buddy_addr_to_block [00:07:28] ==================== [PASSED] gpu_buddy ==================== [00:07:28] ============================================================ [00:07:28] Testing complete. Ran 18 tests: passed: 18 [00:07:28] Elapsed time: 27.130s total, 4.380s configuring, 20.582s building, 2.113s running + for kcfg in "${kunitconfigs[@]}" + [[ ! -f /kernel/drivers/gpu/drm/xe/.kunitconfig ]] + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig [00:07:28] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [00:07:30] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [00:08:04] Starting KUnit Kernel (1/1)... [00:08:04] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [00:08:05] ============= refcount_interrupt (4 subtests) ============== [00:08:05] [PASSED] test_single_irq_change [00:08:05] [PASSED] test_nested_irq_change [00:08:05] [PASSED] test_multiple_irq_change [00:08:05] [PASSED] test_irq_save [00:08:05] =============== [PASSED] refcount_interrupt ================ [00:08:05] ================== guc_buf (11 subtests) =================== [00:08:05] [PASSED] test_smallest [00:08:05] [PASSED] test_largest [00:08:05] [PASSED] test_granular [00:08:05] [PASSED] test_unique [00:08:05] [PASSED] test_overlap [00:08:05] [PASSED] test_reusable [00:08:05] [PASSED] test_too_big [00:08:05] [PASSED] test_flush [00:08:05] [PASSED] test_lookup [00:08:05] [PASSED] test_data [00:08:05] [PASSED] test_class [00:08:05] ===================== [PASSED] guc_buf ===================== [00:08:05] =================== guc_dbm (7 subtests) =================== [00:08:05] [PASSED] test_empty [00:08:05] [PASSED] test_default [00:08:05] ======================== test_size ======================== [00:08:05] [PASSED] 4 [00:08:05] [PASSED] 8 [00:08:05] [PASSED] 32 [00:08:05] [PASSED] 256 [00:08:05] ==================== [PASSED] test_size ==================== [00:08:05] ======================= test_reuse ======================== [00:08:05] [PASSED] 4 [00:08:05] [PASSED] 8 [00:08:05] [PASSED] 32 [00:08:05] [PASSED] 256 [00:08:05] =================== [PASSED] test_reuse ==================== [00:08:05] =================== test_range_overlap ==================== [00:08:05] [PASSED] 4 [00:08:05] [PASSED] 8 [00:08:05] [PASSED] 32 [00:08:05] [PASSED] 256 [00:08:05] =============== [PASSED] test_range_overlap ================ [00:08:05] =================== test_range_compact ==================== [00:08:05] [PASSED] 4 [00:08:05] [PASSED] 8 [00:08:05] [PASSED] 32 [00:08:05] [PASSED] 256 [00:08:05] =============== [PASSED] test_range_compact ================ [00:08:05] ==================== test_range_spare ===================== [00:08:05] [PASSED] 4 [00:08:05] [PASSED] 8 [00:08:05] [PASSED] 32 [00:08:05] [PASSED] 256 [00:08:05] ================ [PASSED] test_range_spare ================= [00:08:05] ===================== [PASSED] guc_dbm ===================== [00:08:05] =================== guc_idm (6 subtests) =================== [00:08:05] [PASSED] bad_init [00:08:05] [PASSED] no_init [00:08:05] [PASSED] init_fini [00:08:05] [PASSED] check_used [00:08:05] [PASSED] check_quota [00:08:05] [PASSED] check_all [00:08:05] ===================== [PASSED] guc_idm ===================== [00:08:05] =============== guc_klv_helpers (9 subtests) =============== [00:08:05] [PASSED] test_count [00:08:05] [PASSED] test_encode_u32 [00:08:05] [PASSED] test_encode_u64 [00:08:05] [PASSED] test_encode_string [00:08:05] [PASSED] test_encode_object_raw [00:08:05] [PASSED] test_encode_object_klv [00:08:05] [PASSED] test_encode_object_nested [00:08:05] [PASSED] test_encode_object_basic [00:08:05] [PASSED] test_print [00:08:05] ================= [PASSED] guc_klv_helpers ================= [00:08:05] =================== xe_log (4 subtests) ==================== [00:08:05] [PASSED] demo_cper [00:08:05] [PASSED] demo_dmesg [00:08:05] ======================= test_dmesg ======================== [00:08:05] [PASSED] test_fatal [00:08:05] [PASSED] test_fatal_tile [00:08:05] [PASSED] test_fatal_gt [00:08:05] [PASSED] test_fatal_comp [00:08:05] [PASSED] test_fatal_comp_tile [00:08:05] [PASSED] test_fatal_comp_gt [00:08:05] [PASSED] test_fatal_all [00:08:05] [PASSED] test_recoverable [00:08:05] [PASSED] test_recoverable_tile [00:08:05] [PASSED] test_recoverable_gt [00:08:05] [PASSED] test_recoverable_comp [00:08:05] [PASSED] test_recoverable_comp_tile [00:08:05] [PASSED] test_recoverable_comp_gt [00:08:05] [PASSED] test_recoverable_all [00:08:05] [PASSED] test_info [00:08:05] [PASSED] test_info_tile [00:08:05] [PASSED] test_info_gt [00:08:05] [PASSED] test_info_err [00:08:05] [PASSED] test_info_comp [00:08:05] [PASSED] test_info_comp_tile [00:08:05] [PASSED] test_info_comp_gt [00:08:05] [PASSED] test_info_all [00:08:05] [PASSED] test_hw_fatal [00:08:05] [PASSED] test_hw_recoverable [00:08:05] [PASSED] test_hw_corrected [00:08:05] [PASSED] test_hw_informational [00:08:05] =================== [PASSED] test_dmesg ==================== [00:08:05] ====================== test_invalid ======================= [00:08:05] [SKIPPED] no-component no-location no-warn (requires CONFIG_DRM_XE_DEBUG) [00:08:05] [SKIPPED] reserved location (requires CONFIG_DRM_XE_DEBUG) [00:08:05] [SKIPPED] unknown location (requires CONFIG_DRM_XE_DEBUG) [00:08:05] [SKIPPED] nonzero-device-id location (requires CONFIG_DRM_XE_DEBUG) [00:08:05] [SKIPPED] invalid-tile-id location (requires CONFIG_DRM_XE_DEBUG) [00:08:05] [SKIPPED] invalid-gt-id location (requires CONFIG_DRM_XE_DEBUG) [00:08:05] [SKIPPED] unknown component class (requires CONFIG_DRM_XE_DEBUG) [00:08:05] [SKIPPED] unknown system component (requires CONFIG_DRM_XE_DEBUG) [00:08:05] [SKIPPED] unknown hardware component (requires CONFIG_DRM_XE_DEBUG) [00:08:05] [SKIPPED] unknown component and location (requires CONFIG_DRM_XE_DEBUG) [00:08:05] ================== [SKIPPED] test_invalid ================== [00:08:05] ===================== [PASSED] xe_log ====================== [00:08:05] ================== no_relay (3 subtests) =================== [00:08:05] [PASSED] xe_drops_guc2pf_if_not_ready [00:08:05] [PASSED] xe_drops_guc2vf_if_not_ready [00:08:05] [PASSED] xe_rejects_send_if_not_ready [00:08:05] ==================== [PASSED] no_relay ===================== [00:08:05] ================== pf_relay (14 subtests) ================== [00:08:05] [PASSED] pf_rejects_guc2pf_too_short [00:08:05] [PASSED] pf_rejects_guc2pf_too_long [00:08:05] [PASSED] pf_rejects_guc2pf_no_payload [00:08:05] [PASSED] pf_fails_no_payload [00:08:05] [PASSED] pf_fails_bad_origin [00:08:05] [PASSED] pf_fails_bad_type [00:08:05] [PASSED] pf_txn_reports_error [00:08:05] [PASSED] pf_txn_sends_pf2guc [00:08:05] [PASSED] pf_sends_pf2guc [00:08:05] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV) [00:08:05] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV) [00:08:05] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV) [00:08:05] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV) [00:08:05] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV) [00:08:05] ==================== [PASSED] pf_relay ===================== [00:08:05] ================== vf_relay (3 subtests) =================== [00:08:05] [PASSED] vf_rejects_guc2vf_too_short [00:08:05] [PASSED] vf_rejects_guc2vf_too_long [00:08:05] [PASSED] vf_rejects_guc2vf_no_payload [00:08:05] ==================== [PASSED] vf_relay ===================== [00:08:05] ================ pf_gt_config (9 subtests) ================= [00:08:05] [PASSED] fair_contexts_1vf [00:08:05] [PASSED] fair_doorbells_1vf [00:08:05] [PASSED] fair_ggtt_1vf [00:08:05] ====================== fair_vram_1vf ====================== [00:08:05] [PASSED] 3.50 GiB [00:08:05] [PASSED] 11.5 GiB [00:08:05] [PASSED] 15.5 GiB [00:08:05] [PASSED] 31.5 GiB [00:08:05] [PASSED] 63.5 GiB [00:08:05] [PASSED] 1.91 GiB [00:08:05] ================== [PASSED] fair_vram_1vf ================== [00:08:05] ================ fair_vram_1vf_admin_only ================= [00:08:05] [PASSED] 3.50 GiB [00:08:05] [PASSED] 11.5 GiB [00:08:05] [PASSED] 15.5 GiB [00:08:05] [PASSED] 31.5 GiB [00:08:05] [PASSED] 63.5 GiB [00:08:05] [PASSED] 1.91 GiB [00:08:05] ============ [PASSED] fair_vram_1vf_admin_only ============= [00:08:05] ====================== fair_contexts ====================== [00:08:05] [PASSED] 1 VF [00:08:05] [PASSED] 2 VFs [00:08:05] [PASSED] 3 VFs [00:08:05] [PASSED] 4 VFs [00:08:05] [PASSED] 5 VFs [00:08:05] [PASSED] 6 VFs [00:08:05] [PASSED] 7 VFs [00:08:05] [PASSED] 8 VFs [00:08:05] [PASSED] 9 VFs [00:08:05] [PASSED] 10 VFs [00:08:05] [PASSED] 11 VFs [00:08:05] [PASSED] 12 VFs [00:08:05] [PASSED] 13 VFs [00:08:05] [PASSED] 14 VFs [00:08:05] [PASSED] 15 VFs [00:08:05] [PASSED] 16 VFs [00:08:05] [PASSED] 17 VFs [00:08:05] [PASSED] 18 VFs [00:08:05] [PASSED] 19 VFs [00:08:05] [PASSED] 20 VFs [00:08:05] [PASSED] 21 VFs [00:08:05] [PASSED] 22 VFs [00:08:05] [PASSED] 23 VFs [00:08:05] [PASSED] 24 VFs [00:08:05] [PASSED] 25 VFs [00:08:05] [PASSED] 26 VFs [00:08:05] [PASSED] 27 VFs [00:08:05] [PASSED] 28 VFs [00:08:05] [PASSED] 29 VFs [00:08:05] [PASSED] 30 VFs [00:08:05] [PASSED] 31 VFs [00:08:05] [PASSED] 32 VFs [00:08:05] [PASSED] 33 VFs [00:08:05] [PASSED] 34 VFs [00:08:05] [PASSED] 35 VFs [00:08:05] [PASSED] 36 VFs [00:08:05] [PASSED] 37 VFs [00:08:05] [PASSED] 38 VFs [00:08:05] [PASSED] 39 VFs [00:08:05] [PASSED] 40 VFs [00:08:05] [PASSED] 41 VFs [00:08:05] [PASSED] 42 VFs [00:08:05] [PASSED] 43 VFs [00:08:05] [PASSED] 44 VFs [00:08:05] [PASSED] 45 VFs [00:08:05] [PASSED] 46 VFs [00:08:05] [PASSED] 47 VFs [00:08:05] [PASSED] 48 VFs [00:08:05] [PASSED] 49 VFs [00:08:05] [PASSED] 50 VFs [00:08:05] [PASSED] 51 VFs [00:08:05] [PASSED] 52 VFs [00:08:05] [PASSED] 53 VFs [00:08:05] [PASSED] 54 VFs [00:08:05] [PASSED] 55 VFs [00:08:05] [PASSED] 56 VFs [00:08:05] [PASSED] 57 VFs [00:08:05] [PASSED] 58 VFs [00:08:05] [PASSED] 59 VFs [00:08:05] [PASSED] 60 VFs [00:08:05] [PASSED] 61 VFs [00:08:05] [PASSED] 62 VFs [00:08:05] [PASSED] 63 VFs [00:08:05] ================== [PASSED] fair_contexts ================== [00:08:05] ===================== fair_doorbells ====================== [00:08:05] [PASSED] 1 VF [00:08:05] [PASSED] 2 VFs [00:08:05] [PASSED] 3 VFs [00:08:05] [PASSED] 4 VFs [00:08:05] [PASSED] 5 VFs [00:08:05] [PASSED] 6 VFs [00:08:05] [PASSED] 7 VFs [00:08:05] [PASSED] 8 VFs [00:08:05] [PASSED] 9 VFs [00:08:05] [PASSED] 10 VFs [00:08:05] [PASSED] 11 VFs [00:08:05] [PASSED] 12 VFs [00:08:05] [PASSED] 13 VFs [00:08:05] [PASSED] 14 VFs [00:08:05] [PASSED] 15 VFs [00:08:05] [PASSED] 16 VFs [00:08:05] [PASSED] 17 VFs [00:08:05] [PASSED] 18 VFs [00:08:05] [PASSED] 19 VFs [00:08:05] [PASSED] 20 VFs [00:08:05] [PASSED] 21 VFs [00:08:05] [PASSED] 22 VFs [00:08:05] [PASSED] 23 VFs [00:08:05] [PASSED] 24 VFs [00:08:05] [PASSED] 25 VFs [00:08:05] [PASSED] 26 VFs [00:08:05] [PASSED] 27 VFs [00:08:05] [PASSED] 28 VFs [00:08:05] [PASSED] 29 VFs [00:08:05] [PASSED] 30 VFs [00:08:05] [PASSED] 31 VFs [00:08:05] [PASSED] 32 VFs [00:08:05] [PASSED] 33 VFs [00:08:05] [PASSED] 34 VFs [00:08:05] [PASSED] 35 VFs [00:08:05] [PASSED] 36 VFs [00:08:05] [PASSED] 37 VFs [00:08:05] [PASSED] 38 VFs [00:08:05] [PASSED] 39 VFs [00:08:05] [PASSED] 40 VFs [00:08:05] [PASSED] 41 VFs [00:08:05] [PASSED] 42 VFs [00:08:05] [PASSED] 43 VFs [00:08:05] [PASSED] 44 VFs [00:08:05] [PASSED] 45 VFs [00:08:05] [PASSED] 46 VFs [00:08:05] [PASSED] 47 VFs [00:08:05] [PASSED] 48 VFs [00:08:05] [PASSED] 49 VFs [00:08:05] [PASSED] 50 VFs [00:08:05] [PASSED] 51 VFs [00:08:05] [PASSED] 52 VFs [00:08:05] [PASSED] 53 VFs [00:08:05] [PASSED] 54 VFs [00:08:05] [PASSED] 55 VFs [00:08:05] [PASSED] 56 VFs [00:08:05] [PASSED] 57 VFs [00:08:05] [PASSED] 58 VFs [00:08:05] [PASSED] 59 VFs [00:08:05] [PASSED] 60 VFs [00:08:05] [PASSED] 61 VFs [00:08:05] [PASSED] 62 VFs [00:08:05] [PASSED] 63 VFs [00:08:05] ================= [PASSED] fair_doorbells ================== [00:08:05] ======================== fair_ggtt ======================== [00:08:05] [PASSED] 1 VF [00:08:05] [PASSED] 2 VFs [00:08:05] [PASSED] 3 VFs [00:08:05] [PASSED] 4 VFs [00:08:05] [PASSED] 5 VFs [00:08:05] [PASSED] 6 VFs [00:08:05] [PASSED] 7 VFs [00:08:05] [PASSED] 8 VFs [00:08:05] [PASSED] 9 VFs [00:08:05] [PASSED] 10 VFs [00:08:05] [PASSED] 11 VFs [00:08:05] [PASSED] 12 VFs [00:08:05] [PASSED] 13 VFs [00:08:05] [PASSED] 14 VFs [00:08:05] [PASSED] 15 VFs [00:08:05] [PASSED] 16 VFs [00:08:05] [PASSED] 17 VFs [00:08:05] [PASSED] 18 VFs [00:08:05] [PASSED] 19 VFs [00:08:05] [PASSED] 20 VFs [00:08:05] [PASSED] 21 VFs [00:08:05] [PASSED] 22 VFs [00:08:05] [PASSED] 23 VFs [00:08:05] [PASSED] 24 VFs [00:08:05] [PASSED] 25 VFs [00:08:05] [PASSED] 26 VFs [00:08:05] [PASSED] 27 VFs [00:08:05] [PASSED] 28 VFs [00:08:05] [PASSED] 29 VFs [00:08:05] [PASSED] 30 VFs [00:08:05] [PASSED] 31 VFs [00:08:05] [PASSED] 32 VFs [00:08:05] [PASSED] 33 VFs [00:08:05] [PASSED] 34 VFs [00:08:05] [PASSED] 35 VFs [00:08:05] [PASSED] 36 VFs [00:08:05] [PASSED] 37 VFs [00:08:05] [PASSED] 38 VFs [00:08:05] [PASSED] 39 VFs [00:08:05] [PASSED] 40 VFs [00:08:05] [PASSED] 41 VFs [00:08:05] [PASSED] 42 VFs [00:08:05] [PASSED] 43 VFs [00:08:05] [PASSED] 44 VFs [00:08:05] [PASSED] 45 VFs [00:08:05] [PASSED] 46 VFs [00:08:05] [PASSED] 47 VFs [00:08:05] [PASSED] 48 VFs [00:08:05] [PASSED] 49 VFs [00:08:05] [PASSED] 50 VFs [00:08:05] [PASSED] 51 VFs [00:08:05] [PASSED] 52 VFs [00:08:05] [PASSED] 53 VFs [00:08:05] [PASSED] 54 VFs [00:08:05] [PASSED] 55 VFs [00:08:05] [PASSED] 56 VFs [00:08:05] [PASSED] 57 VFs [00:08:05] [PASSED] 58 VFs [00:08:05] [PASSED] 59 VFs [00:08:05] [PASSED] 60 VFs [00:08:05] [PASSED] 61 VFs [00:08:05] [PASSED] 62 VFs [00:08:05] [PASSED] 63 VFs [00:08:05] ==================== [PASSED] fair_ggtt ==================== [00:08:05] ======================== fair_vram ======================== [00:08:05] [PASSED] 1 VF [00:08:05] [PASSED] 2 VFs [00:08:05] [PASSED] 3 VFs [00:08:05] [PASSED] 4 VFs [00:08:05] [PASSED] 5 VFs [00:08:05] [PASSED] 6 VFs [00:08:05] [PASSED] 7 VFs [00:08:05] [PASSED] 8 VFs [00:08:05] [PASSED] 9 VFs [00:08:05] [PASSED] 10 VFs [00:08:05] [PASSED] 11 VFs [00:08:05] [PASSED] 12 VFs [00:08:05] [PASSED] 13 VFs [00:08:05] [PASSED] 14 VFs [00:08:05] [PASSED] 15 VFs [00:08:05] [PASSED] 16 VFs [00:08:05] [PASSED] 17 VFs [00:08:05] [PASSED] 18 VFs [00:08:05] [PASSED] 19 VFs [00:08:05] [PASSED] 20 VFs [00:08:05] [PASSED] 21 VFs [00:08:05] [PASSED] 22 VFs [00:08:05] [PASSED] 23 VFs [00:08:05] [PASSED] 24 VFs [00:08:05] [PASSED] 25 VFs [00:08:05] [PASSED] 26 VFs [00:08:05] [PASSED] 27 VFs [00:08:05] [PASSED] 28 VFs [00:08:05] [PASSED] 29 VFs [00:08:05] [PASSED] 30 VFs [00:08:05] [PASSED] 31 VFs [00:08:05] [PASSED] 32 VFs [00:08:05] [PASSED] 33 VFs [00:08:05] [PASSED] 34 VFs [00:08:05] [PASSED] 35 VFs [00:08:05] [PASSED] 36 VFs [00:08:05] [PASSED] 37 VFs [00:08:05] [PASSED] 38 VFs [00:08:05] [PASSED] 39 VFs [00:08:05] [PASSED] 40 VFs [00:08:05] [PASSED] 41 VFs [00:08:05] [PASSED] 42 VFs [00:08:05] [PASSED] 43 VFs [00:08:05] [PASSED] 44 VFs [00:08:05] [PASSED] 45 VFs [00:08:05] [PASSED] 46 VFs [00:08:05] [PASSED] 47 VFs [00:08:05] [PASSED] 48 VFs [00:08:05] [PASSED] 49 VFs [00:08:05] [PASSED] 50 VFs [00:08:05] [PASSED] 51 VFs [00:08:05] [PASSED] 52 VFs [00:08:05] [PASSED] 53 VFs [00:08:05] [PASSED] 54 VFs [00:08:05] [PASSED] 55 VFs [00:08:05] [PASSED] 56 VFs [00:08:05] [PASSED] 57 VFs [00:08:05] [PASSED] 58 VFs [00:08:05] [PASSED] 59 VFs [00:08:05] [PASSED] 60 VFs [00:08:05] [PASSED] 61 VFs [00:08:05] [PASSED] 62 VFs [00:08:05] [PASSED] 63 VFs [00:08:05] ==================== [PASSED] fair_vram ==================== [00:08:05] ================== [PASSED] pf_gt_config =================== [00:08:05] ===================== lmtt (1 subtest) ===================== [00:08:05] ======================== test_ops ========================= [00:08:05] [PASSED] 2-level [00:08:05] [PASSED] multi-level [00:08:05] ==================== [PASSED] test_ops ===================== [00:08:05] ====================== [PASSED] lmtt ======================= [00:08:05] ================= sriov_packet (1 subtest) ================= [00:08:05] [PASSED] test_descriptor_init [00:08:05] ================== [PASSED] sriov_packet =================== [00:08:05] ================= pf_service (11 subtests) ================= [00:08:05] [PASSED] pf_negotiate_any [00:08:05] [PASSED] pf_negotiate_base_match [00:08:05] [PASSED] pf_negotiate_base_newer [00:08:05] [PASSED] pf_negotiate_base_next [00:08:05] [SKIPPED] pf_negotiate_base_older (no older minor) [00:08:05] [PASSED] pf_negotiate_base_prev [00:08:05] [PASSED] pf_negotiate_latest_match [00:08:05] [PASSED] pf_negotiate_latest_newer [00:08:05] [PASSED] pf_negotiate_latest_next [00:08:05] [SKIPPED] pf_negotiate_latest_older (no older minor) [00:08:05] [SKIPPED] pf_negotiate_latest_prev (no prev major) [00:08:05] =================== [PASSED] pf_service ==================== [00:08:05] ================= xe_guc_g2g (2 subtests) ================== [00:08:05] ============== xe_live_guc_g2g_kunit_default ============== [00:08:05] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ========== [00:08:05] ============== xe_live_guc_g2g_kunit_allmem =============== [00:08:05] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ========== [00:08:05] =================== [SKIPPED] xe_guc_g2g =================== [00:08:05] =================== xe_mocs (2 subtests) =================== [00:08:05] ================ xe_live_mocs_kernel_kunit ================ [00:08:05] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============ [00:08:05] ================ xe_live_mocs_reset_kunit ================= [00:08:05] ============ [SKIPPED] xe_live_mocs_reset_kunit ============ [00:08:05] ==================== [SKIPPED] xe_mocs ===================== [00:08:05] ================= xe_migrate (2 subtests) ================== [00:08:05] ================= xe_migrate_sanity_kunit ================= [00:08:05] ============ [SKIPPED] xe_migrate_sanity_kunit ============= [00:08:05] ================== xe_validate_ccs_kunit ================== [00:08:05] ============= [SKIPPED] xe_validate_ccs_kunit ============== [00:08:05] =================== [SKIPPED] xe_migrate =================== [00:08:05] ================== xe_dma_buf (1 subtest) ================== [00:08:05] ==================== xe_dma_buf_kunit ===================== [00:08:05] ================ [SKIPPED] xe_dma_buf_kunit ================ [00:08:05] =================== [SKIPPED] xe_dma_buf =================== [00:08:05] ================= xe_bo_shrink (1 subtest) ================= [00:08:05] =================== xe_bo_shrink_kunit ==================== [00:08:05] =============== [SKIPPED] xe_bo_shrink_kunit =============== [00:08:05] ================== [SKIPPED] xe_bo_shrink ================== [00:08:05] ==================== xe_bo (2 subtests) ==================== [00:08:05] ================== xe_ccs_migrate_kunit =================== [00:08:05] ============== [SKIPPED] xe_ccs_migrate_kunit ============== [00:08:05] ==================== xe_bo_evict_kunit ==================== [00:08:05] =============== [SKIPPED] xe_bo_evict_kunit ================ [00:08:05] ===================== [SKIPPED] xe_bo ====================== [00:08:05] =================== xe_any (9 subtests) ==================== [00:08:05] [PASSED] test_to_xe [00:08:05] [PASSED] test_to_dev [00:08:05] [PASSED] test_to_pdev [00:08:05] [PASSED] test_to_drm [00:08:05] [PASSED] test_if_pdev [00:08:05] [PASSED] test_if_xe [00:08:05] [PASSED] test_if_tile [00:08:05] [PASSED] test_if_gt [00:08:05] [PASSED] test_to_id [00:08:05] ===================== [PASSED] xe_any ====================== [00:08:05] ==================== args (13 subtests) ==================== [00:08:05] [PASSED] count_args_test [00:08:05] [PASSED] call_args_example [00:08:05] [PASSED] call_args_test [00:08:05] [PASSED] drop_first_arg_example [00:08:05] [PASSED] drop_first_arg_test [00:08:05] [PASSED] first_arg_example [00:08:05] [PASSED] first_arg_test [00:08:05] [PASSED] last_arg_example [00:08:05] [PASSED] last_arg_test [00:08:05] [PASSED] pick_arg_example [00:08:05] [PASSED] if_args_example [00:08:05] [PASSED] if_args_test [00:08:05] [PASSED] sep_comma_example [00:08:05] ====================== [PASSED] args ======================= [00:08:05] =================== xe_pci (3 subtests) ==================== [00:08:05] ==================== check_graphics_ip ==================== [00:08:05] [PASSED] 12.00 Xe_LP [00:08:05] [PASSED] 12.10 Xe_LP+ [00:08:05] [PASSED] 12.55 Xe_HPG [00:08:05] [PASSED] 12.60 Xe_HPC [00:08:05] [PASSED] 12.70 Xe_LPG [00:08:05] [PASSED] 12.71 Xe_LPG [00:08:05] [PASSED] 12.74 Xe_LPG+ [00:08:05] [PASSED] 20.01 Xe2_HPG [00:08:05] [PASSED] 20.02 Xe2_HPG [00:08:05] [PASSED] 20.04 Xe2_LPG [00:08:05] [PASSED] 30.00 Xe3_LPG [00:08:05] [PASSED] 30.01 Xe3_LPG [00:08:05] [PASSED] 30.03 Xe3_LPG [00:08:05] [PASSED] 30.04 Xe3_LPG [00:08:05] [PASSED] 30.05 Xe3_LPG [00:08:05] [PASSED] 35.10 Xe3p_LPG [00:08:05] [PASSED] 35.11 Xe3p_XPC [00:08:05] ================ [PASSED] check_graphics_ip ================ [00:08:05] ===================== check_media_ip ====================== [00:08:05] [PASSED] 12.00 Xe_M [00:08:05] [PASSED] 12.55 Xe_HPM [00:08:05] [PASSED] 13.00 Xe_LPM+ [00:08:05] [PASSED] 13.01 Xe2_HPM [00:08:05] [PASSED] 20.00 Xe2_LPM [00:08:05] [PASSED] 30.00 Xe3_LPM [00:08:05] [PASSED] 30.02 Xe3_LPM [00:08:05] [PASSED] 35.00 Xe3p_LPM [00:08:05] [PASSED] 35.03 Xe3p_HPM [00:08:05] ================= [PASSED] check_media_ip ================== [00:08:05] =================== check_platform_desc =================== [00:08:05] [PASSED] 0x9A60 (TIGERLAKE) [00:08:05] [PASSED] 0x9A68 (TIGERLAKE) [00:08:05] [PASSED] 0x9A70 (TIGERLAKE) [00:08:05] [PASSED] 0x9A40 (TIGERLAKE) [00:08:05] [PASSED] 0x9A49 (TIGERLAKE) [00:08:05] [PASSED] 0x9A59 (TIGERLAKE) [00:08:05] [PASSED] 0x9A78 (TIGERLAKE) [00:08:05] [PASSED] 0x9AC0 (TIGERLAKE) [00:08:05] [PASSED] 0x9AC9 (TIGERLAKE) [00:08:05] [PASSED] 0x9AD9 (TIGERLAKE) [00:08:05] [PASSED] 0x9AF8 (TIGERLAKE) [00:08:05] [PASSED] 0x4C80 (ROCKETLAKE) [00:08:05] [PASSED] 0x4C8A (ROCKETLAKE) [00:08:05] [PASSED] 0x4C8B (ROCKETLAKE) [00:08:05] [PASSED] 0x4C8C (ROCKETLAKE) [00:08:05] [PASSED] 0x4C90 (ROCKETLAKE) [00:08:05] [PASSED] 0x4C9A (ROCKETLAKE) [00:08:05] [PASSED] 0x4680 (ALDERLAKE_S) [00:08:05] [PASSED] 0x4682 (ALDERLAKE_S) [00:08:05] [PASSED] 0x4688 (ALDERLAKE_S) [00:08:05] [PASSED] 0x468A (ALDERLAKE_S) [00:08:05] [PASSED] 0x468B (ALDERLAKE_S) [00:08:05] [PASSED] 0x4690 (ALDERLAKE_S) [00:08:05] [PASSED] 0x4692 (ALDERLAKE_S) [00:08:05] [PASSED] 0x4693 (ALDERLAKE_S) [00:08:05] [PASSED] 0x46A0 (ALDERLAKE_P) [00:08:05] [PASSED] 0x46A1 (ALDERLAKE_P) [00:08:05] [PASSED] 0x46A2 (ALDERLAKE_P) [00:08:05] [PASSED] 0x46A3 (ALDERLAKE_P) [00:08:05] [PASSED] 0x46A6 (ALDERLAKE_P) [00:08:05] [PASSED] 0x46A8 (ALDERLAKE_P) [00:08:05] [PASSED] 0x46AA (ALDERLAKE_P) [00:08:05] [PASSED] 0x462A (ALDERLAKE_P) [00:08:05] [PASSED] 0x4626 (ALDERLAKE_P) [00:08:05] [PASSED] 0x4628 (ALDERLAKE_P) [00:08:05] [PASSED] 0x46B0 (ALDERLAKE_P) [00:08:05] [PASSED] 0x46B1 (ALDERLAKE_P) [00:08:05] [PASSED] 0x46B2 (ALDERLAKE_P) [00:08:05] [PASSED] 0x46B3 (ALDERLAKE_P) [00:08:05] [PASSED] 0x46C0 (ALDERLAKE_P) [00:08:05] [PASSED] 0x46C1 (ALDERLAKE_P) [00:08:05] [PASSED] 0x46C2 (ALDERLAKE_P) [00:08:05] [PASSED] 0x46C3 (ALDERLAKE_P) [00:08:05] [PASSED] 0x46D0 (ALDERLAKE_N) [00:08:05] [PASSED] 0x46D1 (ALDERLAKE_N) [00:08:05] [PASSED] 0x46D2 (ALDERLAKE_N) [00:08:05] [PASSED] 0x46D3 (ALDERLAKE_N) [00:08:05] [PASSED] 0x46D4 (ALDERLAKE_N) [00:08:05] [PASSED] 0xA721 (ALDERLAKE_P) [00:08:05] [PASSED] 0xA7A1 (ALDERLAKE_P) [00:08:05] [PASSED] 0xA7A9 (ALDERLAKE_P) [00:08:05] [PASSED] 0xA7AC (ALDERLAKE_P) [00:08:05] [PASSED] 0xA7AD (ALDERLAKE_P) [00:08:05] [PASSED] 0xA720 (ALDERLAKE_P) [00:08:05] [PASSED] 0xA7A0 (ALDERLAKE_P) [00:08:05] [PASSED] 0xA7A8 (ALDERLAKE_P) [00:08:05] [PASSED] 0xA7AA (ALDERLAKE_P) [00:08:05] [PASSED] 0xA7AB (ALDERLAKE_P) [00:08:05] [PASSED] 0xA780 (ALDERLAKE_S) [00:08:05] [PASSED] 0xA781 (ALDERLAKE_S) [00:08:05] [PASSED] 0xA782 (ALDERLAKE_S) [00:08:05] [PASSED] 0xA783 (ALDERLAKE_S) [00:08:05] [PASSED] 0xA788 (ALDERLAKE_S) [00:08:05] [PASSED] 0xA789 (ALDERLAKE_S) [00:08:05] [PASSED] 0xA78A (ALDERLAKE_S) [00:08:05] [PASSED] 0xA78B (ALDERLAKE_S) [00:08:05] [PASSED] 0x4905 (DG1) [00:08:05] [PASSED] 0x4906 (DG1) [00:08:05] [PASSED] 0x4907 (DG1) [00:08:05] [PASSED] 0x4908 (DG1) [00:08:05] [PASSED] 0x4909 (DG1) [00:08:05] [PASSED] 0x56C0 (DG2) [00:08:05] [PASSED] 0x56C2 (DG2) [00:08:05] [PASSED] 0x56C1 (DG2) [00:08:05] [PASSED] 0x7D51 (METEORLAKE) [00:08:05] [PASSED] 0x7DD1 (METEORLAKE) [00:08:05] [PASSED] 0x7D41 (METEORLAKE) [00:08:05] [PASSED] 0x7D67 (METEORLAKE) [00:08:05] [PASSED] 0xB640 (METEORLAKE) [00:08:05] [PASSED] 0x56A0 (DG2) [00:08:05] [PASSED] 0x56A1 (DG2) [00:08:05] [PASSED] 0x56A2 (DG2) [00:08:05] [PASSED] 0x56BE (DG2) [00:08:05] [PASSED] 0x56BF (DG2) [00:08:05] [PASSED] 0x5690 (DG2) [00:08:05] [PASSED] 0x5691 (DG2) [00:08:05] [PASSED] 0x5692 (DG2) [00:08:05] [PASSED] 0x56A5 (DG2) [00:08:05] [PASSED] 0x56A6 (DG2) [00:08:05] [PASSED] 0x56B0 (DG2) [00:08:05] [PASSED] 0x56B1 (DG2) [00:08:05] [PASSED] 0x56BA (DG2) [00:08:05] [PASSED] 0x56BB (DG2) [00:08:05] [PASSED] 0x56BC (DG2) [00:08:05] [PASSED] 0x56BD (DG2) [00:08:05] [PASSED] 0x5693 (DG2) [00:08:05] [PASSED] 0x5694 (DG2) [00:08:05] [PASSED] 0x5695 (DG2) [00:08:05] [PASSED] 0x56A3 (DG2) [00:08:05] [PASSED] 0x56A4 (DG2) [00:08:05] [PASSED] 0x56B2 (DG2) [00:08:05] [PASSED] 0x56B3 (DG2) [00:08:05] [PASSED] 0x5696 (DG2) [00:08:05] [PASSED] 0x5697 (DG2) [00:08:05] [PASSED] 0xB69 (PVC) [00:08:05] [PASSED] 0xB6E (PVC) [00:08:05] [PASSED] 0xBD4 (PVC) [00:08:05] [PASSED] 0xBD5 (PVC) [00:08:05] [PASSED] 0xBD6 (PVC) [00:08:05] [PASSED] 0xBD7 (PVC) [00:08:05] [PASSED] 0xBD8 (PVC) [00:08:05] [PASSED] 0xBD9 (PVC) [00:08:05] [PASSED] 0xBDA (PVC) [00:08:05] [PASSED] 0xBDB (PVC) [00:08:05] [PASSED] 0xBE0 (PVC) [00:08:05] [PASSED] 0xBE1 (PVC) [00:08:05] [PASSED] 0xBE5 (PVC) [00:08:05] [PASSED] 0x7D40 (METEORLAKE) [00:08:05] [PASSED] 0x7D45 (METEORLAKE) [00:08:05] [PASSED] 0x7D55 (METEORLAKE) [00:08:05] [PASSED] 0x7D60 (METEORLAKE) [00:08:05] [PASSED] 0x7DD5 (METEORLAKE) [00:08:05] [PASSED] 0x6420 (LUNARLAKE) [00:08:05] [PASSED] 0x64A0 (LUNARLAKE) [00:08:05] [PASSED] 0x64B0 (LUNARLAKE) [00:08:05] [PASSED] 0xE202 (BATTLEMAGE) [00:08:05] [PASSED] 0xE209 (BATTLEMAGE) [00:08:05] [PASSED] 0xE20B (BATTLEMAGE) [00:08:05] [PASSED] 0xE20C (BATTLEMAGE) [00:08:05] [PASSED] 0xE20D (BATTLEMAGE) [00:08:05] [PASSED] 0xE210 (BATTLEMAGE) [00:08:05] [PASSED] 0xE211 (BATTLEMAGE) [00:08:05] [PASSED] 0xE212 (BATTLEMAGE) [00:08:05] [PASSED] 0xE216 (BATTLEMAGE) [00:08:05] [PASSED] 0xE220 (BATTLEMAGE) [00:08:05] [PASSED] 0xE221 (BATTLEMAGE) [00:08:05] [PASSED] 0xE222 (BATTLEMAGE) [00:08:05] [PASSED] 0xE223 (BATTLEMAGE) [00:08:05] [PASSED] 0xB080 (PANTHERLAKE) [00:08:05] [PASSED] 0xB081 (PANTHERLAKE) [00:08:05] [PASSED] 0xB082 (PANTHERLAKE) [00:08:05] [PASSED] 0xB083 (PANTHERLAKE) [00:08:05] [PASSED] 0xB084 (PANTHERLAKE) [00:08:05] [PASSED] 0xB085 (PANTHERLAKE) [00:08:05] [PASSED] 0xB086 (PANTHERLAKE) [00:08:05] [PASSED] 0xB087 (PANTHERLAKE) [00:08:05] [PASSED] 0xB08F (PANTHERLAKE) [00:08:05] [PASSED] 0xB090 (PANTHERLAKE) [00:08:05] [PASSED] 0xB0A0 (PANTHERLAKE) [00:08:05] [PASSED] 0xB0B0 (PANTHERLAKE) [00:08:05] [PASSED] 0xFD80 (PANTHERLAKE) [00:08:05] [PASSED] 0xFD81 (PANTHERLAKE) [00:08:05] [PASSED] 0xD740 (NOVALAKE_S) [00:08:05] [PASSED] 0xD741 (NOVALAKE_S) [00:08:05] [PASSED] 0xD742 (NOVALAKE_S) [00:08:05] [PASSED] 0xD743 (NOVALAKE_S) [00:08:05] [PASSED] 0xD745 (NOVALAKE_S) [00:08:05] [PASSED] 0xD74A (NOVALAKE_S) [00:08:05] [PASSED] 0xD74B (NOVALAKE_S) [00:08:05] [PASSED] 0x674C (CRESCENTISLAND) [00:08:05] [PASSED] 0x674D (CRESCENTISLAND) [00:08:05] [PASSED] 0x674E (CRESCENTISLAND) [00:08:05] [PASSED] 0x674F (CRESCENTISLAND) [00:08:05] [PASSED] 0x6750 (CRESCENTISLAND) [00:08:05] [PASSED] 0xD750 (NOVALAKE_P) [00:08:05] [PASSED] 0xD751 (NOVALAKE_P) [00:08:05] [PASSED] 0xD752 (NOVALAKE_P) [00:08:05] [PASSED] 0xD753 (NOVALAKE_P) [00:08:05] [PASSED] 0xD754 (NOVALAKE_P) [00:08:05] [PASSED] 0xD755 (NOVALAKE_P) [00:08:05] [PASSED] 0xD756 (NOVALAKE_P) [00:08:05] [PASSED] 0xD757 (NOVALAKE_P) [00:08:05] [PASSED] 0xD75F (NOVALAKE_P) [00:08:05] =============== [PASSED] check_platform_desc =============== [00:08:05] ===================== [PASSED] xe_pci ====================== [00:08:05] ============= xe_rtp_tables_test (5 subtests) ============== [00:08:05] ================== xe_rtp_table_gt_test =================== [00:08:05] [PASSED] gt_was/14011060649 [00:08:05] [PASSED] gt_was/14011059788 [00:08:05] [PASSED] gt_was/14015795083 [00:08:05] [PASSED] gt_was/16021867713 [00:08:05] [PASSED] gt_was/14019449301 [00:08:05] [PASSED] gt_was/16028005424 [00:08:05] [PASSED] gt_was/14026578760 [00:08:05] [PASSED] gt_was/1409420604 [00:08:05] [PASSED] gt_was/1408615072 [00:08:05] [PASSED] gt_was/22010523718 [00:08:05] [PASSED] gt_was/14011006942 [00:08:05] [PASSED] gt_was/14014830051 [00:08:05] [PASSED] gt_was/18018781329 [00:08:05] [PASSED] gt_was/1509235366 [00:08:05] [PASSED] gt_was/18018781329 [00:08:05] [PASSED] gt_was/16016694945 [00:08:05] [PASSED] gt_was/14018575942 [00:08:05] [PASSED] gt_was/22016670082 [00:08:05] [PASSED] gt_was/22016670082 [00:08:05] [PASSED] gt_was/14017421178 [00:08:05] [PASSED] gt_was/16025250150 [00:08:05] [PASSED] gt_was/14021871409 [00:08:05] [PASSED] gt_was/16021865536 [00:08:05] [PASSED] gt_was/14021486841 [00:08:05] [PASSED] gt_was/14025160223 [00:08:05] [PASSED] gt_was/14026144927, 16029437861, 14026127056 [00:08:05] [PASSED] gt_was/14025635424 [00:08:05] [PASSED] gt_was/16028005424 [00:08:05] ============== [PASSED] xe_rtp_table_gt_test =============== [00:08:05] ================== xe_rtp_table_gt_test =================== [00:08:05] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable [00:08:05] [PASSED] gt_tunings/Tuning: 32B Access Enable [00:08:05] [PASSED] gt_tunings/Tuning: L3 cache [00:08:05] [PASSED] gt_tunings/Tuning: L3 cache - media [00:08:05] [PASSED] gt_tunings/Tuning: Compression Overfetch [00:08:05] [PASSED] gt_tunings/Tuning: Compression Overfetch - media [00:08:05] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 [00:08:05] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media [00:08:05] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only [00:08:05] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media [00:08:05] [PASSED] gt_tunings/Tuning: Stateless compression control [00:08:05] [PASSED] gt_tunings/Tuning: Stateless compression control - media [00:08:05] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache [00:08:05] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media [00:08:05] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB [00:08:05] ============== [PASSED] xe_rtp_table_gt_test =============== [00:08:05] ================== xe_rtp_table_oob_test ================== [00:08:05] [PASSED] oob_was/1607983814 [00:08:05] [PASSED] oob_was/16010904313 [00:08:05] [PASSED] oob_was/18022495364 [00:08:05] [PASSED] oob_was/22012773006 [00:08:05] [PASSED] oob_was/14014475959 [00:08:05] [PASSED] oob_was/22011391025 [00:08:05] [PASSED] oob_was/22012727170 [00:08:05] [PASSED] oob_was/22012727685 [00:08:05] [PASSED] oob_was/22016596838 [00:08:05] [PASSED] oob_was/18020744125 [00:08:05] [PASSED] oob_was/1409600907 [00:08:05] [PASSED] oob_was/22014953428 [00:08:05] [PASSED] oob_was/16017236439 [00:08:05] [PASSED] oob_was/14019821291 [00:08:05] [PASSED] oob_was/14015076503 [00:08:05] [PASSED] oob_was/14018913170 [00:08:05] [PASSED] oob_was/14018094691 [00:08:05] [PASSED] oob_was/18024947630 [00:08:05] [PASSED] oob_was/16022287689 [00:08:05] [PASSED] oob_was/13011645652 [00:08:05] [PASSED] oob_was/14022293748 [00:08:05] [PASSED] oob_was/22019794406 [00:08:05] [PASSED] oob_was/22019338487 [00:08:05] [PASSED] oob_was/16023588340 [00:08:05] [PASSED] oob_was/14019789679 [00:08:05] [PASSED] oob_was/14022866841 [00:08:05] [PASSED] oob_was/16021333562 [00:08:05] [PASSED] oob_was/14016712196 [00:08:05] [PASSED] oob_was/14015568240 [00:08:05] [PASSED] oob_was/18013179988 [00:08:05] [PASSED] oob_was/1508761755 [00:08:05] [PASSED] oob_was/16023105232 [00:08:05] [PASSED] oob_was/16026508708 [00:08:05] [PASSED] oob_was/14020001231 [00:08:05] [PASSED] oob_was/16023683509 [00:08:05] [PASSED] oob_was/14025515070 [00:08:05] [PASSED] oob_was/15015404425_disable [00:08:05] [PASSED] oob_was/16026007364 [00:08:05] [PASSED] oob_was/14020316580 [00:08:05] [PASSED] oob_was/14025883347 [00:08:05] [PASSED] oob_was/16029380221 [00:08:05] [PASSED] oob_was/22022079272 [00:08:05] [PASSED] oob_was/16029897822 [00:08:05] [PASSED] oob_was/14027054324 [00:08:05] ============== [PASSED] xe_rtp_table_oob_test ============== [00:08:05] ================ xe_rtp_table_dev_oob_test ================ [00:08:05] [PASSED] device_oob_was/22010954014 [00:08:05] [PASSED] device_oob_was/15015404425 [00:08:05] [PASSED] device_oob_was/22019338487_display [00:08:05] [PASSED] device_oob_was/14022085890 [00:08:05] [PASSED] device_oob_was/14026539277 [00:08:05] [PASSED] device_oob_was/14026633728 [00:08:05] [PASSED] device_oob_was/14026746987 [00:08:05] [PASSED] device_oob_was/14026779378 [00:08:05] ============ [PASSED] xe_rtp_table_dev_oob_test ============ [00:08:05] ========== xe_rtp_table_missing_upper_bound_test ========== [00:08:05] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865 [00:08:05] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037 [00:08:05] [PASSED] register_whitelist/1806527549 [00:08:05] [PASSED] register_whitelist/allow_read_ctx_timestamp [00:08:05] [PASSED] register_whitelist/allow_read_queue_timestamp [00:08:05] [PASSED] register_whitelist/16014440446 [00:08:05] [PASSED] register_whitelist/16017236439 [00:08:05] [PASSED] register_whitelist/16020183090 [00:08:05] [PASSED] register_whitelist/14024997852 [00:08:05] [PASSED] register_whitelist/14024997852 [00:08:05] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ====== [00:08:05] =============== [PASSED] xe_rtp_tables_test ================ [00:08:05] =================== xe_rtp (3 subtests) ==================== [00:08:05] =================== xe_rtp_rules_tests ==================== [00:08:05] [PASSED] no [00:08:05] [PASSED] yes [00:08:05] [PASSED] no-and-no [00:08:05] [PASSED] no-and-yes [00:08:05] [PASSED] yes-and-no [00:08:05] [PASSED] yes-and-yes [00:08:05] [PASSED] no-or-no [00:08:05] [PASSED] no-or-yes [00:08:05] [PASSED] yes-or-no [00:08:05] [PASSED] yes-or-yes [00:08:05] [PASSED] no-yes-or-yes-no [00:08:05] [PASSED] no-yes-or-yes-yes [00:08:05] [PASSED] yes-yes-or-no-yes [00:08:05] [PASSED] yes-yes-or-yes-yes [00:08:05] [PASSED] no-no-or-yes-or-no [00:08:05] [PASSED] or [00:08:05] [PASSED] or-yes [00:08:05] [PASSED] or-no [00:08:05] [PASSED] yes-or [00:08:05] [PASSED] no-or [00:08:05] [PASSED] no-or-or-yes [00:08:05] [PASSED] yes-or-or-no [00:08:05] [PASSED] no-or-or-no [00:08:05] [PASSED] missing-context-engine-class [00:08:05] [PASSED] missing-context-engine-class-or-yes [00:08:05] [PASSED] missing-context-engine-class-or-or-yes [00:08:05] =============== [PASSED] xe_rtp_rules_tests ================ [00:08:05] =============== xe_rtp_process_to_sr_tests ================ [00:08:05] [PASSED] coalesce-same-reg [00:08:05] [PASSED] coalesce-same-reg-literal-and-func [00:08:05] [PASSED] no-match-no-add [00:08:05] [PASSED] two-regs-two-entries [00:08:05] [PASSED] clr-one-set-other [00:08:05] [PASSED] set-field [00:08:05] [PASSED] conflict-duplicate [00:08:05] [PASSED] conflict-not-disjoint [00:08:05] [PASSED] conflict-not-disjoint-literal-and-func [00:08:05] [PASSED] conflict-reg-type [00:08:05] [PASSED] bad-mcr-reg-forced-to-regular [00:08:05] [PASSED] bad-regular-reg-forced-to-mcr [00:08:05] =========== [PASSED] xe_rtp_process_to_sr_tests ============ [00:08:05] ================== xe_rtp_process_tests =================== [00:08:05] [PASSED] active1 [00:08:05] [PASSED] active2 [00:08:05] [PASSED] active-inactive [00:08:05] [PASSED] inactive-active [00:08:05] [PASSED] inactive-active-inactive [00:08:05] [PASSED] inactive-inactive-inactive [00:08:05] ============== [PASSED] xe_rtp_process_tests =============== [00:08:05] ===================== [PASSED] xe_rtp ====================== [00:08:05] ==================== xe_wa (1 subtest) ===================== [00:08:05] ======================== xe_wa_gt ========================= [00:08:05] [PASSED] TIGERLAKE B0 [00:08:05] [PASSED] DG1 A0 [00:08:05] [PASSED] DG1 B0 [00:08:05] [PASSED] ALDERLAKE_S A0 [00:08:05] [PASSED] ALDERLAKE_S B0 [00:08:05] [PASSED] ALDERLAKE_S C0 [00:08:05] [PASSED] ALDERLAKE_S D0 [00:08:05] [PASSED] ALDERLAKE_P A0 [00:08:05] [PASSED] ALDERLAKE_P B0 [00:08:05] [PASSED] ALDERLAKE_P C0 [00:08:05] [PASSED] ALDERLAKE_S RPLS D0 [00:08:05] [PASSED] ALDERLAKE_P RPLU E0 [00:08:05] [PASSED] DG2 G10 C0 [00:08:05] [PASSED] DG2 G11 B1 [00:08:05] [PASSED] DG2 G12 A1 [00:08:05] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0 [00:08:05] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0 [00:08:05] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0 [00:08:05] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0 [00:08:05] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0 [00:08:05] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1 [00:08:05] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0 [00:08:05] ==================== [PASSED] xe_wa_gt ===================== [00:08:05] ====================== [PASSED] xe_wa ====================== [00:08:05] ============================================================ [00:08:05] Testing complete. Ran 793 tests: passed: 765, skipped: 28 [00:08:05] Elapsed time: 36.650s total, 1.854s configuring, 34.079s building, 0.694s running + for kcfg in "${kunitconfigs[@]}" + [[ ! -f /kernel/drivers/gpu/drm/tests/.kunitconfig ]] + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig [00:08:05] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [00:08:07] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [00:08:32] Starting KUnit Kernel (1/1)... [00:08:32] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [00:08:32] ============= refcount_interrupt (4 subtests) ============== [00:08:32] [PASSED] test_single_irq_change [00:08:32] [PASSED] test_nested_irq_change [00:08:32] [PASSED] test_multiple_irq_change [00:08:32] [PASSED] test_irq_save [00:08:32] =============== [PASSED] refcount_interrupt ================ [00:08:32] ============ drm_test_pick_cmdline (2 subtests) ============ [00:08:32] [PASSED] drm_test_pick_cmdline_res_1920_1080_60 [00:08:32] =============== drm_test_pick_cmdline_named =============== [00:08:32] [PASSED] NTSC [00:08:32] [PASSED] NTSC-J [00:08:32] [PASSED] PAL [00:08:32] [PASSED] PAL-M [00:08:32] =========== [PASSED] drm_test_pick_cmdline_named =========== [00:08:32] ============== [PASSED] drm_test_pick_cmdline ============== [00:08:32] == drm_test_atomic_get_connector_for_encoder (1 subtest) === [00:08:32] [PASSED] drm_test_drm_atomic_get_connector_for_encoder [00:08:32] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ==== [00:08:32] =========== drm_validate_clone_mode (2 subtests) =========== [00:08:32] ============== drm_test_check_in_clone_mode =============== [00:08:32] [PASSED] in_clone_mode [00:08:32] [PASSED] not_in_clone_mode [00:08:32] ========== [PASSED] drm_test_check_in_clone_mode =========== [00:08:32] =============== drm_test_check_valid_clones =============== [00:08:32] [PASSED] not_in_clone_mode [00:08:32] [PASSED] valid_clone [00:08:32] [PASSED] invalid_clone [00:08:32] =========== [PASSED] drm_test_check_valid_clones =========== [00:08:32] ============= [PASSED] drm_validate_clone_mode ============= [00:08:32] ============= drm_validate_modeset (1 subtest) ============= [00:08:32] [PASSED] drm_test_check_connector_changed_modeset [00:08:32] ============== [PASSED] drm_validate_modeset =============== [00:08:32] ====== drm_test_bridge_get_current_state (1 subtest) ======= [00:08:32] [PASSED] drm_test_drm_bridge_get_current_state_atomic [00:08:32] ======== [PASSED] drm_test_bridge_get_current_state ======== [00:08:32] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ====== [00:08:32] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic [00:08:32] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled [00:08:32] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts [00:08:32] ======== [PASSED] drm_test_bridge_helper_reset_crtc ======== [00:08:32] ============== drm_bridge_alloc (2 subtests) =============== [00:08:32] [PASSED] drm_test_drm_bridge_alloc_basic [00:08:32] [PASSED] drm_test_drm_bridge_alloc_get_put [00:08:32] ================ [PASSED] drm_bridge_alloc ================= [00:08:32] ============= drm_bridge_bus_fmt (5 subtests) ============== [00:08:32] [PASSED] drm_test_bridge_rgb_yuv_rgb [00:08:32] [PASSED] drm_test_bridge_must_convert_to_yuv444 [00:08:32] [PASSED] drm_test_bridge_hdmi_auto_rgb [00:08:32] [PASSED] drm_test_bridge_auto_first [00:08:32] [PASSED] drm_test_bridge_rgb_yuv_no_path [00:08:32] =============== [PASSED] drm_bridge_bus_fmt ================ [00:08:32] ============= drm_cmdline_parser (40 subtests) ============= [00:08:32] [PASSED] drm_test_cmdline_force_d_only [00:08:32] [PASSED] drm_test_cmdline_force_D_only_dvi [00:08:32] [PASSED] drm_test_cmdline_force_D_only_hdmi [00:08:32] [PASSED] drm_test_cmdline_force_D_only_not_digital [00:08:32] [PASSED] drm_test_cmdline_force_e_only [00:08:32] [PASSED] drm_test_cmdline_res [00:08:32] [PASSED] drm_test_cmdline_res_vesa [00:08:32] [PASSED] drm_test_cmdline_res_vesa_rblank [00:08:32] [PASSED] drm_test_cmdline_res_rblank [00:08:32] [PASSED] drm_test_cmdline_res_bpp [00:08:32] [PASSED] drm_test_cmdline_res_refresh [00:08:32] [PASSED] drm_test_cmdline_res_bpp_refresh [00:08:32] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced [00:08:32] [PASSED] drm_test_cmdline_res_bpp_refresh_margins [00:08:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off [00:08:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on [00:08:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog [00:08:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital [00:08:32] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on [00:08:32] [PASSED] drm_test_cmdline_res_margins_force_on [00:08:32] [PASSED] drm_test_cmdline_res_vesa_margins [00:08:32] [PASSED] drm_test_cmdline_name [00:08:32] [PASSED] drm_test_cmdline_name_bpp [00:08:32] [PASSED] drm_test_cmdline_name_option [00:08:32] [PASSED] drm_test_cmdline_name_bpp_option [00:08:32] [PASSED] drm_test_cmdline_rotate_0 [00:08:32] [PASSED] drm_test_cmdline_rotate_90 [00:08:32] [PASSED] drm_test_cmdline_rotate_180 [00:08:32] [PASSED] drm_test_cmdline_rotate_270 [00:08:32] [PASSED] drm_test_cmdline_hmirror [00:08:32] [PASSED] drm_test_cmdline_vmirror [00:08:32] [PASSED] drm_test_cmdline_margin_options [00:08:32] [PASSED] drm_test_cmdline_multiple_options [00:08:32] [PASSED] drm_test_cmdline_bpp_extra_and_option [00:08:32] [PASSED] drm_test_cmdline_extra_and_option [00:08:32] [PASSED] drm_test_cmdline_freestanding_options [00:08:32] [PASSED] drm_test_cmdline_freestanding_force_e_and_options [00:08:32] [PASSED] drm_test_cmdline_panel_orientation [00:08:32] ================ drm_test_cmdline_invalid ================= [00:08:32] [PASSED] margin_only [00:08:32] [PASSED] interlace_only [00:08:32] [PASSED] res_missing_x [00:08:32] [PASSED] res_missing_y [00:08:32] [PASSED] res_bad_y [00:08:32] [PASSED] res_missing_y_bpp [00:08:32] [PASSED] res_bad_bpp [00:08:32] [PASSED] res_bad_refresh [00:08:32] [PASSED] res_bpp_refresh_force_on_off [00:08:32] [PASSED] res_invalid_mode [00:08:32] [PASSED] res_bpp_wrong_place_mode [00:08:32] [PASSED] name_bpp_refresh [00:08:32] [PASSED] name_refresh [00:08:32] [PASSED] name_refresh_wrong_mode [00:08:32] [PASSED] name_refresh_invalid_mode [00:08:32] [PASSED] rotate_multiple [00:08:32] [PASSED] rotate_invalid_val [00:08:32] [PASSED] rotate_truncated [00:08:32] [PASSED] invalid_option [00:08:32] [PASSED] invalid_tv_option [00:08:32] [PASSED] truncated_tv_option [00:08:32] ============ [PASSED] drm_test_cmdline_invalid ============= [00:08:32] =============== drm_test_cmdline_tv_options =============== [00:08:32] [PASSED] NTSC [00:08:32] [PASSED] NTSC_443 [00:08:32] [PASSED] NTSC_J [00:08:32] [PASSED] PAL [00:08:32] [PASSED] PAL_M [00:08:32] [PASSED] PAL_N [00:08:32] [PASSED] SECAM [00:08:32] [PASSED] MONO_525 [00:08:32] [PASSED] MONO_625 [00:08:32] =========== [PASSED] drm_test_cmdline_tv_options =========== [00:08:32] =============== [PASSED] drm_cmdline_parser ================ [00:08:32] ========== drmm_connector_hdmi_init (20 subtests) ========== [00:08:32] [PASSED] drm_test_connector_hdmi_init_valid [00:08:32] [PASSED] drm_test_connector_hdmi_init_bpc_8 [00:08:32] [PASSED] drm_test_connector_hdmi_init_bpc_10 [00:08:32] [PASSED] drm_test_connector_hdmi_init_bpc_12 [00:08:32] [PASSED] drm_test_connector_hdmi_init_bpc_invalid [00:08:32] [PASSED] drm_test_connector_hdmi_init_bpc_null [00:08:32] [PASSED] drm_test_connector_hdmi_init_formats_empty [00:08:32] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb [00:08:32] === drm_test_connector_hdmi_init_formats_yuv420_allowed === [00:08:32] [PASSED] supported_formats=0x9 yuv420_allowed=1 [00:08:32] [PASSED] supported_formats=0x9 yuv420_allowed=0 [00:08:32] [PASSED] supported_formats=0x5 yuv420_allowed=1 [00:08:32] [PASSED] supported_formats=0x5 yuv420_allowed=0 [00:08:32] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed === [00:08:32] [PASSED] drm_test_connector_hdmi_init_null_ddc [00:08:32] [PASSED] drm_test_connector_hdmi_init_null_product [00:08:32] [PASSED] drm_test_connector_hdmi_init_null_vendor [00:08:32] [PASSED] drm_test_connector_hdmi_init_product_length_exact [00:08:32] [PASSED] drm_test_connector_hdmi_init_product_length_too_long [00:08:32] [PASSED] drm_test_connector_hdmi_init_product_valid [00:08:32] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact [00:08:32] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long [00:08:32] [PASSED] drm_test_connector_hdmi_init_vendor_valid [00:08:32] ========= drm_test_connector_hdmi_init_type_valid ========= [00:08:32] [PASSED] HDMI-A [00:08:32] [PASSED] HDMI-B [00:08:32] ===== [PASSED] drm_test_connector_hdmi_init_type_valid ===== [00:08:32] ======== drm_test_connector_hdmi_init_type_invalid ======== [00:08:32] [PASSED] Unknown [00:08:32] [PASSED] VGA [00:08:32] [PASSED] DVI-I [00:08:32] [PASSED] DVI-D [00:08:32] [PASSED] DVI-A [00:08:32] [PASSED] Composite [00:08:32] [PASSED] SVIDEO [00:08:32] [PASSED] LVDS [00:08:32] [PASSED] Component [00:08:32] [PASSED] DIN [00:08:32] [PASSED] DP [00:08:32] [PASSED] TV [00:08:32] [PASSED] eDP [00:08:32] [PASSED] Virtual [00:08:32] [PASSED] DSI [00:08:32] [PASSED] DPI [00:08:32] [PASSED] Writeback [00:08:32] [PASSED] SPI [00:08:32] [PASSED] USB [00:08:32] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ==== [00:08:32] ============ [PASSED] drmm_connector_hdmi_init ============= [00:08:32] ============= drmm_connector_init (3 subtests) ============= [00:08:32] [PASSED] drm_test_drmm_connector_init [00:08:32] [PASSED] drm_test_drmm_connector_init_null_ddc [00:08:32] ========= drm_test_drmm_connector_init_type_valid ========= [00:08:32] [PASSED] Unknown [00:08:32] [PASSED] VGA [00:08:32] [PASSED] DVI-I [00:08:32] [PASSED] DVI-D [00:08:32] [PASSED] DVI-A [00:08:32] [PASSED] Composite [00:08:32] [PASSED] SVIDEO [00:08:32] [PASSED] LVDS [00:08:32] [PASSED] Component [00:08:32] [PASSED] DIN [00:08:32] [PASSED] DP [00:08:32] [PASSED] HDMI-A [00:08:32] [PASSED] HDMI-B [00:08:32] [PASSED] TV [00:08:32] [PASSED] eDP [00:08:32] [PASSED] Virtual [00:08:32] [PASSED] DSI [00:08:32] [PASSED] DPI [00:08:32] [PASSED] Writeback [00:08:32] [PASSED] SPI [00:08:32] [PASSED] USB [00:08:32] ===== [PASSED] drm_test_drmm_connector_init_type_valid ===== [00:08:32] =============== [PASSED] drmm_connector_init =============== [00:08:32] ========= drm_connector_dynamic_init (6 subtests) ========== [00:08:32] [PASSED] drm_test_drm_connector_dynamic_init [00:08:32] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc [00:08:32] [PASSED] drm_test_drm_connector_dynamic_init_not_added [00:08:32] [PASSED] drm_test_drm_connector_dynamic_init_properties [00:08:32] ===== drm_test_drm_connector_dynamic_init_type_valid ====== [00:08:32] [PASSED] Unknown [00:08:32] [PASSED] VGA [00:08:32] [PASSED] DVI-I [00:08:32] [PASSED] DVI-D [00:08:32] [PASSED] DVI-A [00:08:32] [PASSED] Composite [00:08:32] [PASSED] SVIDEO [00:08:32] [PASSED] LVDS [00:08:32] [PASSED] Component [00:08:32] [PASSED] DIN [00:08:32] [PASSED] DP [00:08:32] [PASSED] HDMI-A [00:08:32] [PASSED] HDMI-B [00:08:32] [PASSED] TV [00:08:32] [PASSED] eDP [00:08:32] [PASSED] Virtual [00:08:32] [PASSED] DSI [00:08:32] [PASSED] DPI [00:08:32] [PASSED] Writeback [00:08:32] [PASSED] SPI [00:08:32] [PASSED] USB [00:08:32] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid == [00:08:32] ======== drm_test_drm_connector_dynamic_init_name ========= [00:08:32] [PASSED] Unknown [00:08:32] [PASSED] VGA [00:08:32] [PASSED] DVI-I [00:08:32] [PASSED] DVI-D [00:08:32] [PASSED] DVI-A [00:08:32] [PASSED] Composite [00:08:32] [PASSED] SVIDEO [00:08:32] [PASSED] LVDS [00:08:32] [PASSED] Component [00:08:32] [PASSED] DIN [00:08:32] [PASSED] DP [00:08:32] [PASSED] HDMI-A [00:08:32] [PASSED] HDMI-B [00:08:32] [PASSED] TV [00:08:32] [PASSED] eDP [00:08:32] [PASSED] Virtual [00:08:32] [PASSED] DSI [00:08:32] [PASSED] DPI [00:08:32] [PASSED] Writeback [00:08:32] [PASSED] SPI [00:08:32] [PASSED] USB [00:08:32] ==== [PASSED] drm_test_drm_connector_dynamic_init_name ===== [00:08:32] =========== [PASSED] drm_connector_dynamic_init ============ [00:08:32] ==== drm_connector_dynamic_register_early (4 subtests) ===== [00:08:32] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list [00:08:32] [PASSED] drm_test_drm_connector_dynamic_register_early_defer [00:08:32] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init [00:08:32] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object [00:08:32] ====== [PASSED] drm_connector_dynamic_register_early ======= [00:08:32] ======= drm_connector_dynamic_register (7 subtests) ======== [00:08:32] [PASSED] drm_test_drm_connector_dynamic_register_on_list [00:08:32] [PASSED] drm_test_drm_connector_dynamic_register_no_defer [00:08:32] [PASSED] drm_test_drm_connector_dynamic_register_no_init [00:08:32] [PASSED] drm_test_drm_connector_dynamic_register_mode_object [00:08:32] [PASSED] drm_test_drm_connector_dynamic_register_sysfs [00:08:32] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name [00:08:32] [PASSED] drm_test_drm_connector_dynamic_register_debugfs [00:08:32] ========= [PASSED] drm_connector_dynamic_register ========== [00:08:32] = drm_connector_attach_broadcast_rgb_property (2 subtests) = [00:08:32] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property [00:08:32] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector [00:08:32] === [PASSED] drm_connector_attach_broadcast_rgb_property === [00:08:32] ========== drm_get_tv_mode_from_name (2 subtests) ========== [00:08:32] ========== drm_test_get_tv_mode_from_name_valid =========== [00:08:32] [PASSED] NTSC [00:08:32] [PASSED] NTSC-443 [00:08:32] [PASSED] NTSC-J [00:08:32] [PASSED] PAL [00:08:32] [PASSED] PAL-M [00:08:32] [PASSED] PAL-N [00:08:32] [PASSED] SECAM [00:08:32] [PASSED] Mono [00:08:32] ====== [PASSED] drm_test_get_tv_mode_from_name_valid ======= [00:08:32] [PASSED] drm_test_get_tv_mode_from_name_truncated [00:08:32] ============ [PASSED] drm_get_tv_mode_from_name ============ [00:08:32] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) = [00:08:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb [00:08:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc [00:08:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1 [00:08:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc [00:08:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1 [00:08:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double [00:08:32] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid = [00:08:32] [PASSED] VIC 96 [00:08:32] [PASSED] VIC 97 [00:08:32] [PASSED] VIC 101 [00:08:32] [PASSED] VIC 102 [00:08:32] [PASSED] VIC 106 [00:08:32] [PASSED] VIC 107 [00:08:32] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid === [00:08:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc [00:08:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc [00:08:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc [00:08:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc [00:08:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc [00:08:32] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ==== [00:08:32] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) == [00:08:32] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ==== [00:08:32] [PASSED] Automatic [00:08:32] [PASSED] Full [00:08:32] [PASSED] Limited 16:235 [00:08:32] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name === [00:08:32] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid [00:08:32] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ==== [00:08:32] == drm_hdmi_connector_get_output_format_name (2 subtests) == [00:08:32] === drm_test_drm_hdmi_connector_get_output_format_name ==== [00:08:32] [PASSED] RGB [00:08:32] [PASSED] YUV 4:2:0 [00:08:32] [PASSED] YUV 4:2:2 [00:08:32] [PASSED] YUV 4:4:4 [00:08:32] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name === [00:08:32] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid [00:08:32] ==== [PASSED] drm_hdmi_connector_get_output_format_name ==== [00:08:32] ============= drm_damage_helper (21 subtests) ============== [00:08:32] [PASSED] drm_test_damage_iter_no_damage [00:08:32] [PASSED] drm_test_damage_iter_no_damage_fractional_src [00:08:32] [PASSED] drm_test_damage_iter_no_damage_src_moved [00:08:32] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved [00:08:32] [PASSED] drm_test_damage_iter_no_damage_not_visible [00:08:32] [PASSED] drm_test_damage_iter_no_damage_no_crtc [00:08:32] [PASSED] drm_test_damage_iter_no_damage_no_fb [00:08:32] [PASSED] drm_test_damage_iter_simple_damage [00:08:32] [PASSED] drm_test_damage_iter_single_damage [00:08:32] [PASSED] drm_test_damage_iter_single_damage_intersect_src [00:08:32] [PASSED] drm_test_damage_iter_single_damage_outside_src [00:08:32] [PASSED] drm_test_damage_iter_single_damage_fractional_src [00:08:32] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src [00:08:32] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src [00:08:32] [PASSED] drm_test_damage_iter_single_damage_src_moved [00:08:32] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved [00:08:32] [PASSED] drm_test_damage_iter_damage [00:08:32] [PASSED] drm_test_damage_iter_damage_one_intersect [00:08:32] [PASSED] drm_test_damage_iter_damage_one_outside [00:08:32] [PASSED] drm_test_damage_iter_damage_src_moved [00:08:32] [PASSED] drm_test_damage_iter_damage_not_visible [00:08:32] ================ [PASSED] drm_damage_helper ================ [00:08:32] ============== drm_dp_mst_helper (3 subtests) ============== [00:08:32] ============== drm_test_dp_mst_calc_pbn_mode ============== [00:08:32] [PASSED] Clock 154000 BPP 30 DSC disabled [00:08:32] [PASSED] Clock 234000 BPP 30 DSC disabled [00:08:32] [PASSED] Clock 297000 BPP 24 DSC disabled [00:08:32] [PASSED] Clock 332880 BPP 24 DSC enabled [00:08:32] [PASSED] Clock 324540 BPP 24 DSC enabled [00:08:32] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ========== [00:08:32] ============== drm_test_dp_mst_calc_pbn_div =============== [00:08:32] [PASSED] Link rate 2000000 lane count 4 [00:08:32] [PASSED] Link rate 2000000 lane count 2 [00:08:32] [PASSED] Link rate 2000000 lane count 1 [00:08:32] [PASSED] Link rate 1350000 lane count 4 [00:08:32] [PASSED] Link rate 1350000 lane count 2 [00:08:32] [PASSED] Link rate 1350000 lane count 1 [00:08:32] [PASSED] Link rate 1000000 lane count 4 [00:08:32] [PASSED] Link rate 1000000 lane count 2 [00:08:32] [PASSED] Link rate 1000000 lane count 1 [00:08:32] [PASSED] Link rate 810000 lane count 4 [00:08:32] [PASSED] Link rate 810000 lane count 2 [00:08:32] [PASSED] Link rate 810000 lane count 1 [00:08:32] [PASSED] Link rate 540000 lane count 4 [00:08:32] [PASSED] Link rate 540000 lane count 2 [00:08:32] [PASSED] Link rate 540000 lane count 1 [00:08:32] [PASSED] Link rate 270000 lane count 4 [00:08:32] [PASSED] Link rate 270000 lane count 2 [00:08:32] [PASSED] Link rate 270000 lane count 1 [00:08:32] [PASSED] Link rate 162000 lane count 4 [00:08:32] [PASSED] Link rate 162000 lane count 2 [00:08:32] [PASSED] Link rate 162000 lane count 1 [00:08:32] ========== [PASSED] drm_test_dp_mst_calc_pbn_div =========== [00:08:32] ========= drm_test_dp_mst_sideband_msg_req_decode ========= [00:08:32] [PASSED] DP_ENUM_PATH_RESOURCES with port number [00:08:32] [PASSED] DP_POWER_UP_PHY with port number [00:08:32] [PASSED] DP_POWER_DOWN_PHY with port number [00:08:32] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks [00:08:32] [PASSED] DP_ALLOCATE_PAYLOAD with port number [00:08:32] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI [00:08:32] [PASSED] DP_ALLOCATE_PAYLOAD with PBN [00:08:32] [PASSED] DP_QUERY_PAYLOAD with port number [00:08:32] [PASSED] DP_QUERY_PAYLOAD with VCPI [00:08:32] [PASSED] DP_REMOTE_DPCD_READ with port number [00:08:32] [PASSED] DP_REMOTE_DPCD_READ with DPCD address [00:08:32] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes [00:08:32] [PASSED] DP_REMOTE_DPCD_WRITE with port number [00:08:32] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address [00:08:32] [PASSED] DP_REMOTE_DPCD_WRITE with data array [00:08:32] [PASSED] DP_REMOTE_I2C_READ with port number [00:08:32] [PASSED] DP_REMOTE_I2C_READ with I2C device ID [00:08:32] [PASSED] DP_REMOTE_I2C_READ with transactions array [00:08:32] [PASSED] DP_REMOTE_I2C_WRITE with port number [00:08:32] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID [00:08:32] [PASSED] DP_REMOTE_I2C_WRITE with data array [00:08:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID [00:08:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID [00:08:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event [00:08:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event [00:08:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior [00:08:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior [00:08:32] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode ===== [00:08:32] ================ [PASSED] drm_dp_mst_helper ================ [00:08:32] ================== drm_exec (7 subtests) =================== [00:08:32] [PASSED] sanitycheck [00:08:32] [PASSED] test_lock [00:08:32] [PASSED] test_lock_unlock [00:08:32] [PASSED] test_duplicates [00:08:32] [PASSED] test_prepare [00:08:32] [PASSED] test_prepare_array [00:08:32] [PASSED] test_multiple_loops [00:08:32] ==================== [PASSED] drm_exec ===================== [00:08:32] =========== drm_format_helper_test (17 subtests) =========== [00:08:32] ============== drm_test_fb_xrgb8888_to_gray8 ============== [00:08:32] [PASSED] single_pixel_source_buffer [00:08:32] [PASSED] single_pixel_clip_rectangle [00:08:32] [PASSED] well_known_colors [00:08:32] [PASSED] destination_pitch [00:08:32] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ========== [00:08:32] ============= drm_test_fb_xrgb8888_to_rgb332 ============== [00:08:32] [PASSED] single_pixel_source_buffer [00:08:32] [PASSED] single_pixel_clip_rectangle [00:08:32] [PASSED] well_known_colors [00:08:32] [PASSED] destination_pitch [00:08:32] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ========== [00:08:32] ============= drm_test_fb_xrgb8888_to_rgb565 ============== [00:08:32] [PASSED] single_pixel_source_buffer [00:08:32] [PASSED] single_pixel_clip_rectangle [00:08:32] [PASSED] well_known_colors [00:08:32] [PASSED] destination_pitch [00:08:32] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ========== [00:08:32] ============ drm_test_fb_xrgb8888_to_xrgb1555 ============= [00:08:32] [PASSED] single_pixel_source_buffer [00:08:32] [PASSED] single_pixel_clip_rectangle [00:08:32] [PASSED] well_known_colors [00:08:32] [PASSED] destination_pitch [00:08:32] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 ========= [00:08:32] ============ drm_test_fb_xrgb8888_to_argb1555 ============= [00:08:32] [PASSED] single_pixel_source_buffer [00:08:32] [PASSED] single_pixel_clip_rectangle [00:08:32] [PASSED] well_known_colors [00:08:32] [PASSED] destination_pitch [00:08:32] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 ========= [00:08:32] ============ drm_test_fb_xrgb8888_to_rgba5551 ============= [00:08:32] [PASSED] single_pixel_source_buffer [00:08:32] [PASSED] single_pixel_clip_rectangle [00:08:32] [PASSED] well_known_colors [00:08:32] [PASSED] destination_pitch [00:08:32] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 ========= [00:08:32] ============= drm_test_fb_xrgb8888_to_rgb888 ============== [00:08:32] [PASSED] single_pixel_source_buffer [00:08:32] [PASSED] single_pixel_clip_rectangle [00:08:32] [PASSED] well_known_colors [00:08:32] [PASSED] destination_pitch [00:08:32] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ========== [00:08:32] ============= drm_test_fb_xrgb8888_to_bgr888 ============== [00:08:32] [PASSED] single_pixel_source_buffer [00:08:32] [PASSED] single_pixel_clip_rectangle [00:08:32] [PASSED] well_known_colors [00:08:32] [PASSED] destination_pitch [00:08:32] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ========== [00:08:32] ============ drm_test_fb_xrgb8888_to_argb8888 ============= [00:08:32] [PASSED] single_pixel_source_buffer [00:08:32] [PASSED] single_pixel_clip_rectangle [00:08:32] [PASSED] well_known_colors [00:08:32] [PASSED] destination_pitch [00:08:32] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 ========= [00:08:32] =========== drm_test_fb_xrgb8888_to_xrgb2101010 =========== [00:08:32] [PASSED] single_pixel_source_buffer [00:08:32] [PASSED] single_pixel_clip_rectangle [00:08:32] [PASSED] well_known_colors [00:08:32] [PASSED] destination_pitch [00:08:32] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 ======= [00:08:32] =========== drm_test_fb_xrgb8888_to_argb2101010 =========== [00:08:32] [PASSED] single_pixel_source_buffer [00:08:32] [PASSED] single_pixel_clip_rectangle [00:08:32] [PASSED] well_known_colors [00:08:32] [PASSED] destination_pitch [00:08:32] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 ======= [00:08:32] ============== drm_test_fb_xrgb8888_to_mono =============== [00:08:32] [PASSED] single_pixel_source_buffer [00:08:32] [PASSED] single_pixel_clip_rectangle [00:08:32] [PASSED] well_known_colors [00:08:32] [PASSED] destination_pitch [00:08:32] ========== [PASSED] drm_test_fb_xrgb8888_to_mono =========== [00:08:32] ==================== drm_test_fb_swab ===================== [00:08:32] [PASSED] single_pixel_source_buffer [00:08:32] [PASSED] single_pixel_clip_rectangle [00:08:32] [PASSED] well_known_colors [00:08:32] [PASSED] destination_pitch [00:08:32] ================ [PASSED] drm_test_fb_swab ================= [00:08:32] ============ drm_test_fb_xrgb8888_to_xbgr8888 ============= [00:08:32] [PASSED] single_pixel_source_buffer [00:08:32] [PASSED] single_pixel_clip_rectangle [00:08:32] [PASSED] well_known_colors [00:08:32] [PASSED] destination_pitch [00:08:32] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 ========= [00:08:32] ============ drm_test_fb_xrgb8888_to_abgr8888 ============= [00:08:32] [PASSED] single_pixel_source_buffer [00:08:32] [PASSED] single_pixel_clip_rectangle [00:08:32] [PASSED] well_known_colors [00:08:32] [PASSED] destination_pitch [00:08:32] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 ========= [00:08:32] ================= drm_test_fb_clip_offset ================= [00:08:32] [PASSED] pass through [00:08:32] [PASSED] horizontal offset [00:08:32] [PASSED] vertical offset [00:08:32] [PASSED] horizontal and vertical offset [00:08:32] [PASSED] horizontal offset (custom pitch) [00:08:32] [PASSED] vertical offset (custom pitch) [00:08:32] [PASSED] horizontal and vertical offset (custom pitch) [00:08:32] ============= [PASSED] drm_test_fb_clip_offset ============= [00:08:32] =================== drm_test_fb_memcpy ==================== [00:08:32] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258) [00:08:32] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258) [00:08:32] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559) [00:08:32] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258) [00:08:32] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258) [00:08:32] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559) [00:08:32] [PASSED] well_known_colors: XB24 little-endian (0x34324258) [00:08:32] [PASSED] well_known_colors: XRA8 little-endian (0x38415258) [00:08:32] [PASSED] well_known_colors: YU24 little-endian (0x34325559) [00:08:32] [PASSED] destination_pitch: XB24 little-endian (0x34324258) [00:08:32] [PASSED] destination_pitch: XRA8 little-endian (0x38415258) [00:08:32] [PASSED] destination_pitch: YU24 little-endian (0x34325559) [00:08:32] =============== [PASSED] drm_test_fb_memcpy ================ [00:08:32] ============= [PASSED] drm_format_helper_test ============== [00:08:32] ================= drm_format (18 subtests) ================= [00:08:32] [PASSED] drm_test_format_block_width_invalid [00:08:32] [PASSED] drm_test_format_block_width_one_plane [00:08:32] [PASSED] drm_test_format_block_width_two_plane [00:08:32] [PASSED] drm_test_format_block_width_three_plane [00:08:32] [PASSED] drm_test_format_block_width_tiled [00:08:32] [PASSED] drm_test_format_block_height_invalid [00:08:32] [PASSED] drm_test_format_block_height_one_plane [00:08:32] [PASSED] drm_test_format_block_height_two_plane [00:08:32] [PASSED] drm_test_format_block_height_three_plane [00:08:32] [PASSED] drm_test_format_block_height_tiled [00:08:32] [PASSED] drm_test_format_min_pitch_invalid [00:08:32] [PASSED] drm_test_format_min_pitch_one_plane_8bpp [00:08:32] [PASSED] drm_test_format_min_pitch_one_plane_16bpp [00:08:32] [PASSED] drm_test_format_min_pitch_one_plane_24bpp [00:08:32] [PASSED] drm_test_format_min_pitch_one_plane_32bpp [00:08:32] [PASSED] drm_test_format_min_pitch_two_plane [00:08:32] [PASSED] drm_test_format_min_pitch_three_plane_8bpp [00:08:32] [PASSED] drm_test_format_min_pitch_tiled [00:08:32] =================== [PASSED] drm_format ==================== [00:08:32] ============== drm_framebuffer (10 subtests) =============== [00:08:32] ========== drm_test_framebuffer_check_src_coords ========== [00:08:32] [PASSED] Success: source fits into fb [00:08:32] [PASSED] Fail: overflowing fb with x-axis coordinate [00:08:32] [PASSED] Fail: overflowing fb with y-axis coordinate [00:08:32] [PASSED] Fail: overflowing fb with source width [00:08:32] [PASSED] Fail: overflowing fb with source height [00:08:32] ====== [PASSED] drm_test_framebuffer_check_src_coords ====== [00:08:32] [PASSED] drm_test_framebuffer_cleanup [00:08:32] =============== drm_test_framebuffer_create =============== [00:08:32] [PASSED] ABGR8888 normal sizes [00:08:32] [PASSED] ABGR8888 max sizes [00:08:32] [PASSED] ABGR8888 pitch greater than min required [00:08:32] [PASSED] ABGR8888 pitch less than min required [00:08:32] [PASSED] ABGR8888 Invalid width [00:08:32] [PASSED] ABGR8888 Invalid buffer handle [00:08:32] [PASSED] No pixel format [00:08:32] [PASSED] ABGR8888 Width 0 [00:08:32] [PASSED] ABGR8888 Height 0 [00:08:32] [PASSED] ABGR8888 Out of bound height * pitch combination [00:08:32] [PASSED] ABGR8888 Large buffer offset [00:08:32] [PASSED] ABGR8888 Buffer offset for inexistent plane [00:08:32] [PASSED] ABGR8888 Invalid flag [00:08:32] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers [00:08:32] [PASSED] ABGR8888 Valid buffer modifier [00:08:32] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE) [00:08:32] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS [00:08:32] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS [00:08:32] [PASSED] NV12 Normal sizes [00:08:32] [PASSED] NV12 Max sizes [00:08:32] [PASSED] NV12 Invalid pitch [00:08:32] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag [00:08:32] [PASSED] NV12 different modifier per-plane [00:08:32] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE [00:08:32] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS [00:08:32] [PASSED] NV12 Modifier for inexistent plane [00:08:32] [PASSED] NV12 Handle for inexistent plane [00:08:32] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS [00:08:32] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier [00:08:32] [PASSED] YVU420 Normal sizes [00:08:32] [PASSED] YVU420 Max sizes [00:08:32] [PASSED] YVU420 Invalid pitch [00:08:32] [PASSED] YVU420 Different pitches [00:08:32] [PASSED] YVU420 Different buffer offsets/pitches [00:08:32] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS [00:08:32] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS [00:08:32] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS [00:08:32] [PASSED] YVU420 Valid modifier [00:08:32] [PASSED] YVU420 Different modifiers per plane [00:08:32] [PASSED] YVU420 Modifier for inexistent plane [00:08:32] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR) [00:08:32] [PASSED] X0L2 Normal sizes [00:08:32] [PASSED] X0L2 Max sizes [00:08:32] [PASSED] X0L2 Invalid pitch [00:08:32] [PASSED] X0L2 Pitch greater than minimum required [00:08:32] [PASSED] X0L2 Handle for inexistent plane [00:08:32] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set [00:08:32] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set [00:08:32] [PASSED] X0L2 Valid modifier [00:08:32] [PASSED] X0L2 Modifier for inexistent plane [00:08:32] =========== [PASSED] drm_test_framebuffer_create =========== [00:08:32] [PASSED] drm_test_framebuffer_free [00:08:32] [PASSED] drm_test_framebuffer_init [00:08:32] [PASSED] drm_test_framebuffer_init_bad_format [00:08:32] [PASSED] drm_test_framebuffer_init_dev_mismatch [00:08:32] [PASSED] drm_test_framebuffer_lookup [00:08:32] [PASSED] drm_test_framebuffer_lookup_inexistent [00:08:32] [PASSED] drm_test_framebuffer_modifiers_not_supported [00:08:32] ================= [PASSED] drm_framebuffer ================= [00:08:32] ================ drm_gem_shmem (8 subtests) ================ [00:08:32] [PASSED] drm_gem_shmem_test_obj_create [00:08:32] [PASSED] drm_gem_shmem_test_obj_create_private [00:08:32] [PASSED] drm_gem_shmem_test_pin_pages [00:08:32] [PASSED] drm_gem_shmem_test_vmap [00:08:32] [PASSED] drm_gem_shmem_test_get_sg_table [00:08:32] [PASSED] drm_gem_shmem_test_get_pages_sgt [00:08:32] [PASSED] drm_gem_shmem_test_madvise [00:08:32] [PASSED] drm_gem_shmem_test_purge [00:08:32] ================== [PASSED] drm_gem_shmem ================== [00:08:32] === drm_atomic_helper_connector_hdmi_check (29 subtests) === [00:08:32] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode [00:08:32] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1 [00:08:32] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode [00:08:32] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1 [00:08:32] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode [00:08:32] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1 [00:08:32] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 ======= [00:08:32] [PASSED] Automatic [00:08:32] [PASSED] Full [00:08:32] [PASSED] Limited 16:235 [00:08:32] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 === [00:08:32] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed [00:08:32] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed [00:08:32] [PASSED] drm_test_check_disable_connector [00:08:32] [PASSED] drm_test_check_hdmi_funcs_reject_rate [00:08:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb [00:08:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420 [00:08:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422 [00:08:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420 [00:08:32] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420 [00:08:32] [PASSED] drm_test_check_output_bpc_crtc_mode_changed [00:08:32] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed [00:08:32] [PASSED] drm_test_check_output_bpc_dvi [00:08:32] [PASSED] drm_test_check_output_bpc_format_vic_1 [00:08:32] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only [00:08:32] [PASSED] drm_test_check_output_bpc_format_display_rgb_only [00:08:32] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only [00:08:32] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only [00:08:32] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc [00:08:32] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc [00:08:32] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc [00:08:32] ============ drm_test_check_hdmi_color_format ============= [00:08:32] [PASSED] AUTO -> RGB [00:08:32] [PASSED] YCBCR422 -> YUV422 [00:08:32] [PASSED] YCBCR420 -> YUV420 [00:08:32] [PASSED] YCBCR444 -> YUV444 [00:08:32] [PASSED] RGB -> RGB [00:08:32] ======== [PASSED] drm_test_check_hdmi_color_format ========= [00:08:32] ======== drm_test_check_hdmi_color_format_420_only ======== [00:08:32] [PASSED] RGB should fail [00:08:32] [PASSED] YUV444 should fail [00:08:32] [PASSED] YUV422 should fail [00:08:32] [PASSED] YUV420 should work [00:08:32] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ==== [00:08:32] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ====== [00:08:32] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ==== [00:08:32] [PASSED] drm_test_check_broadcast_rgb_value [00:08:32] [PASSED] drm_test_check_bpc_8_value [00:08:32] [PASSED] drm_test_check_bpc_10_value [00:08:32] [PASSED] drm_test_check_bpc_12_value [00:08:32] [PASSED] drm_test_check_format_value [00:08:32] [PASSED] drm_test_check_tmds_char_value [00:08:32] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ====== [00:08:32] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) = [00:08:32] [PASSED] drm_test_check_mode_valid [00:08:32] [PASSED] drm_test_check_mode_valid_reject [00:08:32] [PASSED] drm_test_check_mode_valid_reject_rate [00:08:32] [PASSED] drm_test_check_mode_valid_reject_max_clock [00:08:32] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock [00:08:32] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector [00:08:32] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb [00:08:32] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid === [00:08:32] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) = [00:08:32] [PASSED] drm_test_check_infoframes [00:08:32] [PASSED] drm_test_check_reject_avi_infoframe [00:08:32] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8 [00:08:32] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10 [00:08:32] [PASSED] drm_test_check_reject_audio_infoframe [00:08:32] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes === [00:08:32] ================= drm_managed (2 subtests) ================= [00:08:32] [PASSED] drm_test_managed_release_action [00:08:32] [PASSED] drm_test_managed_run_action [00:08:32] =================== [PASSED] drm_managed =================== [00:08:32] =================== drm_mm (6 subtests) ==================== [00:08:32] [PASSED] drm_test_mm_init [00:08:32] [PASSED] drm_test_mm_debug [00:08:32] [PASSED] drm_test_mm_align32 [00:08:32] [PASSED] drm_test_mm_align64 [00:08:32] [PASSED] drm_test_mm_lowest [00:08:32] [PASSED] drm_test_mm_highest [00:08:32] ===================== [PASSED] drm_mm ====================== [00:08:32] ============= drm_modes_analog_tv (5 subtests) ============= [00:08:32] [PASSED] drm_test_modes_analog_tv_mono_576i [00:08:32] [PASSED] drm_test_modes_analog_tv_ntsc_480i [00:08:32] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined [00:08:32] [PASSED] drm_test_modes_analog_tv_pal_576i [00:08:32] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined [00:08:32] =============== [PASSED] drm_modes_analog_tv =============== [00:08:32] ============== drm_plane_helper (2 subtests) =============== [00:08:32] =============== drm_test_check_plane_state ================ [00:08:32] [PASSED] clipping_simple [00:08:32] [PASSED] clipping_rotate_reflect [00:08:32] [PASSED] positioning_simple [00:08:32] [PASSED] upscaling [00:08:32] [PASSED] downscaling [00:08:32] [PASSED] rounding1 [00:08:32] [PASSED] rounding2 [00:08:32] [PASSED] rounding3 [00:08:32] [PASSED] rounding4 [00:08:32] =========== [PASSED] drm_test_check_plane_state ============ [00:08:32] =========== drm_test_check_invalid_plane_state ============ [00:08:32] [PASSED] positioning_invalid [00:08:32] [PASSED] upscaling_invalid [00:08:32] [PASSED] downscaling_invalid [00:08:32] ======= [PASSED] drm_test_check_invalid_plane_state ======== [00:08:32] ================ [PASSED] drm_plane_helper ================= [00:08:32] ====== drm_connector_helper_tv_get_modes (1 subtest) ======= [00:08:32] ====== drm_test_connector_helper_tv_get_modes_check ======= [00:08:32] [PASSED] None [00:08:32] [PASSED] PAL [00:08:32] [PASSED] NTSC [00:08:32] [PASSED] Both, NTSC Default [00:08:32] [PASSED] Both, PAL Default [00:08:32] [PASSED] Both, NTSC Default, with PAL on command-line [00:08:32] [PASSED] Both, PAL Default, with NTSC on command-line [00:08:32] == [PASSED] drm_test_connector_helper_tv_get_modes_check === [00:08:32] ======== [PASSED] drm_connector_helper_tv_get_modes ======== [00:08:32] ================== drm_rect (9 subtests) =================== [00:08:32] [PASSED] drm_test_rect_clip_scaled_div_by_zero [00:08:32] [PASSED] drm_test_rect_clip_scaled_not_clipped [00:08:32] [PASSED] drm_test_rect_clip_scaled_clipped [00:08:32] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned [00:08:32] ================= drm_test_rect_intersect ================= [00:08:32] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0 [00:08:32] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1 [00:08:32] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0 [00:08:32] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1 [00:08:32] [PASSED] right x left: 2x1+0+0 x 3x1+1+0 [00:08:32] [PASSED] left x right: 3x1+1+0 x 2x1+0+0 [00:08:32] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1 [00:08:32] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0 [00:08:32] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1 [00:08:32] [PASSED] touching side: 1x1+0+0 x 1x1+1+0 [00:08:32] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0 [00:08:32] [PASSED] inside another: 2x2+0+0 x 1x1+1+1 [00:08:32] [PASSED] far away: 1x1+0+0 x 1x1+3+6 [00:08:32] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10 [00:08:32] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10 [00:08:32] ============= [PASSED] drm_test_rect_intersect ============= [00:08:32] ================ drm_test_rect_calc_hscale ================ [00:08:32] [PASSED] normal use [00:08:32] [PASSED] out of max range [00:08:32] [PASSED] out of min range [00:08:32] [PASSED] zero dst [00:08:32] [PASSED] negative src [00:08:32] [PASSED] negative dst [00:08:32] ============ [PASSED] drm_test_rect_calc_hscale ============ [00:08:32] ================ drm_test_rect_calc_vscale ================ [00:08:32] [PASSED] normal use [00:08:32] [PASSED] out of max range [00:08:32] [PASSED] out of min range [00:08:32] [PASSED] zero dst [00:08:32] [PASSED] negative src [00:08:32] [PASSED] negative dst [00:08:32] ============ [PASSED] drm_test_rect_calc_vscale ============ [00:08:32] ================== drm_test_rect_rotate =================== [00:08:32] [PASSED] reflect-x [00:08:32] [PASSED] reflect-y [00:08:32] [PASSED] rotate-0 [00:08:32] [PASSED] rotate-90 [00:08:32] [PASSED] rotate-180 [00:08:32] [PASSED] rotate-270 [00:08:32] ============== [PASSED] drm_test_rect_rotate =============== [00:08:32] ================ drm_test_rect_rotate_inv ================= [00:08:32] [PASSED] reflect-x [00:08:32] [PASSED] reflect-y [00:08:32] [PASSED] rotate-0 [00:08:32] [PASSED] rotate-90 [00:08:32] [PASSED] rotate-180 [00:08:32] [PASSED] rotate-270 [00:08:32] ============ [PASSED] drm_test_rect_rotate_inv ============= [00:08:32] ==================== [PASSED] drm_rect ===================== [00:08:32] ============ drm_sysfb_modeset_test (1 subtest) ============ [00:08:32] ============ drm_test_sysfb_build_fourcc_list ============= [00:08:32] [PASSED] no native formats [00:08:32] [PASSED] XRGB8888 as native format [00:08:32] [PASSED] remove duplicates [00:08:32] [PASSED] convert alpha formats [00:08:32] [PASSED] random formats [00:08:32] ======== [PASSED] drm_test_sysfb_build_fourcc_list ========= [00:08:32] ============= [PASSED] drm_sysfb_modeset_test ============== [00:08:32] ================== drm_fixp (2 subtests) =================== [00:08:32] [PASSED] drm_test_int2fixp [00:08:32] [PASSED] drm_test_sm2fixp [00:08:32] ==================== [PASSED] drm_fixp ===================== [00:08:32] ============================================================ [00:08:32] Testing complete. Ran 641 tests: passed: 641 [00:08:32] Elapsed time: 27.287s total, 1.825s configuring, 25.295s building, 0.146s running + for kcfg in "${kunitconfigs[@]}" + [[ ! -f /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig ]] + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig [00:08:33] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [00:08:34] 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 [00:08:45] Starting KUnit Kernel (1/1)... [00:08:45] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [00:08:45] ============= refcount_interrupt (4 subtests) ============== [00:08:45] [PASSED] test_single_irq_change [00:08:45] [PASSED] test_nested_irq_change [00:08:45] [PASSED] test_multiple_irq_change [00:08:45] [PASSED] test_irq_save [00:08:45] =============== [PASSED] refcount_interrupt ================ [00:08:45] ================= ttm_device (5 subtests) ================== [00:08:45] [PASSED] ttm_device_init_basic [00:08:45] [PASSED] ttm_device_init_multiple [00:08:45] [PASSED] ttm_device_fini_basic [00:08:45] [PASSED] ttm_device_init_no_vma_man [00:08:45] ================== ttm_device_init_pools ================== [00:08:45] [PASSED] No DMA allocations, no DMA32 required [00:08:45] [PASSED] DMA allocations, DMA32 required [00:08:45] [PASSED] No DMA allocations, DMA32 required [00:08:45] [PASSED] DMA allocations, no DMA32 required [00:08:45] ============== [PASSED] ttm_device_init_pools ============== [00:08:45] =================== [PASSED] ttm_device ==================== [00:08:45] ================== ttm_pool (8 subtests) =================== [00:08:45] ================== ttm_pool_alloc_basic =================== [00:08:45] [PASSED] One page [00:08:45] [PASSED] More than one page [00:08:45] [PASSED] Above the allocation limit [00:08:45] [PASSED] One page, with coherent DMA mappings enabled [00:08:45] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [00:08:45] ============== [PASSED] ttm_pool_alloc_basic =============== [00:08:45] ============== ttm_pool_alloc_basic_dma_addr ============== [00:08:45] [PASSED] One page [00:08:45] [PASSED] More than one page [00:08:45] [PASSED] Above the allocation limit [00:08:45] [PASSED] One page, with coherent DMA mappings enabled [00:08:45] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [00:08:45] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ========== [00:08:45] [PASSED] ttm_pool_alloc_order_caching_match [00:08:45] [PASSED] ttm_pool_alloc_caching_mismatch [00:08:45] [PASSED] ttm_pool_alloc_order_mismatch [00:08:45] [PASSED] ttm_pool_free_dma_alloc [00:08:45] [PASSED] ttm_pool_free_no_dma_alloc [00:08:45] [PASSED] ttm_pool_fini_basic [00:08:45] ==================== [PASSED] ttm_pool ===================== [00:08:45] ================ ttm_resource (8 subtests) ================= [00:08:45] ================= ttm_resource_init_basic ================= [00:08:45] [PASSED] Init resource in TTM_PL_SYSTEM [00:08:45] [PASSED] Init resource in TTM_PL_VRAM [00:08:45] [PASSED] Init resource in a private placement [00:08:45] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags [00:08:45] ============= [PASSED] ttm_resource_init_basic ============= [00:08:45] [PASSED] ttm_resource_init_pinned [00:08:45] [PASSED] ttm_resource_fini_basic [00:08:45] [PASSED] ttm_resource_manager_init_basic [00:08:45] [PASSED] ttm_resource_manager_usage_basic [00:08:45] [PASSED] ttm_resource_manager_set_used_basic [00:08:45] [PASSED] ttm_sys_man_alloc_basic [00:08:45] [PASSED] ttm_sys_man_free_basic [00:08:45] ================== [PASSED] ttm_resource =================== [00:08:45] =================== ttm_tt (15 subtests) =================== [00:08:45] ==================== ttm_tt_init_basic ==================== [00:08:45] [PASSED] Page-aligned size [00:08:45] [PASSED] Extra pages requested [00:08:45] ================ [PASSED] ttm_tt_init_basic ================ [00:08:45] [PASSED] ttm_tt_init_misaligned [00:08:45] [PASSED] ttm_tt_fini_basic [00:08:45] [PASSED] ttm_tt_fini_sg [00:08:45] [PASSED] ttm_tt_fini_shmem [00:08:45] [PASSED] ttm_tt_create_basic [00:08:45] [PASSED] ttm_tt_create_invalid_bo_type [00:08:45] [PASSED] ttm_tt_create_ttm_exists [00:08:45] [PASSED] ttm_tt_create_failed [00:08:45] [PASSED] ttm_tt_destroy_basic [00:08:45] [PASSED] ttm_tt_populate_null_ttm [00:08:45] [PASSED] ttm_tt_populate_populated_ttm [00:08:45] [PASSED] ttm_tt_unpopulate_basic [00:08:45] [PASSED] ttm_tt_unpopulate_empty_ttm [00:08:45] [PASSED] ttm_tt_swapin_basic [00:08:45] ===================== [PASSED] ttm_tt ====================== [00:08:45] =================== ttm_bo (14 subtests) =================== [00:08:45] =========== ttm_bo_reserve_optimistic_no_ticket =========== [00:08:45] [PASSED] Cannot be interrupted and sleeps [00:08:45] [PASSED] Cannot be interrupted, locks straight away [00:08:45] [PASSED] Can be interrupted, sleeps [00:08:45] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket ======= [00:08:45] [PASSED] ttm_bo_reserve_locked_no_sleep [00:08:45] [PASSED] ttm_bo_reserve_no_wait_ticket [00:08:45] [PASSED] ttm_bo_reserve_double_resv [00:08:45] [PASSED] ttm_bo_reserve_interrupted [00:08:45] [PASSED] ttm_bo_reserve_deadlock [00:08:45] [PASSED] ttm_bo_unreserve_basic [00:08:45] [PASSED] ttm_bo_unreserve_pinned [00:08:45] [PASSED] ttm_bo_unreserve_bulk [00:08:45] [PASSED] ttm_bo_fini_basic [00:08:45] [PASSED] ttm_bo_fini_shared_resv [00:08:45] [PASSED] ttm_bo_pin_basic [00:08:45] [PASSED] ttm_bo_pin_unpin_resource [00:08:45] [PASSED] ttm_bo_multiple_pin_one_unpin [00:08:45] ===================== [PASSED] ttm_bo ====================== [00:08:45] ============== ttm_bo_validate (22 subtests) =============== [00:08:45] ============== ttm_bo_init_reserved_sys_man =============== [00:08:45] [PASSED] Buffer object for userspace [00:08:45] [PASSED] Kernel buffer object [00:08:45] [PASSED] Shared buffer object [00:08:45] ========== [PASSED] ttm_bo_init_reserved_sys_man =========== [00:08:45] ============== ttm_bo_init_reserved_mock_man ============== [00:08:45] [PASSED] Buffer object for userspace [00:08:45] [PASSED] Kernel buffer object [00:08:45] [PASSED] Shared buffer object [00:08:45] ========== [PASSED] ttm_bo_init_reserved_mock_man ========== [00:08:45] [PASSED] ttm_bo_init_reserved_resv [00:08:45] ================== ttm_bo_validate_basic ================== [00:08:45] [PASSED] Buffer object for userspace [00:08:45] [PASSED] Kernel buffer object [00:08:45] [PASSED] Shared buffer object [00:08:45] ============== [PASSED] ttm_bo_validate_basic ============== [00:08:45] [PASSED] ttm_bo_validate_invalid_placement [00:08:45] ============= ttm_bo_validate_same_placement ============== [00:08:45] [PASSED] System manager [00:08:45] [PASSED] VRAM manager [00:08:45] ========= [PASSED] ttm_bo_validate_same_placement ========== [00:08:45] [PASSED] ttm_bo_validate_failed_alloc [00:08:45] [PASSED] ttm_bo_validate_pinned [00:08:45] [PASSED] ttm_bo_validate_busy_placement [00:08:45] ================ ttm_bo_validate_multihop ================= [00:08:45] [PASSED] Buffer object for userspace [00:08:45] [PASSED] Kernel buffer object [00:08:45] [PASSED] Shared buffer object [00:08:45] ============ [PASSED] ttm_bo_validate_multihop ============= [00:08:45] ========== ttm_bo_validate_no_placement_signaled ========== [00:08:45] [PASSED] Buffer object in system domain, no page vector [00:08:45] [PASSED] Buffer object in system domain with an existing page vector [00:08:45] ====== [PASSED] ttm_bo_validate_no_placement_signaled ====== [00:08:45] ======== ttm_bo_validate_no_placement_not_signaled ======== [00:08:45] [PASSED] Buffer object for userspace [00:08:45] [PASSED] Kernel buffer object [00:08:45] [PASSED] Shared buffer object [00:08:45] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ==== [00:08:45] [PASSED] ttm_bo_validate_move_fence_signaled [00:08:45] ========= ttm_bo_validate_move_fence_not_signaled ========= [00:08:45] [PASSED] Waits for GPU [00:08:45] [PASSED] Tries to lock straight away [00:08:45] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled ===== [00:08:45] [PASSED] ttm_bo_validate_swapout [00:08:45] [PASSED] ttm_bo_validate_happy_evict [00:08:45] [PASSED] ttm_bo_validate_all_pinned_evict [00:08:45] [PASSED] ttm_bo_validate_allowed_only_evict [00:08:45] [PASSED] ttm_bo_validate_deleted_evict [00:08:45] [PASSED] ttm_bo_validate_busy_domain_evict [00:08:45] [PASSED] ttm_bo_validate_evict_gutting [00:08:45] [PASSED] ttm_bo_validate_recrusive_evict [00:08:45] ================= [PASSED] ttm_bo_validate ================= [00:08:45] ============================================================ [00:08:45] Testing complete. Ran 106 tests: passed: 106 [00:08:45] Elapsed time: 12.126s total, 1.758s configuring, 10.153s building, 0.169s running + for kcfg in "${kunitconfigs[@]}" + [[ ! -f /kernel/drivers/dma-buf/.kunitconfig ]] + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/dma-buf/.kunitconfig [00:08:45] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [00:08:47] 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 [00:08:55] Starting KUnit Kernel (1/1)... [00:08:55] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [00:08:56] ============= refcount_interrupt (4 subtests) ============== [00:08:56] [PASSED] test_single_irq_change [00:08:56] [PASSED] test_nested_irq_change [00:08:56] [PASSED] test_multiple_irq_change [00:08:56] [PASSED] test_irq_save [00:08:56] =============== [PASSED] refcount_interrupt ================ [00:08:56] =============== dma-buf-fence (12 subtests) ================ [00:08:56] [PASSED] test_sanitycheck [00:08:56] [PASSED] test_signaling [00:08:56] [PASSED] test_add_callback [00:08:56] [PASSED] test_late_add_callback [00:08:56] [PASSED] test_rm_callback [00:08:56] [PASSED] test_late_rm_callback [00:08:56] [PASSED] test_status [00:08:56] [PASSED] test_error [00:08:56] [PASSED] test_wait [00:08:56] [PASSED] test_wait_timeout [00:08:56] [PASSED] test_stub [00:08:56] [SKIPPED] test_race_signal_callback (requires at least 2 CPUs) [00:08:56] ================== [PASSED] dma-buf-fence ================== [00:08:56] ============ dma-buf-fence-chain (11 subtests) ============= [00:08:56] [PASSED] test_sanitycheck [00:08:56] [PASSED] test_find_seqno [00:08:56] [PASSED] test_find_signaled [00:08:56] [PASSED] test_find_out_of_order [00:09:01] [PASSED] test_find_gap [00:09:01] [PASSED] test_find_race [00:09:01] [PASSED] test_signal_forward [00:09:01] [PASSED] test_signal_backward [00:09:01] [PASSED] test_wait_forward [00:09:01] [PASSED] test_wait_backward [00:09:01] [PASSED] test_wait_random [00:09:01] =============== [PASSED] dma-buf-fence-chain =============== [00:09:01] ============ dma-buf-fence-unwrap (10 subtests) ============ [00:09:01] [PASSED] test_sanitycheck [00:09:01] [PASSED] test_unwrap_array [00:09:01] [PASSED] test_unwrap_chain [00:09:01] [PASSED] test_unwrap_chain_array [00:09:01] [PASSED] test_unwrap_merge [00:09:01] [PASSED] test_unwrap_merge_duplicate [00:09:01] [PASSED] test_unwrap_merge_seqno [00:09:01] [PASSED] test_unwrap_merge_order [00:09:01] [PASSED] test_unwrap_merge_complex [00:09:01] [PASSED] test_unwrap_merge_complex_seqno [00:09:01] ============== [PASSED] dma-buf-fence-unwrap =============== [00:09:01] ================ dma-buf-resv (5 subtests) ================= [00:09:01] [PASSED] test_sanitycheck [00:09:01] ===================== test_signaling ====================== [00:09:01] [PASSED] kernel [00:09:01] [PASSED] write [00:09:01] [PASSED] read [00:09:01] [PASSED] bookkeep [00:09:01] ================= [PASSED] test_signaling ================== [00:09:01] ====================== test_for_each ====================== [00:09:01] [PASSED] kernel [00:09:01] [PASSED] write [00:09:01] [PASSED] read [00:09:01] [PASSED] bookkeep [00:09:01] ================== [PASSED] test_for_each ================== [00:09:01] ================= test_for_each_unlocked ================== [00:09:01] [PASSED] kernel [00:09:01] [PASSED] write [00:09:01] [PASSED] read [00:09:01] [PASSED] bookkeep [00:09:01] ============= [PASSED] test_for_each_unlocked ============== [00:09:01] ===================== test_get_fences ===================== [00:09:01] [PASSED] kernel [00:09:01] [PASSED] write [00:09:01] [PASSED] read [00:09:01] [PASSED] bookkeep [00:09:01] ================= [PASSED] test_get_fences ================= [00:09:01] ================== [PASSED] dma-buf-resv =================== [00:09:01] ============================================================ [00:09:01] Testing complete. Ran 54 tests: passed: 53, skipped: 1 [00:09:01] Elapsed time: 15.934s total, 1.786s configuring, 8.777s building, 5.345s running + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for Use SIG_ID logs for GuC component (rev2) 2026-09-03 23:39 [PATCH v2 0/5] Use SIG_ID logs for GuC component Umesh Nerlige Ramappa ` (5 preceding siblings ...) 2026-09-04 0:09 ` ✓ CI.KUnit: success for Use SIG_ID logs for GuC component (rev2) Patchwork @ 2026-09-04 0:48 ` Patchwork 2026-09-04 14:00 ` ✓ Xe.CI.FULL: " Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-09-04 0:48 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 5829 bytes --] == Series Details == Series: Use SIG_ID logs for GuC component (rev2) URL : https://patchwork.freedesktop.org/series/173177/ State : success == Summary == CI Bug Log - changes from xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623_BAT -> xe-pw-173177v2_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 12) ------------------------------ Additional (1): bat-bmg-2 Missing (1): bat-wcl-1 Known issues ------------ Here are the changes found in xe-pw-173177v2_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - bat-nvls-1: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#8762] / [Intel XE#9069]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/bat-nvls-1/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/bat-nvls-1/igt@core_hotunplug@unbind-rebind.html * igt@fbdev@write: - bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2134]) +4 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/bat-bmg-2/igt@fbdev@write.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2233]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_flip@basic-flip-vs-modeset: - bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2482]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_frontbuffer_tracking@basic: - bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html * igt@xe_exec_multi_queue@priority: - bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#8364]) +13 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/bat-bmg-2/igt@xe_exec_multi_queue@priority.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-bmg-2: NOTRUN -> [SKIP][10] ([Intel XE#2229]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_pat@pat-index-xehpc: - bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#1420] / [Intel XE#7590]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - bat-bmg-2: NOTRUN -> [SKIP][12] ([Intel XE#2245] / [Intel XE#7590]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/bat-bmg-2/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - bat-bmg-2: NOTRUN -> [SKIP][13] ([Intel XE#2236] / [Intel XE#7590]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html * igt@xe_waitfence@engine: - bat-ptl-2: [PASS][14] -> [FAIL][15] ([Intel XE#9109]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/bat-ptl-2/igt@xe_waitfence@engine.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/bat-ptl-2/igt@xe_waitfence@engine.html [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434 [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482 [Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419 [Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8762]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8762 [Intel XE#9069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9069 [Intel XE#9109]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9109 Build changes ------------- * Linux: xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623 -> xe-pw-173177v2 IGT_9084: 9084 xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623: 71bc3b7cc55631a9b3807da98e2b2880838b9623 xe-pw-173177v2: 173177v2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/index.html [-- Attachment #2: Type: text/html, Size: 6782 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.FULL: success for Use SIG_ID logs for GuC component (rev2) 2026-09-03 23:39 [PATCH v2 0/5] Use SIG_ID logs for GuC component Umesh Nerlige Ramappa ` (6 preceding siblings ...) 2026-09-04 0:48 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-09-04 14:00 ` Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-09-04 14:00 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 97555 bytes --] == Series Details == Series: Use SIG_ID logs for GuC component (rev2) URL : https://patchwork.freedesktop.org/series/173177/ State : success == Summary == CI Bug Log - changes from xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623_FULL -> xe-pw-173177v2_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in xe-pw-173177v2_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-read: - shard-lnl: NOTRUN -> [SKIP][1] ([Intel XE#1125] / [Intel XE#7312]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@intel_hwmon@hwmon-read.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#3658] / [Intel XE#7360]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1407]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#7059] / [Intel XE#7085]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +9 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#7679]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html * igt@kms_bw@linear-tiling-3-displays-target-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#367]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-4/igt@kms_bw@linear-tiling-3-displays-target-2560x1440p.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#2669] / [Intel XE#7389]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [INCOMPLETE][9] ([Intel XE#7084] / [Intel XE#8150]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#3432]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +9 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt@kms_chamelium_color@degamma: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#306] / [Intel XE#7358]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_color_pipeline@plane-lut1d: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#7358]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@kms_chamelium_color_pipeline@plane-lut1d.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#373]) +4 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_color@ctm-signed: - shard-lnl: [PASS][15] -> [SKIP][16] ([Intel XE#3297]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_color@ctm-signed.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_color@ctm-signed.html * igt@kms_color_pipeline@plane-ctm3x4: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#7006]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_color_pipeline@plane-ctm3x4.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#307] / [Intel XE#6974]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy-hdcp14: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#7642]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#2321] / [Intel XE#7355]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1424]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#9125]) +8 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#309] / [Intel XE#7343]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-bmg: [PASS][24] -> [INCOMPLETE][25] ([Intel XE#7935] / [Intel XE#8151]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-bmg: [PASS][26] -> [FAIL][27] ([Intel XE#7809]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#9009]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#8265]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#4422] / [Intel XE#7442]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-lnl: [PASS][31] -> [SKIP][32] ([Intel XE#8680]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_fbcon_fbt@psr-suspend.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@hdr: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#8586]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_feature_discovery@hdr.html * igt@kms_feature_discovery@psr2: - shard-lnl: [PASS][34] -> [SKIP][35] ([Intel XE#1135] / [Intel XE#6128]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_feature_discovery@psr2.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1421]) +5 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@busy-flip: - shard-lnl: [PASS][37] -> [SKIP][38] ([Intel XE#2482]) +7 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_flip@busy-flip.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_flip@busy-flip.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [PASS][39] -> [FAIL][40] ([Intel XE#301] / [Intel XE#3149]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#7178] / [Intel XE#7349]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1397] / [Intel XE#7385] / [Intel XE#9144]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#7178] / [Intel XE#7351]) +5 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#6312]) +10 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#7905]) +34 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-4/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-lnl: [PASS][46] -> [SKIP][47] ([Intel XE#7779]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-lnl: [PASS][48] -> [SKIP][49] ([Intel XE#2548] / [Intel XE#7779]) +14 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#7779]) +10 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1469] / [Intel XE#7399]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#6312] / [Intel XE#651]) +11 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2548] / [Intel XE#7779]) +8 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#7061]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#7865]) +21 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-bmg: [PASS][57] -> [ABORT][58] ([Intel XE#9093]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-bmg-10/igt@kms_frontbuffer_tracking@hdr-suspend.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-bmg-4/igt@kms_frontbuffer_tracking@hdr-suspend.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#656] / [Intel XE#7905]) +24 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_invalid_mode@bad-vsync-end: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2568]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_invalid_mode@bad-vsync-end.html * igt@kms_invalid_mode@zero-vdisplay: - shard-lnl: [PASS][61] -> [SKIP][62] ([Intel XE#2568]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@kms_invalid_mode@zero-vdisplay.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_invalid_mode@zero-vdisplay.html * igt@kms_joiner@basic-force-big-joiner: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#7086] / [Intel XE#7390]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#6900] / [Intel XE#7362]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#7283]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-lnl: [PASS][67] -> [SKIP][68] ([Intel XE#9128]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_plane@plane-panning-bottom-right-suspend.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#599] / [Intel XE#7382]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#5020] / [Intel XE#7348]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-4/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-lnl: [PASS][71] -> [SKIP][72] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#2763] / [Intel XE#6886]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling: - shard-lnl: [PASS][74] -> [SKIP][75] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_pm_backlight@fade-with-dpms: - shard-lnl: [PASS][77] -> [SKIP][78] ([Intel XE#870]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@kms_pm_backlight@fade-with-dpms.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-lnl: [PASS][79] -> [SKIP][80] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-lnl: [PASS][81] -> [SKIP][82] ([Intel XE#7106]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_pm_rpm@system-suspend-modeset.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1489]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#4608]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#4608] / [Intel XE#7304]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: [PASS][88] -> [SKIP][89] ([Intel XE#1489]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-psr2-sprite-blt@edp-1: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1406] / [Intel XE#4609] / [Intel XE#7345]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-sprite-render: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1406]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_psr@pr-sprite-render.html * igt@kms_psr@psr-no-drrs: - shard-lnl: [PASS][93] -> [SKIP][94] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_psr@psr-no-drrs.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_psr@psr-no-drrs.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-lnl: [PASS][95] -> [SKIP][96] ([Intel XE#7795]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-x-tiled-reflect-x-180: - shard-lnl: [PASS][98] -> [SKIP][99] ([Intel XE#9125]) +40 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#362] / [Intel XE#5848]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@sriov_basic@pf-unbind-with-vf-probed: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#8866]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@sriov_basic@pf-unbind-with-vf-probed.html * igt@xe_compute@eu-busy-10s: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#6592] / [Intel XE#6645] / [Intel XE#7391]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@xe_compute@eu-busy-10s.html * igt@xe_evict@evict-beng-large-external-cm: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#6540] / [Intel XE#688]) +10 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@xe_evict@evict-beng-large-external-cm.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [PASS][104] -> [INCOMPLETE][105] ([Intel XE#6321] / [Intel XE#8355]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_balancer@many-cm-parallel-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#7482]) +18 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@xe_exec_balancer@many-cm-parallel-userptr-invalidate.html * igt@xe_exec_basic@multigpu-no-exec-null-rebind: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1392]) +6 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#8374]) +11 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch.html * igt@xe_exec_multi_queue@two-queues-close-fd-smem: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#8364]) +29 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@xe_exec_multi_queue@two-queues-close-fd-smem.html * igt@xe_exec_reset@multi-queue-close-execqueues: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#8369]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@xe_exec_reset@multi-queue-close-execqueues.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#6196]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html * igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race: - shard-lnl: [PASS][112] -> [FAIL][113] ([Intel XE#9096]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-5/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-7/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html * igt@xe_exec_threads@threads-hang-userptr-invalidate-race: - shard-bmg: [PASS][114] -> [FAIL][115] ([Intel XE#9096]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-bmg-5/igt@xe_exec_threads@threads-hang-userptr-invalidate-race.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-bmg-1/igt@xe_exec_threads@threads-hang-userptr-invalidate-race.html * igt@xe_exec_threads@threads-multi-queue-cm-rebind: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#8378]) +7 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@xe_exec_threads@threads-multi-queue-cm-rebind.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#2229]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#5100] / [Intel XE#7322] / [Intel XE#7408]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@xe_mmap@pci-membarrier-parallel.html * igt@xe_multigpu_svm@mgpu-coherency-fail-basic: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#6964]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-4/igt@xe_multigpu_svm@mgpu-coherency-fail-basic.html * igt@xe_page_reclaim@prl-invalidate-full: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#7793]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@xe_page_reclaim@prl-invalidate-full.html * igt@xe_pat@pat-index-xelp: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#7590] / [Intel XE#977]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#7590] / [Intel XE#979]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_query@multigpu-query-pxp-status: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#944]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-4/igt@xe_query@multigpu-query-pxp-status.html * igt@xe_sriov_auto_provisioning@fair-allocation: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#4130] / [Intel XE#7366]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@xe_sriov_auto_provisioning@fair-allocation.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#8339]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority.html * igt@xe_sriov_vram@vf-access-provisioned: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@xe_sriov_vram@vf-access-provisioned.html * igt@xe_vm@overcommit-fault-vram-lr: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#7892]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@xe_vm@overcommit-fault-vram-lr.html #### Possible fixes #### * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2: - shard-bmg: [INCOMPLETE][129] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html * igt@kms_color@deep-color: - shard-lnl: [SKIP][131] ([Intel XE#1511] / [Intel XE#3297]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_color@deep-color.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_color@deep-color.html * igt@kms_color@legacy-gamma-reset: - shard-lnl: [SKIP][133] ([Intel XE#3297]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_color@legacy-gamma-reset.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_color@legacy-gamma-reset.html * igt@kms_color_pipeline@plane-lut1d-lut1d: - shard-lnl: [SKIP][135] ([Intel XE#7006]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_color_pipeline@plane-lut1d-lut1d.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_color_pipeline@plane-lut1d-lut1d.html * igt@kms_fb_coherency@memset-crc: - shard-lnl: [SKIP][137] -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_fb_coherency@memset-crc.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_fb_coherency@memset-crc.html * igt@kms_flip@basic-flip-vs-modeset: - shard-lnl: [SKIP][139] ([Intel XE#2482]) -> [PASS][140] +2 other tests pass [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_flip@basic-flip-vs-modeset.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_flip@flip-vs-dpms-on-nop: - shard-lnl: [SKIP][141] ([Intel XE#9132]) -> [PASS][142] [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_flip@flip-vs-dpms-on-nop.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_flip@flip-vs-dpms-on-nop.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [FAIL][143] ([Intel XE#301]) -> [PASS][144] [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling: - shard-lnl: [SKIP][145] ([Intel XE#1745] / [Intel XE#9144]) -> [PASS][146] [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render: - shard-lnl: [SKIP][147] ([Intel XE#7779]) -> [PASS][148] [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-lnl: [SKIP][149] ([Intel XE#2548] / [Intel XE#7779]) -> [PASS][150] +12 other tests pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][151] ([Intel XE#1503]) -> [PASS][152] [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-bmg-9/igt@kms_hdr@invalid-hdr.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-bmg-8/igt@kms_hdr@invalid-hdr.html * igt@kms_lease@lease-unleased-crtc: - shard-lnl: [SKIP][153] ([Intel XE#9125]) -> [PASS][154] +35 other tests pass [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_lease@lease-unleased-crtc.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_lease@lease-unleased-crtc.html * igt@kms_plane@planar-pixel-format-settings: - shard-lnl: [SKIP][155] ([Intel XE#7780] / [Intel XE#9125]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_plane@planar-pixel-format-settings.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_plane@planar-pixel-format-settings.html * igt@kms_plane@plane-panning-top-left: - shard-lnl: [SKIP][157] ([Intel XE#9128]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_plane@plane-panning-top-left.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_plane@plane-panning-top-left.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-lnl: [SKIP][159] ([Intel XE#2763] / [Intel XE#6886]) -> [PASS][160] +5 other tests pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c: - shard-lnl: [SKIP][161] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) -> [PASS][162] +5 other tests pass [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c.html * igt@kms_pm_dc@dc5-pageflip-negative: - shard-lnl: [SKIP][163] ([Intel XE#6927] / [Intel XE#8854]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_pm_dc@dc5-pageflip-negative.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_pm_dc@dc5-pageflip-negative.html * igt@kms_pm_rpm@drm-resources-equal: - shard-lnl: [SKIP][165] ([Intel XE#7106]) -> [PASS][166] [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_pm_rpm@drm-resources-equal.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-lnl: [SKIP][167] ([Intel XE#1489]) -> [PASS][168] +1 other test pass [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@psr-dpms: - shard-lnl: [SKIP][169] ([Intel XE#2850] / [Intel XE#929]) -> [PASS][170] +4 other tests pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_psr@psr-dpms.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_psr@psr-dpms.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-lnl: [SKIP][171] ([Intel XE#7795]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_setmode@basic: - shard-lnl: [SKIP][173] ([Intel XE#1435] / [Intel XE#9142]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_setmode@basic.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_setmode@basic.html * igt@xe_configfs@ctx-restore-mid-bb: - shard-lnl: [ABORT][175] ([Intel XE#8007]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@xe_configfs@ctx-restore-mid-bb.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@xe_configfs@ctx-restore-mid-bb.html * igt@xe_module_load@load: - shard-lnl: ([PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [SKIP][195], [PASS][196], [PASS][197], [PASS][198]) ([Intel XE#378] / [Intel XE#7405]) -> ([PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-3/igt@xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-3/igt@xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-3/igt@xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-5/igt@xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-5/igt@xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-5/igt@xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-4/igt@xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-4/igt@xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-4/igt@xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-4/igt@xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-1/igt@xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-1/igt@xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-1/igt@xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-7/igt@xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-4/igt@xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-4/igt@xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-7/igt@xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-7/igt@xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@xe_module_load@load.html #### Warnings #### * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-lnl: [SKIP][220] ([Intel XE#9125]) -> [SKIP][221] ([Intel XE#3279]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-lnl: [SKIP][222] ([Intel XE#1407]) -> [SKIP][223] ([Intel XE#9125]) +3 other tests skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: [SKIP][224] ([Intel XE#9125]) -> [SKIP][225] ([Intel XE#1407]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: [SKIP][226] ([Intel XE#7059] / [Intel XE#7085]) -> [SKIP][227] ([Intel XE#9125]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-lnl: [SKIP][228] ([Intel XE#9125]) -> [SKIP][229] ([Intel XE#7059] / [Intel XE#7085]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-lnl: [SKIP][230] ([Intel XE#9125]) -> [SKIP][231] ([Intel XE#1124]) +8 other tests skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: [SKIP][232] ([Intel XE#1477] / [Intel XE#7361]) -> [SKIP][233] ([Intel XE#9125]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-lnl: [SKIP][234] ([Intel XE#1124]) -> [SKIP][235] ([Intel XE#9125]) +7 other tests skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p: - shard-lnl: [SKIP][236] ([Intel XE#9125]) -> [SKIP][237] ([Intel XE#7679]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p: - shard-lnl: [SKIP][238] ([Intel XE#9125]) -> [SKIP][239] ([Intel XE#8365]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p: - shard-lnl: [SKIP][240] ([Intel XE#8365]) -> [SKIP][241] ([Intel XE#9125]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-target-2560x1440p: - shard-lnl: [SKIP][242] ([Intel XE#367]) -> [SKIP][243] ([Intel XE#9125]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-target-3840x2160p: - shard-lnl: [SKIP][244] ([Intel XE#9125]) -> [SKIP][245] ([Intel XE#367]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_bw@linear-tiling-3-displays-target-3840x2160p.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_bw@linear-tiling-3-displays-target-3840x2160p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-lnl: [SKIP][246] ([Intel XE#9125]) -> [SKIP][247] ([Intel XE#2887]) +11 other tests skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-lnl: [SKIP][248] ([Intel XE#2669] / [Intel XE#7389]) -> [SKIP][249] ([Intel XE#9125]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-lnl: [SKIP][250] ([Intel XE#3432]) -> [SKIP][251] ([Intel XE#9125]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-lnl: [SKIP][252] ([Intel XE#9125]) -> [SKIP][253] ([Intel XE#3432]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-lnl: [SKIP][254] ([Intel XE#2887]) -> [SKIP][255] ([Intel XE#9125]) +9 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt@kms_color_pipeline@plane-lut3d-green-only: - shard-lnl: [SKIP][256] ([Intel XE#6969] / [Intel XE#7006]) -> [SKIP][257] ([Intel XE#7006]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_color_pipeline@plane-lut3d-green-only.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_color_pipeline@plane-lut3d-green-only.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-lnl: [SKIP][258] ([Intel XE#9125]) -> [SKIP][259] ([Intel XE#307] / [Intel XE#6974]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_content_protection@dp-mst-lic-type-1.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-lnl: [SKIP][260] ([Intel XE#6974]) -> [SKIP][261] ([Intel XE#9125]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_content_protection@dp-mst-type-0-hdcp14.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@lic-type-1: - shard-lnl: [SKIP][262] ([Intel XE#7642]) -> [SKIP][263] ([Intel XE#9125]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@kms_content_protection@lic-type-1.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-lnl: [SKIP][264] ([Intel XE#9125]) -> [SKIP][265] ([Intel XE#7642]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_content_protection@srm.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-lnl: [SKIP][266] ([Intel XE#1424]) -> [SKIP][267] ([Intel XE#9125]) +4 other tests skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-lnl: [SKIP][268] ([Intel XE#9125]) -> [SKIP][269] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-lnl: [SKIP][270] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][271] ([Intel XE#9125]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_cursor_crc@cursor-random-512x512.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-lnl: [SKIP][272] ([Intel XE#9125]) -> [SKIP][273] ([Intel XE#1424]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: [SKIP][274] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][275] ([Intel XE#9125]) +3 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-lnl: [SKIP][276] ([Intel XE#9125]) -> [SKIP][277] ([Intel XE#323] / [Intel XE#6035]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dp_link_training@uhbr-mst: - shard-lnl: [SKIP][278] ([Intel XE#9125]) -> [SKIP][279] ([Intel XE#4354] / [Intel XE#7386]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_dp_link_training@uhbr-mst.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dsc@dsc-with-output-formats-bigjoiner: - shard-lnl: [SKIP][280] ([Intel XE#8265]) -> [SKIP][281] ([Intel XE#9125]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner: - shard-lnl: [SKIP][282] ([Intel XE#9125]) -> [SKIP][283] ([Intel XE#8265]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html * igt@kms_flip@flip-vs-expired-vblank: - shard-lnl: [FAIL][284] ([Intel XE#301]) -> [FAIL][285] ([Intel XE#301] / [Intel XE#3149]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-lnl: [SKIP][286] ([Intel XE#1745] / [Intel XE#9144]) -> [SKIP][287] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385] / [Intel XE#9144]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: [SKIP][288] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385] / [Intel XE#9144]) -> [SKIP][289] ([Intel XE#1745] / [Intel XE#9144]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-lnl: [SKIP][290] ([Intel XE#7779]) -> [SKIP][291] ([Intel XE#6312]) +5 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc: - shard-lnl: [SKIP][292] ([Intel XE#7779]) -> [SKIP][293] ([Intel XE#7061] / [Intel XE#7356]) +4 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt: - shard-lnl: [SKIP][294] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][295] ([Intel XE#656] / [Intel XE#7905]) +33 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-mmap-wc: - shard-lnl: [SKIP][296] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][297] ([Intel XE#7779]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-mmap-wc.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: - shard-lnl: [SKIP][298] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][299] ([Intel XE#6312] / [Intel XE#651]) +9 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear: - shard-lnl: [SKIP][300] ([Intel XE#6312] / [Intel XE#651]) -> [SKIP][301] ([Intel XE#2548] / [Intel XE#7779]) +8 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff: - shard-lnl: [SKIP][302] ([Intel XE#6312]) -> [SKIP][303] ([Intel XE#7779]) +14 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff: - shard-lnl: [SKIP][304] ([Intel XE#7865]) -> [SKIP][305] ([Intel XE#7779]) +19 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-render: - shard-lnl: [SKIP][306] ([Intel XE#7779]) -> [SKIP][307] ([Intel XE#7905]) +33 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-render.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: [SKIP][308] ([Intel XE#1469] / [Intel XE#7399]) -> [SKIP][309] ([Intel XE#2548] / [Intel XE#7779]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-lnl: [SKIP][310] ([Intel XE#7779]) -> [SKIP][311] ([Intel XE#7865]) +22 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-mmap-wc: - shard-lnl: [SKIP][312] ([Intel XE#7061]) -> [SKIP][313] ([Intel XE#7779]) +3 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-mmap-wc.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt: - shard-lnl: [SKIP][314] ([Intel XE#656] / [Intel XE#7905]) -> [SKIP][315] ([Intel XE#2548] / [Intel XE#7779]) +29 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move: - shard-lnl: [SKIP][316] ([Intel XE#7905]) -> [SKIP][317] ([Intel XE#7779]) +32 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt: - shard-lnl: [SKIP][318] ([Intel XE#7779]) -> [SKIP][319] ([Intel XE#7061]) +4 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-3/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][320] ([Intel XE#3544]) -> [SKIP][321] ([Intel XE#3374] / [Intel XE#3544]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle: - shard-lnl: [SKIP][322] ([Intel XE#1503]) -> [SKIP][323] ([Intel XE#9125]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_hdr@static-toggle.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_hdr@static-toggle.html * igt@kms_plane_lowres@tiling-none: - shard-lnl: [SKIP][324] ([Intel XE#9125]) -> [SKIP][325] ([Intel XE#599] / [Intel XE#7382]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_plane_lowres@tiling-none.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_plane_lowres@tiling-none.html * igt@kms_plane_lowres@tiling-x: - shard-lnl: [SKIP][326] ([Intel XE#599] / [Intel XE#7382]) -> [SKIP][327] ([Intel XE#9125]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_plane_lowres@tiling-x.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_plane_lowres@tiling-x.html * igt@kms_plane_multiple@2x-tiling-x: - shard-lnl: [SKIP][328] ([Intel XE#4596] / [Intel XE#5854]) -> [SKIP][329] ([Intel XE#9125]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_plane_multiple@2x-tiling-x.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-lnl: [SKIP][330] ([Intel XE#9125]) -> [SKIP][331] ([Intel XE#4596] / [Intel XE#5854]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_plane_multiple@2x-tiling-yf.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-lnl: [SKIP][332] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) -> [SKIP][333] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-lnl: [SKIP][334] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][335] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +5 other tests skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_pm_dc@deep-pkgc: - shard-lnl: [FAIL][336] ([Intel XE#2029] / [Intel XE#7395]) -> [SKIP][337] ([Intel XE#7778]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_pm_dc@deep-pkgc.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_pm_dc@deep-pkgc.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-lnl: [SKIP][338] ([Intel XE#1489]) -> [SKIP][339] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-lnl: [SKIP][340] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) -> [SKIP][341] ([Intel XE#1489]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: [SKIP][342] ([Intel XE#2893] / [Intel XE#7304]) -> [SKIP][343] ([Intel XE#1489]) +2 other tests skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-lnl: [SKIP][344] ([Intel XE#1489]) -> [SKIP][345] ([Intel XE#2893] / [Intel XE#7304]) +2 other tests skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-lnl: [SKIP][346] ([Intel XE#1128] / [Intel XE#7413]) -> [SKIP][347] ([Intel XE#1122] / [Intel XE#7429]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-7/igt@kms_psr2_su@page_flip-p010.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-sprite-blt: - shard-lnl: [SKIP][348] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][349] ([Intel XE#1406] / [Intel XE#7345]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-blt.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_psr@fbc-psr2-sprite-blt.html * igt@kms_psr@pr-basic: - shard-lnl: [SKIP][350] ([Intel XE#1406]) -> [SKIP][351] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_psr@pr-basic.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_psr@pr-basic.html * igt@kms_psr@pr-cursor-plane-move: - shard-lnl: [SKIP][352] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][353] ([Intel XE#1406]) +2 other tests skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_psr@pr-cursor-plane-move.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_rotation_crc@primary-rotation-270: - shard-lnl: [SKIP][354] ([Intel XE#9125]) -> [SKIP][355] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_rotation_crc@primary-rotation-270.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-2/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-lnl: [SKIP][356] ([Intel XE#1127] / [Intel XE#5813]) -> [SKIP][357] ([Intel XE#9125]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-lnl: [SKIP][358] ([Intel XE#9125]) -> [SKIP][359] ([Intel XE#1127] / [Intel XE#5813]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-lnl: [SKIP][360] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][361] ([Intel XE#9125]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@xe_exec_reset@gt-reset-fault-injection: - shard-lnl: [ABORT][362] ([Intel XE#9140] / [Intel XE#9145]) -> [DMESG-WARN][363] ([Intel XE#9130]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-1/igt@xe_exec_reset@gt-reset-fault-injection.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-5/igt@xe_exec_reset@gt-reset-fault-injection.html * igt@xe_wedged@basic-wedged: - shard-lnl: [ABORT][364] ([Intel XE#8963]) -> [DMESG-WARN][365] ([Intel XE#8963]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623/shard-lnl-3/igt@xe_wedged@basic-wedged.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/shard-lnl-4/igt@xe_wedged@basic-wedged.html [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [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#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1511]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1511 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3297]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3297 [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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [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#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035 [Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6592 [Intel XE#6645]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6645 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900 [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912 [Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086 [Intel XE#7106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7106 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7312 [Intel XE#7322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7322 [Intel XE#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345 [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348 [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360 [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361 [Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362 [Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375 [Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382 [Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385 [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386 [Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389 [Intel XE#7390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7390 [Intel XE#7391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7391 [Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402 [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405 [Intel XE#7408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7408 [Intel XE#7413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7413 [Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422 [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429 [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7687 [Intel XE#7778]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7778 [Intel XE#7779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7779 [Intel XE#7780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7780 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795 [Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809 [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865 [Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150 [Intel XE#8151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8151 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#8339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8339 [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365 [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8586 [Intel XE#8680]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8680 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#8854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8854 [Intel XE#8866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8866 [Intel XE#8963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8963 [Intel XE#9009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9009 [Intel XE#9093]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9093 [Intel XE#9096]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9096 [Intel XE#9125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9125 [Intel XE#9128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9128 [Intel XE#9130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9130 [Intel XE#9132]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9132 [Intel XE#9140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9140 [Intel XE#9142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9142 [Intel XE#9144]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9144 [Intel XE#9145]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9145 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * Linux: xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623 -> xe-pw-173177v2 IGT_9084: 9084 xe-5690-71bc3b7cc55631a9b3807da98e2b2880838b9623: 71bc3b7cc55631a9b3807da98e2b2880838b9623 xe-pw-173177v2: 173177v2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173177v2/index.html [-- Attachment #2: Type: text/html, Size: 119974 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-09-04 14:00 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-09-03 23:39 [PATCH v2 0/5] Use SIG_ID logs for GuC component Umesh Nerlige Ramappa 2026-09-03 23:40 ` [PATCH v3 1/5] drm/xe/guc: Use different error codes for GuC load errors Umesh Nerlige Ramappa 2026-09-03 23:40 ` [PATCH v3 2/5] drm/xe/guc: Use different error codes for CT errors Umesh Nerlige Ramappa 2026-09-03 23:42 ` Umesh Nerlige Ramappa 2026-09-03 23:40 ` [PATCH v3 3/5] drm/xe/uc: Report DMA failure using SIGID Umesh Nerlige Ramappa 2026-09-03 23:40 ` [PATCH v3 4/5] drm/xe/guc: Report major GuC failures " Umesh Nerlige Ramappa 2026-09-03 23:40 ` [PATCH v3 5/5] drm/xe/guc: Report errors that cause a CT shutdown " Umesh Nerlige Ramappa 2026-09-04 0:09 ` ✓ CI.KUnit: success for Use SIG_ID logs for GuC component (rev2) Patchwork 2026-09-04 0:48 ` ✓ Xe.CI.BAT: " Patchwork 2026-09-04 14:00 ` ✓ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).