* [PATCH v3] tools/xe-perf-recorder: Add mmio-trigger support
@ 2026-07-16 7:14 Shekhar Chauhan
2026-07-16 7:51 ` ✓ Xe.CI.BAT: success for tools/xe-perf-recorder: Add mmio-trigger support (rev3) Patchwork
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Shekhar Chauhan @ 2026-07-16 7:14 UTC (permalink / raw)
To: igt-dev; +Cc: ashutosh.dixit, shekhar.chauhan
Add mmio-trigger support to xe-perf-recorder, to justify the
whitelisting of OA MMIO Trigger Registers in XeKMD.
v2: Add all OA unit types, fix includes, compile warnings and adding
extra triggger for file mode. (Ashutosh)
v3: Add a couple of asserts and commits. (Ashutosh)
Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com>
---
tools/xe-perf/xe_perf_recorder.c | 119 ++++++++++++++++++++++++++++++-
1 file changed, 117 insertions(+), 2 deletions(-)
diff --git a/tools/xe-perf/xe_perf_recorder.c b/tools/xe-perf/xe_perf_recorder.c
index f200fe9c9..7e7df9bca 100644
--- a/tools/xe-perf/xe_perf_recorder.c
+++ b/tools/xe-perf/xe_perf_recorder.c
@@ -26,19 +26,29 @@
#include <unistd.h>
#include "igt_core.h"
+#include "intel_batchbuffer.h"
#include "intel_chipset.h"
+#include "intel_reg.h"
#include "ioctl_wrappers.h"
#include "linux_scaffold.h"
+#include "xe/xe_ioctl.h"
#include "xe/xe_oa.h"
#include "xe/xe_oa_data.h"
#include "xe/xe_query.h"
#include "xe_perf_recorder_commands.h"
-#define ALIGN(v, a) (((v) + (a)-1) & ~((a)-1))
-#define ARRAY_SIZE(arr) (sizeof(arr)/sizeof((arr)[0]))
#define MAX(a,b) ((a) > (b) ? (a) : (b))
#define MIN(a,b) ((a) < (b) ? (a) : (b))
+#define OAG_MMIOTRIGGER 0xdb1c
+#define OAMERT_MMIOTRIGGER 0x1453cc
+#define OAM_MMIOTRIGGER_OFFSET 0x1d0
+#define MEDIA_GT_GSI_OFFSET 0x380000
+#define XE_OAM_SAG_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x13000)
+#define XE_OAM_SCMI_0_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x14000)
+#define XE_OAM_SCMI_1_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x14800)
+#define OAREPORT_REASON_MASK 0x3f
+#define OAREPORT_REASON_SHIFT 19
struct circular_buffer {
char *data;
@@ -354,8 +364,50 @@ struct recording_context {
int oa_unit_id;
struct drm_xe_oa_unit *oa_unit;
struct drm_xe_engine_class_instance *hwe;
+
+ uint32_t vm;
+ uint32_t exec_queue;
+ struct intel_bb *ibb;
};
+static uint32_t oa_unit_mmio_trigger_reg(struct recording_context *ctx)
+{
+ const struct drm_xe_oa_unit *oau = ctx->oa_unit;
+
+ switch (oau->oa_unit_type) {
+ case DRM_XE_OA_UNIT_TYPE_OAM: {
+ struct drm_xe_query_oa_units *qoa = xe_oa_units(ctx->drm_fd);
+ uint8_t *poau = (uint8_t *)&qoa->oa_units[0];
+ int first_oam_id = -1;
+
+ /* Find the first OAM unit, as in oa_unit_by_type() */
+ for (int i = 0; i < qoa->num_oa_units; i++) {
+ struct drm_xe_oa_unit *u = (struct drm_xe_oa_unit *)poau;
+
+ if (u->oa_unit_type == DRM_XE_OA_UNIT_TYPE_OAM) {
+ first_oam_id = u->oa_unit_id;
+ break;
+ }
+ poau += sizeof(*u) + u->num_engines * sizeof(u->eci[0]);
+ }
+
+ assert(first_oam_id != -1);
+
+ if (oau->oa_unit_id == first_oam_id)
+ return XE_OAM_SCMI_0_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET;
+ return XE_OAM_SCMI_1_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET;
+ }
+ case DRM_XE_OA_UNIT_TYPE_OAM_SAG:
+ return XE_OAM_SAG_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET;
+ case DRM_XE_OA_UNIT_TYPE_MERT:
+ return OAMERT_MMIOTRIGGER;
+ case DRM_XE_OA_UNIT_TYPE_OAG:
+ return OAG_MMIOTRIGGER;
+ default:
+ assert(0);
+ }
+}
+
static void set_fd_flags(int fd, int flags)
{
int old = fcntl(fd, F_GETFL, 0);
@@ -569,6 +621,28 @@ static bool write_stream_status(struct recording_context *ctx, FILE *output)
return true;
}
+static uint32_t
+report_reason(const uint32_t *report)
+{
+ return (report[0] >> OAREPORT_REASON_SHIFT) & OAREPORT_REASON_MASK;
+}
+
+static void
+check_mmio_trigger_report(struct recording_context *ctx, const void *report)
+{
+ const struct xe_oa_format *fmt = &oa_formats[ctx->metric_set->perf_oa_format];
+ const uint32_t *report_32 = report;
+ uint64_t value;
+
+ if (report_reason(report_32))
+ return;
+
+ value = (fmt->header == HDR_64_BIT) ? ((const uint64_t *)report)[2] : report_32[2];
+
+ if (value == 0xc0ffee01 || value == 0xc0ffee02)
+ fprintf(stdout, "Received trigger report with value 0x%" PRIx64 "\n", value);
+}
+
static bool write_stream_data(struct recording_context *ctx,
char *data, ssize_t size, FILE *output)
{
@@ -582,6 +656,8 @@ static bool write_stream_data(struct recording_context *ctx,
.size = sizeof(header) + format_size,
};
+ check_mmio_trigger_report(ctx, data + i * format_size);
+
if (fwrite(&header, sizeof(header), 1, output) != 1)
return false;
@@ -697,6 +773,22 @@ write_correlation_timestamps(struct recording_context *ctx, FILE *output)
return write_saved_correlation_timestamps(output, &corr);
}
+static void emit_mmio_triggered_report(struct intel_bb *ibb, uint32_t reg, uint32_t value)
+{
+ intel_bb_out(ibb, MI_LOAD_REGISTER_IMM(1));
+ intel_bb_out(ibb, reg);
+ intel_bb_out(ibb, value);
+}
+
+static void emit_oa_trigger(struct recording_context *ctx, uint32_t value)
+{
+ emit_mmio_triggered_report(ctx->ibb, oa_unit_mmio_trigger_reg(ctx), value);
+
+ intel_bb_flush_render(ctx->ibb);
+ intel_bb_sync(ctx->ibb);
+ intel_bb_reset(ctx->ibb, false);
+}
+
static void
read_command_file(struct recording_context *ctx)
{
@@ -712,6 +804,9 @@ read_command_file(struct recording_context *ctx)
uint8_t *dump = malloc(len);
FILE *file;
+ emit_oa_trigger(ctx, 0xc0ffee02);
+ write_perf_data(ctx->output_stream, ctx);
+
while (offset < len &&
((ret = read(ctx->command_fifo_fd,
(void *) dump + offset, len - offset)) > 0
@@ -835,6 +930,13 @@ usage(const char *name)
static void
teardown_recording_context(struct recording_context *ctx)
{
+ if (ctx->ibb)
+ intel_bb_destroy(ctx->ibb);
+ if (ctx->exec_queue)
+ xe_exec_queue_destroy(ctx->drm_fd, ctx->exec_queue);
+ if (ctx->vm)
+ xe_vm_destroy(ctx->drm_fd, ctx->vm);
+
if (ctx->topology)
free(ctx->topology);
@@ -912,6 +1014,14 @@ static int assign_oa_unit(int fd, struct recording_context *ctx)
return -1;
}
+static void init_trigger_ctx(struct recording_context *ctx)
+{
+ ctx->vm = xe_vm_create(ctx->drm_fd, 0, 0);
+ ctx->exec_queue = xe_exec_queue_create(ctx->drm_fd, ctx->vm, ctx->hwe, 0);
+ ctx->ibb = intel_bb_create_with_context(ctx->drm_fd, ctx->exec_queue, ctx->vm,
+ NULL, BATCH_SZ);
+}
+
int
main(int argc, char *argv[])
{
@@ -1180,6 +1290,9 @@ main(int argc, char *argv[])
goto fail;
}
+ init_trigger_ctx(&ctx);
+ emit_oa_trigger(&ctx, 0xc0ffee01);
+
corr_period_ns = corr_period * 1000000000ul;
poll_time_ns = corr_period_ns;
@@ -1227,6 +1340,8 @@ main(int argc, char *argv[])
}
}
+ /* Emit second OA trigger for the case where circular buffer is not used */
+ emit_oa_trigger(&ctx, 0xc0ffee02);
fprintf(stdout, "Exiting...\n");
if (!write_perf_data(ctx.output_stream, &ctx)) {
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* ✓ Xe.CI.BAT: success for tools/xe-perf-recorder: Add mmio-trigger support (rev3) 2026-07-16 7:14 [PATCH v3] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan @ 2026-07-16 7:51 ` Patchwork 2026-07-16 8:30 ` ✓ i915.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-07-16 7:51 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 983 bytes --] == Series Details == Series: tools/xe-perf-recorder: Add mmio-trigger support (rev3) URL : https://patchwork.freedesktop.org/series/168824/ State : success == Summary == CI Bug Log - changes from XEIGT_9007_BAT -> XEIGTPW_15539_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 12) ------------------------------ Missing (1): bat-bmg-2 Changes ------- No changes found Build changes ------------- * IGT: IGT_9007 -> IGTPW_15539 * Linux: xe-5412-116ce94f4e028e50e3523c46a8ce1e665ce47cb9 -> xe-5416-6d15737b9d1d05c2107a1fab794dfc77f15dd945 IGTPW_15539: 15539 IGT_9007: 9007 xe-5412-116ce94f4e028e50e3523c46a8ce1e665ce47cb9: 116ce94f4e028e50e3523c46a8ce1e665ce47cb9 xe-5416-6d15737b9d1d05c2107a1fab794dfc77f15dd945: 6d15737b9d1d05c2107a1fab794dfc77f15dd945 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/index.html [-- Attachment #2: Type: text/html, Size: 1542 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for tools/xe-perf-recorder: Add mmio-trigger support (rev3) 2026-07-16 7:14 [PATCH v3] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan 2026-07-16 7:51 ` ✓ Xe.CI.BAT: success for tools/xe-perf-recorder: Add mmio-trigger support (rev3) Patchwork @ 2026-07-16 8:30 ` Patchwork 2026-07-16 11:42 ` ✗ Xe.CI.FULL: failure " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-07-16 8:30 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8017 bytes --] == Series Details == Series: tools/xe-perf-recorder: Add mmio-trigger support (rev3) URL : https://patchwork.freedesktop.org/series/168824/ State : success == Summary == CI Bug Log - changes from IGT_9007 -> IGTPW_15539 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/index.html Participating hosts (41 -> 40) ------------------------------ Additional (1): bat-mtlp-9 Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15539 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests: - bat-mtlp-9: NOTRUN -> [SKIP][1] ([i915#15931]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@dmabuf@all-tests.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-mtlp-9: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_mmap@basic: - bat-mtlp-9: NOTRUN -> [SKIP][3] ([i915#4083]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-mtlp-9: NOTRUN -> [SKIP][4] ([i915#4079]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-mtlp-9: NOTRUN -> [SKIP][5] ([i915#4077]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic@basic: - bat-mtlp-9: NOTRUN -> [SKIP][6] ([i915#15657]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@gem_tiled_pread_basic@basic.html * igt@i915_pm_rpm@module-reload: - bat-adlp-6: [PASS][7] -> [DMESG-WARN][8] ([i915#15673]) +78 other tests dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9007/bat-adlp-6/igt@i915_pm_rpm@module-reload.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-adlp-6/igt@i915_pm_rpm@module-reload.html * igt@i915_pm_rps@basic-api: - bat-mtlp-9: NOTRUN -> [SKIP][9] ([i915#11681] / [i915#6621]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@i915_pm_rps@basic-api.html * igt@intel_hwmon@hwmon-read: - bat-mtlp-9: NOTRUN -> [SKIP][10] ([i915#7707]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-mtlp-9: NOTRUN -> [SKIP][11] ([i915#5190]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-mtlp-9: NOTRUN -> [SKIP][12] ([i915#4212]) +8 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-mtlp-9: NOTRUN -> [SKIP][13] ([i915#16119] / [i915#4213]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-mtlp-9: NOTRUN -> [SKIP][14] ([i915#16361]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-mtlp-9: NOTRUN -> [SKIP][15] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-mtlp-9: NOTRUN -> [SKIP][16] ([i915#4077] / [i915#9688]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-mtlp-9: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#8809]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-gtt: - bat-mtlp-9: NOTRUN -> [SKIP][18] ([i915#3708] / [i915#4077]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - bat-mtlp-9: NOTRUN -> [SKIP][19] ([i915#3708]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-mtlp-9: NOTRUN -> [SKIP][20] ([i915#10216] / [i915#3708]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-mtlp-9/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@sanitycheck: - bat-apl-1: [DMESG-WARN][21] ([i915#13735]) -> [PASS][22] +38 other tests pass [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9007/bat-apl-1/igt@i915_selftest@live@sanitycheck.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-apl-1/igt@i915_selftest@live@sanitycheck.html * igt@kms_pm_rpm@basic-pci-d3-state: - bat-apl-1: [DMESG-WARN][23] ([i915#13735] / [i915#180]) -> [PASS][24] +10 other tests pass [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9007/bat-apl-1/igt@kms_pm_rpm@basic-pci-d3-state.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/bat-apl-1/igt@kms_pm_rpm@basic-pci-d3-state.html [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931 [i915#16119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16119 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9007 -> IGTPW_15539 * Linux: CI_DRM_18830 -> CI_DRM_18834 CI-20190529: 20190529 CI_DRM_18830: 116ce94f4e028e50e3523c46a8ce1e665ce47cb9 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18834: 6d15737b9d1d05c2107a1fab794dfc77f15dd945 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15539: 15539 IGT_9007: 9007 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/index.html [-- Attachment #2: Type: text/html, Size: 9527 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Xe.CI.FULL: failure for tools/xe-perf-recorder: Add mmio-trigger support (rev3) 2026-07-16 7:14 [PATCH v3] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan 2026-07-16 7:51 ` ✓ Xe.CI.BAT: success for tools/xe-perf-recorder: Add mmio-trigger support (rev3) Patchwork 2026-07-16 8:30 ` ✓ i915.CI.BAT: " Patchwork @ 2026-07-16 11:42 ` Patchwork 2026-07-16 11:51 ` ✗ i915.CI.Full: " Patchwork 2026-07-21 0:38 ` [PATCH v3] tools/xe-perf-recorder: Add mmio-trigger support Dixit, Ashutosh 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-07-16 11:42 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 29187 bytes --] == Series Details == Series: tools/xe-perf-recorder: Add mmio-trigger support (rev3) URL : https://patchwork.freedesktop.org/series/168824/ State : failure == Summary == CI Bug Log - changes from XEIGT_9007_FULL -> XEIGTPW_15539_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15539_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15539_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15539_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0: - shard-bmg: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-7/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-8/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html Known issues ------------ Here are the changes found in XEIGTPW_15539_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotreplug: - shard-bmg: [PASS][3] -> [ABORT][4] ([Intel XE#8007]) +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-1/igt@core_hotunplug@hotreplug.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-3/igt@core_hotunplug@hotreplug.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-10/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +8 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#7679]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html * igt@kms_bw@linear-tiling-4-displays-target-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#367]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-6/igt@kms_bw@linear-tiling-4-displays-target-3840x2160p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2887]) +10 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#3432]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-5/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#7358]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-10/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html * igt@kms_chamelium_frames@dp-crc-single: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2252]) +5 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-5/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_sharpness_filter@filter-basic: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#6507]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-5/igt@kms_chamelium_sharpness_filter@filter-basic.html * igt@kms_content_protection@content-type-change: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#7642]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-5/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][16] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +5 other tests fail [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-1/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2320]) +4 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: NOTRUN -> [FAIL][18] ([Intel XE#7571]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_dp_link_training@uhbr-sst: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#4354] / [Intel XE#5870]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-10/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#8265]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-10/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#4422] / [Intel XE#7442]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_feature_discovery@display-3x: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2373] / [Intel XE#7448]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-6/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-bmg: [PASS][23] -> [FAIL][24] ([Intel XE#5408] / [Intel XE#6266]) +1 other test fail [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-9/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [PASS][25] -> [FAIL][26] ([Intel XE#301]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4141]) +11 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-shrfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2311]) +48 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#7061]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2313]) +39 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7399]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#6911] / [Intel XE#7378]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-5/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7283]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#5020] / [Intel XE#7348]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-9/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [PASS][38] -> [FAIL][39] ([Intel XE#8399]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-lnl-6/igt@kms_pm_dc@dc6-dpms.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@deep-pkgc: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2505] / [Intel XE#7447]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-7/igt@kms_pm_dc@deep-pkgc.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1489]) +6 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@psr2-sprite-blt: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-2/igt@kms_psr@psr2-sprite-blt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7795]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#6503]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-6/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2168] / [Intel XE#7444]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-4/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#1499]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-4/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@runner@aborted: - shard-lnl: NOTRUN -> [FAIL][48] ([Intel XE#8573]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-lnl-2/igt@runner@aborted.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-9/igt@xe_create@multigpu-create-massive-size.html * igt@xe_evict@evict-small-multi-queue: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#8370]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-4/igt@xe_evict@evict-small-multi-queue.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2322] / [Intel XE#7372]) +7 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-9/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#8374]) +9 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-6/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#8364]) +25 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-7/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html * igt@xe_exec_reset@cm-multi-queue-gt-reset: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#8369]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-2/igt@xe_exec_reset@cm-multi-queue-gt-reset.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#8378]) +8 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html * igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#6964]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-8/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html * igt@xe_page_reclaim@prl-max-entries: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7793]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-8/igt@xe_page_reclaim@prl-max-entries.html * igt@xe_pat@l2-flush-opt-svm-pat-restrict: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7590]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-5/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html * igt@xe_pat@pat-sw-hw-compare: - shard-bmg: NOTRUN -> [FAIL][59] ([Intel XE#7695]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-3/igt@xe_pat@pat-sw-hw-compare.html * igt@xe_pm@d3cold-basic: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2284] / [Intel XE#7370]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-9/igt@xe_pm@d3cold-basic.html * igt@xe_prefetch_fault@prefetch-fault-svm: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7599]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-1/igt@xe_prefetch_fault@prefetch-fault-svm.html * igt@xe_pxp@pxp-termination-key-update-post-suspend: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#4733] / [Intel XE#7417]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-9/igt@xe_pxp@pxp-termination-key-update-post-suspend.html * igt@xe_query@multigpu-query-config: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#944]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-4/igt@xe_query@multigpu-query-config.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: NOTRUN -> [DMESG-WARN][64] ([Intel XE#5545]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-9/igt@xe_wedged@wedged-at-any-timeout.html #### Possible fixes #### * igt@kms_async_flips@alternate-sync-async-flip: - shard-lnl: [FAIL][65] ([Intel XE#3718] / [Intel XE#7265]) -> [PASS][66] +1 other test pass [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-lnl-7/igt@kms_async_flips@alternate-sync-async-flip.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-lnl-5/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [FAIL][67] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][69] ([Intel XE#1503]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-10/igt@kms_hdr@invalid-hdr.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-6/igt@kms_hdr@invalid-hdr.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][71] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-10/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_reset@long-spin-reuse-many-preempt-threads: - shard-bmg: [FAIL][73] ([Intel XE#7850]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-5/igt@xe_exec_reset@long-spin-reuse-many-preempt-threads.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-5/igt@xe_exec_reset@long-spin-reuse-many-preempt-threads.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-race: - shard-bmg: [ABORT][75] ([Intel XE#8007]) -> [PASS][76] +3 other tests pass [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-race.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-race.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random: - shard-bmg: [FAIL][77] ([Intel XE#7992]) -> [PASS][78] +3 other tests pass [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-1/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-1/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [FAIL][79] ([Intel XE#6569]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-9/igt@xe_sriov_flr@flr-vf1-clear.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-8/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_sriov_scheduling@equal-throughput-normal-priority@numvfs-random-gt1-vcs0: - shard-bmg: [FAIL][81] ([Intel XE#8526]) -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-9/igt@xe_sriov_scheduling@equal-throughput-normal-priority@numvfs-random-gt1-vcs0.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-6/igt@xe_sriov_scheduling@equal-throughput-normal-priority@numvfs-random-gt1-vcs0.html #### Warnings #### * igt@kms_flip@flip-vs-expired-vblank: - shard-lnl: [FAIL][83] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][84] ([Intel XE#301]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][85] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][86] ([Intel XE#3544]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9007/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [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#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870 [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7265 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348 [Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [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#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442 [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444 [Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447 [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [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#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850 [Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369 [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399 [Intel XE#8526]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8526 [Intel XE#8573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8573 [Intel XE#8608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8608 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_9007 -> IGTPW_15539 * Linux: xe-5412-116ce94f4e028e50e3523c46a8ce1e665ce47cb9 -> xe-5416-6d15737b9d1d05c2107a1fab794dfc77f15dd945 IGTPW_15539: 15539 IGT_9007: 9007 xe-5412-116ce94f4e028e50e3523c46a8ce1e665ce47cb9: 116ce94f4e028e50e3523c46a8ce1e665ce47cb9 xe-5416-6d15737b9d1d05c2107a1fab794dfc77f15dd945: 6d15737b9d1d05c2107a1fab794dfc77f15dd945 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15539/index.html [-- Attachment #2: Type: text/html, Size: 31657 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for tools/xe-perf-recorder: Add mmio-trigger support (rev3) 2026-07-16 7:14 [PATCH v3] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan ` (2 preceding siblings ...) 2026-07-16 11:42 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-07-16 11:51 ` Patchwork 2026-07-21 0:38 ` [PATCH v3] tools/xe-perf-recorder: Add mmio-trigger support Dixit, Ashutosh 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-07-16 11:51 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 151365 bytes --] == Series Details == Series: tools/xe-perf-recorder: Add mmio-trigger support (rev3) URL : https://patchwork.freedesktop.org/series/168824/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18834_full -> IGTPW_15539_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15539_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15539_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15539_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_crc@cursor-dpms@pipe-a-hdmi-a-1: - shard-glk11: NOTRUN -> [FAIL][1] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk11/igt@kms_cursor_crc@cursor-dpms@pipe-a-hdmi-a-1.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][2] -> [FAIL][3] +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@perf_pmu@most-busy-idle-check-all@vcs0: - shard-snb: [PASS][4] -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-snb1/igt@perf_pmu@most-busy-idle-check-all@vcs0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-snb1/igt@perf_pmu@most-busy-idle-check-all@vcs0.html Known issues ------------ Here are the changes found in IGTPW_15539_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-1/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-rkl: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-5/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-13/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-7/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@dmabuf@all-tests: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#15931]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-6/igt@dmabuf@all-tests.html - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#15931]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-1/igt@dmabuf@all-tests.html - shard-dg2: NOTRUN -> [SKIP][12] ([i915#15931]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-7/igt@dmabuf@all-tests.html - shard-dg1: NOTRUN -> [SKIP][13] ([i915#15931]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-16/igt@dmabuf@all-tests.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#14544] / [i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@gem_basic@multigpu-create-close.html - shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#7697]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@gem_basic@multigpu-create-close.html - shard-dg1: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-12/igt@gem_basic@multigpu-create-close.html - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-4/igt@gem_basic@multigpu-create-close.html - shard-dg2: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-3/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#4873]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-3/igt@gem_caching@writes.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-10/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#13008]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#6335]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8562]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-7/igt@gem_create@create-ext-set-pat.html - shard-rkl: NOTRUN -> [SKIP][24] ([i915#8562]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@gem_create@create-ext-set-pat.html - shard-dg1: NOTRUN -> [SKIP][25] ([i915#8562]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-13/igt@gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][26] ([i915#8562]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-4/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@process: - shard-snb: NOTRUN -> [SKIP][27] ([i915#1099]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-snb4/igt@gem_ctx_persistence@process.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [PASS][29] -> [INCOMPLETE][30] ([i915#13390]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@gem_eio@in-flight-suspend.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@gem_eio@in-flight-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][31] ([i915#13390]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk5/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@kms: - shard-rkl: [PASS][32] -> [DMESG-WARN][33] ([i915#13363]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@gem_eio@kms.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-5/igt@gem_eio@kms.html - shard-tglu: NOTRUN -> [DMESG-WARN][34] ([i915#13363]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-9/igt@gem_eio@kms.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@gem_exec_balancer@parallel.html - shard-tglu: NOTRUN -> [SKIP][36] ([i915#4525]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-4/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-balancer: - shard-tglu-1: NOTRUN -> [SKIP][37] ([i915#4525]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-5/igt@gem_exec_flush@basic-uc-ro-default.html - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-16/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-concurrent0: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#14544] / [i915#3281]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +6 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-16/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +5 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +9 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-6/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +12 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-14/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][48] -> [INCOMPLETE][49] ([i915#13356]) +1 other test incomplete [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg2-10/igt@gem_exec_suspend@basic-s0.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-7/igt@gem_exec_suspend@basic-s0.html - shard-rkl: [PASS][50] -> [INCOMPLETE][51] ([i915#13356]) +1 other test incomplete [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@gem_exec_suspend@basic-s0.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@gem_exec_suspend@basic-s0.html * igt@gem_exec_suspend@basic-s3: - shard-glk10: NOTRUN -> [INCOMPLETE][52] ([i915#13196] / [i915#13356]) +1 other test incomplete [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk10/igt@gem_exec_suspend@basic-s3.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4860]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-5/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#14544] / [i915#4613]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-dg1: NOTRUN -> [SKIP][55] ([i915#12193]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4565]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random: - shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#4613]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][59] ([i915#4613]) +5 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk3/igt@gem_lmem_swapping@verify-ccs.html - shard-tglu: NOTRUN -> [SKIP][60] ([i915#4613]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-5/igt@gem_lmem_swapping@verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4613]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-2/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +6 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-3/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4077]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-19/igt@gem_mmap_gtt@fault-concurrent-y.html - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4077]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-6/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-8/igt@gem_mmap_wc@write-gtt-read-wc.html - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4083]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-12/igt@gem_mmap_wc@write-gtt-read-wc.html - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4083]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-4/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_partial_pwrite_pread@write-display: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][69] ([i915#2658]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3282]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-3/igt@gem_pwrite@basic-exhaustion.html - shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-17/igt@gem_pwrite@basic-exhaustion.html - shard-snb: NOTRUN -> [WARN][72] ([i915#2658]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-snb5/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][73] ([i915#2658]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-7/igt@gem_pwrite@basic-exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3282]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#13717]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#13398]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-3/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4270]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4270]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-17/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#8428]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-1/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#5190] / [i915#8428]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-6/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_softpin@noreloc-s3: - shard-rkl: NOTRUN -> [INCOMPLETE][81] ([i915#13809] / [i915#16226]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@gem_softpin@noreloc-s3.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#3323]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-9/igt@gem_userptr_blits@dmabuf-sync.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-4/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-3/igt@gem_userptr_blits@dmabuf-unsync.html - shard-rkl: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-1/igt@gem_userptr_blits@dmabuf-unsync.html - shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-18/igt@gem_userptr_blits@dmabuf-unsync.html - shard-tglu: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-7/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#3297]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3281] / [i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-5/igt@gem_userptr_blits@relocations.html * igt@gem_workarounds@suspend-resume-context: - shard-glk11: NOTRUN -> [INCOMPLETE][90] ([i915#13356]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk11/igt@gem_workarounds@suspend-resume-context.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][91] +12 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-8/igt@gen3_render_tiledy_blits.html * igt@gen9_exec_parse@allowed-all: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#2527]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-without-end: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#2527]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-17/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-chained: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-8/igt@gen9_exec_parse@bb-chained.html - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#2856]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-4/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#2527] / [i915#2856]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-5/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-param: - shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html * igt@i915_drm_fdinfo@busy-hang@ccs0: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#14073]) +13 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-1/igt@i915_drm_fdinfo@busy-hang@ccs0.html * igt@i915_drm_fdinfo@busy@rcs0: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#14073]) +11 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-12/igt@i915_drm_fdinfo@busy@rcs0.html * igt@i915_drm_fdinfo@busy@vecs1: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#14073]) +23 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-8/igt@i915_drm_fdinfo@busy@vecs1.html * igt@i915_drm_fdinfo@virtual-busy: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#14118]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-19/igt@i915_drm_fdinfo@virtual-busy.html * igt@i915_module_load@fault-injection: - shard-dg2: NOTRUN -> [ABORT][102] ([i915#15342] / [i915#15481]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-8/igt@i915_module_load@fault-injection.html * igt@i915_module_load@fault-injection@__uc_init: - shard-dg2: NOTRUN -> [ABORT][103] ([i915#15481]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-8/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-dg2: NOTRUN -> [DMESG-WARN][104] ([i915#15342]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-8/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#8399]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-1/igt@i915_pm_freq_api@freq-reset.html - shard-tglu: NOTRUN -> [SKIP][106] ([i915#8399]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-7/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: NOTRUN -> [FAIL][107] ([i915#12964]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-8/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#11681] / [i915#6621]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-5/igt@i915_pm_rps@min-max-config-idle.html - shard-dg1: NOTRUN -> [SKIP][109] ([i915#11681] / [i915#6621]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-16/igt@i915_pm_rps@min-max-config-idle.html - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#11681] / [i915#6621]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-3/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4387]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-7/igt@i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][112] ([i915#14544] / [i915#4387]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4387]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-18/igt@i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][114] ([i915#4387]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-10/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#8437]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-5/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#6245]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#16079]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-3/igt@i915_query@query-topology-unsupported.html - shard-rkl: NOTRUN -> [SKIP][118] ([i915#16079]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-1/igt@i915_query@query-topology-unsupported.html - shard-dg1: NOTRUN -> [SKIP][119] ([i915#16079]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-18/igt@i915_query@query-topology-unsupported.html - shard-tglu: NOTRUN -> [SKIP][120] ([i915#16079]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-7/igt@i915_query@query-topology-unsupported.html - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#16079]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-3/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [PASS][122] -> [INCOMPLETE][123] ([i915#4817]) +1 other test incomplete [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@i915_suspend@fence-restore-untiled.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-4/igt@i915_suspend@fence-restore-untiled.html - shard-glk: NOTRUN -> [INCOMPLETE][124] ([i915#16182] / [i915#4817]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk1/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@forcewake: - shard-glk11: NOTRUN -> [INCOMPLETE][125] ([i915#16182] / [i915#4817]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk11/igt@i915_suspend@forcewake.html * igt@i915_suspend@sysfs-reader: - shard-glk: [PASS][126] -> [INCOMPLETE][127] ([i915#16182] / [i915#4817]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-glk6/igt@i915_suspend@sysfs-reader.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk2/igt@i915_suspend@sysfs-reader.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#7707]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-4/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4212]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-1/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-dg2: [PASS][130] -> [ABORT][131] ([i915#15132]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg2-4/igt@kms_async_flips@async-flip-suspend-resume.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-10/igt@kms_async_flips@async-flip-suspend-resume.html - shard-glk: NOTRUN -> [INCOMPLETE][132] ([i915#12761]) +1 other test incomplete [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-3: - shard-dg2: NOTRUN -> [ABORT][133] ([i915#15132]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-10/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-3.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#1769] / [i915#3555]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][135] ([i915#1769]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#5286]) +5 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#5286]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#5286]) +7 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5286]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#3828]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg1: NOTRUN -> [SKIP][141] ([i915#3828]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-13/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-180: - shard-mtlp: NOTRUN -> [FAIL][142] ([i915#15733] / [i915#5138]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-8/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#14544] / [i915#3638]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#3638]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][145] ([i915#3638]) +3 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-18/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5190]) +6 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#4538]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-16/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#10307] / [i915#6095]) +111 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#6095]) +19 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#14544] / [i915#6095]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#14098] / [i915#6095]) +52 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#6095]) +77 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#12313]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#12313]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#12313]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-14/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][157] ([i915#12313]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#12313]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][160] +581 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#12805]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][162] ([i915#12805]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][163] ([i915#12805]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-16/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][164] ([i915#12805]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#12805]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#6095]) +39 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#6095]) +12 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#12313]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#6095]) +59 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#6095]) +203 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-15/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#3742]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-3/igt@kms_cdclk@mode-transition.html - shard-dg1: NOTRUN -> [SKIP][172] ([i915#3742]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-19/igt@kms_cdclk@mode-transition.html - shard-tglu: NOTRUN -> [SKIP][173] ([i915#3742]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-10/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#16017]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-8/igt@kms_cdclk@mode-transition-all-outputs.html - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#16017]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#13781]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-8/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#13781]) +4 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#11151]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_chamelium_audio@dp-audio-after-suspend.html * igt@kms_chamelium_audio@hdmi-audio-after-suspend: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#14544]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][180] +7 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-6/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#16471]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-8/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html - shard-tglu: NOTRUN -> [SKIP][182] ([i915#16471]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-9/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#16471]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#16471]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-5/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#14544] / [i915#16471]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html - shard-dg1: NOTRUN -> [SKIP][186] ([i915#16471]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-18/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#11151] / [i915#7828]) +7 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#11151] / [i915#7828]) +3 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-glk11: NOTRUN -> [SKIP][189] +64 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk11/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#11151] / [i915#7828]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#11151] / [i915#7828]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#11151] / [i915#7828]) +6 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-9/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html - shard-dg2: NOTRUN -> [SKIP][193] ([i915#11151] / [i915#7828]) +3 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-8/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@deep-color: - shard-rkl: [PASS][194] -> [SKIP][195] ([i915#12655] / [i915#3555]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-1/igt@kms_color@deep-color.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@kms_color@deep-color.html * igt@kms_color_pipeline@plane-lut1d: - shard-snb: NOTRUN -> [SKIP][196] +208 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-snb5/igt@kms_color_pipeline@plane-lut1d.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#15330]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#15330]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-4/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#15330] / [i915#3116] / [i915#3299]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy-hdcp14: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#15865]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-5/igt@kms_content_protection@legacy-hdcp14.html - shard-rkl: NOTRUN -> [SKIP][201] ([i915#15865]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@kms_content_protection@legacy-hdcp14.html - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#15865]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-3/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#15865]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-4/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#15865]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-16/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent-hdcp14: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#14544] / [i915#15865]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_content_protection@uevent-hdcp14.html - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#15865]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#13049]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#8814]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][209] ([i915#13566]) +3 other tests fail [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8814]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#3555]) +5 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1: - shard-rkl: [PASS][212] -> [FAIL][213] ([i915#13566]) +2 other tests fail [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-2/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-5/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html - shard-tglu: [PASS][214] -> [FAIL][215] ([i915#13566]) +3 other tests fail [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-tglu-10/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-2/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#13049]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-8/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555]) +4 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-dg1: NOTRUN -> [SKIP][219] ([i915#3555]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-18/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [FAIL][220] ([i915#13566]) +1 other test fail [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#3555]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#13049]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#13046] / [i915#5354]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][224] ([i915#4103]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#4103]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#9809]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][227] ([i915#15804]) +1 other test fail [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#9067]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#4103]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#9723]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#13691]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev@basic: - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#1257]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_dp_aux_dev@basic.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#13749]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-7/igt@kms_dp_link_training@non-uhbr-mst.html - shard-tglu: NOTRUN -> [SKIP][234] ([i915#13749]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-6/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#13707]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp-bigjoiner: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#16361]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-16/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html - shard-tglu: NOTRUN -> [SKIP][237] ([i915#16361]) +4 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#16361]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-7/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html * igt@kms_dsc@dsc-with-formats-ultrajoiner: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#16361]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-8/igt@kms_dsc@dsc-with-formats-ultrajoiner.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#16361]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#16361]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#16084]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@dp-mst: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#16599]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@dsc: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#16600]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-14/igt@kms_feature_discovery@dsc.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#658]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@vrr: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#16600]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-5/igt@kms_feature_discovery@vrr.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#3637] / [i915#9934]) +7 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#3637] / [i915#9934]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#9934]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#9934]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-4/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#9934]) +10 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#3637] / [i915#9934]) +7 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#9934]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html - shard-dg1: NOTRUN -> [SKIP][254] ([i915#9934]) +6 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-18/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a4: - shard-dg1: [PASS][255] -> [FAIL][256] ([i915#14600]) +1 other test fail [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg1-17/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a4.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-19/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a4.html * igt@kms_flip@flip-vs-blocking-wf-vblank@d-edp1: - shard-mtlp: [PASS][257] -> [FAIL][258] ([i915#14600]) +1 other test fail [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-mtlp-3/igt@kms_flip@flip-vs-blocking-wf-vblank@d-edp1.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-1/igt@kms_flip@flip-vs-blocking-wf-vblank@d-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#15643]) +5 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#15643]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html - shard-dg2: NOTRUN -> [SKIP][261] ([i915#15643]) +3 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#15643]) +4 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#14544] / [i915#15643]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#15643]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][266] ([i915#15643]) +5 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_force_connector_basic@force-connector-state: - shard-mtlp: [PASS][267] -> [SKIP][268] ([i915#15672]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-mtlp-5/igt@kms_force_connector_basic@force-connector-state.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff: - shard-dg1: [PASS][269] -> [DMESG-WARN][270] ([i915#4391] / [i915#4423]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#15990] / [i915#8708]) +8 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html - shard-rkl: NOTRUN -> [SKIP][272] ([i915#1825]) +4 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#14544] / [i915#1825]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-indfb-fliptrack-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#15989]) +6 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff: - shard-rkl: [PASS][275] -> [SKIP][276] ([i915#15989]) +9 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#15990]) +11 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-12/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#15991]) +16 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#15990]) +4 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][280] +97 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-8/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-blt: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#15989]) +8 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-5/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-suspend: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#15989]) +21 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-6/igt@kms_frontbuffer_tracking@fbchdr-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#5439]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#15104] / [i915#15990]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][285] ([i915#15104] / [i915#15990]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#14544] / [i915#15102] / [i915#3023]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#15102]) +43 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#15991] / [i915#1825]) +11 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][289] +38 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#15102]) +17 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][291] +78 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#15990]) +11 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html - shard-rkl: NOTRUN -> [SKIP][293] ([i915#14544]) +6 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#15102]) +22 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-suspend.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move: - shard-dg2: [PASS][295] -> [SKIP][296] ([i915#15989]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-glk: [PASS][297] -> [SKIP][298] +4 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-mmap-cpu.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk2/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#15989]) +9 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-12/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-shrfb-msflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][300] +64 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#15989]) +18 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#15102]) +17 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#15102] / [i915#3023]) +13 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#15990] / [i915#8708]) +3 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#15991] / [i915#5354]) +12 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#15990] / [i915#8708]) +6 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#15989]) +16 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#15102]) +26 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-glk10: NOTRUN -> [SKIP][309] +131 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk10/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#15991]) +16 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-7/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_hdr@invalid-hdr: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#16518] / [i915#3555] / [i915#8228]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-1/igt@kms_hdr@invalid-hdr.html - shard-rkl: NOTRUN -> [SKIP][312] ([i915#3555] / [i915#8228]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@kms_hdr@invalid-hdr.html - shard-dg1: NOTRUN -> [SKIP][313] ([i915#3555] / [i915#8228]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-15/igt@kms_hdr@invalid-hdr.html - shard-tglu: NOTRUN -> [SKIP][314] ([i915#3555] / [i915#8228]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-5/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle: - shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#3555] / [i915#8228]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#15459]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#15458]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][318] ([i915#13688]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-2/igt@kms_joiner@basic-max-non-joiner.html - shard-dg2: NOTRUN -> [SKIP][319] ([i915#13688]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-6/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#15458]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#6301]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_stress@stress-xrgb8888-untiled: - shard-glk: NOTRUN -> [DMESG-FAIL][322] ([i915#118]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk1/igt@kms_pipe_stress@stress-xrgb8888-untiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-glk11: NOTRUN -> [DMESG-WARN][323] ([i915#118]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk11/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#15709]) +2 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#15709]) +3 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html - shard-dg1: NOTRUN -> [SKIP][326] ([i915#15709]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-16/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier@pipe-a-plane-5: - shard-mtlp: NOTRUN -> [SKIP][327] ([i915#16386]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][328] ([i915#15709]) +3 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#15709]) +4 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#16386]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-dg1: NOTRUN -> [SKIP][331] ([i915#16386]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-18/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#16112]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-7/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-rkl: NOTRUN -> [SKIP][333] ([i915#16112]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-dg1: NOTRUN -> [SKIP][334] ([i915#16112]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-13/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-tglu: NOTRUN -> [SKIP][335] ([i915#16112]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-4/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-mtlp: NOTRUN -> [SKIP][336] ([i915#16112]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-7/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][337] ([i915#10647] / [i915#12177]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk9/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][338] ([i915#10647]) +1 other test fail [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk9/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk10: NOTRUN -> [FAIL][339] ([i915#10647] / [i915#12169]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [FAIL][340] ([i915#10647]) +1 other test fail [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1.html * igt@kms_plane_cursor@viewport@pipe-a-edp-1-size-128: - shard-mtlp: [PASS][341] -> [FAIL][342] ([i915#15733]) +3 other tests fail [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-mtlp-2/igt@kms_plane_cursor@viewport@pipe-a-edp-1-size-128.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-8/igt@kms_plane_cursor@viewport@pipe-a-edp-1-size-128.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-dg1: NOTRUN -> [SKIP][343] ([i915#13958]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-19/igt@kms_plane_multiple@2x-tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][344] ([i915#13958]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-4/igt@kms_plane_multiple@2x-tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][345] ([i915#13958]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-1/igt@kms_plane_multiple@2x-tiling-yf.html - shard-rkl: NOTRUN -> [SKIP][346] ([i915#13958]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#14259]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-3/igt@kms_plane_multiple@tiling-4.html - shard-dg1: NOTRUN -> [SKIP][348] ([i915#14259]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-19/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_multiple@tiling-yf: - shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#14259]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [PASS][350] -> [SKIP][351] ([i915#6953]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#15329]) +4 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#12343] / [i915#9812]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][354] ([i915#12343] / [i915#5354]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-4/igt@kms_pm_backlight@fade-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][355] ([i915#12343] / [i915#5354]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-12/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-retention-flops: - shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#3828]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#15751]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-3/igt@kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [FAIL][358] ([i915#16479]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-1/igt@kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][359] ([i915#3361]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-18/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: NOTRUN -> [FAIL][360] ([i915#16479]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#9340]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][362] ([i915#9340]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][363] ([i915#9340]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html - shard-tglu: NOTRUN -> [SKIP][364] ([i915#3828]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-3/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][365] -> [SKIP][366] ([i915#15073]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg2-3/igt@kms_pm_rpm@dpms-non-lpsp.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: NOTRUN -> [SKIP][367] ([i915#15073]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][368] -> [SKIP][369] ([i915#15073]) +2 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg1: [PASS][370] -> [SKIP][371] ([i915#15073]) +2 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg1-19/igt@kms_pm_rpm@modeset-non-lpsp.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [PASS][372] -> [INCOMPLETE][373] ([i915#14419]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg2-3/igt@kms_pm_rpm@system-suspend-idle.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-5/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][374] ([i915#6524]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-7/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][375] ([i915#11520]) +15 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][376] ([i915#11520]) +2 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][377] ([i915#9808]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][378] ([i915#12316]) +2 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][379] ([i915#11520]) +2 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html - shard-snb: NOTRUN -> [SKIP][380] ([i915#11520]) +2 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-snb7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html - shard-dg1: NOTRUN -> [SKIP][381] ([i915#11520]) +2 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-12/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][382] ([i915#11520]) +6 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][383] ([i915#11520]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk11/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-glk10: NOTRUN -> [SKIP][384] ([i915#11520]) +3 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk10/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][385] ([i915#11520]) +8 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][386] ([i915#9683]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-6/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][387] ([i915#9683]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-2/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][388] ([i915#9732]) +18 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-10/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr-sprite-render: - shard-mtlp: NOTRUN -> [SKIP][389] ([i915#9688]) +10 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-4/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@fbc-psr2-basic: - shard-tglu-1: NOTRUN -> [SKIP][390] ([i915#9732]) +11 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][391] ([i915#1072] / [i915#9732]) +18 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@psr-primary-render: - shard-rkl: NOTRUN -> [SKIP][392] ([i915#1072] / [i915#14544] / [i915#9732]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_psr@psr-primary-render.html * igt@kms_psr@psr-sprite-render: - shard-dg2: NOTRUN -> [SKIP][393] ([i915#1072] / [i915#9732]) +10 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-7/igt@kms_psr@psr-sprite-render.html - shard-dg1: NOTRUN -> [SKIP][394] ([i915#1072] / [i915#9732]) +12 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-13/igt@kms_psr@psr-sprite-render.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk10: NOTRUN -> [INCOMPLETE][395] ([i915#15492] / [i915#16184]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk10/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk: NOTRUN -> [INCOMPLETE][396] ([i915#15492] / [i915#16184]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk9/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][397] ([i915#5289]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][398] ([i915#5289]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][399] ([i915#5289]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][400] ([i915#12755] / [i915#15867] / [i915#5190]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-tglu: NOTRUN -> [SKIP][401] ([i915#5289]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu-1: NOTRUN -> [SKIP][402] ([i915#8623]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@universal-plane-sanity: - shard-dg1: [PASS][403] -> [DMESG-WARN][404] ([i915#4423]) +1 other test dmesg-warn [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg1-12/igt@kms_universal_plane@universal-plane-sanity.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-13/igt@kms_universal_plane@universal-plane-sanity.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][405] ([i915#12276]) +1 other test incomplete [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk6/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][406] ([i915#9906]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-4/igt@kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][407] ([i915#9906]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-7/igt@kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][408] ([i915#9906]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-14/igt@kms_vrr@flip-basic-fastset.html - shard-tglu: NOTRUN -> [SKIP][409] ([i915#9906]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-5/igt@kms_vrr@flip-basic-fastset.html - shard-mtlp: NOTRUN -> [SKIP][410] ([i915#8808] / [i915#9906]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-2/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - shard-dg2: NOTRUN -> [SKIP][411] ([i915#15243] / [i915#3555]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-6/igt@kms_vrr@flip-suspend.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][412] ([i915#2434]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-5/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start: - shard-mtlp: NOTRUN -> [FAIL][413] ([i915#4349]) +2 other tests fail [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-7/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][414] ([i915#4349]) +4 other tests fail [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [ABORT][415] ([i915#13029] / [i915#15778]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-3/igt@perf_pmu@module-unload.html * igt@perf_pmu@most-busy-idle-check-all: - shard-rkl: [PASS][416] -> [FAIL][417] ([i915#15997]) +2 other tests fail [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@most-busy-idle-check-all@bcs0: - shard-snb: [PASS][418] -> [FAIL][419] ([i915#15997]) +2 other tests fail [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-snb1/igt@perf_pmu@most-busy-idle-check-all@bcs0.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-snb1/igt@perf_pmu@most-busy-idle-check-all@bcs0.html * igt@perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][420] ([i915#13356] / [i915#14242] / [i915#16236]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk5/igt@perf_pmu@rc6-suspend.html * igt@prime_udl@share-import-addfb: - shard-rkl: NOTRUN -> [SKIP][421] ([i915#16420]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-7/igt@prime_udl@share-import-addfb.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][422] ([i915#3708]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7: - shard-tglu-1: NOTRUN -> [SKIP][423] ([i915#16066]) +9 other tests skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7.html #### Possible fixes #### * igt@gem_exec_big@single: - shard-tglu: [FAIL][424] ([i915#15816]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-tglu-8/igt@gem_exec_big@single.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-5/igt@gem_exec_big@single.html * igt@gem_exec_suspend@basic-s3@smem: - shard-snb: [ABORT][426] ([i915#15840]) -> [PASS][427] +1 other test pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-snb6/igt@gem_exec_suspend@basic-s3@smem.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-snb4/igt@gem_exec_suspend@basic-s3@smem.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [INCOMPLETE][428] ([i915#14694] / [i915#15582]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][430] ([i915#13566]) -> [PASS][431] +2 other tests pass [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-tglu: [FAIL][432] ([i915#13566]) -> [PASS][433] +3 other tests pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [INCOMPLETE][434] ([i915#16276] / [i915#6113]) -> [PASS][435] +1 other test pass [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-7/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-rc-ccs-cc-to-4-mc-ccs: - shard-mtlp: [FAIL][436] ([i915#15733]) -> [PASS][437] [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-mtlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-rc-ccs-cc-to-4-mc-ccs.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-rc-ccs-cc-to-4-mc-ccs.html * igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-rc-ccs-cc-to-4-rc-ccs: - shard-mtlp: [DMESG-FAIL][438] ([i915#16175]) -> [PASS][439] +1 other test pass [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-mtlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-rc-ccs-cc-to-4-rc-ccs.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-rc-ccs-cc-to-4-rc-ccs.html * igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render: - shard-rkl: [SKIP][440] ([i915#15989]) -> [PASS][441] +11 other tests pass [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-blt: - shard-glk: [SKIP][442] -> [PASS][443] +5 other tests pass [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-glk6/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-blt.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][444] ([i915#15073]) -> [PASS][445] [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: [SKIP][446] ([i915#15073]) -> [PASS][447] +1 other test pass [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@system-suspend-idle: - shard-rkl: [ABORT][448] ([i915#15132]) -> [PASS][449] [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-1/igt@kms_pm_rpm@system-suspend-idle.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-5/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-rkl: [INCOMPLETE][450] ([i915#14419]) -> [PASS][451] [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@kms_pm_rpm@system-suspend-modeset.html * igt@perf_pmu@all-busy-idle-check-all: - shard-mtlp: [FAIL][452] ([i915#15453]) -> [PASS][453] [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-mtlp-6/igt@perf_pmu@all-busy-idle-check-all.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html #### Warnings #### * igt@api_intel_bb@crc32: - shard-rkl: [SKIP][454] ([i915#14544] / [i915#6230]) -> [SKIP][455] ([i915#6230]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@api_intel_bb@crc32.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@api_intel_bb@crc32.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: [SKIP][456] ([i915#9323]) -> [SKIP][457] ([i915#14544] / [i915#9323]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-rkl: [SKIP][458] ([i915#3281]) -> [SKIP][459] ([i915#14544] / [i915#3281]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-3/igt@gem_exec_reloc@basic-wc-gtt.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_exec_reloc@basic-write-gtt: - shard-rkl: [SKIP][460] ([i915#14544] / [i915#3281]) -> [SKIP][461] ([i915#3281]) +1 other test skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@gem_exec_reloc@basic-write-gtt.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@gem_exec_reloc@basic-write-gtt.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-rkl: [SKIP][462] ([i915#4613]) -> [SKIP][463] ([i915#14544] / [i915#4613]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-engines.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_media_vme: - shard-rkl: [SKIP][464] ([i915#284]) -> [SKIP][465] ([i915#14544] / [i915#284]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-8/igt@gem_media_vme.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@gem_media_vme.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: [SKIP][466] ([i915#14544] / [i915#3282]) -> [SKIP][467] ([i915#3282]) +1 other test skip [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-7/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_tiled_pread_pwrite: - shard-rkl: [SKIP][468] ([i915#3282]) -> [SKIP][469] ([i915#14544] / [i915#3282]) +1 other test skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-8/igt@gem_tiled_pread_pwrite.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@gem_tiled_pread_pwrite.html * igt@gen9_exec_parse@batch-zero-length: - shard-rkl: [SKIP][470] ([i915#2527]) -> [SKIP][471] ([i915#14544] / [i915#2527]) [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-4/igt@gen9_exec_parse@batch-zero-length.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@unaligned-jump: - shard-rkl: [SKIP][472] ([i915#14544] / [i915#2527]) -> [SKIP][473] ([i915#2527]) +1 other test skip [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@gen9_exec_parse@unaligned-jump.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-4/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@resize-bar: - shard-rkl: [SKIP][474] ([i915#6412]) -> [SKIP][475] ([i915#14544] / [i915#6412]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@i915_module_load@resize-bar.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: [SKIP][476] ([i915#14544] / [i915#8399]) -> [SKIP][477] ([i915#8399]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@i915_pm_freq_api@freq-suspend.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: [SKIP][478] ([i915#14544] / [i915#5286]) -> [SKIP][479] ([i915#5286]) +1 other test skip [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-rkl: [SKIP][480] ([i915#5286]) -> [SKIP][481] ([i915#14544] / [i915#5286]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: [SKIP][482] ([i915#3638]) -> [SKIP][483] ([i915#14544] / [i915#3638]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-90.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: [SKIP][484] ([i915#14544] / [i915#3638]) -> [SKIP][485] ([i915#3638]) +1 other test skip [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: [SKIP][486] ([i915#3828]) -> [SKIP][487] ([i915#14544] / [i915#3828]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][488] ([i915#14098] / [i915#6095]) -> [SKIP][489] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][490] ([i915#6095]) -> [SKIP][491] ([i915#14544] / [i915#6095]) +3 other tests skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][492] ([i915#14544] / [i915#6095]) -> [SKIP][493] ([i915#6095]) +3 other tests skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][494] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][495] ([i915#14098] / [i915#6095]) +8 other tests skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg1: [SKIP][496] ([i915#6095]) -> [SKIP][497] ([i915#4423] / [i915#6095]) +1 other test skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg1-12/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-13/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@plane-scaling: - shard-rkl: [SKIP][498] ([i915#3742]) -> [SKIP][499] ([i915#14544] / [i915#3742]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-3/igt@kms_cdclk@plane-scaling.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4: - shard-rkl: [SKIP][500] ([i915#16471]) -> [SKIP][501] ([i915#14544] / [i915#16471]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-5/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4: - shard-rkl: [SKIP][502] ([i915#14544] / [i915#16471]) -> [SKIP][503] ([i915#16471]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-1/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-rkl: [SKIP][504] ([i915#11151] / [i915#7828]) -> [SKIP][505] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-rkl: [SKIP][506] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][507] ([i915#11151] / [i915#7828]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-5/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: [FAIL][508] ([i915#7173]) -> [SKIP][509] ([i915#15865]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg2-10/igt@kms_content_protection@atomic-dpms.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: [SKIP][510] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][511] ([i915#15330] / [i915#3116]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-rkl: [SKIP][512] ([i915#15865]) -> [SKIP][513] ([i915#14544] / [i915#15865]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@kms_content_protection@legacy.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-rkl: [SKIP][514] ([i915#14544] / [i915#15865]) -> [SKIP][515] ([i915#15865]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_content_protection@mei-interface.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-5/igt@kms_content_protection@mei-interface.html - shard-dg1: [SKIP][516] ([i915#9433]) -> [SKIP][517] ([i915#15865]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg1-12/igt@kms_content_protection@mei-interface.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-16/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: [SKIP][518] ([i915#13049] / [i915#14544]) -> [SKIP][519] ([i915#13049]) +1 other test skip [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2: [SKIP][520] ([i915#13049] / [i915#3359]) -> [SKIP][521] ([i915#13049]) +1 other test skip [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-512x512.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: [SKIP][522] -> [SKIP][523] ([i915#14544]) +21 other tests skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: [SKIP][524] ([i915#4103]) -> [SKIP][525] ([i915#14544] / [i915#4103]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_dsc@dsc-fractional-bpp-ultrajoiner: - shard-rkl: [SKIP][526] ([i915#14544] / [i915#16361]) -> [SKIP][527] ([i915#16361]) +1 other test skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html * igt@kms_feature_discovery@psr2: - shard-rkl: [SKIP][528] ([i915#14544] / [i915#658]) -> [SKIP][529] ([i915#658]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_feature_discovery@psr2.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-rkl: [SKIP][530] ([i915#9934]) -> [SKIP][531] ([i915#14544] / [i915#9934]) +1 other test skip [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][532] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][533] ([i915#12745] / [i915#4839] / [i915#6113]) [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: [INCOMPLETE][534] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][535] ([i915#12745]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-rkl: [SKIP][536] ([i915#14544] / [i915#15643]) -> [SKIP][537] ([i915#15643]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: [SKIP][538] ([i915#15643]) -> [SKIP][539] ([i915#14544] / [i915#15643]) +1 other test skip [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][540] ([i915#14544]) -> [SKIP][541] +26 other tests skip [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-4: - shard-rkl: [SKIP][542] ([i915#14544] / [i915#5439]) -> [SKIP][543] ([i915#5439]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][544] ([i915#14544] / [i915#1825]) -> [SKIP][545] ([i915#1825]) +2 other tests skip [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: [SKIP][546] ([i915#15102]) -> [SKIP][547] ([i915#10433] / [i915#15102]) +1 other test skip [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-blt: - shard-rkl: [SKIP][548] ([i915#15102]) -> [SKIP][549] ([i915#14544] / [i915#15102]) +8 other tests skip [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-blt.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-glk: [SKIP][550] -> [INCOMPLETE][551] ([i915#16056] / [i915#16593]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-glk4/igt@kms_frontbuffer_tracking@hdr-suspend.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-glk8/igt@kms_frontbuffer_tracking@hdr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][552] ([i915#10433] / [i915#15102]) -> [SKIP][553] ([i915#15102]) +3 other tests skip [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][554] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][555] ([i915#15102] / [i915#3023]) +8 other tests skip [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen: - shard-dg1: [SKIP][556] ([i915#15102] / [i915#4423]) -> [SKIP][557] ([i915#15102]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg1: [SKIP][558] -> [SKIP][559] ([i915#4423]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-rkl: [SKIP][560] ([i915#15102] / [i915#3023]) -> [SKIP][561] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-blt: - shard-rkl: [SKIP][562] ([i915#14544] / [i915#15102]) -> [SKIP][563] ([i915#15102]) +8 other tests skip [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-blt.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: [SKIP][564] ([i915#14544] / [i915#15460]) -> [SKIP][565] ([i915#15460]) [564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-7/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: [SKIP][566] ([i915#15458]) -> [SKIP][567] ([i915#14544] / [i915#15458]) [566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: [SKIP][568] ([i915#14544] / [i915#14712]) -> [SKIP][569] ([i915#14712]) [568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-4/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-rkl: [SKIP][570] ([i915#15709]) -> [SKIP][571] ([i915#14544] / [i915#15709]) [570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: [SKIP][572] ([i915#14544] / [i915#15709]) -> [SKIP][573] ([i915#15709]) +1 other test skip [572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: [SKIP][574] ([i915#14544] / [i915#3555]) -> [SKIP][575] ([i915#3555]) +1 other test skip [574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-x: - shard-rkl: [SKIP][576] ([i915#13958]) -> [SKIP][577] ([i915#13958] / [i915#14544]) [576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-x.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_pm_dc@dc5-pageflip-negative: - shard-rkl: [SKIP][578] ([i915#9685]) -> [SKIP][579] ([i915#14544] / [i915#9685]) [578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-5/igt@kms_pm_dc@dc5-pageflip-negative.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_pm_dc@dc5-pageflip-negative.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-rkl: [SKIP][580] ([i915#11520]) -> [SKIP][581] ([i915#11520] / [i915#14544]) +1 other test skip [580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg1: [SKIP][582] ([i915#11520] / [i915#4423]) -> [SKIP][583] ([i915#11520]) [582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg1-16/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-18/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: [SKIP][584] ([i915#11520] / [i915#14544]) -> [SKIP][585] ([i915#11520]) +1 other test skip [584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: [SKIP][586] ([i915#9683]) -> [SKIP][587] ([i915#14544] / [i915#9683]) [586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-7/igt@kms_psr2_su@page_flip-nv12.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: [SKIP][588] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][589] ([i915#1072] / [i915#9732]) +8 other tests skip [588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@fbc-psr2-suspend: - shard-dg1: [SKIP][590] ([i915#1072] / [i915#9732]) -> [SKIP][591] ([i915#1072] / [i915#4423] / [i915#9732]) [590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg1-13/igt@kms_psr@fbc-psr2-suspend.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-19/igt@kms_psr@fbc-psr2-suspend.html * igt@kms_psr@psr2-suspend: - shard-rkl: [SKIP][592] ([i915#1072] / [i915#9732]) -> [SKIP][593] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-2/igt@kms_psr@psr2-suspend.html [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_psr@psr2-suspend.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: [SKIP][594] ([i915#14544] / [i915#5289]) -> [SKIP][595] ([i915#5289]) +1 other test skip [594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: [SKIP][596] ([i915#5289]) -> [SKIP][597] ([i915#14544] / [i915#5289]) [596]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: [SKIP][598] ([i915#15867]) -> [SKIP][599] ([i915#12755] / [i915#15867]) [598]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-270.html [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-270.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: [SKIP][600] ([i915#14544] / [i915#2433]) -> [SKIP][601] ([i915#2433]) [600]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-1/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@module-unload: - shard-dg1: [ABORT][602] ([i915#13029] / [i915#15778]) -> [ABORT][603] ([i915#15778]) [602]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-dg1-18/igt@perf_pmu@module-unload.html [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-dg1-17/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: [SKIP][604] ([i915#8516]) -> [SKIP][605] ([i915#14544] / [i915#8516]) [604]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18834/shard-rkl-5/igt@perf_pmu@rc6-all-gts.html [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15751]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15751 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#15997]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15997 [i915#16017]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16017 [i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084 [i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112 [i915#16175]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16175 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16226 [i915#16236]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16236 [i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386 [i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16479 [i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518 [i915#16593]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16593 [i915#16599]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16599 [i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9007 -> IGTPW_15539 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18834: 6d15737b9d1d05c2107a1fab794dfc77f15dd945 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15539: 15539 IGT_9007: 9007 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15539/index.html [-- Attachment #2: Type: text/html, Size: 200653 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3] tools/xe-perf-recorder: Add mmio-trigger support 2026-07-16 7:14 [PATCH v3] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan ` (3 preceding siblings ...) 2026-07-16 11:51 ` ✗ i915.CI.Full: " Patchwork @ 2026-07-21 0:38 ` Dixit, Ashutosh 2026-07-21 3:14 ` Shekhar Chauhan 4 siblings, 1 reply; 7+ messages in thread From: Dixit, Ashutosh @ 2026-07-21 0:38 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev On Thu, 16 Jul 2026 00:14:32 -0700, Shekhar Chauhan wrote: > Almost there, just a few remaining nit's. > Add mmio-trigger support to xe-perf-recorder, to justify the > whitelisting of OA MMIO Trigger Registers in XeKMD. > > v2: Add all OA unit types, fix includes, compile warnings and adding > extra triggger for file mode. (Ashutosh) > v3: Add a couple of asserts and commits. (Ashutosh) Incidentally, the subject line for your IGT patches should be '[PATCH i-g-t v3]' not [PATCH v3]. This can be configured in your .git/config: [format] subjectprefix = PATCH i-g-t > Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> > --- > tools/xe-perf/xe_perf_recorder.c | 119 ++++++++++++++++++++++++++++++- > 1 file changed, 117 insertions(+), 2 deletions(-) > > diff --git a/tools/xe-perf/xe_perf_recorder.c b/tools/xe-perf/xe_perf_recorder.c > index f200fe9c9..7e7df9bca 100644 > --- a/tools/xe-perf/xe_perf_recorder.c > +++ b/tools/xe-perf/xe_perf_recorder.c > @@ -26,19 +26,29 @@ > #include <unistd.h> > > #include "igt_core.h" > +#include "intel_batchbuffer.h" > #include "intel_chipset.h" > +#include "intel_reg.h" Looks like this is not needed, can you check. > #include "ioctl_wrappers.h" > #include "linux_scaffold.h" > +#include "xe/xe_ioctl.h" > #include "xe/xe_oa.h" > #include "xe/xe_oa_data.h" > #include "xe/xe_query.h" > > #include "xe_perf_recorder_commands.h" > > -#define ALIGN(v, a) (((v) + (a)-1) & ~((a)-1)) > -#define ARRAY_SIZE(arr) (sizeof(arr)/sizeof((arr)[0])) > #define MAX(a,b) ((a) > (b) ? (a) : (b)) > #define MIN(a,b) ((a) < (b) ? (a) : (b)) > +#define OAG_MMIOTRIGGER 0xdb1c > +#define OAMERT_MMIOTRIGGER 0x1453cc > +#define OAM_MMIOTRIGGER_OFFSET 0x1d0 > +#define MEDIA_GT_GSI_OFFSET 0x380000 > +#define XE_OAM_SAG_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x13000) > +#define XE_OAM_SCMI_0_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x14000) > +#define XE_OAM_SCMI_1_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x14800) > +#define OAREPORT_REASON_MASK 0x3f > +#define OAREPORT_REASON_SHIFT 19 > > struct circular_buffer { > char *data; > @@ -354,8 +364,50 @@ struct recording_context { > int oa_unit_id; > struct drm_xe_oa_unit *oa_unit; > struct drm_xe_engine_class_instance *hwe; > + > + uint32_t vm; > + uint32_t exec_queue; > + struct intel_bb *ibb; > }; > > +static uint32_t oa_unit_mmio_trigger_reg(struct recording_context *ctx) > +{ > + const struct drm_xe_oa_unit *oau = ctx->oa_unit; > + > + switch (oau->oa_unit_type) { > + case DRM_XE_OA_UNIT_TYPE_OAM: { > + struct drm_xe_query_oa_units *qoa = xe_oa_units(ctx->drm_fd); > + uint8_t *poau = (uint8_t *)&qoa->oa_units[0]; > + int first_oam_id = -1; > + > + /* Find the first OAM unit, as in oa_unit_by_type() */ > + for (int i = 0; i < qoa->num_oa_units; i++) { > + struct drm_xe_oa_unit *u = (struct drm_xe_oa_unit *)poau; > + > + if (u->oa_unit_type == DRM_XE_OA_UNIT_TYPE_OAM) { > + first_oam_id = u->oa_unit_id; > + break; > + } > + poau += sizeof(*u) + u->num_engines * sizeof(u->eci[0]); > + } > + > + assert(first_oam_id != -1); > + > + if (oau->oa_unit_id == first_oam_id) > + return XE_OAM_SCMI_0_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET; > + return XE_OAM_SCMI_1_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET; > + } > + case DRM_XE_OA_UNIT_TYPE_OAM_SAG: > + return XE_OAM_SAG_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET; > + case DRM_XE_OA_UNIT_TYPE_MERT: > + return OAMERT_MMIOTRIGGER; > + case DRM_XE_OA_UNIT_TYPE_OAG: > + return OAG_MMIOTRIGGER; > + default: > + assert(0); > + } > +} > + > static void set_fd_flags(int fd, int flags) > { > int old = fcntl(fd, F_GETFL, 0); > @@ -569,6 +621,28 @@ static bool write_stream_status(struct recording_context *ctx, FILE *output) > return true; > } > > +static uint32_t > +report_reason(const uint32_t *report) > +{ > + return (report[0] >> OAREPORT_REASON_SHIFT) & OAREPORT_REASON_MASK; > +} > + > +static void > +check_mmio_trigger_report(struct recording_context *ctx, const void *report) > +{ > + const struct xe_oa_format *fmt = &oa_formats[ctx->metric_set->perf_oa_format]; > + const uint32_t *report_32 = report; > + uint64_t value; > + > + if (report_reason(report_32)) > + return; > + > + value = (fmt->header == HDR_64_BIT) ? ((const uint64_t *)report)[2] : report_32[2]; > + > + if (value == 0xc0ffee01 || value == 0xc0ffee02) > + fprintf(stdout, "Received trigger report with value 0x%" PRIx64 "\n", value); > +} > + > static bool write_stream_data(struct recording_context *ctx, > char *data, ssize_t size, FILE *output) > { > @@ -582,6 +656,8 @@ static bool write_stream_data(struct recording_context *ctx, > .size = sizeof(header) + format_size, > }; > > + check_mmio_trigger_report(ctx, data + i * format_size); > + I just sent this patch fixing what seems to me to be a previously existing bug: https://patchwork.freedesktop.org/series/170781/ Please review this patch and change your patch accordingly (assuming the above bug-fix is applied before your patch). > if (fwrite(&header, sizeof(header), 1, output) != 1) > return false; > > @@ -697,6 +773,22 @@ write_correlation_timestamps(struct recording_context *ctx, FILE *output) > return write_saved_correlation_timestamps(output, &corr); > } > > +static void emit_mmio_triggered_report(struct intel_bb *ibb, uint32_t reg, uint32_t value) > +{ > + intel_bb_out(ibb, MI_LOAD_REGISTER_IMM(1)); > + intel_bb_out(ibb, reg); > + intel_bb_out(ibb, value); > +} > + > +static void emit_oa_trigger(struct recording_context *ctx, uint32_t value) > +{ > + emit_mmio_triggered_report(ctx->ibb, oa_unit_mmio_trigger_reg(ctx), value); > + > + intel_bb_flush_render(ctx->ibb); > + intel_bb_sync(ctx->ibb); > + intel_bb_reset(ctx->ibb, false); > +} > + > static void > read_command_file(struct recording_context *ctx) > { > @@ -712,6 +804,9 @@ read_command_file(struct recording_context *ctx) > uint8_t *dump = malloc(len); > FILE *file; > > + emit_oa_trigger(ctx, 0xc0ffee02); > + write_perf_data(ctx->output_stream, ctx); > + > while (offset < len && > ((ret = read(ctx->command_fifo_fd, > (void *) dump + offset, len - offset)) > 0 > @@ -835,6 +930,13 @@ usage(const char *name) > static void > teardown_recording_context(struct recording_context *ctx) > { > + if (ctx->ibb) > + intel_bb_destroy(ctx->ibb); > + if (ctx->exec_queue) > + xe_exec_queue_destroy(ctx->drm_fd, ctx->exec_queue); > + if (ctx->vm) > + xe_vm_destroy(ctx->drm_fd, ctx->vm); > + > if (ctx->topology) > free(ctx->topology); > > @@ -912,6 +1014,14 @@ static int assign_oa_unit(int fd, struct recording_context *ctx) > return -1; > } > > +static void init_trigger_ctx(struct recording_context *ctx) Let's call this init_mmio_trigger_ctx. > +{ > + ctx->vm = xe_vm_create(ctx->drm_fd, 0, 0); > + ctx->exec_queue = xe_exec_queue_create(ctx->drm_fd, ctx->vm, ctx->hwe, 0); > + ctx->ibb = intel_bb_create_with_context(ctx->drm_fd, ctx->exec_queue, ctx->vm, > + NULL, BATCH_SZ); Fix alignment here. > +} > + > int > main(int argc, char *argv[]) > { > @@ -1180,6 +1290,9 @@ main(int argc, char *argv[]) > goto fail; > } > > + init_trigger_ctx(&ctx); If we move this right after xe_device_get(), then I think we can remove the new if checks in teardown_recording_context(). Anyway, we can live with those if checks too, so either way is fine with me. > + emit_oa_trigger(&ctx, 0xc0ffee01); > + > corr_period_ns = corr_period * 1000000000ul; > poll_time_ns = corr_period_ns; > > @@ -1227,6 +1340,8 @@ main(int argc, char *argv[]) > } > } > > + /* Emit second OA trigger for the case where circular buffer is not used */ > + emit_oa_trigger(&ctx, 0xc0ffee02); > fprintf(stdout, "Exiting...\n"); > > if (!write_perf_data(ctx.output_stream, &ctx)) { > -- > 2.53.0 > Thanks. -- Ashutosh ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3] tools/xe-perf-recorder: Add mmio-trigger support 2026-07-21 0:38 ` [PATCH v3] tools/xe-perf-recorder: Add mmio-trigger support Dixit, Ashutosh @ 2026-07-21 3:14 ` Shekhar Chauhan 0 siblings, 0 replies; 7+ messages in thread From: Shekhar Chauhan @ 2026-07-21 3:14 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev On 7/21/2026 6:08, Dixit, Ashutosh wrote: > On Thu, 16 Jul 2026 00:14:32 -0700, Shekhar Chauhan wrote: > Almost there, just a few remaining nit's. > > >> Add mmio-trigger support to xe-perf-recorder, to justify the >> whitelisting of OA MMIO Trigger Registers in XeKMD. >> >> v2: Add all OA unit types, fix includes, compile warnings and adding >> extra triggger for file mode. (Ashutosh) >> v3: Add a couple of asserts and commits. (Ashutosh) > Incidentally, the subject line for your IGT patches should be '[PATCH i-g-t > v3]' not [PATCH v3]. This can be configured in your .git/config: > > [format] > subjectprefix = PATCH i-g-t > >> Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> >> --- >> tools/xe-perf/xe_perf_recorder.c | 119 ++++++++++++++++++++++++++++++- >> 1 file changed, 117 insertions(+), 2 deletions(-) >> >> diff --git a/tools/xe-perf/xe_perf_recorder.c b/tools/xe-perf/xe_perf_recorder.c >> index f200fe9c9..7e7df9bca 100644 >> --- a/tools/xe-perf/xe_perf_recorder.c >> +++ b/tools/xe-perf/xe_perf_recorder.c >> @@ -26,19 +26,29 @@ >> #include <unistd.h> >> >> #include "igt_core.h" >> +#include "intel_batchbuffer.h" >> #include "intel_chipset.h" >> +#include "intel_reg.h" > Looks like this is not needed, can you check. > >> #include "ioctl_wrappers.h" >> #include "linux_scaffold.h" >> +#include "xe/xe_ioctl.h" >> #include "xe/xe_oa.h" >> #include "xe/xe_oa_data.h" >> #include "xe/xe_query.h" >> >> #include "xe_perf_recorder_commands.h" >> >> -#define ALIGN(v, a) (((v) + (a)-1) & ~((a)-1)) >> -#define ARRAY_SIZE(arr) (sizeof(arr)/sizeof((arr)[0])) >> #define MAX(a,b) ((a) > (b) ? (a) : (b)) >> #define MIN(a,b) ((a) < (b) ? (a) : (b)) >> +#define OAG_MMIOTRIGGER 0xdb1c >> +#define OAMERT_MMIOTRIGGER 0x1453cc >> +#define OAM_MMIOTRIGGER_OFFSET 0x1d0 >> +#define MEDIA_GT_GSI_OFFSET 0x380000 >> +#define XE_OAM_SAG_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x13000) >> +#define XE_OAM_SCMI_0_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x14000) >> +#define XE_OAM_SCMI_1_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x14800) >> +#define OAREPORT_REASON_MASK 0x3f >> +#define OAREPORT_REASON_SHIFT 19 >> >> struct circular_buffer { >> char *data; >> @@ -354,8 +364,50 @@ struct recording_context { >> int oa_unit_id; >> struct drm_xe_oa_unit *oa_unit; >> struct drm_xe_engine_class_instance *hwe; >> + >> + uint32_t vm; >> + uint32_t exec_queue; >> + struct intel_bb *ibb; >> }; >> >> +static uint32_t oa_unit_mmio_trigger_reg(struct recording_context *ctx) >> +{ >> + const struct drm_xe_oa_unit *oau = ctx->oa_unit; >> + >> + switch (oau->oa_unit_type) { >> + case DRM_XE_OA_UNIT_TYPE_OAM: { >> + struct drm_xe_query_oa_units *qoa = xe_oa_units(ctx->drm_fd); >> + uint8_t *poau = (uint8_t *)&qoa->oa_units[0]; >> + int first_oam_id = -1; >> + >> + /* Find the first OAM unit, as in oa_unit_by_type() */ >> + for (int i = 0; i < qoa->num_oa_units; i++) { >> + struct drm_xe_oa_unit *u = (struct drm_xe_oa_unit *)poau; >> + >> + if (u->oa_unit_type == DRM_XE_OA_UNIT_TYPE_OAM) { >> + first_oam_id = u->oa_unit_id; >> + break; >> + } >> + poau += sizeof(*u) + u->num_engines * sizeof(u->eci[0]); >> + } >> + >> + assert(first_oam_id != -1); >> + >> + if (oau->oa_unit_id == first_oam_id) >> + return XE_OAM_SCMI_0_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET; >> + return XE_OAM_SCMI_1_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET; >> + } >> + case DRM_XE_OA_UNIT_TYPE_OAM_SAG: >> + return XE_OAM_SAG_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET; >> + case DRM_XE_OA_UNIT_TYPE_MERT: >> + return OAMERT_MMIOTRIGGER; >> + case DRM_XE_OA_UNIT_TYPE_OAG: >> + return OAG_MMIOTRIGGER; >> + default: >> + assert(0); >> + } >> +} >> + >> static void set_fd_flags(int fd, int flags) >> { >> int old = fcntl(fd, F_GETFL, 0); >> @@ -569,6 +621,28 @@ static bool write_stream_status(struct recording_context *ctx, FILE *output) >> return true; >> } >> >> +static uint32_t >> +report_reason(const uint32_t *report) >> +{ >> + return (report[0] >> OAREPORT_REASON_SHIFT) & OAREPORT_REASON_MASK; >> +} >> + >> +static void >> +check_mmio_trigger_report(struct recording_context *ctx, const void *report) >> +{ >> + const struct xe_oa_format *fmt = &oa_formats[ctx->metric_set->perf_oa_format]; >> + const uint32_t *report_32 = report; >> + uint64_t value; >> + >> + if (report_reason(report_32)) >> + return; >> + >> + value = (fmt->header == HDR_64_BIT) ? ((const uint64_t *)report)[2] : report_32[2]; >> + >> + if (value == 0xc0ffee01 || value == 0xc0ffee02) >> + fprintf(stdout, "Received trigger report with value 0x%" PRIx64 "\n", value); >> +} >> + >> static bool write_stream_data(struct recording_context *ctx, >> char *data, ssize_t size, FILE *output) >> { >> @@ -582,6 +656,8 @@ static bool write_stream_data(struct recording_context *ctx, >> .size = sizeof(header) + format_size, >> }; >> >> + check_mmio_trigger_report(ctx, data + i * format_size); >> + > I just sent this patch fixing what seems to me to be a previously existing > bug: > > https://patchwork.freedesktop.org/series/170781/ > > Please review this patch and change your patch accordingly (assuming the > above bug-fix is applied before your patch). > > >> if (fwrite(&header, sizeof(header), 1, output) != 1) >> return false; >> >> @@ -697,6 +773,22 @@ write_correlation_timestamps(struct recording_context *ctx, FILE *output) >> return write_saved_correlation_timestamps(output, &corr); >> } >> >> +static void emit_mmio_triggered_report(struct intel_bb *ibb, uint32_t reg, uint32_t value) >> +{ >> + intel_bb_out(ibb, MI_LOAD_REGISTER_IMM(1)); >> + intel_bb_out(ibb, reg); >> + intel_bb_out(ibb, value); >> +} >> + >> +static void emit_oa_trigger(struct recording_context *ctx, uint32_t value) >> +{ >> + emit_mmio_triggered_report(ctx->ibb, oa_unit_mmio_trigger_reg(ctx), value); >> + >> + intel_bb_flush_render(ctx->ibb); >> + intel_bb_sync(ctx->ibb); >> + intel_bb_reset(ctx->ibb, false); >> +} >> + >> static void >> read_command_file(struct recording_context *ctx) >> { >> @@ -712,6 +804,9 @@ read_command_file(struct recording_context *ctx) >> uint8_t *dump = malloc(len); >> FILE *file; >> >> + emit_oa_trigger(ctx, 0xc0ffee02); >> + write_perf_data(ctx->output_stream, ctx); >> + >> while (offset < len && >> ((ret = read(ctx->command_fifo_fd, >> (void *) dump + offset, len - offset)) > 0 >> @@ -835,6 +930,13 @@ usage(const char *name) >> static void >> teardown_recording_context(struct recording_context *ctx) >> { >> + if (ctx->ibb) >> + intel_bb_destroy(ctx->ibb); >> + if (ctx->exec_queue) >> + xe_exec_queue_destroy(ctx->drm_fd, ctx->exec_queue); >> + if (ctx->vm) >> + xe_vm_destroy(ctx->drm_fd, ctx->vm); >> + >> if (ctx->topology) >> free(ctx->topology); >> >> @@ -912,6 +1014,14 @@ static int assign_oa_unit(int fd, struct recording_context *ctx) >> return -1; >> } >> >> +static void init_trigger_ctx(struct recording_context *ctx) > Let's call this init_mmio_trigger_ctx. > >> +{ >> + ctx->vm = xe_vm_create(ctx->drm_fd, 0, 0); >> + ctx->exec_queue = xe_exec_queue_create(ctx->drm_fd, ctx->vm, ctx->hwe, 0); >> + ctx->ibb = intel_bb_create_with_context(ctx->drm_fd, ctx->exec_queue, ctx->vm, >> + NULL, BATCH_SZ); > Fix alignment here. > >> +} >> + >> int >> main(int argc, char *argv[]) >> { >> @@ -1180,6 +1290,9 @@ main(int argc, char *argv[]) >> goto fail; >> } >> >> + init_trigger_ctx(&ctx); > If we move this right after xe_device_get(), then I think we can remove the > new if checks in teardown_recording_context(). > > Anyway, we can live with those if checks too, so either way is fine with > me. I'll address all the above comments but for this, I don't think it'll still be okay if I placed it further after xe_device_get() cause ctx->hwe is filled by assign_oa_unit() -> assign_hwe(), which runs after xe_device_get(). If we moved init_trigger_ctx() after xe_device_get(), I'd still pass NULL into hwe, which isn't right. If I even move it after assign_oa_unit(), intel_get_device_info() might return NULL on some case, and then assign_oa_unit() itself fails. Overall, I just feel, let's just keep the checks.. -shekhar > >> + emit_oa_trigger(&ctx, 0xc0ffee01); >> + >> corr_period_ns = corr_period * 1000000000ul; >> poll_time_ns = corr_period_ns; >> >> @@ -1227,6 +1340,8 @@ main(int argc, char *argv[]) >> } >> } >> >> + /* Emit second OA trigger for the case where circular buffer is not used */ >> + emit_oa_trigger(&ctx, 0xc0ffee02); >> fprintf(stdout, "Exiting...\n"); >> >> if (!write_perf_data(ctx.output_stream, &ctx)) { >> -- >> 2.53.0 >> > Thanks. > -- > Ashutosh -- Shekhar Chauhan Linux Graphics Software Engineer Intel Corporation ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-07-21 3:14 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-07-16 7:14 [PATCH v3] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan 2026-07-16 7:51 ` ✓ Xe.CI.BAT: success for tools/xe-perf-recorder: Add mmio-trigger support (rev3) Patchwork 2026-07-16 8:30 ` ✓ i915.CI.BAT: " Patchwork 2026-07-16 11:42 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-07-16 11:51 ` ✗ i915.CI.Full: " Patchwork 2026-07-21 0:38 ` [PATCH v3] tools/xe-perf-recorder: Add mmio-trigger support Dixit, Ashutosh 2026-07-21 3:14 ` Shekhar Chauhan
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox