* [PATCH v2] tools/xe-perf-recorder: Add mmio-trigger support
@ 2026-07-02 5:23 Shekhar Chauhan
2026-07-02 6:16 ` ✓ Xe.CI.BAT: success for tools/xe-perf-recorder: Add mmio-trigger support (rev2) Patchwork
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Shekhar Chauhan @ 2026-07-02 5:23 UTC (permalink / raw)
To: igt-dev; +Cc: ashutosh.dixit, shekhar.chauhan
Add mmio-trigger support to xe-perf-recorder, to justify the
whitelisting of OA MMIO Trigger Registers in XeKMD.
v2: Add all OA unit types, fix includes, compile warnings and adding
extra triggger for file mode.
Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com>
---
tools/xe-perf/xe_perf_recorder.c | 122 ++++++++++++++++++++++++++++++-
1 file changed, 120 insertions(+), 2 deletions(-)
diff --git a/tools/xe-perf/xe_perf_recorder.c b/tools/xe-perf/xe_perf_recorder.c
index f200fe9c9..ecf1c7c27 100644
--- a/tools/xe-perf/xe_perf_recorder.c
+++ b/tools/xe-perf/xe_perf_recorder.c
@@ -26,19 +26,29 @@
#include <unistd.h>
#include "igt_core.h"
+#include "intel_batchbuffer.h"
#include "intel_chipset.h"
+#include "intel_reg.h"
#include "ioctl_wrappers.h"
#include "linux_scaffold.h"
+#include "xe/xe_ioctl.h"
#include "xe/xe_oa.h"
#include "xe/xe_oa_data.h"
#include "xe/xe_query.h"
#include "xe_perf_recorder_commands.h"
-#define ALIGN(v, a) (((v) + (a)-1) & ~((a)-1))
-#define ARRAY_SIZE(arr) (sizeof(arr)/sizeof((arr)[0]))
#define MAX(a,b) ((a) > (b) ? (a) : (b))
#define MIN(a,b) ((a) < (b) ? (a) : (b))
+#define OAG_MMIOTRIGGER 0xdb1c
+#define OAMERT_MMIOTRIGGER 0x1453cc
+#define OAM_MMIOTRIGGER_OFFSET 0x1d0
+#define MEDIA_GT_GSI_OFFSET 0x380000
+#define XE_OAM_SAG_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x13000)
+#define XE_OAM_SCMI_0_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x14000)
+#define XE_OAM_SCMI_1_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x14800)
+#define OAREPORT_REASON_MASK 0x3f
+#define OAREPORT_REASON_SHIFT 19
struct circular_buffer {
char *data;
@@ -354,8 +364,47 @@ struct recording_context {
int oa_unit_id;
struct drm_xe_oa_unit *oa_unit;
struct drm_xe_engine_class_instance *hwe;
+
+ uint32_t vm;
+ uint32_t exec_queue;
+ struct intel_bb *ibb;
};
+static uint32_t oa_unit_mmio_trigger_reg(struct recording_context *ctx)
+{
+ const struct drm_xe_oa_unit *oau = ctx->oa_unit;
+
+ switch (oau->oa_unit_type) {
+ case DRM_XE_OA_UNIT_TYPE_OAM: {
+ struct drm_xe_query_oa_units *qoa = xe_oa_units(ctx->drm_fd);
+ uint8_t *poau = (uint8_t *)&qoa->oa_units[0];
+ int first_oam_id = -1;
+
+ /* Find the first OAM unit, like oa_unit_by_type() in the IGT */
+ for (int i = 0; i < qoa->num_oa_units; i++) {
+ struct drm_xe_oa_unit *u = (struct drm_xe_oa_unit *)poau;
+
+ if (u->oa_unit_type == DRM_XE_OA_UNIT_TYPE_OAM) {
+ first_oam_id = u->oa_unit_id;
+ break;
+ }
+ poau += sizeof(*u) + u->num_engines * sizeof(u->eci[0]);
+ }
+
+ if ((int)oau->oa_unit_id == first_oam_id)
+ return XE_OAM_SCMI_0_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET;
+ return XE_OAM_SCMI_1_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET;
+ }
+ case DRM_XE_OA_UNIT_TYPE_OAM_SAG:
+ return XE_OAM_SAG_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET;
+ case DRM_XE_OA_UNIT_TYPE_MERT:
+ return OAMERT_MMIOTRIGGER;
+ case DRM_XE_OA_UNIT_TYPE_OAG:
+ default:
+ return OAG_MMIOTRIGGER;
+ }
+}
+
static void set_fd_flags(int fd, int flags)
{
int old = fcntl(fd, F_GETFL, 0);
@@ -569,6 +618,28 @@ static bool write_stream_status(struct recording_context *ctx, FILE *output)
return true;
}
+static uint32_t
+report_reason(const uint32_t *report)
+{
+ return (report[0] >> OAREPORT_REASON_SHIFT) & OAREPORT_REASON_MASK;
+}
+
+static void
+check_mmio_trigger_report(struct recording_context *ctx, const void *report)
+{
+ const struct xe_oa_format *fmt = &oa_formats[ctx->metric_set->perf_oa_format];
+ const uint32_t *report_32 = report;
+ uint64_t value;
+
+ if (report_reason(report_32))
+ return;
+
+ value = (fmt->header == HDR_64_BIT) ? ((const uint64_t *)report)[2] : report_32[2];
+
+ if (value == 0xc0ffee01 || value == 0xc0ffee02)
+ fprintf(stdout, "Received trigger report with value 0x%" PRIx64 "\n", value);
+}
+
static bool write_stream_data(struct recording_context *ctx,
char *data, ssize_t size, FILE *output)
{
@@ -582,6 +653,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 +770,22 @@ write_correlation_timestamps(struct recording_context *ctx, FILE *output)
return write_saved_correlation_timestamps(output, &corr);
}
+static void emit_mmio_triggered_report(struct intel_bb *ibb, uint32_t reg, uint32_t value)
+{
+ intel_bb_out(ibb, MI_LOAD_REGISTER_IMM(1));
+ intel_bb_out(ibb, reg);
+ intel_bb_out(ibb, value);
+}
+
+static void emit_oa_trigger(struct recording_context *ctx, uint32_t value)
+{
+ emit_mmio_triggered_report(ctx->ibb, oa_unit_mmio_trigger_reg(ctx), value);
+
+ intel_bb_flush_render(ctx->ibb);
+ intel_bb_sync(ctx->ibb);
+ intel_bb_reset(ctx->ibb, false);
+}
+
static void
read_command_file(struct recording_context *ctx)
{
@@ -712,6 +801,9 @@ read_command_file(struct recording_context *ctx)
uint8_t *dump = malloc(len);
FILE *file;
+ emit_oa_trigger(ctx, 0xc0ffee02);
+ write_perf_data(ctx->output_stream, ctx);
+
while (offset < len &&
((ret = read(ctx->command_fifo_fd,
(void *) dump + offset, len - offset)) > 0
@@ -835,6 +927,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 +1011,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, BATCH_SZ);
+ if (!ctx->ibb)
+ return -1;
+
+ return 0;
+}
+
int
main(int argc, char *argv[])
{
@@ -1180,6 +1291,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;
@@ -1227,6 +1344,7 @@ main(int argc, char *argv[])
}
}
+ emit_oa_trigger(&ctx, 0xc0ffee02);
fprintf(stdout, "Exiting...\n");
if (!write_perf_data(ctx.output_stream, &ctx)) {
--
2.53.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for tools/xe-perf-recorder: Add mmio-trigger support (rev2)
2026-07-02 5:23 [PATCH v2] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan
@ 2026-07-02 6:16 ` Patchwork
2026-07-02 6:40 ` ✓ i915.CI.BAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-07-02 6:16 UTC (permalink / raw)
To: Shekhar Chauhan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7158 bytes --]
== Series Details ==
Series: tools/xe-perf-recorder: Add mmio-trigger support (rev2)
URL : https://patchwork.freedesktop.org/series/168824/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8989_BAT -> XEIGTPW_15459_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 13)
------------------------------
Additional (1): bat-adlp-7
Known issues
------------
Here are the changes found in XEIGTPW_15459_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_dsc@dsc-basic:
- bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#8265])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@kms_dsc@dsc-basic.html
* igt@xe_ccs@block-copy-compressed:
- bat-adlp-7: NOTRUN -> [SKIP][2] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607]) +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@xe_ccs@block-copy-compressed.html
* igt@xe_compute_preempt@compute-preempt:
- bat-adlp-7: NOTRUN -> [SKIP][3] ([Intel XE#6360]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_evict@evict-beng-small:
- bat-adlp-7: NOTRUN -> [SKIP][4] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +9 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@xe_evict@evict-beng-small.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#5563] / [Intel XE#688]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_balancer@twice-cm-virtual-userptr:
- bat-adlp-7: NOTRUN -> [SKIP][6] ([Intel XE#7482]) +17 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@xe_exec_balancer@twice-cm-virtual-userptr.html
* igt@xe_exec_fault_mode@twice-rebind-prefetch:
- bat-adlp-7: NOTRUN -> [SKIP][7] ([Intel XE#288] / [Intel XE#5561]) +33 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@xe_exec_fault_mode@twice-rebind-prefetch.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- bat-adlp-7: NOTRUN -> [SKIP][8] ([Intel XE#8376]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_multi_queue@priority:
- bat-adlp-7: NOTRUN -> [SKIP][9] ([Intel XE#8364] / [Intel XE#8377]) +13 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@xe_exec_multi_queue@priority.html
* igt@xe_exec_system_allocator@eu-fault-2m-range-device-host:
- bat-adlp-7: NOTRUN -> [SKIP][10] ([Intel XE#4915]) +11 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@xe_exec_system_allocator@eu-fault-2m-range-device-host.html
* igt@xe_live_ktest@xe_bo:
- bat-adlp-7: NOTRUN -> [SKIP][11] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-adlp-7: NOTRUN -> [SKIP][12] ([Intel XE#2229] / [Intel XE#5488])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-adlp-7: NOTRUN -> [SKIP][13] ([Intel XE#1008] / [Intel XE#5591])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-auto:
- bat-adlp-7: NOTRUN -> [SKIP][14] ([Intel XE#8434])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@xe_pat@pat-index-auto.html
* igt@xe_pat@pat-index-xe2:
- bat-adlp-7: NOTRUN -> [SKIP][15] ([Intel XE#977])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-adlp-7: NOTRUN -> [SKIP][16] ([Intel XE#2838] / [Intel XE#979])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- bat-adlp-7: NOTRUN -> [SKIP][17] ([Intel XE#979])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/bat-adlp-7/igt@xe_pat@pat-index-xelpg.html
[Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591
[Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8376
[Intel XE#8377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8377
[Intel XE#8434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8434
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8989 -> IGTPW_15459
* Linux: xe-5315-e913ff3ff5099aa149bb820ca68e3cf8642b273e -> xe-5328-fa669b282e875afd49a387644ad4d47767fe2e0a
IGTPW_15459: 15459
IGT_8989: a8e2cbd2854d7980a9eccecc6e0c801d0824b88f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5315-e913ff3ff5099aa149bb820ca68e3cf8642b273e: e913ff3ff5099aa149bb820ca68e3cf8642b273e
xe-5328-fa669b282e875afd49a387644ad4d47767fe2e0a: fa669b282e875afd49a387644ad4d47767fe2e0a
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/index.html
[-- Attachment #2: Type: text/html, Size: 8341 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for tools/xe-perf-recorder: Add mmio-trigger support (rev2)
2026-07-02 5:23 [PATCH v2] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan
2026-07-02 6:16 ` ✓ Xe.CI.BAT: success for tools/xe-perf-recorder: Add mmio-trigger support (rev2) Patchwork
@ 2026-07-02 6:40 ` Patchwork
2026-07-02 23:10 ` ✗ i915.CI.Full: failure " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-07-02 6:40 UTC (permalink / raw)
To: Shekhar Chauhan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3268 bytes --]
== Series Details ==
Series: tools/xe-perf-recorder: Add mmio-trigger support (rev2)
URL : https://patchwork.freedesktop.org/series/168824/
State : success
== Summary ==
CI Bug Log - changes from IGT_8989 -> IGTPW_15459
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15459 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [DMESG-WARN][1] ([i915#13735]) -> [PASS][2] +80 other tests pass
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8989/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [DMESG-WARN][3] ([i915#13735]) -> [PASS][4] +79 other tests pass
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8989/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@kms_busy@basic@flip:
- fi-kbl-7567u: [DMESG-WARN][5] ([i915#13735] / [i915#180]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8989/fi-kbl-7567u/igt@kms_busy@basic@flip.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/fi-kbl-7567u/igt@kms_busy@basic@flip.html
* igt@kms_pipe_crc_basic@read-crc:
- fi-cfl-8109u: [DMESG-WARN][7] ([i915#13735] / [i915#15673]) -> [PASS][8] +49 other tests pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8989/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [DMESG-WARN][9] ([i915#13735] / [i915#15673] / [i915#180]) -> [PASS][10] +52 other tests pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8989/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8989 -> IGTPW_15459
* Linux: CI_DRM_18736 -> CI_DRM_18748
CI-20190529: 20190529
CI_DRM_18736: 7100870965845da8c31005c07fd1b390bbe96b20 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18748: fa669b282e875afd49a387644ad4d47767fe2e0a @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15459: 15459
IGT_8989: a8e2cbd2854d7980a9eccecc6e0c801d0824b88f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/index.html
[-- Attachment #2: Type: text/html, Size: 4439 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for tools/xe-perf-recorder: Add mmio-trigger support (rev2)
2026-07-02 5:23 [PATCH v2] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan
2026-07-02 6:16 ` ✓ Xe.CI.BAT: success for tools/xe-perf-recorder: Add mmio-trigger support (rev2) Patchwork
2026-07-02 6:40 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-07-02 23:10 ` Patchwork
2026-07-02 23:58 ` ✓ Xe.CI.FULL: success " Patchwork
2026-07-10 23:34 ` [PATCH v2] tools/xe-perf-recorder: Add mmio-trigger support Dixit, Ashutosh
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-07-02 23:10 UTC (permalink / raw)
To: Shekhar Chauhan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 163726 bytes --]
== Series Details ==
Series: tools/xe-perf-recorder: Add mmio-trigger support (rev2)
URL : https://patchwork.freedesktop.org/series/168824/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18748_full -> IGTPW_15459_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15459_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15459_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_15459/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_15459_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_mmap_offset@clear-via-pagefault@lmem0:
- shard-dg2: NOTRUN -> [FAIL][1] +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-8/igt@gem_mmap_offset@clear-via-pagefault@lmem0.html
* igt@perf_pmu@semaphore-busy@bcs0:
- shard-dg2: [PASS][2] -> [FAIL][3] +6 other tests fail
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-dg2-5/igt@perf_pmu@semaphore-busy@bcs0.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-3/igt@perf_pmu@semaphore-busy@bcs0.html
New tests
---------
New tests have been introduced between CI_DRM_18748_full and IGTPW_15459_full:
### New IGT tests (7) ###
* igt@kms_color@ctm-signed@pipe-a-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.58, 1.01] s
* igt@kms_color@ctm-signed@pipe-a-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.76, 1.01] s
* igt@kms_color@ctm-signed@pipe-b-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.57, 1.06] s
* igt@kms_color@ctm-signed@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.71, 0.91] s
* igt@kms_color@ctm-signed@pipe-c-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.58, 0.72] s
* igt@kms_color@ctm-signed@pipe-c-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.72, 0.93] s
* igt@kms_color@ctm-signed@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.57] s
Known issues
------------
Here are the changes found in IGTPW_15459_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-6/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#11078])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#13008])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-8/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][8] ([i915#13356] / [i915#16348]) +1 other test incomplete
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-5/igt@gem_ccs@suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#9323]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-1/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#9323]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-15/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#9323]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-7/igt@gem_ccs@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#9323]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-1/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-7/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#8562])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-8/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@legacy-engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][15] ([i915#1099]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-snb4/igt@gem_ctx_persistence@legacy-engines-mixed-process.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#280])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-8/igt@gem_ctx_sseu@engines.html
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#280])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@gem_ctx_sseu@engines.html
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#280])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-8/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#280]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#280]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-4/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-6/igt@gem_exec_balancer@noheartbeat.html
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-14/igt@gem_exec_balancer@noheartbeat.html
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-2/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#4525]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [SKIP][25] ([i915#4525]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-10/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-invisible:
- shard-glk11: NOTRUN -> [SKIP][26] ([i915#6334]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk11/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#6334]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-7/igt@gem_exec_capture@capture-invisible@lmem0.html
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#6334]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-17/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#6334]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#6334]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-6/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-5/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) +6 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-gtt.html
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#14544] / [i915#3281]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt.html
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#3281]) +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-19/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#3281]) +6 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#3281]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#14544] / [i915#7276])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4812]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-19/igt@gem_exec_schedule@semaphore-power.html
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4537] / [i915#4812]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-7/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s0:
- shard-rkl: NOTRUN -> [INCOMPLETE][42] ([i915#13356]) +2 other tests incomplete
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4860])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-4/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#2190])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-8/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-2/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-glk: NOTRUN -> [SKIP][47] ([i915#4613]) +6 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#4613])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#284])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-7/igt@gem_media_vme.html
* igt@gem_mmap@big-bo:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4083]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-8/igt@gem_mmap@big-bo.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4077]) +6 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-5/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_gtt@close-race:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4077]) +10 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-12/igt@gem_mmap_gtt@close-race.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4077]) +11 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-3/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-7/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@coherency:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4083]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-13/igt@gem_mmap_wc@coherency.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#3282]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3282]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-tglu: NOTRUN -> [WARN][60] ([i915#2658])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-4/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-6/igt@gem_pread@snoop.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-10/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-13/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-rkl: [PASS][64] -> [SKIP][65] ([i915#4270])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@y-tiled-to-vebox-linear:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#5190] / [i915#8428]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-6/igt@gem_render_copy@y-tiled-to-vebox-linear.html
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#8428]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-2/igt@gem_render_copy@y-tiled-to-vebox-linear.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#8411])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4079])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-14/igt@gem_set_tiling_vs_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4079])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-8/igt@gem_set_tiling_vs_pwrite.html
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4079])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-4/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4885])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-7/igt@gem_softpin@evict-snoop-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#4885])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-19/igt@gem_softpin@evict-snoop-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4885])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-1/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4879])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-10/igt@gem_unfence_active_buffers.html
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#4879])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-15/igt@gem_unfence_active_buffers.html
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4879])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-5/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4880])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4880])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3297]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#3281] / [i915#3297])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-1/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-6/igt@gem_userptr_blits@unsync-unmap.html
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#3297])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-8/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu: NOTRUN -> [SKIP][85] ([i915#3297])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-6/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#2527]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-large:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#2527]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-16/igt@gen9_exec_parse@bb-large.html
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-8/igt@gen9_exec_parse@bb-large.html
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-7/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-out:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#2856]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-3/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_drm_fdinfo@all-busy-idle-check-all:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#14123])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-3/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#14123])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-18/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#14123])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-7/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
* igt@i915_drm_fdinfo@busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#11527]) +7 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-1/igt@i915_drm_fdinfo@busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@isolation@rcs0:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#14073]) +7 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-10/igt@i915_drm_fdinfo@isolation@rcs0.html
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#14073]) +6 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-5/igt@i915_drm_fdinfo@isolation@rcs0.html
* igt@i915_drm_fdinfo@most-busy-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#14073]) +11 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-17/igt@i915_drm_fdinfo@most-busy-check-all@vcs1.html
* igt@i915_drm_fdinfo@virtual-busy-hang:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#14118])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-1/igt@i915_drm_fdinfo@virtual-busy-hang.html
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#14118])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy-hang.html
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#14118])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy-hang.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-glk: NOTRUN -> [ABORT][102] ([i915#15342]) +1 other test abort
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk8/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@load:
- shard-tglu: ([PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124]) -> ([PASS][125], [PASS][126], [PASS][127], [PASS][128], [SKIP][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147]) ([i915#16165])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-6/igt@i915_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-9/igt@i915_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-9/igt@i915_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-8/igt@i915_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-8/igt@i915_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-8/igt@i915_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-7/igt@i915_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-7/igt@i915_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-6/igt@i915_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-5/igt@i915_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-5/igt@i915_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-5/igt@i915_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-4/igt@i915_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-4/igt@i915_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-4/igt@i915_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-3/igt@i915_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-3/igt@i915_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-2/igt@i915_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-2/igt@i915_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-2/igt@i915_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-10/igt@i915_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-10/igt@i915_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-8/igt@i915_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-2/igt@i915_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-8/igt@i915_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-10/igt@i915_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-5/igt@i915_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-8/igt@i915_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-10/igt@i915_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-2/igt@i915_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-5/igt@i915_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-10/igt@i915_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-9/igt@i915_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-2/igt@i915_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-6/igt@i915_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-7/igt@i915_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-4/igt@i915_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-3/igt@i915_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-7/igt@i915_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-3/igt@i915_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-9/igt@i915_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-6/igt@i915_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-3/igt@i915_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-7/igt@i915_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-4/igt@i915_module_load@load.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#8399])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#8399])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-3/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: NOTRUN -> [INCOMPLETE][150] ([i915#13356] / [i915#13820]) +1 other test incomplete
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#14498])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#11681])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-3/igt@i915_pm_rps@thresholds-park.html
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#11681])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-18/igt@i915_pm_rps@thresholds-park.html
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#11681])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-7/igt@i915_pm_rps@thresholds-park.html
* igt@i915_power@sanity:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#7984])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-5/igt@i915_power@sanity.html
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#7984])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-8/igt@i915_power@sanity.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-glk: NOTRUN -> [INCOMPLETE][157] ([i915#16182] / [i915#4817]) +1 other test incomplete
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk1/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#7707])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@intel_hwmon@hwmon-read.html
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#7707])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-6/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#7707])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#4215])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-13/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#4212])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-19/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#4212]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-6/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#4212]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-4/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#12454] / [i915#12712] / [i915#14544])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#12454] / [i915#12712])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][167] ([i915#14888]) +4 other tests fail
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#9531])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][169] ([i915#1769]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#1769] / [i915#3555])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#1769] / [i915#3555])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#1769] / [i915#3555])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-19/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-snb: NOTRUN -> [SKIP][173] ([i915#1769])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#1769] / [i915#3555])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#14544] / [i915#5286])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#5286]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#5286]) +6 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#5286]) +4 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#4538] / [i915#5286]) +4 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#3638]) +3 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#14544] / [i915#3638])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#3638]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-19/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3828])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-16/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#3828])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3828])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3828])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#3828])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#4538] / [i915#5190]) +9 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][189] +13 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#6187])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#5190])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#4538]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#14544] / [i915#6095]) +5 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#14098] / [i915#6095]) +55 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#12313])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#6095]) +237 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][198] +145 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk11/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-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][199] +634 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#6095]) +104 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#6095]) +24 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#6095]) +77 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][204] ([i915#15582]) +1 other test incomplete
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#6095]) +44 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#6095]) +9 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#10307] / [i915#6095]) +131 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#12313])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#3742]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-5/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#16017])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-3/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#3742])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-18/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#3742])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-5/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#16017])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-7/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@hdmi-audio-after-suspend:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#11151])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-8/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#11151])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-10/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#11151] / [i915#7828]) +11 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-2/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][217] +14 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-1/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#16471]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-12/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#16471])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-3/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d:
- shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#16471])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#16464] / [i915#16471])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-8/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#16471]) +2 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-5/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html
* igt@kms_chamelium_color_pipeline@plane-lut3d-green-only:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#16471]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-5/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#11151] / [i915#7828]) +8 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#11151] / [i915#7828]) +6 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-5/igt@kms_chamelium_frames@dp-crc-fast.html
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#11151] / [i915#7828]) +7 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-16/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#11151] / [i915#7828]) +4 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-1/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#11151] / [i915#7828]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#15865])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-12/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#15330] / [i915#3116] / [i915#3299])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#15330])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#15330])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#15330]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#15330])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-18/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#15330]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#15330])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#15330] / [i915#3116] / [i915#3299])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-5/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#15865]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-5/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#15865]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#15865])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_content_protection@uevent.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#15865]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-3/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#13049]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [PASS][243] -> [FAIL][244] ([i915#13566])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-tglu: [PASS][245] -> [FAIL][246] ([i915#13566]) +1 other test fail
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8814]) +2 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#13049]) +3 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#3555]) +4 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#3555]) +4 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#3555]) +7 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#3555]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-snb: NOTRUN -> [SKIP][253] +229 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-snb4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#13049]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#13049])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#8814]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][257] ([i915#13566]) +2 other tests fail
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [FAIL][258] ([i915#13566]) +3 other tests fail
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#3555]) +7 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#13049]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-19/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#9809]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-tglu: NOTRUN -> [SKIP][262] ([i915#4103]) +3 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#13046] / [i915#5354]) +5 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][264] ([i915#15804]) +1 other test fail
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#4103])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#4103])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#4103])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#16119] / [i915#4213])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#3804])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#3804])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#13748]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@kms_dp_link_training@uhbr-sst.html
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#13748])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-12/igt@kms_dp_link_training@uhbr-sst.html
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#13748])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-3/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#13707])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-14/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#13707])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#13707])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#13707]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#16361]) +4 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-7/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#14544] / [i915#16361]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#16361]) +3 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-19/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#16361]) +2 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#16361]) +3 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#16361]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#16361]) +2 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][285] ([i915#9878])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk9/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#3469])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-12/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#3955])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#16084])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-4/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#16081])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-5/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#658])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-10/igt@kms_feature_discovery@psr1.html
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#658])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-3/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#658])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#658])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-18/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#9934]) +6 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-4/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#3637] / [i915#9934])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#9934])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-3/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#9934])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-5/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#8381])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#9934]) +3 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-13/igt@kms_flip@2x-flip-vs-panning.html
- shard-mtlp: NOTRUN -> [SKIP][300] ([i915#3637] / [i915#9934]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-6/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#9934]) +7 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][302] ([i915#12745] / [i915#4839])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk10/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][303] ([i915#12314] / [i915#12745] / [i915#4839])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][304] ([i915#12314] / [i915#12745])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk10: NOTRUN -> [INCOMPLETE][305] ([i915#12745])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk10/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#3637] / [i915#9934]) +5 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-3/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk11: NOTRUN -> [INCOMPLETE][307] ([i915#12745] / [i915#4839])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk11: NOTRUN -> [INCOMPLETE][308] ([i915#12745])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#15643]) +7 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#8810] / [i915#8813]) +2 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#8810] / [i915#8813])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#15643]) +5 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][313] ([i915#15643]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#15643])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#15643])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#15643]) +2 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#15643] / [i915#5190])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: [PASS][318] -> [SKIP][319] ([i915#15672]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-mtlp-4/igt@kms_force_connector_basic@prune-stale-modes.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#15104] / [i915#15990])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#15991] / [i915#5354]) +24 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#15990] / [i915#8708]) +14 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][323] ([i915#15990] / [i915#8708]) +5 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#15991] / [i915#1825]) +12 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
- shard-rkl: [PASS][325] -> [SKIP][326] ([i915#15989]) +11 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][327] ([i915#15990]) +7 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#15989]) +14 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt:
- shard-tglu: NOTRUN -> [SKIP][329] +127 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#14544]) +8 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#15989]) +7 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-linear:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#15989]) +21 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#10055]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#15989]) +9 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-14/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][335] ([i915#10055])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#15102] / [i915#3023]) +14 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#1825]) +6 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][338] +49 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#15990] / [i915#8708]) +11 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][340] +93 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][341] ([i915#15990]) +21 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-modesetfrombusy:
- shard-mtlp: NOTRUN -> [SKIP][342] ([i915#15989]) +19 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#5439])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#15990]) +21 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-4/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][345] ([i915#15989]) +26 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-2p-rte:
- shard-glk: [PASS][346] -> [SKIP][347] +1 other test skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-rte.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk4/igt@kms_frontbuffer_tracking@hdr-2p-rte.html
* igt@kms_frontbuffer_tracking@hdr-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][348] ([i915#16056])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk10/igt@kms_frontbuffer_tracking@hdr-suspend.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#9766])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][350] ([i915#15102]) +31 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][351] ([i915#14544] / [i915#1825]) +5 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#15102]) +21 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][353] ([i915#15102]) +30 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][354] ([i915#15102]) +46 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-10/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw:
- shard-dg2: NOTRUN -> [SKIP][355] ([i915#15991]) +41 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-8/igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-indfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][356] ([i915#15991]) +27 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-5/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][357] +53 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][358] ([i915#15102]) +27 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-13/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][359] ([i915#14544] / [i915#15102]) +2 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-mmap-cpu.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: [PASS][360] -> [SKIP][361] ([i915#3555] / [i915#8228])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_hdr@bpc-switch.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: NOTRUN -> [SKIP][362] ([i915#12713] / [i915#16518])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#3555] / [i915#8228])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#16518] / [i915#3555] / [i915#8228])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-8/igt@kms_hdr@static-toggle.html
- shard-rkl: NOTRUN -> [SKIP][365] ([i915#3555] / [i915#8228]) +3 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-5/igt@kms_hdr@static-toggle.html
- shard-dg1: NOTRUN -> [SKIP][366] ([i915#3555] / [i915#8228]) +1 other test skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-17/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][367] ([i915#3555] / [i915#8228]) +1 other test skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-7/igt@kms_hdr@static-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][368] ([i915#12713] / [i915#16490] / [i915#3555] / [i915#8228]) +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-1/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#15460])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-8/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][370] ([i915#15458])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-4/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][371] ([i915#15458])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][372] ([i915#15458])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][373] ([i915#15458])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][374] ([i915#6301])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-4/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#6301])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [INCOMPLETE][376] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-glk10: NOTRUN -> [SKIP][377] +158 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk10/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-tglu: NOTRUN -> [SKIP][378] ([i915#15709]) +4 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][379] ([i915#15709]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#15709]) +5 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5:
- shard-dg2: NOTRUN -> [SKIP][381] ([i915#16386]) +1 other test skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#15709]) +2 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5:
- shard-mtlp: NOTRUN -> [SKIP][383] ([i915#16386]) +1 other test skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][384] ([i915#16386]) +1 other test skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-9/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][385] ([i915#15709]) +2 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][386] ([i915#16386]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][387] ([i915#15709]) +3 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-17/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y:
- shard-rkl: NOTRUN -> [SKIP][388] ([i915#16112])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-1/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html
- shard-dg1: NOTRUN -> [SKIP][389] ([i915#16112])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-15/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html
- shard-tglu: NOTRUN -> [SKIP][390] ([i915#16112])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-7/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html
- shard-mtlp: NOTRUN -> [SKIP][391] ([i915#16112])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-1/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-glk: NOTRUN -> [INCOMPLETE][392] ([i915#13026]) +1 other test incomplete
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk9/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][393] ([i915#12178])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][394] ([i915#7862]) +1 other test fail
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][395] ([i915#10647] / [i915#12169])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk3/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][396] ([i915#10647]) +1 other test fail
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk3/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk10: NOTRUN -> [FAIL][397] ([i915#10647] / [i915#12177])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][398] ([i915#10647]) +1 other test fail
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-4:
- shard-mtlp: NOTRUN -> [SKIP][399] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-6/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-4@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][400] ([i915#11614] / [i915#3582]) +3 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-6/igt@kms_plane_lowres@tiling-4@pipe-c-edp-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg2: NOTRUN -> [SKIP][401] ([i915#13958])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-5/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@tiling-4:
- shard-dg1: NOTRUN -> [SKIP][402] ([i915#14259])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-14/igt@kms_plane_multiple@tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][403] ([i915#14259])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-6/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][404] ([i915#14259]) +1 other test skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][405] ([i915#15329]) +4 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][406] ([i915#15329]) +9 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][407] ([i915#15329]) +12 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][408] ([i915#15329] / [i915#3555] / [i915#6953])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][409] ([i915#15329] / [i915#6953])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2: NOTRUN -> [SKIP][410] ([i915#12343])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-8/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][411] ([i915#12343] / [i915#5354])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-5/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][412] ([i915#12343] / [i915#5354]) +1 other test skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-17/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][413] ([i915#12343] / [i915#9812]) +1 other test skip
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-7/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg2: NOTRUN -> [SKIP][414] ([i915#12343] / [i915#5354])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-8/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][415] ([i915#12343] / [i915#9812])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2: NOTRUN -> [SKIP][416] ([i915#3828]) +1 other test skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][417] -> [SKIP][418] ([i915#15073]) +1 other test skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][419] ([i915#15073])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg1: [PASS][420] -> [DMESG-WARN][421] ([i915#4423])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-dg1-13/igt@kms_pm_rpm@i2c.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-16/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][422] ([i915#15073]) +1 other test skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-dg1: [PASS][423] -> [SKIP][424] ([i915#15073]) +2 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][425] ([i915#15073])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][426] -> [SKIP][427] ([i915#15073]) +1 other test skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][428] ([i915#6524] / [i915#6805])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-1/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@d3hot:
- shard-dg1: NOTRUN -> [SKIP][429] ([i915#6524])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-19/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][430] ([i915#11520]) +4 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
- shard-snb: NOTRUN -> [SKIP][431] ([i915#11520]) +2 other tests skip
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-snb6/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
- shard-dg1: NOTRUN -> [SKIP][432] ([i915#11520]) +3 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-15/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][433] ([i915#9808])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-mtlp: NOTRUN -> [SKIP][434] ([i915#12316]) +2 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-glk10: NOTRUN -> [SKIP][435] ([i915#11520]) +3 other tests skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk10/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][436] ([i915#11520]) +8 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][437] ([i915#11520]) +5 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][438] ([i915#11520]) +11 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
- shard-rkl: NOTRUN -> [SKIP][439] ([i915#11520] / [i915#14544])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-glk11: NOTRUN -> [SKIP][440] ([i915#11520]) +5 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk11/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-tglu-1: NOTRUN -> [SKIP][441] ([i915#11520]) +4 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: NOTRUN -> [SKIP][442] ([i915#9683])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-basic:
- shard-dg2: NOTRUN -> [SKIP][443] ([i915#1072] / [i915#9732]) +19 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-6/igt@kms_psr@fbc-psr-basic.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-tglu-1: NOTRUN -> [SKIP][444] ([i915#9732]) +7 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@fbc-psr2-primary-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][445] ([i915#9732]) +25 other tests skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-9/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][446] ([i915#9688]) +10 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-6/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][447] ([i915#1072] / [i915#9732]) +21 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: NOTRUN -> [SKIP][448] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][449] ([i915#1072] / [i915#9732]) +15 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-13/igt@kms_psr@psr2-sprite-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][450] ([i915#4077] / [i915#9688]) +1 other test skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-8/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][451] ([i915#15949])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-16/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][452] ([i915#15949])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk11: NOTRUN -> [INCOMPLETE][453] ([i915#15492] / [i915#16184])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk11/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][454] ([i915#12755] / [i915#15867] / [i915#5190])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][455] ([i915#5289]) +1 other test skip
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][456] ([i915#5289]) +1 other test skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][457] ([i915#12755] / [i915#15867]) +1 other test skip
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-90.html
- shard-mtlp: NOTRUN -> [SKIP][458] ([i915#12755] / [i915#15867]) +1 other test skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-7/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_selftest@drm_framebuffer:
- shard-glk: NOTRUN -> [ABORT][459] ([i915#13179]) +1 other test abort
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk3/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][460] ([i915#3555] / [i915#8809])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-8/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk11: NOTRUN -> [FAIL][461] ([i915#10959])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk11/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][462] ([i915#12276]) +1 other test incomplete
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@flip-dpms:
- shard-rkl: NOTRUN -> [SKIP][463] ([i915#15243] / [i915#3555]) +1 other test skip
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-7/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][464] ([i915#11920])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@kms_vrr@lobf.html
- shard-tglu: NOTRUN -> [SKIP][465] ([i915#11920])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-3/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][466] ([i915#3555] / [i915#9906])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-6/igt@kms_vrr@negative-basic.html
- shard-rkl: NOTRUN -> [SKIP][467] ([i915#3555] / [i915#9906])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-8/igt@kms_vrr@negative-basic.html
- shard-dg1: NOTRUN -> [SKIP][468] ([i915#3555] / [i915#9906])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-18/igt@kms_vrr@negative-basic.html
- shard-tglu: NOTRUN -> [SKIP][469] ([i915#3555] / [i915#9906])
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-10/igt@kms_vrr@negative-basic.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][470] ([i915#9100]) +1 other test fail
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [PASS][471] -> [FAIL][472] ([i915#4349])
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-5/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][473] ([i915#4349]) +4 other tests fail
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@enable-race@vecs0:
- shard-tglu: [PASS][474] -> [INCOMPLETE][475] ([i915#13520]) +1 other test incomplete
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-7/igt@perf_pmu@enable-race@vecs0.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-5/igt@perf_pmu@enable-race@vecs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][476] ([i915#8516])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-3/igt@perf_pmu@rc6-all-gts.html
- shard-rkl: NOTRUN -> [SKIP][477] ([i915#8516])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@perf_pmu@rc6-all-gts.html
- shard-dg1: NOTRUN -> [SKIP][478] ([i915#8516])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html
- shard-tglu: NOTRUN -> [SKIP][479] ([i915#8516])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-10/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: [PASS][480] -> [INCOMPLETE][481] ([i915#13356] / [i915#14242] / [i915#16236])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-glk9/igt@perf_pmu@rc6-suspend.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk2/igt@perf_pmu@rc6-suspend.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [SKIP][482] ([i915#14121]) +1 other test skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-4/igt@prime_mmap@test_aperture_limit.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg1: NOTRUN -> [SKIP][483] ([i915#14121]) +1 other test skip
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-14/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
- shard-mtlp: NOTRUN -> [SKIP][484] ([i915#14121]) +1 other test skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-8/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][485] ([i915#3708] / [i915#4077])
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-6/igt@prime_vgem@basic-gtt.html
- shard-dg2: NOTRUN -> [SKIP][486] ([i915#3708] / [i915#4077])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-7/igt@prime_vgem@basic-gtt.html
- shard-dg1: NOTRUN -> [SKIP][487] ([i915#3708] / [i915#4077])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-17/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg1: NOTRUN -> [SKIP][488] ([i915#3708])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-12/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][489] ([i915#9917])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-6/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
- shard-tglu: NOTRUN -> [SKIP][490] ([i915#16066]) +9 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-10/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: NOTRUN -> [SKIP][491] ([i915#9917])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2:
- shard-tglu-1: NOTRUN -> [SKIP][492] ([i915#16066]) +8 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html
#### Possible fixes ####
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: [INCOMPLETE][493] ([i915#13356] / [i915#15172]) -> [PASS][494]
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-glk9/igt@i915_pm_rpm@system-suspend-execbuf.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk4/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][495] ([i915#15733] / [i915#5138]) -> [PASS][496]
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [INCOMPLETE][497] ([i915#15582]) -> [PASS][498] +1 other test pass
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [FAIL][499] ([i915#13566]) -> [PASS][500] +5 other tests pass
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:
- shard-rkl: [FAIL][501] ([i915#13566]) -> [PASS][502] +4 other tests pass
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [INCOMPLETE][503] ([i915#16276] / [i915#6113]) -> [PASS][504] +1 other test pass
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-mtlp: [FAIL][505] ([i915#14600]) -> [PASS][506] +1 other test pass
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-mtlp-7/igt@kms_flip@plain-flip-ts-check-interruptible.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-5/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-blt:
- shard-glk: [SKIP][507] -> [PASS][508]
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-glk3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-blt.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
- shard-rkl: [SKIP][509] ([i915#15989]) -> [PASS][510] +8 other tests pass
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg2: [SKIP][511] ([i915#15989]) -> [PASS][512] +3 other tests pass
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-dg2-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-pwrite.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_hdmi_inject@inject-audio:
- shard-mtlp: [SKIP][513] ([i915#15725]) -> [PASS][514]
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-5/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg1: [SKIP][515] ([i915#15073]) -> [PASS][516]
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-13/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: [SKIP][517] ([i915#14544] / [i915#8411]) -> [SKIP][518] ([i915#8411])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-8/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: [SKIP][519] ([i915#8411]) -> [SKIP][520] ([i915#14544] / [i915#8411])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-8/igt@api_intel_bb@object-reloc-keep-cache.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: [SKIP][521] ([i915#14544] / [i915#7697]) -> [SKIP][522] ([i915#7697])
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@gem_basic@multigpu-create-close.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@gem_basic@multigpu-create-close.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: [SKIP][523] ([i915#280]) -> [SKIP][524] ([i915#14544] / [i915#280])
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-8/igt@gem_ctx_sseu@mmap-args.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: [SKIP][525] ([i915#14544] / [i915#4525]) -> [SKIP][526] ([i915#4525])
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@gem_exec_balancer@parallel.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_reloc@basic-softpin:
- shard-rkl: [SKIP][527] ([i915#3281]) -> [SKIP][528] ([i915#14544] / [i915#3281]) +2 other tests skip
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-5/igt@gem_exec_reloc@basic-softpin.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-write-cpu:
- shard-rkl: [SKIP][529] ([i915#14544] / [i915#3281]) -> [SKIP][530] ([i915#3281]) +1 other test skip
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@gem_exec_reloc@basic-write-cpu.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@gem_exec_reloc@basic-write-cpu.html
* igt@gem_lmem_swapping@heavy-random:
- shard-rkl: [SKIP][531] ([i915#14544] / [i915#4613]) -> [SKIP][532] ([i915#4613])
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-8/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@massive-random:
- shard-rkl: [SKIP][533] ([i915#4613]) -> [SKIP][534] ([i915#14544] / [i915#4613]) +1 other test skip
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-3/igt@gem_lmem_swapping@massive-random.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: [SKIP][535] ([i915#14544] / [i915#3282]) -> [SKIP][536] ([i915#3282]) +1 other test skip
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-8/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pread@exhaustion:
- shard-rkl: [SKIP][537] ([i915#3282]) -> [SKIP][538] ([i915#14544] / [i915#3282])
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-8/igt@gem_pread@exhaustion.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@gem_pread@exhaustion.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: [SKIP][539] ([i915#3297]) -> [SKIP][540] ([i915#14544] / [i915#3297])
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-3/igt@gem_userptr_blits@readonly-unsync.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-rkl: [SKIP][541] ([i915#14544] / [i915#2527]) -> [SKIP][542] ([i915#2527])
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@gen9_exec_parse@bb-start-cmd.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-8/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: [SKIP][543] ([i915#2527]) -> [SKIP][544] ([i915#14544] / [i915#2527]) +2 other tests skip
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-8/igt@gen9_exec_parse@valid-registers.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: [SKIP][545] ([i915#14544] / [i915#8399]) -> [SKIP][546] ([i915#8399])
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-5/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-rkl: [ABORT][547] ([i915#15060]) -> [INCOMPLETE][548] ([i915#13356])
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-1/igt@i915_pm_rpm@system-suspend-execbuf.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][549] ([i915#4387]) -> [SKIP][550] ([i915#14544] / [i915#4387])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-4/igt@i915_pm_sseu@full-enable.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-rkl: [SKIP][551] ([i915#5286]) -> [SKIP][552] ([i915#14544] / [i915#5286])
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][553] ([i915#14544] / [i915#5286]) -> [SKIP][554] ([i915#5286]) +2 other tests skip
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][555] ([i915#3828]) -> [SKIP][556] ([i915#14544] / [i915#3828])
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-rkl: [SKIP][557] ([i915#3638]) -> [SKIP][558] ([i915#14544] / [i915#3638])
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-3/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][559] ([i915#14544] / [i915#3638]) -> [SKIP][560] ([i915#3638])
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][561] ([i915#14098] / [i915#6095]) -> [SKIP][562] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][563] ([i915#14544] / [i915#6095]) -> [SKIP][564] ([i915#6095]) +16 other tests skip
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: [SKIP][565] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][566] ([i915#14098] / [i915#6095]) +18 other tests skip
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][567] ([i915#6095]) -> [SKIP][568] ([i915#14544] / [i915#6095]) +3 other tests skip
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][569] ([i915#12313] / [i915#14544]) -> [SKIP][570] ([i915#12313])
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d:
- shard-rkl: [SKIP][571] ([i915#16471]) -> [SKIP][572] ([i915#14544] / [i915#16471])
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-4/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-rkl: [SKIP][573] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][574] ([i915#11151] / [i915#7828]) +3 other tests skip
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-rkl: [SKIP][575] ([i915#11151] / [i915#7828]) -> [SKIP][576] ([i915#11151] / [i915#14544] / [i915#7828])
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-2/igt@kms_chamelium_frames@vga-frame-dump.html
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_content_protection@legacy:
- shard-rkl: [SKIP][577] ([i915#14544] / [i915#15865]) -> [SKIP][578] ([i915#15865]) +3 other tests skip
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_content_protection@legacy.html
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-7/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-rkl: [SKIP][579] ([i915#15865]) -> [SKIP][580] ([i915#14544] / [i915#15865])
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-4/igt@kms_content_protection@type1.html
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: [SKIP][581] ([i915#14544] / [i915#3555]) -> [SKIP][582] ([i915#3555]) +1 other test skip
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: [SKIP][583] ([i915#13049]) -> [SKIP][584] ([i915#13049] / [i915#3359])
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: [SKIP][585] ([i915#13049]) -> [SKIP][586] ([i915#13049] / [i915#14544])
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: [SKIP][587] ([i915#9723]) -> [SKIP][588] ([i915#14544] / [i915#9723])
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: [SKIP][589] ([i915#13707]) -> [SKIP][590] ([i915#13707] / [i915#14544])
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-formats-bigjoiner:
- shard-rkl: [SKIP][591] ([i915#14544] / [i915#16361]) -> [SKIP][592] ([i915#16361]) +1 other test skip
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_dsc@dsc-with-formats-bigjoiner.html
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-3/igt@kms_dsc@dsc-with-formats-bigjoiner.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: [SKIP][593] ([i915#14544] / [i915#16081]) -> [SKIP][594] ([i915#16081])
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_feature_discovery@display-4x.html
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-7/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: [SKIP][595] ([i915#14544] / [i915#9934]) -> [SKIP][596] ([i915#9934]) +1 other test skip
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-2/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: [SKIP][597] ([i915#14544] / [i915#15643]) -> [SKIP][598] ([i915#15643]) +1 other test skip
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][599] ([i915#1825]) -> [SKIP][600] ([i915#14544] / [i915#1825]) +4 other tests skip
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][601] -> [SKIP][602] ([i915#14544]) +23 other tests skip
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][603] ([i915#10433] / [i915#15102]) -> [SKIP][604] ([i915#15102]) +3 other tests skip
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][605] ([i915#14544] / [i915#1825]) -> [SKIP][606] ([i915#1825]) +3 other tests skip
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][607] ([i915#14544] / [i915#15102]) -> [SKIP][608] ([i915#15102]) +11 other tests skip
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte:
- shard-rkl: [SKIP][609] ([i915#15102]) -> [SKIP][610] ([i915#14544] / [i915#15102]) +5 other tests skip
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: [SKIP][611] -> [SKIP][612] ([i915#4423])
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-render.html
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff:
- shard-rkl: [SKIP][613] ([i915#14544]) -> [SKIP][614] +39 other tests skip
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html
[614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-rkl: [SKIP][615] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][616] ([i915#15102] / [i915#3023]) +6 other tests skip
[615]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
[616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][617] ([i915#15102] / [i915#3023]) -> [SKIP][618] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip
[617]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
[618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:
- shard-dg2: [SKIP][619] ([i915#15102]) -> [SKIP][620] ([i915#10433] / [i915#15102]) +3 other tests skip
[619]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
[620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][621] ([i915#1187] / [i915#12713] / [i915#16490]) -> [SKIP][622] ([i915#12713] / [i915#16490])
[621]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
[622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-mtlp-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: [SKIP][623] ([i915#13688] / [i915#14544]) -> [SKIP][624] ([i915#13688])
[623]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html
[624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-7/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][625] ([i915#15458]) -> [SKIP][626] ([i915#14544] / [i915#15458])
[625]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-8/igt@kms_joiner@basic-ultra-joiner.html
[626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: [SKIP][627] ([i915#14544] / [i915#15458]) -> [SKIP][628] ([i915#15458])
[627]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: [SKIP][629] ([i915#6301]) -> [SKIP][630] ([i915#14544] / [i915#6301])
[629]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-8/igt@kms_panel_fitting@atomic-fastset.html
[630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-rkl: [SKIP][631] ([i915#14544] / [i915#15709]) -> [SKIP][632] ([i915#15709]) +2 other tests skip
[631]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
[632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: [SKIP][633] ([i915#15709]) -> [SKIP][634] ([i915#14544] / [i915#15709])
[633]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-5/igt@kms_plane@pixel-format-yf-tiled-modifier.html
[634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: [SKIP][635] ([i915#13958] / [i915#14544]) -> [SKIP][636] ([i915#13958])
[635]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
[636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-1/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-rkl: [SKIP][637] ([i915#13958]) -> [SKIP][638] ([i915#13958] / [i915#14544]) +1 other test skip
[637]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-y.html
[638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: [SKIP][639] ([i915#14544] / [i915#15329]) -> [SKIP][640] ([i915#15329]) +3 other tests skip
[639]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
[640]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: [SKIP][641] ([i915#12343] / [i915#14544]) -> [SKIP][642] ([i915#12343])
[641]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html
[642]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-5/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-rkl: [SKIP][643] ([i915#11520]) -> [SKIP][644] ([i915#11520] / [i915#14544])
[643]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[644]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][645] ([i915#11520] / [i915#14544]) -> [SKIP][646] ([i915#11520]) +5 other tests skip
[645]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
[646]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-5/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: [SKIP][647] ([i915#1072] / [i915#9732]) -> [SKIP][648] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[647]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-5/igt@kms_psr@psr-sprite-plane-onoff.html
[648]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr-suspend:
- shard-rkl: [SKIP][649] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][650] ([i915#1072] / [i915#9732]) +8 other tests skip
[649]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_psr@psr-suspend.html
[650]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-1/igt@kms_psr@psr-suspend.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: [SKIP][651] ([i915#14544] / [i915#8623]) -> [SKIP][652] ([i915#8623])
[651]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[652]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic:
- shard-rkl: [SKIP][653] ([i915#15243] / [i915#3555]) -> [SKIP][654] ([i915#14544] / [i915#15243] / [i915#3555])
[653]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-5/igt@kms_vrr@flip-basic.html
[654]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: [SKIP][655] ([i915#9906]) -> [SKIP][656] ([i915#14544] / [i915#9906])
[655]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-4/igt@kms_vrr@flip-basic-fastset.html
[656]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: [SKIP][657] ([i915#3708]) -> [SKIP][658] ([i915#14544] / [i915#3708]) +1 other test skip
[657]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18748/shard-rkl-3/igt@prime_vgem@coherency-gtt.html
[658]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[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#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[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#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[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#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[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#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[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#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
[i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[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#16017]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16017
[i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056
[i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066
[i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
[i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084
[i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112
[i915#16119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16119
[i915#16165]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16165
[i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
[i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184
[i915#16236]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16236
[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#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464
[i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471
[i915#16490]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16490
[i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[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#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[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#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[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#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[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#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#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#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[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#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8989 -> IGTPW_15459
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18748: fa669b282e875afd49a387644ad4d47767fe2e0a @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15459: 15459
IGT_8989: a8e2cbd2854d7980a9eccecc6e0c801d0824b88f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15459/index.html
[-- Attachment #2: Type: text/html, Size: 220092 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.FULL: success for tools/xe-perf-recorder: Add mmio-trigger support (rev2)
2026-07-02 5:23 [PATCH v2] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan
` (2 preceding siblings ...)
2026-07-02 23:10 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-07-02 23:58 ` Patchwork
2026-07-10 23:34 ` [PATCH v2] tools/xe-perf-recorder: Add mmio-trigger support Dixit, Ashutosh
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-07-02 23:58 UTC (permalink / raw)
To: Shekhar Chauhan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 39060 bytes --]
== Series Details ==
Series: tools/xe-perf-recorder: Add mmio-trigger support (rev2)
URL : https://patchwork.freedesktop.org/series/168824/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8989_FULL -> XEIGTPW_15459_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_15459_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-3/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2328] / [Intel XE#7367])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1124]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +5 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@linear-tiling-2-displays-target-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#367]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-target-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#8365])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-6/igt@kms_bw@linear-tiling-4-displays-target-2160x1440p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) +10 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#3432]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#2887]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-3/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html
* igt@kms_chamelium_color@gamma:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2325] / [Intel XE#7358])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-5/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#373]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-7/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2252]) +7 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#6974]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-9/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2390] / [Intel XE#6974])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-3/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2320]) +6 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-256x85.html
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1424]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-5/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2321] / [Intel XE#7355])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#4210] / [Intel XE#7467])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#4354] / [Intel XE#5882])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-7/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#4354] / [Intel XE#5882])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-2/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#4331] / [Intel XE#7227])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-formats-ultrajoiner:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#8265])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-5/igt@kms_dsc@dsc-with-formats-ultrajoiner.html
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#8265])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-5/igt@kms_dsc@dsc-with-formats-ultrajoiner.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#4422] / [Intel XE#7442])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#6126] / [Intel XE#776])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-3/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1421]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-5/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][28] -> [FAIL][29] ([Intel XE#301])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][30] -> [FAIL][31] ([Intel XE#301] / [Intel XE#3149])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7178] / [Intel XE#7351])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render:
- 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_15459/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@drrshdr-shrfb-scaledprimary:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#6312]) +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-2/igt@kms_frontbuffer_tracking@drrshdr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#4141]) +7 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2311]) +42 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#7905]) +5 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7399])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-1/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2313]) +43 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#7865]) +5 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7061]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-10/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#656] / [Intel XE#7905]) +6 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#7061] / [Intel XE#7356])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#7061])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-7/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-render.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][46] -> [SKIP][47] ([Intel XE#1503])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#6911] / [Intel XE#7466])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-6/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#6900] / [Intel XE#7362])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-3/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_mst@mst-suspend-read-crc:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#8348])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-1/igt@kms_mst@mst-suspend-read-crc.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#7283]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-8/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-5/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][54] -> [FAIL][55] ([Intel XE#8399])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#1489]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#4608])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#4608] / [Intel XE#7304])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1406])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-5/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@psr2-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-6/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7795])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-2/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-8/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2330] / [Intel XE#5813])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_sharpness_filter@invalid-filter-with-scaler:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#6503]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-3/igt@kms_sharpness_filter@invalid-filter-with-scaler.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#1499])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@xe_compute@eu-busy-10s:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#6599])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-9/igt@xe_compute@eu-busy-10s.html
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#6592] / [Intel XE#6645] / [Intel XE#7391])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-7/igt@xe_compute@eu-busy-10s.html
* igt@xe_eudebug@basic-vm-access-faultable:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#7636]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-1/igt@xe_eudebug@basic-vm-access-faultable.html
* igt@xe_eudebug_online@stopped-thread:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#7636]) +8 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-4/igt@xe_eudebug_online@stopped-thread.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#6540] / [Intel XE#688])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-3/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][74] -> [INCOMPLETE][75] ([Intel XE#6321] / [Intel XE#8355])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-small-external:
- shard-bmg: [PASS][76] -> [INCOMPLETE][77] ([Intel XE#8355])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-bmg-9/igt@xe_evict@evict-small-external.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-3/igt@xe_evict@evict-small-external.html
* igt@xe_exec_balancer@no-exec-parallel-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#7482]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-2/igt@xe_exec_balancer@no-exec-parallel-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1392])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-once-basic-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2322] / [Intel XE#7372]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-1/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
* igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#8374]) +8 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-3/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-imm:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#8374]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-5/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-imm.html
* igt@xe_exec_multi_queue@one-queue-basic:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#8364]) +6 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-5/igt@xe_exec_multi_queue@one-queue-basic.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#8364]) +24 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-7/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-prefetch-madvise:
- shard-lnl: [PASS][85] -> [ABORT][86] ([Intel XE#8007])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-prefetch-madvise.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-prefetch-madvise.html
- shard-bmg: [PASS][87] -> [ABORT][88] ([Intel XE#8007] / [Intel XE#8383])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-prefetch-madvise.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-prefetch-madvise.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-basic:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#8378]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-3/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-basic.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#8378]) +7 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-bmg: [PASS][91] -> [ABORT][92] ([Intel XE#8007])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_multigpu_svm@mgpu-migration-prefetch:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#6964]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-6/igt@xe_multigpu_svm@mgpu-migration-prefetch.html
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#6964])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-3/igt@xe_multigpu_svm@mgpu-migration-prefetch.html
* igt@xe_page_reclaim@boundary-split:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#7793]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-7/igt@xe_page_reclaim@boundary-split.html
* igt@xe_page_reclaim@invalid-1g:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#7793])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-7/igt@xe_page_reclaim@invalid-1g.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#5694] / [Intel XE#7370])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-6/igt@xe_pm@d3cold-i2c.html
* igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#4733] / [Intel XE#7417]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-4/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
* igt@xe_query@multigpu-query-config:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#944]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-3/igt@xe_query@multigpu-query-config.html
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#944])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-1/igt@xe_query@multigpu-query-config.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#3342])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-8/igt@xe_sriov_flr@flr-each-isolation.html
- shard-bmg: NOTRUN -> [FAIL][102] ([Intel XE#6569])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_scheduling@equal-throughput-normal-priority:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#8339])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-1/igt@xe_sriov_scheduling@equal-throughput-normal-priority.html
* igt@xe_vm@overcommit-fault-vram-lr-no-overcommit:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#7892])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-2/igt@xe_vm@overcommit-fault-vram-lr-no-overcommit.html
#### Possible fixes ####
* igt@kms_addfb_basic@unused-pitches:
- shard-lnl: [ABORT][105] ([Intel XE#8007]) -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-lnl-2/igt@kms_addfb_basic@unused-pitches.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-4/igt@kms_addfb_basic@unused-pitches.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][107] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][108] +1 other test pass
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][109] ([Intel XE#7571]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode:
- shard-bmg: [ABORT][111] ([Intel XE#8007]) -> [PASS][112] +1 other test pass
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
* igt@xe_pat@pt-caching-update-pat-and-pte:
- shard-bmg: [ABORT][113] ([Intel XE#7893] / [Intel XE#8300]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-bmg-8/igt@xe_pat@pt-caching-update-pat-and-pte.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-1/igt@xe_pat@pt-caching-update-pat-and-pte.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [FAIL][115] ([Intel XE#6569]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-bmg-6/igt@xe_sriov_flr@flr-vf1-clear.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
#### Warnings ####
* igt@kms_flip@flip-vs-expired-vblank:
- shard-lnl: [FAIL][117] ([Intel XE#301]) -> [FAIL][118] ([Intel XE#301] / [Intel XE#3149])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][119] ([Intel XE#3544]) -> [SKIP][120] ([Intel XE#3374] / [Intel XE#3544])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [FAIL][121] ([Intel XE#7992]) -> [FAIL][122] ([Intel XE#6569])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8989/shard-bmg-3/igt@xe_sriov_flr@flr-vfs-parallel.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/shard-bmg-3/igt@xe_sriov_flr@flr-vfs-parallel.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6592
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6645]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6645
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7391
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467
[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#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892
[Intel XE#7893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7893
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[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#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8300
[Intel XE#8339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8339
[Intel XE#8348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8348
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8383
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8989 -> IGTPW_15459
* Linux: xe-5315-e913ff3ff5099aa149bb820ca68e3cf8642b273e -> xe-5328-fa669b282e875afd49a387644ad4d47767fe2e0a
IGTPW_15459: 15459
IGT_8989: a8e2cbd2854d7980a9eccecc6e0c801d0824b88f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5315-e913ff3ff5099aa149bb820ca68e3cf8642b273e: e913ff3ff5099aa149bb820ca68e3cf8642b273e
xe-5328-fa669b282e875afd49a387644ad4d47767fe2e0a: fa669b282e875afd49a387644ad4d47767fe2e0a
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15459/index.html
[-- Attachment #2: Type: text/html, Size: 44193 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2] tools/xe-perf-recorder: Add mmio-trigger support
2026-07-02 5:23 [PATCH v2] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan
` (3 preceding siblings ...)
2026-07-02 23:58 ` ✓ Xe.CI.FULL: success " Patchwork
@ 2026-07-10 23:34 ` Dixit, Ashutosh
2026-07-10 23:39 ` Dixit, Ashutosh
4 siblings, 1 reply; 8+ messages in thread
From: Dixit, Ashutosh @ 2026-07-10 23:34 UTC (permalink / raw)
To: Shekhar Chauhan; +Cc: igt-dev
On Wed, 01 Jul 2026 22:23:15 -0700, Shekhar Chauhan wrote:
>
> Add mmio-trigger support to xe-perf-recorder, to justify the
> whitelisting of OA MMIO Trigger Registers in XeKMD.
>
> v2: Add all OA unit types, fix includes, compile warnings and adding
> extra triggger for file mode.
>
> Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com>
> ---
> tools/xe-perf/xe_perf_recorder.c | 122 ++++++++++++++++++++++++++++++-
> 1 file changed, 120 insertions(+), 2 deletions(-)
>
> diff --git a/tools/xe-perf/xe_perf_recorder.c b/tools/xe-perf/xe_perf_recorder.c
> index f200fe9c9..ecf1c7c27 100644
> --- a/tools/xe-perf/xe_perf_recorder.c
> +++ b/tools/xe-perf/xe_perf_recorder.c
> @@ -26,19 +26,29 @@
> #include <unistd.h>
>
> #include "igt_core.h"
> +#include "intel_batchbuffer.h"
> #include "intel_chipset.h"
> +#include "intel_reg.h"
> #include "ioctl_wrappers.h"
> #include "linux_scaffold.h"
> +#include "xe/xe_ioctl.h"
> #include "xe/xe_oa.h"
> #include "xe/xe_oa_data.h"
> #include "xe/xe_query.h"
>
> #include "xe_perf_recorder_commands.h"
>
> -#define ALIGN(v, a) (((v) + (a)-1) & ~((a)-1))
> -#define ARRAY_SIZE(arr) (sizeof(arr)/sizeof((arr)[0]))
> #define MAX(a,b) ((a) > (b) ? (a) : (b))
> #define MIN(a,b) ((a) < (b) ? (a) : (b))
> +#define OAG_MMIOTRIGGER 0xdb1c
> +#define OAMERT_MMIOTRIGGER 0x1453cc
> +#define OAM_MMIOTRIGGER_OFFSET 0x1d0
> +#define MEDIA_GT_GSI_OFFSET 0x380000
> +#define XE_OAM_SAG_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x13000)
> +#define XE_OAM_SCMI_0_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x14000)
> +#define XE_OAM_SCMI_1_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x14800)
> +#define OAREPORT_REASON_MASK 0x3f
> +#define OAREPORT_REASON_SHIFT 19
>
> struct circular_buffer {
> char *data;
> @@ -354,8 +364,47 @@ struct recording_context {
> int oa_unit_id;
> struct drm_xe_oa_unit *oa_unit;
> struct drm_xe_engine_class_instance *hwe;
> +
> + uint32_t vm;
> + uint32_t exec_queue;
> + struct intel_bb *ibb;
> };
>
> +static uint32_t oa_unit_mmio_trigger_reg(struct recording_context *ctx)
> +{
> + const struct drm_xe_oa_unit *oau = ctx->oa_unit;
> +
> + switch (oau->oa_unit_type) {
> + case DRM_XE_OA_UNIT_TYPE_OAM: {
> + struct drm_xe_query_oa_units *qoa = xe_oa_units(ctx->drm_fd);
> + uint8_t *poau = (uint8_t *)&qoa->oa_units[0];
> + int first_oam_id = -1;
> +
> + /* Find the first OAM unit, like oa_unit_by_type() in the IGT */
Let's change the comment to: "Find the first OAM unit, as in oa_unit_by_type()".
> + for (int i = 0; i < qoa->num_oa_units; i++) {
> + struct drm_xe_oa_unit *u = (struct drm_xe_oa_unit *)poau;
> +
> + if (u->oa_unit_type == DRM_XE_OA_UNIT_TYPE_OAM) {
> + first_oam_id = u->oa_unit_id;
> + break;
> + }
> + poau += sizeof(*u) + u->num_engines * sizeof(u->eci[0]);
> + }
> +
assert here that first_oam_id is not -1.
> + if ((int)oau->oa_unit_id == first_oam_id)
(int) cast is not needed, can you check.
> + return XE_OAM_SCMI_0_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET;
> + return XE_OAM_SCMI_1_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET;
> + }
> + case DRM_XE_OA_UNIT_TYPE_OAM_SAG:
> + return XE_OAM_SAG_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET;
> + case DRM_XE_OA_UNIT_TYPE_MERT:
> + return OAMERT_MMIOTRIGGER;
> + case DRM_XE_OA_UNIT_TYPE_OAG:
> + default:
> + return OAG_MMIOTRIGGER;
Let's do 'assert(0)' for the default case.
> + }
> +}
> +
> static void set_fd_flags(int fd, int flags)
> {
> int old = fcntl(fd, F_GETFL, 0);
> @@ -569,6 +618,28 @@ static bool write_stream_status(struct recording_context *ctx, FILE *output)
> return true;
> }
>
> +static uint32_t
> +report_reason(const uint32_t *report)
> +{
> + return (report[0] >> OAREPORT_REASON_SHIFT) & OAREPORT_REASON_MASK;
> +}
> +
> +static void
> +check_mmio_trigger_report(struct recording_context *ctx, const void *report)
> +{
> + const struct xe_oa_format *fmt = &oa_formats[ctx->metric_set->perf_oa_format];
> + const uint32_t *report_32 = report;
> + uint64_t value;
> +
> + if (report_reason(report_32))
> + return;
> +
> + value = (fmt->header == HDR_64_BIT) ? ((const uint64_t *)report)[2] : report_32[2];
> +
> + if (value == 0xc0ffee01 || value == 0xc0ffee02)
> + fprintf(stdout, "Received trigger report with value 0x%" PRIx64 "\n", value);
> +}
> +
> static bool write_stream_data(struct recording_context *ctx,
> char *data, ssize_t size, FILE *output)
> {
> @@ -582,6 +653,8 @@ static bool write_stream_data(struct recording_context *ctx,
> .size = sizeof(header) + format_size,
> };
>
> + check_mmio_trigger_report(ctx, data + i * format_size);
> +
I don't like adding check_mmio_trigger_report() here in the middle randomly when
mmio triggers are not happening (since the two mmio triggers happen only once in
the beginning and once in the end). Checking should be coupled with
emit_mmio_triggered_report(). See below.
> if (fwrite(&header, sizeof(header), 1, output) != 1)
> return false;
>
> @@ -697,6 +770,22 @@ write_correlation_timestamps(struct recording_context *ctx, FILE *output)
> return write_saved_correlation_timestamps(output, &corr);
> }
>
> +static void emit_mmio_triggered_report(struct intel_bb *ibb, uint32_t reg, uint32_t value)
> +{
> + intel_bb_out(ibb, MI_LOAD_REGISTER_IMM(1));
> + intel_bb_out(ibb, reg);
> + intel_bb_out(ibb, value);
> +}
> +
> +static void emit_oa_trigger(struct recording_context *ctx, uint32_t value)
> +{
> + emit_mmio_triggered_report(ctx->ibb, oa_unit_mmio_trigger_reg(ctx), value);
> +
> + intel_bb_flush_render(ctx->ibb);
> + intel_bb_sync(ctx->ibb);
> + intel_bb_reset(ctx->ibb, false);
> +}
> +
> static void
> read_command_file(struct recording_context *ctx)
> {
> @@ -712,6 +801,9 @@ read_command_file(struct recording_context *ctx)
> uint8_t *dump = malloc(len);
> FILE *file;
>
> + emit_oa_trigger(ctx, 0xc0ffee02);
> + write_perf_data(ctx->output_stream, ctx);
> +
So thinking about this, since we are doing this right at the end, because
of timing, write_perf_data() may or may not capture the mmio triggered
report. There are all sorts of reasons why this mmio triggered report might
be delayed (due to caching in the GPU etc.) and so not available in the OA
buffer and therefore not read by write_perf_data().
The way to confirm that the mmio triggered report has been captured would
be to keep reading from perf_fd till we have verified that ctx_id in
captured reports matches what we are inserting via emit_oa_trigger()
(0xc0ffeexx).
To me it looks like the best place to do this would be to modify
write_perf_data() (which reads and writes out the data). We can do this in
a future patch, if needed.
So I want to remove check_mmio_trigger_report() from this patch. As I see
it, it is added incorrectly to write_stream_data(). Instead, after
inserting the mmio trigger, we should read repeatedly till we see the
inserted ctx_id. Let's do this in another future patch, we can merge this
patch first without check_mmio_trigger_report() and taking care of the
other review comments. So let's make the initial problem a little bit
simpler and then solve the second problem in a separate patch.
> while (offset < len &&
> ((ret = read(ctx->command_fifo_fd,
> (void *) dump + offset, len - offset)) > 0
> @@ -835,6 +927,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);
So if we make init_trigger_ctx() void (see below), I think all these 3 if
statements can also be dropped.
> +
> if (ctx->topology)
> free(ctx->topology);
>
> @@ -912,6 +1011,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, BATCH_SZ);
> + if (!ctx->ibb)
> + return -1;
Looks like all the functions called here just assert, so to me there is no
point checking for NULL etc. We can just make this function void?
> +
> + return 0;
> +}
> +
> int
> main(int argc, char *argv[])
> {
> @@ -1180,6 +1291,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;
>
> @@ -1227,6 +1344,7 @@ main(int argc, char *argv[])
> }
> }
>
> + emit_oa_trigger(&ctx, 0xc0ffee02);
Let's add this comment just above this line:
/* Emit second OA trigger for the case where circular buffer is not used */
> fprintf(stdout, "Exiting...\n");
>
> if (!write_perf_data(ctx.output_stream, &ctx)) {
> --
> 2.53.0
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2] tools/xe-perf-recorder: Add mmio-trigger support
2026-07-10 23:34 ` [PATCH v2] tools/xe-perf-recorder: Add mmio-trigger support Dixit, Ashutosh
@ 2026-07-10 23:39 ` Dixit, Ashutosh
2026-07-14 11:23 ` Kamil Konieczny
0 siblings, 1 reply; 8+ messages in thread
From: Dixit, Ashutosh @ 2026-07-10 23:39 UTC (permalink / raw)
To: Shekhar Chauhan; +Cc: igt-dev
On Fri, 10 Jul 2026 16:34:55 -0700, Dixit, Ashutosh wrote:
>
> On Wed, 01 Jul 2026 22:23:15 -0700, Shekhar Chauhan wrote:
> >
> > Add mmio-trigger support to xe-perf-recorder, to justify the
> > whitelisting of OA MMIO Trigger Registers in XeKMD.
> >
> > v2: Add all OA unit types, fix includes, compile warnings and adding
> > extra triggger for file mode.
> >
> > Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com>
> > ---
> > tools/xe-perf/xe_perf_recorder.c | 122 ++++++++++++++++++++++++++++++-
> > 1 file changed, 120 insertions(+), 2 deletions(-)
> >
> > diff --git a/tools/xe-perf/xe_perf_recorder.c b/tools/xe-perf/xe_perf_recorder.c
> > index f200fe9c9..ecf1c7c27 100644
> > --- a/tools/xe-perf/xe_perf_recorder.c
> > +++ b/tools/xe-perf/xe_perf_recorder.c
> > @@ -26,19 +26,29 @@
> > #include <unistd.h>
> >
> > #include "igt_core.h"
> > +#include "intel_batchbuffer.h"
> > #include "intel_chipset.h"
> > +#include "intel_reg.h"
> > #include "ioctl_wrappers.h"
> > #include "linux_scaffold.h"
> > +#include "xe/xe_ioctl.h"
> > #include "xe/xe_oa.h"
> > #include "xe/xe_oa_data.h"
> > #include "xe/xe_query.h"
> >
> > #include "xe_perf_recorder_commands.h"
> >
> > -#define ALIGN(v, a) (((v) + (a)-1) & ~((a)-1))
> > -#define ARRAY_SIZE(arr) (sizeof(arr)/sizeof((arr)[0]))
> > #define MAX(a,b) ((a) > (b) ? (a) : (b))
> > #define MIN(a,b) ((a) < (b) ? (a) : (b))
> > +#define OAG_MMIOTRIGGER 0xdb1c
> > +#define OAMERT_MMIOTRIGGER 0x1453cc
> > +#define OAM_MMIOTRIGGER_OFFSET 0x1d0
> > +#define MEDIA_GT_GSI_OFFSET 0x380000
> > +#define XE_OAM_SAG_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x13000)
> > +#define XE_OAM_SCMI_0_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x14000)
> > +#define XE_OAM_SCMI_1_BASE_ADJ (MEDIA_GT_GSI_OFFSET + 0x14800)
> > +#define OAREPORT_REASON_MASK 0x3f
> > +#define OAREPORT_REASON_SHIFT 19
> >
> > struct circular_buffer {
> > char *data;
> > @@ -354,8 +364,47 @@ struct recording_context {
> > int oa_unit_id;
> > struct drm_xe_oa_unit *oa_unit;
> > struct drm_xe_engine_class_instance *hwe;
> > +
> > + uint32_t vm;
> > + uint32_t exec_queue;
> > + struct intel_bb *ibb;
> > };
> >
> > +static uint32_t oa_unit_mmio_trigger_reg(struct recording_context *ctx)
> > +{
> > + const struct drm_xe_oa_unit *oau = ctx->oa_unit;
> > +
> > + switch (oau->oa_unit_type) {
> > + case DRM_XE_OA_UNIT_TYPE_OAM: {
> > + struct drm_xe_query_oa_units *qoa = xe_oa_units(ctx->drm_fd);
> > + uint8_t *poau = (uint8_t *)&qoa->oa_units[0];
> > + int first_oam_id = -1;
> > +
> > + /* Find the first OAM unit, like oa_unit_by_type() in the IGT */
>
> Let's change the comment to: "Find the first OAM unit, as in oa_unit_by_type()".
>
> > + for (int i = 0; i < qoa->num_oa_units; i++) {
> > + struct drm_xe_oa_unit *u = (struct drm_xe_oa_unit *)poau;
> > +
> > + if (u->oa_unit_type == DRM_XE_OA_UNIT_TYPE_OAM) {
> > + first_oam_id = u->oa_unit_id;
> > + break;
> > + }
> > + poau += sizeof(*u) + u->num_engines * sizeof(u->eci[0]);
> > + }
> > +
>
> assert here that first_oam_id is not -1.
>
>
> > + if ((int)oau->oa_unit_id == first_oam_id)
>
> (int) cast is not needed, can you check.
>
> > + return XE_OAM_SCMI_0_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET;
> > + return XE_OAM_SCMI_1_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET;
> > + }
> > + case DRM_XE_OA_UNIT_TYPE_OAM_SAG:
> > + return XE_OAM_SAG_BASE_ADJ + OAM_MMIOTRIGGER_OFFSET;
> > + case DRM_XE_OA_UNIT_TYPE_MERT:
> > + return OAMERT_MMIOTRIGGER;
> > + case DRM_XE_OA_UNIT_TYPE_OAG:
> > + default:
> > + return OAG_MMIOTRIGGER;
>
> Let's do 'assert(0)' for the default case.
>
> > + }
> > +}
> > +
> > static void set_fd_flags(int fd, int flags)
> > {
> > int old = fcntl(fd, F_GETFL, 0);
> > @@ -569,6 +618,28 @@ static bool write_stream_status(struct recording_context *ctx, FILE *output)
> > return true;
> > }
> >
> > +static uint32_t
> > +report_reason(const uint32_t *report)
> > +{
> > + return (report[0] >> OAREPORT_REASON_SHIFT) & OAREPORT_REASON_MASK;
> > +}
> > +
> > +static void
> > +check_mmio_trigger_report(struct recording_context *ctx, const void *report)
> > +{
> > + const struct xe_oa_format *fmt = &oa_formats[ctx->metric_set->perf_oa_format];
> > + const uint32_t *report_32 = report;
> > + uint64_t value;
> > +
> > + if (report_reason(report_32))
> > + return;
> > +
> > + value = (fmt->header == HDR_64_BIT) ? ((const uint64_t *)report)[2] : report_32[2];
> > +
> > + if (value == 0xc0ffee01 || value == 0xc0ffee02)
> > + fprintf(stdout, "Received trigger report with value 0x%" PRIx64 "\n", value);
> > +}
> > +
> > static bool write_stream_data(struct recording_context *ctx,
> > char *data, ssize_t size, FILE *output)
> > {
> > @@ -582,6 +653,8 @@ static bool write_stream_data(struct recording_context *ctx,
> > .size = sizeof(header) + format_size,
> > };
> >
> > + check_mmio_trigger_report(ctx, data + i * format_size);
> > +
>
> I don't like adding check_mmio_trigger_report() here in the middle randomly when
> mmio triggers are not happening (since the two mmio triggers happen only once in
> the beginning and once in the end). Checking should be coupled with
> emit_mmio_triggered_report(). See below.
>
> > if (fwrite(&header, sizeof(header), 1, output) != 1)
> > return false;
> >
> > @@ -697,6 +770,22 @@ write_correlation_timestamps(struct recording_context *ctx, FILE *output)
> > return write_saved_correlation_timestamps(output, &corr);
> > }
> >
> > +static void emit_mmio_triggered_report(struct intel_bb *ibb, uint32_t reg, uint32_t value)
> > +{
> > + intel_bb_out(ibb, MI_LOAD_REGISTER_IMM(1));
> > + intel_bb_out(ibb, reg);
> > + intel_bb_out(ibb, value);
> > +}
> > +
> > +static void emit_oa_trigger(struct recording_context *ctx, uint32_t value)
> > +{
> > + emit_mmio_triggered_report(ctx->ibb, oa_unit_mmio_trigger_reg(ctx), value);
> > +
> > + intel_bb_flush_render(ctx->ibb);
> > + intel_bb_sync(ctx->ibb);
> > + intel_bb_reset(ctx->ibb, false);
> > +}
> > +
> > static void
> > read_command_file(struct recording_context *ctx)
> > {
> > @@ -712,6 +801,9 @@ read_command_file(struct recording_context *ctx)
> > uint8_t *dump = malloc(len);
> > FILE *file;
> >
> > + emit_oa_trigger(ctx, 0xc0ffee02);
> > + write_perf_data(ctx->output_stream, ctx);
> > +
>
> So thinking about this, since we are doing this right at the end, because
> of timing, write_perf_data() may or may not capture the mmio triggered
> report. There are all sorts of reasons why this mmio triggered report might
> be delayed (due to caching in the GPU etc.) and so not available in the OA
> buffer and therefore not read by write_perf_data().
>
> The way to confirm that the mmio triggered report has been captured would
> be to keep reading from perf_fd till we have verified that ctx_id in
> captured reports matches what we are inserting via emit_oa_trigger()
> (0xc0ffeexx).
>
> To me it looks like the best place to do this would be to modify
> write_perf_data() (which reads and writes out the data). We can do this in
> a future patch, if needed.
>
> So I want to remove check_mmio_trigger_report() from this patch. As I see
> it, it is added incorrectly to write_stream_data(). Instead, after
> inserting the mmio trigger, we should read repeatedly till we see the
> inserted ctx_id. Let's do this in another future patch, we can merge this
> patch first without check_mmio_trigger_report() and taking care of the
> other review comments. So let's make the initial problem a little bit
> simpler and then solve the second problem in a separate patch.
On second thoughts, let us leave check_mmio_trigger_report() in (as is) for
now, so we will at least have some indication and my guess is we will
occasionally see the second mmio triggered report missing.
So let us leave it in for now and later fix it by a future patch.
>
> > while (offset < len &&
> > ((ret = read(ctx->command_fifo_fd,
> > (void *) dump + offset, len - offset)) > 0
> > @@ -835,6 +927,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);
>
> So if we make init_trigger_ctx() void (see below), I think all these 3 if
> statements can also be dropped.
>
> > +
> > if (ctx->topology)
> > free(ctx->topology);
> >
> > @@ -912,6 +1011,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, BATCH_SZ);
> > + if (!ctx->ibb)
> > + return -1;
>
> Looks like all the functions called here just assert, so to me there is no
> point checking for NULL etc. We can just make this function void?
>
> > +
> > + return 0;
> > +}
> > +
> > int
> > main(int argc, char *argv[])
> > {
> > @@ -1180,6 +1291,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;
> >
> > @@ -1227,6 +1344,7 @@ main(int argc, char *argv[])
> > }
> > }
> >
> > + emit_oa_trigger(&ctx, 0xc0ffee02);
>
> Let's add this comment just above this line:
>
> /* Emit second OA trigger for the case where circular buffer is not used */
>
> > fprintf(stdout, "Exiting...\n");
> >
> > if (!write_perf_data(ctx.output_stream, &ctx)) {
> > --
> > 2.53.0
> >
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2] tools/xe-perf-recorder: Add mmio-trigger support
2026-07-10 23:39 ` Dixit, Ashutosh
@ 2026-07-14 11:23 ` Kamil Konieczny
0 siblings, 0 replies; 8+ messages in thread
From: Kamil Konieczny @ 2026-07-14 11:23 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: Shekhar Chauhan, igt-dev
Hi all,
On 2026-07-10 at 16:39:03 -0700, Dixit, Ashutosh wrote:
> On Fri, 10 Jul 2026 16:34:55 -0700, Dixit, Ashutosh wrote:
> >
> > On Wed, 01 Jul 2026 22:23:15 -0700, Shekhar Chauhan wrote:
> > >
> > > Add mmio-trigger support to xe-perf-recorder, to justify the
> > > whitelisting of OA MMIO Trigger Registers in XeKMD.
> > >
> > > v2: Add all OA unit types, fix includes, compile warnings and adding
> > > extra triggger for file mode.
> > >
> > > Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com>
> > > ---
> > > tools/xe-perf/xe_perf_recorder.c | 122 ++++++++++++++++++++++++++++++-
> > > 1 file changed, 120 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/tools/xe-perf/xe_perf_recorder.c b/tools/xe-perf/xe_perf_recorder.c
> > > index f200fe9c9..ecf1c7c27 100644
> > > --- a/tools/xe-perf/xe_perf_recorder.c
> > > +++ b/tools/xe-perf/xe_perf_recorder.c
[cut]
> > > +static void
> > > +check_mmio_trigger_report(struct recording_context *ctx, const void *report)
> > > +{
> > > + const struct xe_oa_format *fmt = &oa_formats[ctx->metric_set->perf_oa_format];
> > > + const uint32_t *report_32 = report;
> > > + uint64_t value;
> > > +
> > > + if (report_reason(report_32))
> > > + return;
> > > +
> > > + value = (fmt->header == HDR_64_BIT) ? ((const uint64_t *)report)[2] : report_32[2];
> > > +
> > > + if (value == 0xc0ffee01 || value == 0xc0ffee02)
> > > + fprintf(stdout, "Received trigger report with value 0x%" PRIx64 "\n", value);
> > > +}
> > > +
> > > static bool write_stream_data(struct recording_context *ctx,
> > > char *data, ssize_t size, FILE *output)
> > > {
> > > @@ -582,6 +653,8 @@ static bool write_stream_data(struct recording_context *ctx,
> > > .size = sizeof(header) + format_size,
> > > };
> > >
> > > + check_mmio_trigger_report(ctx, data + i * format_size);
> > > +
> >
> > I don't like adding check_mmio_trigger_report() here in the middle randomly when
> > mmio triggers are not happening (since the two mmio triggers happen only once in
> > the beginning and once in the end). Checking should be coupled with
> > emit_mmio_triggered_report(). See below.
> >
[cut]
> >
> > So thinking about this, since we are doing this right at the end, because
> > of timing, write_perf_data() may or may not capture the mmio triggered
> > report. There are all sorts of reasons why this mmio triggered report might
> > be delayed (due to caching in the GPU etc.) and so not available in the OA
> > buffer and therefore not read by write_perf_data().
> >
> > The way to confirm that the mmio triggered report has been captured would
> > be to keep reading from perf_fd till we have verified that ctx_id in
> > captured reports matches what we are inserting via emit_oa_trigger()
> > (0xc0ffeexx).
> >
> > To me it looks like the best place to do this would be to modify
> > write_perf_data() (which reads and writes out the data). We can do this in
> > a future patch, if needed.
> >
> > So I want to remove check_mmio_trigger_report() from this patch. As I see
> > it, it is added incorrectly to write_stream_data(). Instead, after
> > inserting the mmio trigger, we should read repeatedly till we see the
> > inserted ctx_id. Let's do this in another future patch, we can merge this
> > patch first without check_mmio_trigger_report() and taking care of the
> > other review comments. So let's make the initial problem a little bit
> > simpler and then solve the second problem in a separate patch.
>
> On second thoughts, let us leave check_mmio_trigger_report() in (as is) for
> now, so we will at least have some indication and my guess is we will
> occasionally see the second mmio triggered report missing.
>
> So let us leave it in for now and later fix it by a future patch.
>
imho function should be renamed. As Jani wrote: "Please don't
add functions named "check something". It's one of the most
ambiguous verbs you could use in a function name."
Regards,
Kamil
[cut]
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-07-14 11:23 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-02 5:23 [PATCH v2] tools/xe-perf-recorder: Add mmio-trigger support Shekhar Chauhan
2026-07-02 6:16 ` ✓ Xe.CI.BAT: success for tools/xe-perf-recorder: Add mmio-trigger support (rev2) Patchwork
2026-07-02 6:40 ` ✓ i915.CI.BAT: " Patchwork
2026-07-02 23:10 ` ✗ i915.CI.Full: failure " Patchwork
2026-07-02 23:58 ` ✓ Xe.CI.FULL: success " Patchwork
2026-07-10 23:34 ` [PATCH v2] tools/xe-perf-recorder: Add mmio-trigger support Dixit, Ashutosh
2026-07-10 23:39 ` Dixit, Ashutosh
2026-07-14 11:23 ` Kamil Konieczny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox