* [PATCH] tools/xe-perf-recorder: Add mmio-trigger support
@ 2026-06-19 5:02 Shekhar Chauhan
2026-06-19 6:19 ` ✓ i915.CI.BAT: success for " Patchwork
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Shekhar Chauhan @ 2026-06-19 5:02 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.
Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com>
---
tools/xe-perf/xe_perf_recorder.c | 83 ++++++++++++++++++++++++++++++++
1 file changed, 83 insertions(+)
diff --git a/tools/xe-perf/xe_perf_recorder.c b/tools/xe-perf/xe_perf_recorder.c
index f200fe9c9..48a7d55d4 100644
--- a/tools/xe-perf/xe_perf_recorder.c
+++ b/tools/xe-perf/xe_perf_recorder.c
@@ -27,8 +27,11 @@
#include "igt_core.h"
#include "intel_chipset.h"
+#include "intel_batchbuffer.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"
@@ -39,6 +42,10 @@
#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 TRIGGER_BB_SIZE 4096
+#define OAREPORT_REASON_MASK 0x3f
+#define OAREPORT_REASON_SHIFT 19
struct circular_buffer {
char *data;
@@ -354,8 +361,21 @@ 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)
+{
+ switch (ctx->oa_unit->oa_unit_type) {
+ case DRM_XE_OA_UNIT_TYPE_OAG:
+ default:
+ return OAG_MMIOTRIGGER;
+ }
+}
+
static void set_fd_flags(int fd, int flags)
{
int old = fcntl(fd, F_GETFL, 0);
@@ -569,6 +589,23 @@ static bool write_stream_status(struct recording_context *ctx, FILE *output)
return true;
}
+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;
+ uint32_t reason = (report_32[0] >> OAREPORT_REASON_SHIFT) & OAREPORT_REASON_MASK;
+ uint64_t value;
+
+ if (reason)
+ 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 +619,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 +736,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)
{
@@ -726,6 +781,9 @@ read_command_file(struct recording_context *ctx)
if (file) {
struct chunk chunks[2];
+ emit_oa_trigger(ctx, 0xc0ffee02);
+ write_perf_data(ctx->output_stream, ctx);
+
fflush(ctx->output_stream);
get_chunks(chunks, &ctx->circular_buffer,
false, ctx->circular_buffer.size);
@@ -835,6 +893,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 +977,18 @@ static int assign_oa_unit(int fd, struct recording_context *ctx)
return -1;
}
+static int 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, TRIGGER_BB_SIZE);
+ if (!ctx->ibb)
+ return -1;
+
+ return 0;
+}
+
int
main(int argc, char *argv[])
{
@@ -1180,6 +1257,12 @@ main(int argc, char *argv[])
goto fail;
}
+ if (init_trigger_ctx(&ctx) < 0) {
+ fprintf(stderr, "Unable to initialize trigger context\n");
+ goto fail;
+ }
+ emit_oa_trigger(&ctx, 0xc0ffee01);
+
corr_period_ns = corr_period * 1000000000ul;
poll_time_ns = corr_period_ns;
--
2.53.0
^ permalink raw reply related [flat|nested] 9+ messages in thread* ✓ i915.CI.BAT: success for tools/xe-perf-recorder: Add mmio-trigger support 2026-06-19 5:02 [PATCH] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan @ 2026-06-19 6:19 ` Patchwork 2026-06-19 6:20 ` ✓ Xe.CI.BAT: " Patchwork ` (4 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-06-19 6:19 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1672 bytes --] == Series Details == Series: tools/xe-perf-recorder: Add mmio-trigger support URL : https://patchwork.freedesktop.org/series/168824/ State : success == Summary == CI Bug Log - changes from IGT_8974 -> IGTPW_15405 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/index.html Participating hosts (41 -> 39) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15405 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - bat-adlp-6: [DMESG-WARN][1] ([i915#15673]) -> [PASS][2] +78 other tests pass [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8974/bat-adlp-6/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/bat-adlp-6/igt@i915_pm_rpm@module-reload.html [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8974 -> IGTPW_15405 * Linux: CI_DRM_18702 -> CI_DRM_18703 CI-20190529: 20190529 CI_DRM_18702: 24209d838338d162bb25aadfd637b11747a357ca @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18703: 1f50384666a6193297d506b8df628ca428a48d42 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15405: 395a4c8480ab56f8bf05152bc20537438c6427a6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8974: 8974 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/index.html [-- Attachment #2: Type: text/html, Size: 2272 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for tools/xe-perf-recorder: Add mmio-trigger support 2026-06-19 5:02 [PATCH] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan 2026-06-19 6:19 ` ✓ i915.CI.BAT: success for " Patchwork @ 2026-06-19 6:20 ` Patchwork 2026-06-19 8:08 ` ✓ Xe.CI.FULL: " Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-06-19 6:20 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1073 bytes --] == Series Details == Series: tools/xe-perf-recorder: Add mmio-trigger support URL : https://patchwork.freedesktop.org/series/168824/ State : success == Summary == CI Bug Log - changes from XEIGT_8974_BAT -> XEIGTPW_15405_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8974 -> IGTPW_15405 * Linux: xe-5280-24209d838338d162bb25aadfd637b11747a357ca -> xe-5281-1f50384666a6193297d506b8df628ca428a48d42 IGTPW_15405: 395a4c8480ab56f8bf05152bc20537438c6427a6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8974: 8974 xe-5280-24209d838338d162bb25aadfd637b11747a357ca: 24209d838338d162bb25aadfd637b11747a357ca xe-5281-1f50384666a6193297d506b8df628ca428a48d42: 1f50384666a6193297d506b8df628ca428a48d42 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/index.html [-- Attachment #2: Type: text/html, Size: 1632 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.FULL: success for tools/xe-perf-recorder: Add mmio-trigger support 2026-06-19 5:02 [PATCH] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan 2026-06-19 6:19 ` ✓ i915.CI.BAT: success for " Patchwork 2026-06-19 6:20 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-06-19 8:08 ` Patchwork 2026-06-20 7:10 ` ✗ i915.CI.Full: failure " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-06-19 8:08 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 30004 bytes --] == Series Details == Series: tools/xe-perf-recorder: Add mmio-trigger support URL : https://patchwork.freedesktop.org/series/168824/ State : success == Summary == CI Bug Log - changes from XEIGT_8974_FULL -> XEIGTPW_15405_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_15405_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-write: - shard-bmg: [PASS][1] -> [FAIL][2] ([Intel XE#7445]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-bmg-7/igt@intel_hwmon@hwmon-write.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-4/igt@intel_hwmon@hwmon-write.html * igt@kms_big_fb@y-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#1124]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-10/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2887]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#2887]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-0-25: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2325] / [Intel XE#7358]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-6/igt@kms_chamelium_color@ctm-0-25.html - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#306] / [Intel XE#7358]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-5/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_edid@dp-edid-read: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2252]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-read.html - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#373]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-6/igt@kms_chamelium_edid@dp-edid-read.html * igt@kms_cursor_crc@cursor-alpha-opaque: - shard-lnl: [PASS][11] -> [INCOMPLETE][12] ([Intel XE#2594] / [Intel XE#8341]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-lnl-2/igt@kms_cursor_crc@cursor-alpha-opaque.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-5/igt@kms_cursor_crc@cursor-alpha-opaque.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2320]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1424]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#309] / [Intel XE#7343]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#323] / [Intel XE#6035]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2286] / [Intel XE#6035]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#4354] / [Intel XE#5882]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-8/igt@kms_dp_link_training@non-uhbr-mst.html - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#4354] / [Intel XE#5882]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-10/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][20] -> [FAIL][21] ([Intel XE#3149] / [Intel XE#3321]) +1 other test fail [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7178] / [Intel XE#7351]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#7178] / [Intel XE#7351]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#656] / [Intel XE#7905]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#6312]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-7/igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7061]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-5/igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#4141]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2311]) +4 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#6312] / [Intel XE#651]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#7865]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-render: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#7061]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2313]) +5 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-3/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render.html - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#7905]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-5/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1470]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-1/igt@kms_hdmi_inject@inject-4k.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#7308]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-bmg-8/igt@kms_hdmi_inject@inject-audio.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2486]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-2/igt@kms_panel_fitting@legacy.html * igt@kms_plane_multiple@2x-tiling-x: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#4596] / [Intel XE#5854]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-2/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_scaling@intel-max-src-size: - shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#2685] / [Intel XE#3307]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-bmg-3/igt@kms_plane_scaling@intel-max-src-size.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#1489]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#2893] / [Intel XE#7304]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2234] / [Intel XE#2850]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-7/igt@kms_psr@fbc-psr2-sprite-render.html - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1406] / [Intel XE#7345]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@fbc-psr2-sprite-render@edp-1: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1406] / [Intel XE#4609]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-render@edp-1.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [PASS][50] -> [FAIL][51] ([Intel XE#6361]) +2 other tests fail [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_vblank@query-busy-hang: - shard-lnl: [PASS][52] -> [ABORT][53] ([Intel XE#8007]) +1 other test abort [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-lnl-5/igt@kms_vblank@query-busy-hang.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-7/igt@kms_vblank@query-busy-hang.html - shard-bmg: [PASS][54] -> [ABORT][55] ([Intel XE#8007]) +1 other test abort [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-bmg-4/igt@kms_vblank@query-busy-hang.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-7/igt@kms_vblank@query-busy-hang.html * igt@xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7636]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-2/igt@xe_eudebug_online@single-step.html - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#7636]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-4/igt@xe_eudebug_online@single-step.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][58] -> [INCOMPLETE][59] ([Intel XE#6321] / [Intel XE#8355]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-bmg-10/igt@xe_evict@evict-mixed-many-threads-small.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-threads-small-multi-queue: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#8370]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-1/igt@xe_evict@evict-threads-small-multi-queue.html - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#6540] / [Intel XE#688]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-7/igt@xe_evict@evict-threads-small-multi-queue.html * igt@xe_exec_balancer@no-exec-parallel-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#7482]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-5/igt@xe_exec_balancer@no-exec-parallel-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-userptr-fault: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#8374]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-10/igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-userptr-fault.html * igt@xe_exec_fault_mode@twice-multi-queue-prefetch: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#8374]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-3/igt@xe_exec_fault_mode@twice-multi-queue-prefetch.html * igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-basic: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#8364]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-1/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-basic.html * igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-priority: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#8364]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-8/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-priority.html * igt@xe_exec_reset@multi-queue-gt-reset: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#8369]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-3/igt@xe_exec_reset@multi-queue-gt-reset.html - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#8369]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-6/igt@xe_exec_reset@multi-queue-gt-reset.html * igt@xe_exec_system_allocator@fault-threads-benchmark: - shard-bmg: [PASS][69] -> [INCOMPLETE][70] ([Intel XE#8159]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-bmg-10/igt@xe_exec_system_allocator@fault-threads-benchmark.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-5/igt@xe_exec_system_allocator@fault-threads-benchmark.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: NOTRUN -> [INCOMPLETE][71] ([Intel XE#7098] / [Intel XE#8159]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-4/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#6964]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-6/igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch.html - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#6964]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-3/igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1420] / [Intel XE#7590]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-3/igt@xe_pat@pat-index-xehpc.html - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-8/igt@xe_pat@pat-index-xehpc.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [PASS][76] -> [FAIL][77] ([Intel XE#6569]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-bmg-5/igt@xe_sriov_flr@flr-vf1-clear.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-7/igt@xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][78] ([Intel XE#7571]) -> [PASS][79] [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1: - shard-lnl: [FAIL][80] ([Intel XE#301]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1: - shard-lnl: [FAIL][82] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][83] +1 other test pass [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][84] ([Intel XE#1503]) -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-bmg-9/igt@kms_hdr@invalid-hdr.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-6/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010: - shard-bmg: [SKIP][86] ([Intel XE#7922]) -> [PASS][87] +1 other test pass [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-bmg-9/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-6/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: [SKIP][88] ([Intel XE#7915]) -> [PASS][89] +5 other tests pass [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-bmg-7/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-9/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_vrr@max-min: - shard-lnl: [FAIL][90] ([Intel XE#4227]) -> [PASS][91] +1 other test pass [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-lnl-6/igt@kms_vrr@max-min.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-6/igt@kms_vrr@max-min.html * igt@xe_exec_reset@long-spin-reuse-many-preempt-media: - shard-bmg: [FAIL][92] ([Intel XE#7850]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-bmg-5/igt@xe_exec_reset@long-spin-reuse-many-preempt-media.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-10/igt@xe_exec_reset@long-spin-reuse-many-preempt-media.html * igt@xe_sriov_auto_provisioning@exclusive-ranges@numvfs-random: - shard-bmg: [FAIL][94] ([Intel XE#7992]) -> [PASS][95] +2 other tests pass [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-bmg-1/igt@xe_sriov_auto_provisioning@exclusive-ranges@numvfs-random.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-4/igt@xe_sriov_auto_provisioning@exclusive-ranges@numvfs-random.html * igt@xe_wedged@wedged-mode-toggle: - shard-lnl: [ABORT][96] ([Intel XE#8007]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-lnl-2/igt@xe_wedged@wedged-mode-toggle.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-lnl-7/igt@xe_wedged@wedged-mode-toggle.html - shard-bmg: [ABORT][98] ([Intel XE#8007]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-bmg-9/igt@xe_wedged@wedged-mode-toggle.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-7/igt@xe_wedged@wedged-mode-toggle.html #### Warnings #### * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][100] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][101] ([Intel XE#1729] / [Intel XE#7424]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8974/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594 [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854 [Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882 [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [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#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850 [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915 [Intel XE#7922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7922 [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#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159 [Intel XE#8341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8341 [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 Build changes ------------- * IGT: IGT_8974 -> IGTPW_15405 * Linux: xe-5280-24209d838338d162bb25aadfd637b11747a357ca -> xe-5281-1f50384666a6193297d506b8df628ca428a48d42 IGTPW_15405: 395a4c8480ab56f8bf05152bc20537438c6427a6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8974: 8974 xe-5280-24209d838338d162bb25aadfd637b11747a357ca: 24209d838338d162bb25aadfd637b11747a357ca xe-5281-1f50384666a6193297d506b8df628ca428a48d42: 1f50384666a6193297d506b8df628ca428a48d42 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15405/index.html [-- Attachment #2: Type: text/html, Size: 33739 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for tools/xe-perf-recorder: Add mmio-trigger support 2026-06-19 5:02 [PATCH] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan ` (2 preceding siblings ...) 2026-06-19 8:08 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-06-20 7:10 ` Patchwork 2026-06-29 21:51 ` [PATCH] " Dixit, Ashutosh 2026-06-30 1:50 ` Dixit, Ashutosh 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-06-20 7:10 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 136625 bytes --] == Series Details == Series: tools/xe-perf-recorder: Add mmio-trigger support URL : https://patchwork.freedesktop.org/series/168824/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18703_full -> IGTPW_15405_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15405_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15405_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_15405/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_15405_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_gttfill@all-engines: - shard-snb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-snb1/igt@gem_exec_gttfill@all-engines.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-snb6/igt@gem_exec_gttfill@all-engines.html * igt@kms_chamelium_color_pipeline@plane-lut1d: - shard-dg2: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-4/igt@kms_chamelium_color_pipeline@plane-lut1d.html - shard-dg1: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-17/igt@kms_chamelium_color_pipeline@plane-lut1d.html - shard-tglu: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-9/igt@kms_chamelium_color_pipeline@plane-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4: - shard-rkl: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html - shard-tglu-1: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html #### Warnings #### * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4: - shard-rkl: [SKIP][8] ([i915#14544]) -> [SKIP][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-dg2: [SKIP][10] ([i915#16471]) -> [SKIP][11] +5 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-dg2-5/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-4/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html - shard-rkl: [SKIP][12] ([i915#16471]) -> [SKIP][13] +5 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-4/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html - shard-dg1: [SKIP][14] ([i915#16471]) -> [SKIP][15] +7 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-dg1-13/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-18/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html - shard-tglu: [SKIP][16] ([i915#16471]) -> [SKIP][17] +5 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-tglu-8/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-2/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html Known issues ------------ Here are the changes found in IGTPW_15405_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_buddy@drm_buddy: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#15678]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@drm_buddy@drm_buddy.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#4873]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-3/igt@gem_caching@reads.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][21] ([i915#13356] / [i915#16348]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_persistence@engines-cleanup: - shard-snb: NOTRUN -> [SKIP][22] ([i915#1099]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-snb1/igt@gem_ctx_persistence@engines-cleanup.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@gem_exec_balancer@parallel.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-4/igt@gem_exec_flush@basic-uc-pro-default.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-17/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3281]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#3281]) +4 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-17/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-8/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#3281]) +6 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-14/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4537] / [i915#4812]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][36] -> [INCOMPLETE][37] ([i915#13356]) +1 other test incomplete [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-10/igt@gem_exec_suspend@basic-s0.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4860]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4860]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-4/igt@gem_fenced_exec_thrash@2-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4860]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-7/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@heavy-multi: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#4613]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@gem_lmem_swapping@heavy-multi.html - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4613]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-3/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-glk: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk3/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#4613]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-6/igt@gem_lmem_swapping@random.html * igt@gem_mmap_gtt@big-bo: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4077]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-1/igt@gem_mmap_gtt@big-bo.html * igt@gem_mmap_gtt@close-race: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4077]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-13/igt@gem_mmap_gtt@close-race.html - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4077]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-2/igt@gem_mmap_gtt@close-race.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4083]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-3/igt@gem_mmap_wc@copy.html - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4083]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-17/igt@gem_mmap_wc@copy.html - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4083]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-3/igt@gem_mmap_wc@copy.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: [PASS][52] -> [SKIP][53] ([i915#4270]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4270]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-off-3.html - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4270]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-12/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_readwrite@read-write: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#3282]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-7/igt@gem_readwrite@read-write.html - shard-rkl: NOTRUN -> [SKIP][57] ([i915#3282]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-7/igt@gem_readwrite@read-write.html - shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-12/igt@gem_readwrite@read-write.html - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3282]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-3/igt@gem_readwrite@read-write.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#5190] / [i915#8428]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-3/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#8428]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-1/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#14544] / [i915#3282]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@noreloc-s3: - shard-glk: NOTRUN -> [INCOMPLETE][63] ([i915#13809] / [i915#16193]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk1/igt@gem_softpin@noreloc-s3.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3297]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-3/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3297]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-7/igt@gem_userptr_blits@coherency-sync.html - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3297]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@gem_userptr_blits@coherency-sync.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#3297]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-19/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#3297]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-3/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#3297] / [i915#3323]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-4/igt@gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][70] ([i915#3323]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk5/igt@gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][71] ([i915#14544] / [i915#3297] / [i915#3323]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#14544] / [i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gen9_exec_parse@allowed-all: - shard-tglu: NOTRUN -> [SKIP][73] ([i915#2527] / [i915#2856]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-8/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#2856]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-6/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#2527]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-15/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#2527]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html - shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#2527] / [i915#2856]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#14544] / [i915#2527]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_drm_fdinfo@most-busy-check-all@bcs0: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#14073]) +6 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-5/igt@i915_drm_fdinfo@most-busy-check-all@bcs0.html * igt@i915_drm_fdinfo@most-busy-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#14073]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-14/igt@i915_drm_fdinfo@most-busy-check-all@vcs1.html * igt@i915_drm_fdinfo@most-busy-check-all@vecs0: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#14073]) +7 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-6/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#8399]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][83] -> [INCOMPLETE][84] ([i915#13356] / [i915#13820]) +1 other test incomplete [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#6590]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#14498]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@i915_pm_rc6_residency@rc6-idle.html - shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#14498]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@system-suspend: - shard-rkl: NOTRUN -> [INCOMPLETE][88] ([i915#13356]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4387]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-5/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-unsupported: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#16079]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@i915_query@query-topology-unsupported.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#7707]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-4/igt@intel_hwmon@hwmon-read.html * igt@intel_hwmon@hwmon-write: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#7707]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-8/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4212]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-16/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#4212]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-6/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4212]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-1/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#12454] / [i915#12712]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#5286]) +5 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4538] / [i915#5286]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-18/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][99] -> [FAIL][100] ([i915#15733] / [i915#5138]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#5286]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#14544] / [i915#5286]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#5286]) +4 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3638]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][105] +9 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-2/igt@kms_big_fb@linear-64bpp-rotate-270.html - shard-rkl: NOTRUN -> [SKIP][106] ([i915#3638]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#3828]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#14544] / [i915#3638]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#4538]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-17/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#6187]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#6095]) +232 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-17/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2: - shard-glk11: NOTRUN -> [SKIP][112] +110 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk11/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6095]) +24 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#12313]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#14544] / [i915#6095]) +7 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][116] +446 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#10307] / [i915#6095]) +88 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#12313]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#6095]) +39 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#14098] / [i915#6095]) +37 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#6095]) +7 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#6095]) +63 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#6095]) +44 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#13781]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#3742]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-12/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color_pipeline@plane-lut1d: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#16464]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-8/igt@kms_chamelium_color_pipeline@plane-lut1d.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#11151] / [i915#7828]) +5 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-7/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#11151] / [i915#7828]) +4 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-3/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#11151] / [i915#7828]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#11151] / [i915#7828]) +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-17/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#11151] / [i915#7828]) +7 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#11151] / [i915#7828]) +9 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-10/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#15865]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#15330] / [i915#3299]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][137] ([i915#15330] / [i915#3299]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-13/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][138] ([i915#15330] / [i915#3116] / [i915#3299]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#15330] / [i915#3299]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#15330]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#15330]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-dg2: NOTRUN -> [SKIP][142] ([i915#15330]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-7/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][143] ([i915#15330]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][144] ([i915#15330]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-12/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#15330] / [i915#3116]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#15865]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-2/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#9433]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#15865]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-1/igt@kms_content_protection@srm.html - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#15865]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][150] ([i915#15865]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-13/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#15865]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-2/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-tglu: NOTRUN -> [FAIL][152] ([i915#13566]) +5 other tests fail [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#3555]) +5 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3555]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-max-size.html - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#3555]) +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#8814]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#8814]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#13049] / [i915#14544]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#13049]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][160] +78 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#9809]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#9067]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#9723]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#14544] / [i915#3555] / [i915#3804]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#14544] / [i915#3804]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#13749]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#16361]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][168] ([i915#14544] / [i915#16361]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][169] ([i915#16361]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-19/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#16361]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-10/igt@kms_dsc@dsc-with-formats.html - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#16361]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-2/igt@kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][172] ([i915#16361]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#16361]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: [PASS][174] -> [INCOMPLETE][175] ([i915#9878]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-5/igt@kms_fbcon_fbt@fbc-suspend.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-4/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#3469]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-8/igt@kms_fbcon_fbt@psr.html - shard-rkl: NOTRUN -> [SKIP][177] ([i915#14544] / [i915#3955]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_fbcon_fbt@psr.html - shard-dg1: NOTRUN -> [SKIP][178] ([i915#3469]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-15/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][179] ([i915#3469]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-3/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#3469]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#2065]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-10/igt@kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][182] ([i915#16084]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-7/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#16081]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-4/igt@kms_feature_discovery@display-4x.html - shard-rkl: NOTRUN -> [SKIP][184] ([i915#16081]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_feature_discovery@display-4x.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#4881]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-16/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#9934]) +4 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-16/igt@kms_flip@2x-flip-vs-dpms.html - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3637] / [i915#9934]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-8/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#9934]) +2 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-3/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#9934]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-2/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk11: NOTRUN -> [INCOMPLETE][190] ([i915#12745] / [i915#4839]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk11/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk11: NOTRUN -> [INCOMPLETE][191] ([i915#12745]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk11/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#3637] / [i915#9934]) +3 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#3637] / [i915#9934]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-9/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#9934]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][195] ([i915#12745] / [i915#4839]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk6/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk10: NOTRUN -> [INCOMPLETE][196] ([i915#12745] / [i915#4839]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk10/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk10: NOTRUN -> [INCOMPLETE][197] ([i915#12745]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk10/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2: - shard-rkl: [PASS][198] -> [INCOMPLETE][199] ([i915#16276] / [i915#6113]) +1 other test incomplete [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][200] ([i915#12745]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#15643]) +3 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#15643]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#15643]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#15643]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-dg2: NOTRUN -> [SKIP][205] ([i915#15643] / [i915#5190]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-rkl: NOTRUN -> [SKIP][206] ([i915#14544] / [i915#15643]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#15643]) +2 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#15990] / [i915#8708]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#10055]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html - shard-dg2: NOTRUN -> [SKIP][210] ([i915#10055]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-blt: - shard-rkl: [PASS][211] -> [SKIP][212] ([i915#15989]) +11 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-blt.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#15990]) +5 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-4/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#15989]) +13 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-glk: [PASS][215] -> [SKIP][216] +4 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk4/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][217] +39 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-18/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#15989]) +5 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-7/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html - shard-rkl: NOTRUN -> [SKIP][219] ([i915#15989]) +16 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#15989]) +6 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-12/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbchdr-stridechange: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#15989]) +8 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-4/igt@kms_frontbuffer_tracking@fbchdr-stridechange.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#15102]) +31 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#15991] / [i915#5354]) +10 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#1825]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#10433] / [i915#15102]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#14544] / [i915#15102]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#15102]) +16 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#15102]) +14 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#15990]) +10 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#15990]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-2p-rte: - shard-tglu-1: NOTRUN -> [SKIP][231] +64 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-2p-rte.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][232] +82 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-6/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#15989]) +13 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#9766]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][235] ([i915#9766]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][236] ([i915#9766]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][237] ([i915#9766]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#15102] / [i915#3023]) +10 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#15991] / [i915#1825]) +9 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#15102]) +38 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#15102]) +7 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#15991]) +11 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-8/igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw.html - shard-rkl: NOTRUN -> [SKIP][243] ([i915#14544]) +12 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-move: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#15991]) +12 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-4/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-move.html * igt@kms_hdr@bpc-switch: - shard-rkl: [PASS][245] -> [SKIP][246] ([i915#16012] / [i915#3555] / [i915#8228]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_hdr@bpc-switch.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-4/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#16012] / [i915#3555] / [i915#8228]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-2/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#16012]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-2/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#16012]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-2-xrgb16161616f: - shard-rkl: [PASS][250] -> [SKIP][251] ([i915#16012]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-2-xrgb16161616f.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-4/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-2-xrgb16161616f.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#16011]) +7 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-12/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#16012]) +3 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-16/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb2101010.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#16011] / [i915#3555] / [i915#8228]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_hdr@invalid-metadata-sizes.html - shard-tglu: NOTRUN -> [SKIP][255] ([i915#16011] / [i915#3555] / [i915#8228]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-10/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-1-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#16011]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-10/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-2-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#16011]) +3 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#16011]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-4/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#15460]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#13688]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-12/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#15458]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][262] ([i915#15458]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][263] ([i915#15458]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-16/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#15458]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-10/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#15458]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#6301]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][267] +9 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: [PASS][268] -> [INCOMPLETE][269] ([i915#12756] / [i915#13476]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2: - shard-rkl: [PASS][270] -> [INCOMPLETE][271] ([i915#13476]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#14712]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-17/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-snb: NOTRUN -> [SKIP][273] +122 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-snb6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html - shard-dg1: NOTRUN -> [SKIP][274] ([i915#15709]) +2 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-19/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html - shard-tglu: NOTRUN -> [SKIP][275] ([i915#15709]) +2 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-4/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#15709]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html - shard-dg2: NOTRUN -> [SKIP][277] ([i915#15709]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html - shard-rkl: NOTRUN -> [SKIP][278] ([i915#14544] / [i915#15709]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#16386]) +3 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#15709]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#15709]) +4 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk10: NOTRUN -> [FAIL][282] ([i915#10647] / [i915#12169]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/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][283] ([i915#10647]) +1 other test fail [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#8821]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-7/igt@kms_plane_lowres@tiling-yf.html - shard-dg1: NOTRUN -> [SKIP][285] ([i915#3555]) +3 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-12/igt@kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8821]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-3/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-none: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#13958]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-x: - shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#13958]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#15329]) +4 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#15329] / [i915#3555]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#15329]) +2 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][292] ([i915#12343] / [i915#9812]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-2/igt@kms_pm_backlight@fade.html - shard-dg2: NOTRUN -> [SKIP][293] ([i915#12343] / [i915#5354]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-1/igt@kms_pm_backlight@fade.html - shard-dg1: NOTRUN -> [SKIP][294] ([i915#12343] / [i915#5354]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-13/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#15948]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-7/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#15948]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#3361]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-16/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#15739]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-glk10: NOTRUN -> [SKIP][299] +159 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk10/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [PASS][300] -> [SKIP][301] ([i915#15073]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-dg1-13/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-15/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#15073]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-9/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][303] -> [SKIP][304] ([i915#15073]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][305] -> [SKIP][306] ([i915#15073]) +2 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-glk10: NOTRUN -> [SKIP][307] ([i915#11520]) +3 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#11520]) +5 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#9808]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#12316]) +3 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#11520]) +7 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-10/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#11520]) +5 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#11520]) +3 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-3/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][314] ([i915#11520]) +2 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-16/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html - shard-snb: NOTRUN -> [SKIP][315] ([i915#11520]) +2 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-snb6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][316] ([i915#11520]) +8 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk5/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][317] ([i915#11520]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk11/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#9683]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#9683]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#9683]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-16/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-sprite-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#1072] / [i915#14544] / [i915#9732]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-mmap-cpu.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-dg1: NOTRUN -> [SKIP][322] ([i915#1072] / [i915#9732]) +7 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-12/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-dpms: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#9688]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-8/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr-primary-blt: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#1072] / [i915#9732]) +4 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-5/igt@kms_psr@psr-primary-blt.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#1072] / [i915#9732]) +9 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-4/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][326] ([i915#9732]) +15 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-10/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#9732]) +14 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk10: NOTRUN -> [INCOMPLETE][328] ([i915#15492] / [i915#16184]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk10/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk11: NOTRUN -> [INCOMPLETE][329] ([i915#15492] / [i915#16184]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk11/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#12755] / [i915#15867]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-270.html - shard-mtlp: NOTRUN -> [SKIP][331] ([i915#12755] / [i915#15867]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-7/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#5190]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#5289]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#5289]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#5289]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_selftest@drm_framebuffer: - shard-glk10: NOTRUN -> [ABORT][336] ([i915#13179]) +1 other test abort [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk10/igt@kms_selftest@drm_framebuffer.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#8623]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][338] ([i915#12276]) +1 other test incomplete [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk9/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#9906]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-dpms: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#15243] / [i915#3555]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][341] ([i915#3555]) +2 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-3/igt@kms_vrr@flip-suspend.html - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#3555] / [i915#8808]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-5/igt@kms_vrr@flip-suspend.html - shard-dg2: NOTRUN -> [SKIP][343] ([i915#15243] / [i915#3555]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-6/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@max-min: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#9906]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-7/igt@kms_vrr@max-min.html - shard-rkl: NOTRUN -> [SKIP][345] ([i915#9906]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@kms_vrr@max-min.html - shard-dg1: NOTRUN -> [SKIP][346] ([i915#9906]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-12/igt@kms_vrr@max-min.html - shard-mtlp: NOTRUN -> [SKIP][347] ([i915#8808] / [i915#9906]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-8/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#9906]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-3/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf_pmu@busy-double-start: - shard-mtlp: [PASS][349] -> [FAIL][350] ([i915#4349]) +2 other tests fail [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-mtlp-1/igt@perf_pmu@busy-double-start.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-6/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [ABORT][351] ([i915#15778]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk5/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#8516]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-4/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][353] ([i915#8516]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_udl@share-import-addfb: - shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#16420]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-1/igt@prime_udl@share-import-addfb.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][355] ([i915#3708] / [i915#4077]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-7/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][356] ([i915#3708] / [i915#4077]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-4/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][357] ([i915#3708] / [i915#4077]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-15/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][358] ([i915#14544] / [i915#3708]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@prime_vgem@fence-read-hang.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][359] ([i915#13356] / [i915#16348]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_exec_big@single: - shard-mtlp: [FAIL][361] ([i915#15871]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-mtlp-3/igt@gem_exec_big@single.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-8/igt@gem_exec_big@single.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: [FAIL][363] ([i915#12964]) -> [PASS][364] +1 other test pass [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-dg2-1/igt@i915_pm_rc6_residency@rc6-accuracy.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-8/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-mtlp: [FAIL][365] ([i915#5956]) -> [PASS][366] +1 other test pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-mtlp-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_color@deep-color: - shard-rkl: [SKIP][367] ([i915#12655] / [i915#3555]) -> [PASS][368] [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-4/igt@kms_color@deep-color.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_color@deep-color.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [FAIL][369] ([i915#13566]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-64x21.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: [FAIL][371] ([i915#13566]) -> [PASS][372] +1 other test pass [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-256x85.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_draw_crc@draw-method-pwrite: - shard-dg1: [DMESG-WARN][373] ([i915#4423]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-dg1-17/igt@kms_draw_crc@draw-method-pwrite.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-13/igt@kms_draw_crc@draw-method-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff: - shard-rkl: [SKIP][375] ([i915#15989]) -> [PASS][376] +6 other tests pass [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-fullscreen: - shard-glk: [SKIP][377] -> [PASS][378] +1 other test pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-glk2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-fullscreen.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-rkl: [ABORT][379] ([i915#15132]) -> [PASS][380] +1 other test pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-2-size-256: - shard-rkl: [FAIL][381] ([i915#15913]) -> [PASS][382] +1 other test pass [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-7/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-2-size-256.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-7/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-2-size-256.html * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-2-size-64: - shard-rkl: [FAIL][383] ([i915#15912]) -> [PASS][384] +1 other test pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-7/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-2-size-64.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-7/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-2-size-64.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: [SKIP][385] ([i915#15073]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][387] ([i915#14544] / [i915#15073]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-idle: - shard-rkl: [INCOMPLETE][389] ([i915#14419]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-3/igt@kms_pm_rpm@system-suspend-idle.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_setmode@basic: - shard-tglu: [FAIL][391] ([i915#15106]) -> [PASS][392] +2 other tests pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-tglu-2/igt@kms_setmode@basic.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-tglu-3/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [FAIL][393] ([i915#15106]) -> [PASS][394] +2 other tests pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-mtlp-5/igt@kms_setmode@basic@pipe-b-edp-1.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-mtlp-4/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@perf_pmu@rc6-suspend: - shard-rkl: [INCOMPLETE][395] ([i915#13520]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-4/igt@perf_pmu@rc6-suspend.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-7/igt@perf_pmu@rc6-suspend.html #### Warnings #### * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: [SKIP][397] ([i915#3281]) -> [SKIP][398] ([i915#14544] / [i915#3281]) +7 other tests skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: [SKIP][399] ([i915#3555] / [i915#9323]) -> [SKIP][400] ([i915#14544] / [i915#3555] / [i915#9323]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-4/igt@gem_ccs@block-copy-compressed.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: [SKIP][401] ([i915#14544] / [i915#9323]) -> [SKIP][402] ([i915#9323]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: [SKIP][403] ([i915#13008] / [i915#14544]) -> [SKIP][404] ([i915#13008]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-7/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_create@create-ext-set-pat: - shard-rkl: [SKIP][405] ([i915#14544] / [i915#8562]) -> [SKIP][406] ([i915#8562]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@gem_create@create-ext-set-pat.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: [SKIP][407] ([i915#14544] / [i915#280]) -> [SKIP][408] ([i915#280]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: [SKIP][409] ([i915#14544] / [i915#4525]) -> [SKIP][410] ([i915#4525]) +1 other test skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: [SKIP][411] ([i915#4525]) -> [SKIP][412] ([i915#14544] / [i915#4525]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-2/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: [SKIP][413] ([i915#14544] / [i915#3281]) -> [SKIP][414] ([i915#3281]) +5 other tests skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: [SKIP][415] ([i915#14544] / [i915#4613]) -> [SKIP][416] ([i915#4613]) +1 other test skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-rkl: [SKIP][417] ([i915#4613]) -> [SKIP][418] ([i915#14544] / [i915#4613]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-2/igt@gem_lmem_swapping@verify-random-ccs.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_pread@exhaustion: - shard-rkl: [SKIP][419] ([i915#3282]) -> [SKIP][420] ([i915#14544] / [i915#3282]) +2 other tests skip [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-7/igt@gem_pread@exhaustion.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-rkl: [SKIP][421] ([i915#14544] / [i915#3282]) -> [SKIP][422] ([i915#3282]) +4 other tests skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@gem_pread@snoop.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@gem_pread@snoop.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: [SKIP][423] ([i915#3297]) -> [SKIP][424] ([i915#14544] / [i915#3297]) +1 other test skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-5/igt@gem_userptr_blits@create-destroy-unsync.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: [SKIP][425] ([i915#2527]) -> [SKIP][426] ([i915#14544] / [i915#2527]) +1 other test skip [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-7/igt@gen9_exec_parse@bb-start-out.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: [SKIP][427] ([i915#14544] / [i915#2527]) -> [SKIP][428] ([i915#2527]) +1 other test skip [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@gen9_exec_parse@valid-registers.html * igt@i915_query@hwconfig_table: - shard-rkl: [SKIP][429] ([i915#14544] / [i915#6245]) -> [SKIP][430] ([i915#6245]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@i915_query@hwconfig_table.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-7/igt@i915_query@hwconfig_table.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-rkl: [SKIP][431] ([i915#14544] / [i915#5286]) -> [SKIP][432] ([i915#5286]) +2 other tests skip [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: [SKIP][433] ([i915#5286]) -> [SKIP][434] ([i915#14544] / [i915#5286]) +2 other tests skip [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-rkl: [SKIP][435] ([i915#3638]) -> [SKIP][436] ([i915#14544] / [i915#3638]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-4/igt@kms_big_fb@linear-16bpp-rotate-90.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: [SKIP][437] ([i915#14544] / [i915#3638]) -> [SKIP][438] ([i915#3638]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][439] ([i915#14098] / [i915#6095]) -> [SKIP][440] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/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][441] ([i915#6095]) -> [SKIP][442] ([i915#14544] / [i915#6095]) +5 other tests skip [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/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-rotation-180-4-tiled-bmg-ccs: - shard-rkl: [SKIP][443] ([i915#12313] / [i915#14544]) -> [SKIP][444] ([i915#12313]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-rkl: [SKIP][445] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][446] ([i915#14098] / [i915#6095]) +9 other tests skip [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][447] ([i915#14544] / [i915#6095]) -> [SKIP][448] ([i915#6095]) +5 other tests skip [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: [SKIP][449] ([i915#3742]) -> [SKIP][450] ([i915#14544] / [i915#3742]) [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-7/igt@kms_cdclk@mode-transition-all-outputs.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-rkl: [SKIP][451] ([i915#11151] / [i915#7828]) -> [SKIP][452] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-4/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-rkl: [SKIP][453] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][454] ([i915#11151] / [i915#7828]) +3 other tests skip [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-fast.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: [SKIP][455] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][456] ([i915#15330] / [i915#3116]) [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-rkl: [SKIP][457] ([i915#15330]) -> [SKIP][458] ([i915#14544] / [i915#15330]) [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][459] ([i915#14544] / [i915#15865]) -> [SKIP][460] ([i915#15865]) +1 other test skip [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_content_protection@type1.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: [SKIP][461] ([i915#13049]) -> [SKIP][462] ([i915#13049] / [i915#14544]) [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-512x170.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: [SKIP][463] ([i915#13049] / [i915#14544]) -> [SKIP][464] ([i915#13049]) +2 other tests skip [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: [SKIP][465] ([i915#9067]) -> [SKIP][466] ([i915#4423] / [i915#9067]) [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-dg1-16/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-13/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: [SKIP][467] ([i915#14544] / [i915#4103]) -> [SKIP][468] ([i915#4103]) +1 other test skip [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dsc@dsc-with-bpc-formats-bigjoiner: - shard-rkl: [SKIP][469] ([i915#14544] / [i915#16361]) -> [SKIP][470] ([i915#16361]) +1 other test skip [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats-bigjoiner.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_dsc@dsc-with-bpc-formats-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: [SKIP][471] ([i915#16361]) -> [SKIP][472] ([i915#14544] / [i915#16361]) +1 other test skip [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-1/igt@kms_dsc@dsc-with-output-formats.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: [SKIP][473] ([i915#14544] / [i915#9934]) -> [SKIP][474] ([i915#9934]) +5 other tests skip [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-rkl: [SKIP][475] ([i915#9934]) -> [SKIP][476] ([i915#14544] / [i915#9934]) +2 other tests skip [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-8/igt@kms_flip@2x-plain-flip-ts-check.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-rkl: [SKIP][477] ([i915#14544] / [i915#15643]) -> [SKIP][478] ([i915#15643]) +1 other test skip [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg1: [SKIP][479] ([i915#15643] / [i915#4423]) -> [SKIP][480] ([i915#15643]) [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][481] ([i915#1825]) -> [SKIP][482] ([i915#14544] / [i915#1825]) +3 other tests skip [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: [SKIP][483] ([i915#15102] / [i915#3023]) -> [SKIP][484] ([i915#14544] / [i915#15102] / [i915#3023]) +9 other tests skip [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-move: - shard-rkl: [SKIP][485] -> [SKIP][486] ([i915#14544]) +33 other tests skip [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-move.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-rkl: [SKIP][487] ([i915#15989]) -> [INCOMPLETE][488] ([i915#16056]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-3/igt@kms_frontbuffer_tracking@hdr-suspend.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-suspend.html - shard-glk: [SKIP][489] -> [INCOMPLETE][490] ([i915#16056]) [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-glk2/igt@kms_frontbuffer_tracking@hdr-suspend.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-glk8/igt@kms_frontbuffer_tracking@hdr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][491] ([i915#10433] / [i915#15102]) -> [SKIP][492] ([i915#15102]) +1 other test skip [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: [SKIP][493] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][494] ([i915#15102] / [i915#3023]) +12 other tests skip [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][495] ([i915#14544] / [i915#1825]) -> [SKIP][496] ([i915#1825]) +2 other tests skip [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move: - shard-rkl: [SKIP][497] ([i915#14544] / [i915#15102]) -> [SKIP][498] ([i915#15102]) +15 other tests skip [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-4/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move: - shard-rkl: [SKIP][499] ([i915#14544]) -> [SKIP][500] +48 other tests skip [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-suspend: - shard-rkl: [SKIP][501] ([i915#15102]) -> [SKIP][502] ([i915#14544] / [i915#15102]) +9 other tests skip [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-suspend.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-suspend.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: [ABORT][503] ([i915#15132]) -> [SKIP][504] ([i915#16012] / [i915#3555] / [i915#8228]) [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-1/igt@kms_hdr@bpc-switch-suspend.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb16161616f: - shard-rkl: [SKIP][505] ([i915#14544] / [i915#16076]) -> [SKIP][506] ([i915#16011]) +2 other tests skip [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb16161616f.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-7/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb16161616f.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: [SKIP][507] ([i915#14544] / [i915#15459]) -> [SKIP][508] ([i915#15459]) [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][509] ([i915#14544] / [i915#15815]) -> [SKIP][510] ([i915#15815]) [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-rkl: [SKIP][511] ([i915#14544] / [i915#15709]) -> [SKIP][512] ([i915#15709]) +3 other tests skip [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-rkl: [SKIP][513] ([i915#15709]) -> [SKIP][514] ([i915#14544] / [i915#15709]) +1 other test skip [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane_lowres@tiling-4: - shard-rkl: [SKIP][515] ([i915#14544] / [i915#3555]) -> [SKIP][516] ([i915#3555]) [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_plane_lowres@tiling-4.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_plane_lowres@tiling-4.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: [SKIP][517] ([i915#12343] / [i915#14544] / [i915#5354]) -> [SKIP][518] ([i915#12343] / [i915#5354]) [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][519] ([i915#3828]) -> [SKIP][520] ([i915#14544] / [i915#9340]) [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: [SKIP][521] ([i915#9340]) -> [SKIP][522] ([i915#3828]) [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-dg1-12/igt@kms_pm_lpsp@kms-lpsp.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: [SKIP][523] ([i915#14544] / [i915#8430]) -> [SKIP][524] ([i915#8430]) [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][525] ([i915#14544] / [i915#15073]) -> [SKIP][526] ([i915#15073]) [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-rkl: [SKIP][527] ([i915#11520] / [i915#14544]) -> [SKIP][528] ([i915#11520]) +4 other tests skip [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-rkl: [SKIP][529] ([i915#11520]) -> [SKIP][530] ([i915#11520] / [i915#14544]) +3 other tests skip [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr@fbc-pr-cursor-render: - shard-rkl: [SKIP][531] ([i915#1072] / [i915#9732]) -> [SKIP][532] ([i915#1072] / [i915#14544] / [i915#9732]) +9 other tests skip [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-5/igt@kms_psr@fbc-pr-cursor-render.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: [SKIP][533] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][534] ([i915#1072] / [i915#9732]) +14 other tests skip [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@kms_psr@psr2-sprite-mmap-cpu.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: [SKIP][535] ([i915#5289]) -> [SKIP][536] ([i915#14544] / [i915#5289]) [535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: [SKIP][537] ([i915#9906]) -> [SKIP][538] ([i915#14544] / [i915#9906]) [537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@mi-rpc: - shard-rkl: [SKIP][539] ([i915#14544] / [i915#2434]) -> [SKIP][540] ([i915#2434]) [539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@perf@mi-rpc.html [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: [SKIP][541] ([i915#14544] / [i915#2435]) -> [SKIP][542] ([i915#2435]) [541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@module-unload: - shard-dg2: [ABORT][543] ([i915#15778]) -> [ABORT][544] ([i915#13029] / [i915#15778]) [543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-dg2-4/igt@perf_pmu@module-unload.html [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-dg2-4/igt@perf_pmu@module-unload.html * igt@prime_udl@share-import: - shard-rkl: [SKIP][545] ([i915#14544] / [i915#16420]) -> [SKIP][546] ([i915#16420]) [545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@prime_udl@share-import.html [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-8/igt@prime_udl@share-import.html * igt@prime_vgem@fence-write-hang: - shard-rkl: [SKIP][547] ([i915#14544] / [i915#3708]) -> [SKIP][548] ([i915#3708]) [547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18703/shard-rkl-6/igt@prime_vgem@fence-write-hang.html [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/shard-rkl-2/igt@prime_vgem@fence-write-hang.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [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#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [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#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [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#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [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#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [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#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [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#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#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871 [i915#15912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15912 [i915#15913]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15913 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [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#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011 [i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012 [i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056 [i915#16076]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16076 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16193 [i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276 [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348 [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#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [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#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [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#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [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#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#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [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#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [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#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [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#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [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#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [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#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#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [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#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [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_8974 -> IGTPW_15405 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18703: 1f50384666a6193297d506b8df628ca428a48d42 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15405: 395a4c8480ab56f8bf05152bc20537438c6427a6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8974: 8974 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15405/index.html [-- Attachment #2: Type: text/html, Size: 183645 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] tools/xe-perf-recorder: Add mmio-trigger support 2026-06-19 5:02 [PATCH] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan ` (3 preceding siblings ...) 2026-06-20 7:10 ` ✗ i915.CI.Full: failure " Patchwork @ 2026-06-29 21:51 ` Dixit, Ashutosh 2026-07-02 5:24 ` Shekhar Chauhan 2026-06-30 1:50 ` Dixit, Ashutosh 5 siblings, 1 reply; 9+ messages in thread From: Dixit, Ashutosh @ 2026-06-29 21:51 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev On Thu, 18 Jun 2026 22:02:17 -0700, Shekhar Chauhan wrote: > > Add mmio-trigger support to xe-perf-recorder, to justify the > whitelisting of OA MMIO Trigger Registers in XeKMD. We can't have these compile warnings: $ ninja -C build ninja: Entering directory `build' [4/952] Compiling C object tools/xe-perf/xe-perf-recorder.p/xe_perf_recorder.c.o ../tools/xe-perf/xe_perf_recorder.c:41:9: warning: ‘ALIGN’ redefined 41 | #define ALIGN(v, a) (((v) + (a)-1) & ~((a)-1)) | ^~~~~ In file included from ../lib/intel_batchbuffer.h:10, from ../tools/xe-perf/xe_perf_recorder.c:30: ../lib/drmtest.h:100:9: note: this is the location of the previous definition 100 | #define ALIGN(v, a) ALIGN_MASK(v, (typeof(v))(a) - 1) | ^~~~~ ../tools/xe-perf/xe_perf_recorder.c:42:9: warning: ‘ARRAY_SIZE’ redefined 42 | #define ARRAY_SIZE(arr) (sizeof(arr)/sizeof((arr)[0])) | ^~~~~~~~~~ ../lib/drmtest.h:91:9: note: this is the location of the previous definition 91 | #define ARRAY_SIZE(arr) (sizeof(arr)/sizeof(arr[0])) | ^~~~~~~~~~ > > Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] tools/xe-perf-recorder: Add mmio-trigger support 2026-06-29 21:51 ` [PATCH] " Dixit, Ashutosh @ 2026-07-02 5:24 ` Shekhar Chauhan 0 siblings, 0 replies; 9+ messages in thread From: Shekhar Chauhan @ 2026-07-02 5:24 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev On 6/30/2026 3:21, Dixit, Ashutosh wrote: > On Thu, 18 Jun 2026 22:02:17 -0700, Shekhar Chauhan wrote: >> Add mmio-trigger support to xe-perf-recorder, to justify the >> whitelisting of OA MMIO Trigger Registers in XeKMD. > We can't have these compile warnings: > > $ ninja -C build > ninja: Entering directory `build' > [4/952] Compiling C object tools/xe-perf/xe-perf-recorder.p/xe_perf_recorder.c.o > ../tools/xe-perf/xe_perf_recorder.c:41:9: warning: ‘ALIGN’ redefined > 41 | #define ALIGN(v, a) (((v) + (a)-1) & ~((a)-1)) > | ^~~~~ > In file included from ../lib/intel_batchbuffer.h:10, > from ../tools/xe-perf/xe_perf_recorder.c:30: > ../lib/drmtest.h:100:9: note: this is the location of the previous definition > 100 | #define ALIGN(v, a) ALIGN_MASK(v, (typeof(v))(a) - 1) > | ^~~~~ > ../tools/xe-perf/xe_perf_recorder.c:42:9: warning: ‘ARRAY_SIZE’ redefined > 42 | #define ARRAY_SIZE(arr) (sizeof(arr)/sizeof((arr)[0])) > | ^~~~~~~~~~ > ../lib/drmtest.h:91:9: note: this is the location of the previous definition > 91 | #define ARRAY_SIZE(arr) (sizeof(arr)/sizeof(arr[0])) > | ^~~~~~~~~~ Fixed in the new revision. -shekhar >> Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> -- Shekhar Chauhan Linux Graphics Software Engineer Intel Corporation ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] tools/xe-perf-recorder: Add mmio-trigger support 2026-06-19 5:02 [PATCH] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan ` (4 preceding siblings ...) 2026-06-29 21:51 ` [PATCH] " Dixit, Ashutosh @ 2026-06-30 1:50 ` Dixit, Ashutosh 2026-07-02 5:29 ` Shekhar Chauhan 5 siblings, 1 reply; 9+ messages in thread From: Dixit, Ashutosh @ 2026-06-30 1:50 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev On Thu, 18 Jun 2026 22:02:17 -0700, Shekhar Chauhan wrote: > > Add mmio-trigger support to xe-perf-recorder, to justify the > whitelisting of OA MMIO Trigger Registers in XeKMD. Good description! > > Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> > --- > tools/xe-perf/xe_perf_recorder.c | 83 ++++++++++++++++++++++++++++++++ > 1 file changed, 83 insertions(+) > > diff --git a/tools/xe-perf/xe_perf_recorder.c b/tools/xe-perf/xe_perf_recorder.c > index f200fe9c9..48a7d55d4 100644 > --- a/tools/xe-perf/xe_perf_recorder.c > +++ b/tools/xe-perf/xe_perf_recorder.c > @@ -27,8 +27,11 @@ > > #include "igt_core.h" > #include "intel_chipset.h" > +#include "intel_batchbuffer.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" Could you fix these includes (even previous includes) to be in alphabetical order, which is the convention we generally follow. > @@ -39,6 +42,10 @@ > #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 TRIGGER_BB_SIZE 4096 Just use BATCH_SZ. > +#define OAREPORT_REASON_MASK 0x3f > +#define OAREPORT_REASON_SHIFT 19 > > struct circular_buffer { > char *data; > @@ -354,8 +361,21 @@ 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) > +{ > + switch (ctx->oa_unit->oa_unit_type) { > + case DRM_XE_OA_UNIT_TYPE_OAG: > + default: > + return OAG_MMIOTRIGGER; > + } This is not sufficient. The recorder currently supports all OA unit types. Can we do similar to: struct xe_oa_regs regs = oa_unit_regs(oau); as is done in __test_mmio_triggered_reports() in the IGT and initialize the register(s) in the beginning. Different is also ok, but at least let us try to cover all OA units. Also, please test these changes with OAG and one of the DRM_XE_OA_UNIT_TYPE_OAM OA unit. > +} > + > static void set_fd_flags(int fd, int flags) > { > int old = fcntl(fd, F_GETFL, 0); > @@ -569,6 +589,23 @@ static bool write_stream_status(struct recording_context *ctx, FILE *output) > return true; > } > > +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; > + uint32_t reason = (report_32[0] >> OAREPORT_REASON_SHIFT) & OAREPORT_REASON_MASK; Let's copy report_reason() function from the IGT too. > + uint64_t value; > + > + if (reason) > + 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); When you test this, do you see both these values? > +} > + > static bool write_stream_data(struct recording_context *ctx, > char *data, ssize_t size, FILE *output) > { > @@ -582,6 +619,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 +736,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) > { > @@ -726,6 +781,9 @@ read_command_file(struct recording_context *ctx) > if (file) { > struct chunk chunks[2]; > > + emit_oa_trigger(ctx, 0xc0ffee02); > + write_perf_data(ctx->output_stream, ctx); > + Looks correct to me, but I am still wondering if we should move these two lines slightly above, just before the line: while (offset < len && > fflush(ctx->output_stream); > get_chunks(chunks, &ctx->circular_buffer, > false, ctx->circular_buffer.size); > @@ -835,6 +893,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 +977,18 @@ static int assign_oa_unit(int fd, struct recording_context *ctx) > return -1; > } > > +static int 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, TRIGGER_BB_SIZE); > + if (!ctx->ibb) > + return -1; > + > + return 0; > +} > + > int > main(int argc, char *argv[]) > { > @@ -1180,6 +1257,12 @@ main(int argc, char *argv[]) > goto fail; > } > > + if (init_trigger_ctx(&ctx) < 0) { > + fprintf(stderr, "Unable to initialize trigger context\n"); > + goto fail; > + } > + emit_oa_trigger(&ctx, 0xc0ffee01); > + > corr_period_ns = corr_period * 1000000000ul; > poll_time_ns = corr_period_ns; Also, I think we need another emit_oa_trigger() just before the following line: fprintf(stdout, "Exiting...\n"); Because this is the other case where data is directly written to an output file, not to the circular buffer. For gpuvis we use the circular buffer, so that is why likely you don't see an issue. > > -- > 2.53.0 > Thanks. -- Ashutosh ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] tools/xe-perf-recorder: Add mmio-trigger support 2026-06-30 1:50 ` Dixit, Ashutosh @ 2026-07-02 5:29 ` Shekhar Chauhan 0 siblings, 0 replies; 9+ messages in thread From: Shekhar Chauhan @ 2026-07-02 5:29 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev On 6/30/2026 7:20, Dixit, Ashutosh wrote: > On Thu, 18 Jun 2026 22:02:17 -0700, Shekhar Chauhan wrote: >> Add mmio-trigger support to xe-perf-recorder, to justify the >> whitelisting of OA MMIO Trigger Registers in XeKMD. > Good description! > >> Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> >> --- >> tools/xe-perf/xe_perf_recorder.c | 83 ++++++++++++++++++++++++++++++++ >> 1 file changed, 83 insertions(+) >> >> diff --git a/tools/xe-perf/xe_perf_recorder.c b/tools/xe-perf/xe_perf_recorder.c >> index f200fe9c9..48a7d55d4 100644 >> --- a/tools/xe-perf/xe_perf_recorder.c >> +++ b/tools/xe-perf/xe_perf_recorder.c >> @@ -27,8 +27,11 @@ >> >> #include "igt_core.h" >> #include "intel_chipset.h" >> +#include "intel_batchbuffer.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" > Could you fix these includes (even previous includes) to be in alphabetical > order, which is the convention we generally follow. Fixed in the new revision. > >> @@ -39,6 +42,10 @@ >> #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 TRIGGER_BB_SIZE 4096 > Just use BATCH_SZ. Fixed in the new revision. > >> +#define OAREPORT_REASON_MASK 0x3f >> +#define OAREPORT_REASON_SHIFT 19 >> >> struct circular_buffer { >> char *data; >> @@ -354,8 +361,21 @@ 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) >> +{ >> + switch (ctx->oa_unit->oa_unit_type) { >> + case DRM_XE_OA_UNIT_TYPE_OAG: >> + default: >> + return OAG_MMIOTRIGGER; >> + } > This is not sufficient. The recorder currently supports all OA unit > types. Can we do similar to: > > struct xe_oa_regs regs = oa_unit_regs(oau); > > as is done in __test_mmio_triggered_reports() in the IGT and initialize the > register(s) in the beginning. Different is also ok, but at least let us try > to cover all OA units. > > Also, please test these changes with OAG and one of the > DRM_XE_OA_UNIT_TYPE_OAM OA unit. Added this in the new revision. Borrowed some code from assign_oa_unit() and assign_hwe(). > >> +} >> + >> static void set_fd_flags(int fd, int flags) >> { >> int old = fcntl(fd, F_GETFL, 0); >> @@ -569,6 +589,23 @@ static bool write_stream_status(struct recording_context *ctx, FILE *output) >> return true; >> } >> >> +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; >> + uint32_t reason = (report_32[0] >> OAREPORT_REASON_SHIFT) & OAREPORT_REASON_MASK; > Let's copy report_reason() function from the IGT too. Done. > >> + uint64_t value; >> + >> + if (reason) >> + 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); > When you test this, do you see both these values? Yes, tried it on a PTL device with both OAG and OAM units. I opened two terminals, once for recording and other for sending a trigger, I could see that it was getting dumped. I also tried with a single terminal and then stopping it (via CTRL+C) and since the new revision is supposed to add a new trigger at the end, it showed me c0ffee02 when I stopped recording. Hence, I believe it works fine. > >> +} >> + >> static bool write_stream_data(struct recording_context *ctx, >> char *data, ssize_t size, FILE *output) >> { >> @@ -582,6 +619,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 +736,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) >> { >> @@ -726,6 +781,9 @@ read_command_file(struct recording_context *ctx) >> if (file) { >> struct chunk chunks[2]; >> >> + emit_oa_trigger(ctx, 0xc0ffee02); >> + write_perf_data(ctx->output_stream, ctx); >> + > Looks correct to me, but I am still wondering if we should move these two > lines slightly above, just before the line: Done this as well, makes sense, dump/write the triggers as soon as we get it and not wait for any other process. > > while (offset < len && > >> fflush(ctx->output_stream); >> get_chunks(chunks, &ctx->circular_buffer, >> false, ctx->circular_buffer.size); >> @@ -835,6 +893,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 +977,18 @@ static int assign_oa_unit(int fd, struct recording_context *ctx) >> return -1; >> } >> >> +static int 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, TRIGGER_BB_SIZE); >> + if (!ctx->ibb) >> + return -1; >> + >> + return 0; >> +} >> + >> int >> main(int argc, char *argv[]) >> { >> @@ -1180,6 +1257,12 @@ main(int argc, char *argv[]) >> goto fail; >> } >> >> + if (init_trigger_ctx(&ctx) < 0) { >> + fprintf(stderr, "Unable to initialize trigger context\n"); >> + goto fail; >> + } >> + emit_oa_trigger(&ctx, 0xc0ffee01); >> + >> corr_period_ns = corr_period * 1000000000ul; >> poll_time_ns = corr_period_ns; > Also, I think we need another emit_oa_trigger() just before the following > line: > > fprintf(stdout, "Exiting...\n"); > > Because this is the other case where data is directly written to an output > file, not to the circular buffer. For gpuvis we use the circular buffer, so > that is why likely you don't see an issue. Done this as well, explained this in the above comment on how it appears in testing. -shekhar > >> -- >> 2.53.0 >> > Thanks. > -- > Ashutosh -- Shekhar Chauhan Linux Graphics Software Engineer Intel Corporation ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-07-02 5:30 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-06-19 5:02 [PATCH] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan 2026-06-19 6:19 ` ✓ i915.CI.BAT: success for " Patchwork 2026-06-19 6:20 ` ✓ Xe.CI.BAT: " Patchwork 2026-06-19 8:08 ` ✓ Xe.CI.FULL: " Patchwork 2026-06-20 7:10 ` ✗ i915.CI.Full: failure " Patchwork 2026-06-29 21:51 ` [PATCH] " Dixit, Ashutosh 2026-07-02 5:24 ` Shekhar Chauhan 2026-06-30 1:50 ` Dixit, Ashutosh 2026-07-02 5:29 ` Shekhar Chauhan
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox