* [PATCH i-g-t 0/3] Extend intel_blt to support large ctrl-surf-copy blits
@ 2024-11-08 6:47 Zbigniew Kempczyński
2024-11-08 6:47 ` [PATCH i-g-t 1/3] lib/intel_blt: Handle multiple ctrl-surf-copy blits on big surface Zbigniew Kempczyński
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-08 6:47 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Juha-Pekka Heikkila
On Xe single ctrl-surf-copy is able to handle 64MiB surface, on
Xe2 4MiB (bigger granularity). Start supporting larger surfaces
by looping and populating the batchbuffer with couple of blits
if necessary.
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Zbigniew Kempczyński (3):
lib/intel_blt: Handle multiple ctrl-surf-copy blits on big surface
tests/xe_ccs: Add large-ctrl-surf-copy subtest
tests/gem_ccs: Add large-ctrl-surf-copy subtest
lib/intel_blt.c | 121 +++++++++++++++++++++++++----------
tests/intel/gem_ccs.c | 130 +++++++++++++++++++++++++++++++++++++
tests/intel/xe_ccs.c | 145 +++++++++++++++++++++++++++++++++++++++++-
3 files changed, 359 insertions(+), 37 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH i-g-t 1/3] lib/intel_blt: Handle multiple ctrl-surf-copy blits on big surface
2024-11-08 6:47 [PATCH i-g-t 0/3] Extend intel_blt to support large ctrl-surf-copy blits Zbigniew Kempczyński
@ 2024-11-08 6:47 ` Zbigniew Kempczyński
2024-11-15 13:10 ` Juha-Pekka Heikkilä
2024-11-08 6:47 ` [PATCH i-g-t 2/3] tests/xe_ccs: Add large-ctrl-surf-copy subtest Zbigniew Kempczyński
` (5 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-08 6:47 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Juha-Pekka Heikkila
Copying ccs data for bigger surfaces requires couple of blits. This is
caused by the limitation of 10-bit size (for Xe and Xe2+) of the
ctrl-surf-copy operation. To handle bigger than 64MiB surfaces on Xe
and 4MiB on Xe2+ we need to divide blits to fit in mentioned 10-bit
size.
Change introduces looping around big surface to produce batch with
couple of ctrl-surf-copy blits.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
lib/intel_blt.c | 121 ++++++++++++++++++++++++++++++++++--------------
1 file changed, 86 insertions(+), 35 deletions(-)
diff --git a/lib/intel_blt.c b/lib/intel_blt.c
index 1b0f279177..b2fb3151e0 100644
--- a/lib/intel_blt.c
+++ b/lib/intel_blt.c
@@ -1115,7 +1115,13 @@ int blt_block_copy(int fd,
return ret;
}
-static uint16_t __ccs_size(int fd, const struct blt_ctrl_surf_copy_data *surf)
+/*
+ * Function calculates CCS bytes used for the surface. Size field in
+ * ctrl-surf-copy command struct is for Xe and Xe2 10-bit length, so caller
+ * has to divide ccs copy of bigger surfaces to couple of separate commands.
+ * This function returns total size of ccs data used for the surface.
+ */
+static uint32_t __ccs_size(int fd, const struct blt_ctrl_surf_copy_data *surf)
{
uint32_t src_size, dst_size;
uint16_t ccsratio = CCS_RATIO(fd);
@@ -1286,8 +1292,8 @@ uint64_t emit_blt_ctrl_surf_copy(int fd,
uint64_t dst_offset, src_offset, bb_offset, alignment;
uint32_t bbe = MI_BATCH_BUFFER_END;
uint32_t *bb;
- uint16_t num_ccs_blocks = (ip_ver >= IP_VER(20, 0)) ?
- (xe_get_default_alignment(fd) / CCS_RATIO(fd)) : CCS_RATIO(fd);
+ uint32_t ccs_per_page, max_blocks, src_step, dst_step;
+ int32_t left_blocks;
igt_assert_f(ahnd, "ctrl-surf-copy supports softpin only\n");
igt_assert_f(surf, "ctrl-surf-copy requires data to do ctrl-surf-copy blit\n");
@@ -1299,51 +1305,108 @@ uint64_t emit_blt_ctrl_surf_copy(int fd,
alignment, surf->dst.pat_index);
bb_offset = get_offset(ahnd, surf->bb.handle, surf->bb.size, alignment);
+ bb = bo_map(fd, surf->bb.handle, surf->bb.size, surf->driver);
+
+ /*
+ * Copying in/out CCS data is limited by bitfield size_of_ctrl_copy size
+ * what means operation on bigger surface needs to be handled on couple
+ * of ctrl-surf-copy commands.
+ *
+ * Instead of hardcoding maximum number of blocks copied in single
+ * command we may calculate it from bitfield size (Xe and Xe2 differs
+ * in bitfield location [and in future platforms potentially size]).
+ */
if (ip_ver >= IP_VER(20, 0)) {
+ ccs_per_page = SZ_4K / CCS_RATIO(fd);
+
data.xe2.dw00.client = 0x2;
data.xe2.dw00.opcode = 0x48;
data.xe2.dw00.src_access_type = surf->src.access_type;
data.xe2.dw00.dst_access_type = surf->dst.access_type;
-
- /* Ensure dst has size capable to keep src ccs aux */
- data.xe2.dw00.size_of_ctrl_copy = __ccs_size(fd, surf) / num_ccs_blocks - 1;
data.xe2.dw00.length = 0x3;
- data.xe2.dw01.src_address_lo = src_offset;
- data.xe2.dw02.src_address_hi = src_offset >> 32;
+ data.xe2.dw00.size_of_ctrl_copy = -1;
+ max_blocks = data.xe2.dw00.size_of_ctrl_copy + 1;
+
+ /*
+ * For Xe2+ each size_of_ctrl_copy increment covers 4K page size
+ * of surface, which in turn is covered by 8B of CCS data.
+ */
+ src_step = surf->src.access_type == DIRECT_ACCESS ? ccs_per_page : SZ_4K;
+ src_step *= max_blocks;
+ dst_step = surf->dst.access_type == DIRECT_ACCESS ? ccs_per_page : SZ_4K;
+ dst_step *= max_blocks;
+
data.xe2.dw02.src_mocs_index = surf->src.mocs_index;
-
- data.xe2.dw03.dst_address_lo = dst_offset;
- data.xe2.dw04.dst_address_hi = dst_offset >> 32;
data.xe2.dw04.dst_mocs_index = surf->dst.mocs_index;
data_sz = sizeof(data.xe2);
} else {
+ ccs_per_page = SZ_64K / CCS_RATIO(fd);
+
data.gen12.dw00.client = 0x2;
data.gen12.dw00.opcode = 0x48;
data.gen12.dw00.src_access_type = surf->src.access_type;
data.gen12.dw00.dst_access_type = surf->dst.access_type;
-
- /* Ensure dst has size capable to keep src ccs aux */
- data.gen12.dw00.size_of_ctrl_copy = __ccs_size(fd, surf) / num_ccs_blocks - 1;
data.gen12.dw00.length = 0x3;
- data.gen12.dw01.src_address_lo = src_offset;
- data.gen12.dw02.src_address_hi = src_offset >> 32;
+ data.gen12.dw00.size_of_ctrl_copy = -1;
+ max_blocks = data.gen12.dw00.size_of_ctrl_copy + 1;
+
+ /*
+ * For Xe each size_of_ctrl_copy increment covers 64K page size
+ * of surface, which in turn is covered by 256B of CCS data.
+ */
+ src_step = surf->src.access_type == DIRECT_ACCESS ? ccs_per_page : SZ_64K;
+ src_step *= max_blocks;
+ dst_step = surf->dst.access_type == DIRECT_ACCESS ? ccs_per_page : SZ_64K;
+ dst_step *= max_blocks;
+
data.gen12.dw02.src_mocs_index = surf->src.mocs_index;
-
- data.gen12.dw03.dst_address_lo = dst_offset;
- data.gen12.dw04.dst_address_hi = dst_offset >> 32;
data.gen12.dw04.dst_mocs_index = surf->dst.mocs_index;
data_sz = sizeof(data.gen12);
}
- bb = bo_map(fd, surf->bb.handle, surf->bb.size, surf->driver);
+ left_blocks = __ccs_size(fd, surf) / ccs_per_page;
- igt_assert(bb_pos + data_sz < surf->bb.size);
- memcpy(bb + bb_pos, &data, data_sz);
- bb_pos += data_sz;
+ while (left_blocks > 0) {
+ int32_t nblocks = min_t(int32_t, left_blocks, max_blocks);
+
+ if (ip_ver >= IP_VER(20, 0)) {
+ data.xe2.dw00.size_of_ctrl_copy = nblocks - 1;
+ data.xe2.dw01.src_address_lo = src_offset;
+ data.xe2.dw02.src_address_hi = src_offset >> 32;
+ data.xe2.dw03.dst_address_lo = dst_offset;
+ data.xe2.dw04.dst_address_hi = dst_offset >> 32;
+ } else {
+ data.gen12.dw00.size_of_ctrl_copy = nblocks - 1;
+ data.gen12.dw01.src_address_lo = src_offset;
+ data.gen12.dw02.src_address_hi = src_offset >> 32;
+ data.gen12.dw03.dst_address_lo = dst_offset;
+ data.gen12.dw04.dst_address_hi = dst_offset >> 32;
+ }
+
+ left_blocks -= max_blocks;
+ dst_offset += dst_step;
+ src_offset += src_step;
+
+ igt_assert(bb_pos + data_sz < surf->bb.size);
+ memcpy(bb + bb_pos, &data, data_sz);
+ bb_pos += data_sz;
+
+ if (surf->print_bb) {
+ igt_info("[CTRL SURF]:\n");
+ igt_info("src offset: 0x%" PRIx64 ", dst offset: 0x%" PRIx64
+ ", bb offset: 0x%" PRIx64 ", copy nblocks: 0x%x\n",
+ src_offset, dst_offset, bb_offset, nblocks);
+
+ if (ip_ver >= IP_VER(20, 0))
+ xe2_dump_bb_surf_ctrl_cmd(&data.xe2);
+ else
+ dump_bb_surf_ctrl_cmd(&data.gen12);
+ }
+ }
if (emit_bbe) {
igt_assert(bb_pos + sizeof(uint32_t) < surf->bb.size);
@@ -1351,18 +1414,6 @@ uint64_t emit_blt_ctrl_surf_copy(int fd,
bb_pos += sizeof(uint32_t);
}
- if (surf->print_bb) {
- igt_info("[CTRL SURF]:\n");
- igt_info("src offset: %" PRIx64 ", dst offset: %" PRIx64
- ", bb offset: %" PRIx64 "\n",
- src_offset, dst_offset, bb_offset);
-
- if (ip_ver >= IP_VER(20, 0))
- xe2_dump_bb_surf_ctrl_cmd(&data.xe2);
- else
- dump_bb_surf_ctrl_cmd(&data.gen12);
- }
-
munmap(bb, surf->bb.size);
return bb_pos;
--
2.34.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH i-g-t 2/3] tests/xe_ccs: Add large-ctrl-surf-copy subtest
2024-11-08 6:47 [PATCH i-g-t 0/3] Extend intel_blt to support large ctrl-surf-copy blits Zbigniew Kempczyński
2024-11-08 6:47 ` [PATCH i-g-t 1/3] lib/intel_blt: Handle multiple ctrl-surf-copy blits on big surface Zbigniew Kempczyński
@ 2024-11-08 6:47 ` Zbigniew Kempczyński
2024-11-08 6:47 ` [PATCH i-g-t 3/3] tests/gem_ccs: " Zbigniew Kempczyński
` (4 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-08 6:47 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Juha-Pekka Heikkila
For big surface which ccs data might not fit in single ctrl-surf-copy
blit we need to ensure library code is properly populating batchbuffer
with couple of these commands.
Lets add the large-ctrl-surf-copy subtest which uses quite large surface
4096 x (4096 + 64) x 32bpp (16MiB). Value 64 was selected intentionally,
as 64 is expected aligned height for Tile64 (thus bigger than for other
supported tilings) and this size exceeds single ctrl-surf-copy blit on
Xe. On Xe2 we have bigger granularity per operation (4MiB) what will
produce more blits than on Xe.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
tests/intel/xe_ccs.c | 145 ++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 143 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_ccs.c b/tests/intel/xe_ccs.c
index a2d18588fb..e154bf4dcc 100644
--- a/tests/intel/xe_ccs.c
+++ b/tests/intel/xe_ccs.c
@@ -51,6 +51,9 @@
* SUBTEST: ctrl-surf-copy-new-ctx
* Description: Check flatccs data are physically tagged and visible in vm
*
+ * SUBTEST: large-ctrl-surf-copy
+ * Description: Check flatccs data can be copied from large surface
+ *
* SUBTEST: suspend-resume
* Description: Check flatccs data persists after suspend / resume (S0)
*/
@@ -85,6 +88,8 @@ struct test_config {
bool suspend_resume;
int width_increment;
int width_steps;
+ int overwrite_width;
+ int overwrite_height;
};
#define PRINT_SURFACE_INFO(name, obj) do { \
@@ -563,9 +568,92 @@ static void block_multicopy(int xe,
igt_assert_f(!result, "source and destination surfaces differs!\n");
}
+static void block_copy_large(int xe,
+ intel_ctx_t *ctx,
+ uint32_t region1, uint32_t region2,
+ uint32_t width, uint32_t height,
+ enum blt_tiling_type tiling,
+ const struct test_config *config)
+{
+ struct blt_copy_data blt = {};
+ struct blt_block_copy_data_ext ext = {}, *pext = &ext;
+ struct blt_copy_object *src, *dst;
+ const uint32_t bpp = 32;
+ uint64_t bb_size = xe_bb_size(xe, SZ_4K);
+ uint64_t ahnd = intel_allocator_open(xe, ctx->vm, INTEL_ALLOCATOR_RELOC);
+ uint64_t size;
+ uint32_t run_id = tiling;
+ uint32_t bb;
+ uint32_t *ptr;
+ uint8_t uc_mocs = intel_get_uc_mocs_index(xe);
+ bool result = true;
+ int i;
+
+ bb = xe_bo_create(xe, 0, bb_size, region1, 0);
+
+ if (!blt_uses_extended_block_copy(xe))
+ pext = NULL;
+
+ blt_copy_init(xe, &blt);
+
+ src = blt_create_object(&blt, region1, width, height, bpp, uc_mocs,
+ T_LINEAR, COMPRESSION_DISABLED,
+ COMPRESSION_TYPE_3D, true);
+ dst = blt_create_object(&blt, region2, width, height, bpp, uc_mocs,
+ tiling, COMPRESSION_ENABLED,
+ COMPRESSION_TYPE_3D, true);
+ PRINT_SURFACE_INFO("src", src);
+ PRINT_SURFACE_INFO("dst", dst);
+
+ blt_surface_fill_rect(xe, src, width, height);
+ WRITE_PNG(xe, run_id, "src", src, width, height, bpp);
+
+ blt.color_depth = CD_32bit;
+ blt.print_bb = param.print_bb;
+ blt_set_copy_object(&blt.src, src);
+ blt_set_copy_object(&blt.dst, dst);
+ blt_set_object_ext(&ext.src, 0, width, height, SURFACE_TYPE_2D);
+ blt_set_object_ext(&ext.dst, param.compression_format,
+ width, height, SURFACE_TYPE_2D);
+ blt_set_batch(&blt.bb, bb, bb_size, region1);
+ blt_block_copy(xe, ctx, NULL, ahnd, &blt, pext);
+ intel_ctx_xe_sync(ctx, true);
+
+ blt_surface_get_flatccs_data(xe, ctx, NULL, ahnd, dst, &ptr, &size);
+ for (i = 0; i < size / sizeof(*ptr); i++) {
+ if (ptr[i] == 0) {
+ result = false;
+ break;
+ }
+ }
+
+ if (!result) {
+ for (i = 0; i < size / sizeof(*ptr); i += 8)
+ igt_debug("[%08x]: %08x %08x %08x %08x %08x %08x %08x %08x\n",
+ i,
+ ptr[i], ptr[i + 1], ptr[i + 2], ptr[i + 3],
+ ptr[i + 4], ptr[i + 5], ptr[i + 6], ptr[i + 7]);
+ }
+
+ WRITE_PNG(xe, run_id, "dst", &blt.dst, width, height, bpp);
+
+ /* Politely clean vm */
+ put_offset(ahnd, src->handle);
+ put_offset(ahnd, dst->handle);
+ put_offset(ahnd, bb);
+ intel_allocator_bind(ahnd, 0, 0);
+ blt_destroy_object(xe, src);
+ blt_destroy_object(xe, dst);
+ gem_close(xe, bb);
+ put_ahnd(ahnd);
+
+ igt_assert_f(result, "ccs data must have no zeros!\n");
+}
+
enum copy_func {
BLOCK_COPY,
BLOCK_MULTICOPY,
+ LARGE_SURFCOPY,
};
static const struct {
@@ -579,6 +667,7 @@ static const struct {
} copyfns[] = {
[BLOCK_COPY] = { "", block_copy },
[BLOCK_MULTICOPY] = { "-multicopy", block_multicopy },
+ [LARGE_SURFCOPY] = { "", block_copy_large },
};
static void single_copy(int xe, const struct test_config *config,
@@ -619,7 +708,8 @@ static void block_copy_test(int xe,
{
uint16_t dev_id = intel_get_drm_devid(xe);
struct igt_collection *regions;
- int tiling;
+ int tiling, width, height;
+
if (intel_gen(dev_id) >= 20 && config->compression)
igt_require(HAS_FLATCCS(dev_id));
@@ -630,6 +720,9 @@ static void block_copy_test(int xe,
if (config->inplace && !config->compression)
return;
+ width = config->overwrite_width ?: param.width;
+ height = config->overwrite_height ?: param.height;
+
for_each_tiling(tiling) {
if (!blt_block_copy_supports_tiling(xe, tiling) ||
(param.tiling >= 0 && param.tiling != tiling))
@@ -660,7 +753,7 @@ static void block_copy_test(int xe,
if (!config->width_increment) {
igt_dynamic(testname)
single_copy(xe, config, region1, region2,
- param.width, param.height,
+ width, height,
tiling, copy_function);
} else {
for (int w = param.incdim_width;
@@ -686,6 +779,35 @@ static void block_copy_test(int xe,
}
}
+static void large_surf_ctrl_copy(int xe, const struct test_config *config)
+{
+ uint16_t dev_id = intel_get_drm_devid(xe);
+ int tiling, width, height;
+ uint32_t region1, region2;
+
+ igt_require(HAS_FLATCCS(dev_id));
+
+ region1 = system_memory(xe);
+ region2 = vram_if_possible(xe, 0);
+
+ width = config->overwrite_width;
+ height = config->overwrite_height;
+
+ /* Prefer TILE4 if supported */
+ if (blt_block_copy_supports_tiling(xe, T_TILE4)) {
+ tiling = T_TILE4;
+ } else {
+ for_each_tiling(tiling) {
+ if (!blt_block_copy_supports_tiling(xe, tiling))
+ continue;
+ break;
+ }
+ }
+
+ single_copy(xe, config, region1, region2, width, height, tiling,
+ LARGE_SURFCOPY);
+}
+
static int opt_handler(int opt, int opt_index, void *data)
{
switch (opt) {
@@ -815,6 +937,25 @@ igt_main_args("bf:pst:W:H:", NULL, help_str, opt_handler, NULL)
block_copy_test(xe, &config, set, BLOCK_COPY);
}
+ /*
+ * Why 4096x4160 is chosen as WxH?
+ *
+ * On Xe ctrl-surf-copy size single increment does 256B ccs copy which
+ * covers 64KiB surface. Size field is 10-bit so to exceed 64K * 1024
+ * surface which is bigger than 4K x 4K x 32bpp (>64MiB) must be used.
+ *
+ * On Xe2+ ctrl-surf-copy has finer granularity - single size increment
+ * copies 8B ccs which in turn covers 4KiB surface. So 64MiB+ surface
+ * will require > 16 separate ctrl-surf-copy commands.
+ */
+ igt_describe("Check flatccs data can be copied from large surface");
+ igt_subtest("large-ctrl-surf-copy") {
+ struct test_config config = { .overwrite_width = 4096,
+ .overwrite_height = 4096+64, };
+
+ large_surf_ctrl_copy(xe, &config);
+ }
+
igt_describe("Check flatccs data persists after suspend / resume (S0)");
igt_subtest_with_dynamic("suspend-resume") {
struct test_config config = { .compression = true,
--
2.34.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH i-g-t 3/3] tests/gem_ccs: Add large-ctrl-surf-copy subtest
2024-11-08 6:47 [PATCH i-g-t 0/3] Extend intel_blt to support large ctrl-surf-copy blits Zbigniew Kempczyński
2024-11-08 6:47 ` [PATCH i-g-t 1/3] lib/intel_blt: Handle multiple ctrl-surf-copy blits on big surface Zbigniew Kempczyński
2024-11-08 6:47 ` [PATCH i-g-t 2/3] tests/xe_ccs: Add large-ctrl-surf-copy subtest Zbigniew Kempczyński
@ 2024-11-08 6:47 ` Zbigniew Kempczyński
2024-11-08 7:29 ` ✓ CI.xeBAT: success for Extend intel_blt to support large ctrl-surf-copy blits Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-08 6:47 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Juha-Pekka Heikkila
This is counterpart subtest for i915 driver which has same meaning for
Xe (DG2) - check if big surface which ccs data might not fit in single
ctrl-surf-copy is handled properly in the blitter library.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
tests/intel/gem_ccs.c | 130 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 130 insertions(+)
diff --git a/tests/intel/gem_ccs.c b/tests/intel/gem_ccs.c
index 07aa6d322d..af1e85f6aa 100644
--- a/tests/intel/gem_ccs.c
+++ b/tests/intel/gem_ccs.c
@@ -45,6 +45,9 @@
* Description: Check flatccs data are physically tagged and visible i
* different contexts
*
+ * SUBTEST: large-ctrl-surf-copy
+ * Description: Check flatccs data can be copied from large surface
+ *
* SUBTEST: suspend-resume
* Description: Check flatccs data persists after suspend / resume (S0)
* Feature: flat_ccs_mapping, suspend
@@ -76,6 +79,8 @@ struct test_config {
bool surfcopy;
bool new_ctx;
bool suspend_resume;
+ int overwrite_width;
+ int overwrite_height;
};
#define PRINT_SURFACE_INFO(name, obj) do { \
@@ -520,6 +525,85 @@ static void block_multicopy(int i915,
igt_assert_f(!result, "source and destination surfaces differs!\n");
}
+static void block_copy_large(int i915,
+ intel_ctx_t *ctx,
+ const struct intel_execution_engine2 *e,
+ uint32_t region1, uint32_t region2,
+ uint32_t width, uint32_t height,
+ enum blt_tiling_type tiling,
+ const struct test_config *config)
+{
+ struct blt_copy_data blt = {};
+ struct blt_block_copy_data_ext ext = {}, *pext = &ext;
+ struct blt_copy_object *src, *dst;
+ const uint32_t bpp = 32;
+ uint64_t bb_size = SZ_4K;
+ uint64_t ahnd = intel_allocator_open(i915, ctx->vm, INTEL_ALLOCATOR_RELOC);
+ uint64_t size;
+ uint32_t run_id = tiling;
+ uint32_t bb;
+ uint32_t *ptr;
+ uint8_t uc_mocs = intel_get_uc_mocs_index(i915);
+ bool result = true;
+ int i;
+
+ igt_assert(__gem_create_in_memory_regions(i915, &bb, &bb_size, region1) == 0);
+
+ if (!blt_uses_extended_block_copy(i915))
+ pext = NULL;
+
+ blt_copy_init(i915, &blt);
+
+ src = blt_create_object(&blt, region1, width, height, bpp, uc_mocs,
+ T_LINEAR, COMPRESSION_DISABLED,
+ COMPRESSION_TYPE_3D, true);
+ dst = blt_create_object(&blt, region2, width, height, bpp, uc_mocs,
+ tiling, COMPRESSION_ENABLED,
+ COMPRESSION_TYPE_3D, true);
+ PRINT_SURFACE_INFO("src", src);
+ PRINT_SURFACE_INFO("dst", dst);
+
+ blt_surface_fill_rect(i915, src, width, height);
+ WRITE_PNG(i915, run_id, "src", src, width, height, bpp);
+
+ blt.color_depth = CD_32bit;
+ blt.print_bb = param.print_bb;
+ blt_set_copy_object(&blt.src, src);
+ blt_set_copy_object(&blt.dst, dst);
+ blt_set_object_ext(&ext.src, 0, width, height, SURFACE_TYPE_2D);
+ blt_set_object_ext(&ext.dst, param.compression_format,
+ width, height, SURFACE_TYPE_2D);
+ blt_set_batch(&blt.bb, bb, bb_size, region1);
+ blt_block_copy(i915, ctx, e, ahnd, &blt, pext);
+ gem_sync(i915, blt.dst.handle);
+
+ blt_surface_get_flatccs_data(i915, ctx, e, ahnd, dst, &ptr, &size);
+ for (i = 0; i < size / sizeof(*ptr); i++) {
+ if (ptr[i] == 0) {
+ result = false;
+ break;
+ }
+ }
+
+ if (!result) {
+ for (i = 0; i < size / sizeof(*ptr); i += 8)
+ igt_debug("[%08x]: %08x %08x %08x %08x %08x %08x %08x %08x\n",
+ i,
+ ptr[i], ptr[i + 1], ptr[i + 2], ptr[i + 3],
+ ptr[i + 4], ptr[i + 5], ptr[i + 6], ptr[i + 7]);
+ }
+
+ WRITE_PNG(i915, run_id, "dst", &blt.dst, width, height, bpp);
+
+ /* Politely clean vm */
+ blt_destroy_object(i915, src);
+ blt_destroy_object(i915, dst);
+ gem_close(i915, bb);
+ put_ahnd(ahnd);
+
+ igt_assert_f(result, "ccs data must have no zeros!\n");
+}
+
enum copy_func {
BLOCK_COPY,
BLOCK_MULTICOPY,
@@ -591,6 +675,44 @@ static void block_copy_test(int i915,
}
}
+static void large_surf_ctrl_copy(int i915, const struct test_config *config,
+ intel_ctx_t *ctx)
+{
+ uint16_t dev_id = intel_get_drm_devid(i915);
+ const struct intel_execution_engine2 *e;
+ int tiling, width, height;
+ uint32_t region1, region2;
+
+ igt_require(HAS_FLATCCS(dev_id));
+
+ region1 = REGION_SMEM;
+ region2 = gem_has_lmem(i915) ? REGION_LMEM(0) : REGION_SMEM;
+
+ width = config->overwrite_width;
+ height = config->overwrite_height;
+
+ /* Prefer TILE4 if supported */
+ if (blt_block_copy_supports_tiling(i915, T_TILE4)) {
+ tiling = T_TILE4;
+ } else {
+ for_each_tiling(tiling) {
+ if (!blt_block_copy_supports_tiling(i915, tiling))
+ continue;
+ break;
+ }
+ }
+
+ for_each_ctx_engine(i915, ctx, e) {
+ if (!gem_engine_can_block_copy(i915, e))
+ continue;
+
+ block_copy_large(i915, ctx, e, region1, region2, width, height,
+ tiling, config);
+
+ break;
+ }
+}
+
static int opt_handler(int opt, int opt_index, void *data)
{
switch (opt) {
@@ -710,6 +832,14 @@ igt_main_args("bf:pst:W:H:", NULL, help_str, opt_handler, NULL)
block_copy_test(i915, &config, ctx, set, BLOCK_COPY);
}
+ igt_describe("Check flatccs data can be copied from large surface");
+ igt_subtest("large-ctrl-surf-copy") {
+ struct test_config config = { .overwrite_width = 4096,
+ .overwrite_height = 4096+64, };
+
+ large_surf_ctrl_copy(i915, &config, (intel_ctx_t *) ctx);
+ }
+
igt_describe("Check flatccs data persists after suspend / resume (S0)");
igt_subtest_with_dynamic("suspend-resume") {
struct test_config config = { .compression = true,
--
2.34.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✓ CI.xeBAT: success for Extend intel_blt to support large ctrl-surf-copy blits
2024-11-08 6:47 [PATCH i-g-t 0/3] Extend intel_blt to support large ctrl-surf-copy blits Zbigniew Kempczyński
` (2 preceding siblings ...)
2024-11-08 6:47 ` [PATCH i-g-t 3/3] tests/gem_ccs: " Zbigniew Kempczyński
@ 2024-11-08 7:29 ` Patchwork
2024-11-08 7:45 ` ✓ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-08 7:29 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4823 bytes --]
== Series Details ==
Series: Extend intel_blt to support large ctrl-surf-copy blits
URL : https://patchwork.freedesktop.org/series/141084/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8100_BAT -> XEIGTPW_12068_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12068_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_evict@evict-beng-small:
- bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/bat-adlp-7/igt@xe_evict@evict-beng-small.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr:
- bat-dg2-oem2: NOTRUN -> [SKIP][2] ([Intel XE#288]) +32 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch:
- bat-adlp-7: NOTRUN -> [SKIP][3] ([Intel XE#288]) +32 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#2229])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#2229])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
#### Possible fixes ####
* igt@kms_addfb_basic@bad-pitch-0:
- bat-adlp-7: [DMESG-WARN][6] ([Intel XE#2496]) -> [PASS][7] +31 other tests pass
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [FAIL][8] ([Intel XE#1861]) -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-bmg-1: [INCOMPLETE][10] ([Intel XE#2874] / [Intel XE#2998]) -> [PASS][11] +1 other test pass
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
- bat-adlp-7: [INCOMPLETE][12] ([Intel XE#2874]) -> [PASS][13] +1 other test pass
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
- bat-dg2-oem2: [INCOMPLETE][14] ([Intel XE#2874]) -> [PASS][15] +1 other test pass
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2496]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2496
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
Build changes
-------------
* IGT: IGT_8100 -> IGTPW_12068
* Linux: xe-2179-438ef86a725b59a171dba81fc258bb23a0ff536c -> xe-2188-5f445c6723de9ac7087170f4ee8fcb2050ab8346
IGTPW_12068: 12068
IGT_8100: 84e42580f918da926481fd2fb37be01451d6ee9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2179-438ef86a725b59a171dba81fc258bb23a0ff536c: 438ef86a725b59a171dba81fc258bb23a0ff536c
xe-2188-5f445c6723de9ac7087170f4ee8fcb2050ab8346: 5f445c6723de9ac7087170f4ee8fcb2050ab8346
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/index.html
[-- Attachment #2: Type: text/html, Size: 5842 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Fi.CI.BAT: success for Extend intel_blt to support large ctrl-surf-copy blits
2024-11-08 6:47 [PATCH i-g-t 0/3] Extend intel_blt to support large ctrl-surf-copy blits Zbigniew Kempczyński
` (3 preceding siblings ...)
2024-11-08 7:29 ` ✓ CI.xeBAT: success for Extend intel_blt to support large ctrl-surf-copy blits Patchwork
@ 2024-11-08 7:45 ` Patchwork
2024-11-08 8:38 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-11-09 11:49 ` ✗ CI.xeFULL: " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-08 7:45 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4736 bytes --]
== Series Details ==
Series: Extend intel_blt to support large ctrl-surf-copy blits
URL : https://patchwork.freedesktop.org/series/141084/
State : success
== Summary ==
CI Bug Log - changes from IGT_8100 -> IGTPW_12068
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/index.html
Participating hosts (45 -> 43)
------------------------------
Additional (1): bat-arls-6
Missing (3): bat-arls-2 bat-arls-1 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12068 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-twl-2: [PASS][1] -> [INCOMPLETE][2] ([i915#9413])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8100/bat-twl-2/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/bat-twl-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-2: [PASS][3] -> [INCOMPLETE][4] ([i915#12445] / [i915#9413])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8100/bat-twl-2/igt@i915_selftest@live@gt_lrc.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/bat-twl-2/igt@i915_selftest@live@gt_lrc.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-arlh-3: [INCOMPLETE][5] ([i915#10341]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8100/bat-arlh-3/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/bat-arlh-3/igt@i915_selftest@live.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200
[i915#10202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10202
[i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206
[i915#10207]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10207
[i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203
[i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445
[i915#12637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12637
[i915#12727]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12727
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8100 -> IGTPW_12068
* Linux: CI_DRM_15647 -> CI_DRM_15656
CI-20190529: 20190529
CI_DRM_15647: 438ef86a725b59a171dba81fc258bb23a0ff536c @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15656: 5f445c6723de9ac7087170f4ee8fcb2050ab8346 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12068: 12068
IGT_8100: 84e42580f918da926481fd2fb37be01451d6ee9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/index.html
[-- Attachment #2: Type: text/html, Size: 3400 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Fi.CI.IGT: failure for Extend intel_blt to support large ctrl-surf-copy blits
2024-11-08 6:47 [PATCH i-g-t 0/3] Extend intel_blt to support large ctrl-surf-copy blits Zbigniew Kempczyński
` (4 preceding siblings ...)
2024-11-08 7:45 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-11-08 8:38 ` Patchwork
2024-11-08 10:23 ` Zbigniew Kempczyński
2024-11-09 11:49 ` ✗ CI.xeFULL: " Patchwork
6 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2024-11-08 8:38 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100274 bytes --]
== Series Details ==
Series: Extend intel_blt to support large ctrl-surf-copy blits
URL : https://patchwork.freedesktop.org/series/141084/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15656_full -> IGTPW_12068_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12068_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12068_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_12068/index.html
Participating hosts (9 -> 9)
------------------------------
Additional (1): shard-glk-0
Missing (1): shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12068_full:
### IGT changes ###
#### Possible regressions ####
* {igt@gem_ccs@large-ctrl-surf-copy} (NEW):
- shard-rkl: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-7/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-dg1: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-19/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-tglu: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-7/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-mtlp: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-5/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@kms_atomic_interruptible@universal-setplane-primary@pipe-a-edp-1:
- shard-mtlp: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-mtlp-7/igt@kms_atomic_interruptible@universal-setplane-primary@pipe-a-edp-1.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-3/igt@kms_atomic_interruptible@universal-setplane-primary@pipe-a-edp-1.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][7] +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-4/igt@kms_rotation_crc@sprite-rotation-90.html
New tests
---------
New tests have been introduced between CI_DRM_15656_full and IGTPW_12068_full:
### New IGT tests (1) ###
* igt@gem_ccs@large-ctrl-surf-copy:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 0.56] s
Known issues
------------
Here are the changes found in IGTPW_12068_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8411]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-17/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-2/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#11078])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-6/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@all-busy-check-all:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-11/igt@drm_fdinfo@all-busy-check-all.html
* igt@drm_fdinfo@isolation@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +7 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-1/igt@drm_fdinfo@isolation@rcs0.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-3/igt@gem_basic@multigpu-create-close.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-1/igt@gem_caching@read-writes.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-6/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][17] ([i915#7297])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-1/igt@gem_ccs@suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-2/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-13/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#9323])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-4/igt@gem_ccs@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#9323])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-6/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][22] ([i915#12392] / [i915#7297])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [PASS][23] -> [ABORT][24] ([i915#9846])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#8562])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-7/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: [PASS][26] -> [FAIL][27] ([i915#12031])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-rkl-7/igt@gem_ctx_engines@invalid-engines.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-4/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#8555])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@hostile:
- shard-dg1: [PASS][30] -> [FAIL][31] ([i915#11980] / [i915#12580])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-12/igt@gem_ctx_persistence@hostile.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-18/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_persistence@legacy-engines-persistence:
- shard-snb: NOTRUN -> [SKIP][32] ([i915#1099])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-snb1/igt@gem_ctx_persistence@legacy-engines-persistence.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#280])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#280])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-12/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4771])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-7/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#4525])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-1/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][38] ([i915#11965] / [i915#12558]) +2 other tests fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-2/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_capture@capture@vecs1-smem:
- shard-dg2: NOTRUN -> [FAIL][39] ([i915#11965]) +1 other test fail
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-2/igt@gem_exec_capture@capture@vecs1-smem.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][40] -> [FAIL][41] ([i915#2846])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-rkl: NOTRUN -> [FAIL][42] ([i915#2842]) +1 other test fail
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-1/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-pace-share:
- shard-tglu: [PASS][43] -> [FAIL][44] ([i915#2842]) +1 other test fail
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-tglu-2/igt@gem_exec_fair@basic-pace-share.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-2/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-rkl: [PASS][45] -> [FAIL][46] ([i915#2842]) +1 other test fail
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-tglu: NOTRUN -> [FAIL][47] ([i915#2842]) +7 other tests fail
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-5/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fence@submit:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4812]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@gem_exec_fence@submit.html
* igt@gem_exec_fence@submit67:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4812]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-1/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-17/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-4/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#5107])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-1/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3281]) +6 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#3281]) +6 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3281]) +13 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-4/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#3281]) +12 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-13/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@pi-common@vcs0:
- shard-rkl: NOTRUN -> [FAIL][57] ([i915#12296]) +4 other tests fail
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-7/igt@gem_exec_schedule@pi-common@vcs0.html
* igt@gem_exec_schedule@pi-common@vecs0:
- shard-dg2: NOTRUN -> [FAIL][58] ([i915#12296]) +7 other tests fail
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-11/igt@gem_exec_schedule@pi-common@vecs0.html
* igt@gem_exec_schedule@pi-ringfull@vecs0:
- shard-dg1: NOTRUN -> [FAIL][59] ([i915#12296]) +7 other tests fail
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-12/igt@gem_exec_schedule@pi-ringfull@vecs0.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4537] / [i915#4812])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-chain.html
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4537] / [i915#4812])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_suspend@basic-s3-devices:
- shard-dg1: NOTRUN -> [DMESG-WARN][62] ([i915#4423]) +1 other test dmesg-warn
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-19/igt@gem_exec_suspend@basic-s3-devices.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4860]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4860])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4860]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-7/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#2190])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-9/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4613]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#12193])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-12/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4565])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-12/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-tglu-1: NOTRUN -> [SKIP][70] ([i915#4613])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#4613]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#4613]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-8/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_media_vme:
- shard-tglu-1: NOTRUN -> [SKIP][73] ([i915#284])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-write:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#4077]) +9 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-2/igt@gem_mmap_gtt@basic-write.html
* igt@gem_mmap_gtt@flink-race:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4077]) +5 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-18/igt@gem_mmap_gtt@flink-race.html
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4077]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-5/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4083]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-14/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4083]) +4 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-11/igt@gem_mmap_wc@write-prefaulted.html
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4083]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-2/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3282])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-2/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#3282]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-14/igt@gem_partial_pwrite_pread@writes-after-reads.html
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3282])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-3/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#3282]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-3/igt@gem_pread@snoop.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#4270]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@create-regular-buffer:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4270])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@create-regular-context-1:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4270]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-11/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4270])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-2/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#8428]) +5 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-1/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#5190] / [i915#8428]) +11 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4079])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#4079])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#8411])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#4079]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-18/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#3323])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-9/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#3297]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#3297])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-7/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#3297])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#3297] / [i915#4880]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#4880])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#3297]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-19/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#3297] / [i915#4958])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-2/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#3297])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen3_render_tiledy_blits:
- shard-mtlp: NOTRUN -> [SKIP][103] +12 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-6/igt@gen3_render_tiledy_blits.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][104] +17 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-1/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@bb-chained:
- shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#2527] / [i915#2856])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#2527]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-14/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-out:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#2856]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-5/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#2856]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-5/igt@gen9_exec_parse@bb-start-param.html
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#2527])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-5/igt@gen9_exec_parse@bb-start-param.html
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#2527] / [i915#2856]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-3/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#6412])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-4/igt@i915_module_load@resize-bar.html
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#7178])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-17/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][113] -> [INCOMPLETE][114] ([i915#12455]) +1 other test incomplete
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [PASS][115] -> [FAIL][116] ([i915#3591])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rps@thresholds-idle:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#11681])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-1/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#4387])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-8/igt@i915_pm_sseu@full-enable.html
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#4387])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-5/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4387])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#8437])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-6/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#6245])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-3/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#6188])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-4/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu-1: NOTRUN -> [INCOMPLETE][124] ([i915#7443])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#12454] / [i915#12712])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#4212])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-7/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#10333])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-3/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#1769] / [i915#3555])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#5286]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#5286]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
- shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#5286]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5286]) +4 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-18/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#3638])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#3638]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-12/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5190]) +13 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][136] +21 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6187])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-snb: NOTRUN -> [SKIP][138] +81 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-snb6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#4538]) +7 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#12313]) +3 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#6095]) +104 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-19/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#12313])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#10307] / [i915#6095]) +175 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#6095]) +24 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#6095]) +44 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6095]) +14 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-6/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#12313]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#12313])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#12313])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#6095]) +75 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#7828]) +11 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-2/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#7828]) +6 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#7828]) +5 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#7828]) +4 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#7828])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#7828]) +5 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-5/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][158] ([i915#7173])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-10/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#3116] / [i915#3299]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#3116])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#7116] / [i915#9424])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#9424])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-4/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][163] ([i915#1339] / [i915#7173])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-10/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#11453] / [i915#3359])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#11453] / [i915#3359])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#11453] / [i915#3359])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#11453] / [i915#3359]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-12/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#11453] / [i915#3359]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-9/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#3555]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#8814])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#8814]) +3 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#9067])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#9067])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#9067])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#9067])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-13/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#9067])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#8588])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-13/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#8588])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-9/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg2: [PASS][180] -> [SKIP][181] ([i915#3555])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_aux_dev:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#1257])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-8/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#3840] / [i915#9688])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#3840])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#3469]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-8/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#4854])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-18/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#1839])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-1/igt@kms_feature_discovery@display-2x.html
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#1839])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-10/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#1839])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-1/igt@kms_feature_discovery@display-2x.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#1839])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-14/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#1839])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#9337])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-4/igt@kms_feature_discovery@dp-mst.html
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#9337])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#9337])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#658]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-14/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#4881])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-5/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#3637]) +5 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-3/igt@kms_flip@2x-flip-vs-fences.html
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#8381]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#3637]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3637]) +6 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-8/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#9934]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-19/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-mtlp: NOTRUN -> [FAIL][203] ([i915#2122]) +2 other tests fail
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html
- shard-dg2: NOTRUN -> [FAIL][204] ([i915#2122]) +1 other test fail
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html
- shard-dg1: [PASS][205] -> [FAIL][206] ([i915#12517] / [i915#2122])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-19/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][207] ([i915#2122]) +1 other test fail
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1:
- shard-mtlp: NOTRUN -> [FAIL][208] ([i915#11989])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a4:
- shard-dg1: [PASS][209] -> [FAIL][210] ([i915#2122]) +2 other tests fail
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-19/igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a4.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a4.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#8381]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-11/igt@kms_flip@flip-vs-fences-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#8381])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2: NOTRUN -> [INCOMPLETE][213] ([i915#4839] / [i915#6113])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-10/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2: NOTRUN -> [INCOMPLETE][214] ([i915#6113])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-10/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip@modeset-vs-vblank-race:
- shard-rkl: [PASS][215] -> [FAIL][216] ([i915#10826]) +1 other test fail
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-rkl-1/igt@kms_flip@modeset-vs-vblank-race.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-1/igt@kms_flip@modeset-vs-vblank-race.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-rkl: [PASS][217] -> [FAIL][218] ([i915#2122])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-rkl-1/igt@kms_flip@plain-flip-fb-recreate.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-2/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][219] ([i915#2122]) +1 other test fail
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-2/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check:
- shard-mtlp: [PASS][220] -> [FAIL][221] ([i915#12457] / [i915#2122])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-4/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_flip@plain-flip-ts-check@a-edp1:
- shard-mtlp: [PASS][222] -> [FAIL][223] ([i915#2122])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check@a-edp1.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-4/igt@kms_flip@plain-flip-ts-check@a-edp1.html
* igt@kms_flip@plain-flip-ts-check@b-edp1:
- shard-mtlp: [PASS][224] -> [FAIL][225] ([i915#11989])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check@b-edp1.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-4/igt@kms_flip@plain-flip-ts-check@b-edp1.html
* igt@kms_flip@plain-flip-ts-check@d-hdmi-a1:
- shard-tglu: [PASS][226] -> [FAIL][227] ([i915#2122]) +4 other tests fail
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-tglu-5/igt@kms_flip@plain-flip-ts-check@d-hdmi-a1.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-3/igt@kms_flip@plain-flip-ts-check@d-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1:
- shard-snb: [PASS][228] -> [FAIL][229] ([i915#2122]) +3 other tests fail
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-snb6/igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-snb7/igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1.html
* igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1:
- shard-tglu-1: NOTRUN -> [FAIL][230] ([i915#2122]) +1 other test fail
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#2672]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#2587] / [i915#2672]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#2587] / [i915#2672]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#2672] / [i915#3555])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#2587] / [i915#2672]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#2587] / [i915#2672] / [i915#3555])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#2587] / [i915#2672] / [i915#3555])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555] / [i915#8813])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#8813])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#2672]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
- shard-dg2: NOTRUN -> [FAIL][246] ([i915#6880])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-snb: [PASS][247] -> [SKIP][248]
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#5354]) +54 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#1825]) +25 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#5439])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#8708]) +31 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][253] +30 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#8708]) +4 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#1825]) +18 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-tglu-1: NOTRUN -> [SKIP][256] +21 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#10433] / [i915#3458])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#3458]) +7 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#3023]) +14 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#4423] / [i915#8708])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][261] +71 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#3458]) +14 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#8708]) +15 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu: [PASS][264] -> [SKIP][265] ([i915#433])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-tglu-4/igt@kms_hdmi_inject@inject-audio.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-8/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: [PASS][267] -> [SKIP][268] ([i915#3555] / [i915#8228])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg2-10/igt@kms_hdr@bpc-switch-suspend.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-7/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#12394])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-7/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#10656])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-2/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#12394])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#10656])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-5/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#10656])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#10656])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-8/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#12388])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#6301])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-8/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#6301])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#6301])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#12247]) +13 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#12247]) +4 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#12247]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#12247] / [i915#6953])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#12247] / [i915#6953])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#12247]) +3 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#12247] / [i915#12504]) +6 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#12247] / [i915#6953])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#12247]) +7 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#9812])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-3/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#5354])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#9812])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#9685]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#9685]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#3828])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#10139])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-4/igt@kms_pm_dc@dc6-psr.html
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#9685]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#9340])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#8430])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg1: [PASS][300] -> [DMESG-WARN][301] ([i915#4423]) +2 other tests dmesg-warn
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-17/igt@kms_pm_rpm@basic-pci-d3-state.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-19/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#9519])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-9/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#9519]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
- shard-rkl: [PASS][304] -> [SKIP][305] ([i915#9519]) +2 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#11520]) +5 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#11520]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#11520]) +11 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#9808])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#11520]) +7 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#12316]) +8 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-7/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-snb: NOTRUN -> [SKIP][312] ([i915#11520]) +4 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-snb4/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg1: NOTRUN -> [SKIP][313] ([i915#11520]) +8 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-14/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#9683])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-19/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#9683])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-mtlp: NOTRUN -> [SKIP][316] ([i915#9688]) +16 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-4/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-psr2-primary-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#9732]) +17 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-9/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html
* igt@kms_psr@pr-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#9732]) +5 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@kms_psr@pr-sprite-mmap-gtt.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#1072] / [i915#9732]) +28 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-7/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#1072] / [i915#9732]) +20 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr2-cursor-blt:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#1072] / [i915#9732]) +13 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-5/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#5190]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#3555]) +5 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@basic:
- shard-snb: [PASS][324] -> [FAIL][325] ([i915#5465]) +2 other tests fail
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-snb5/igt@kms_setmode@basic.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-snb1/igt@kms_setmode@basic.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#3555]) +4 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
- shard-dg1: NOTRUN -> [SKIP][327] ([i915#3555]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-17/igt@kms_setmode@basic-clone-single-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#3555] / [i915#8809])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg1: NOTRUN -> [FAIL][329] ([IGT#2] / [i915#6493])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg1: NOTRUN -> [SKIP][330] ([i915#8623])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg1: NOTRUN -> [SKIP][331] ([i915#9906])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#11920])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-7/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#11920])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-12/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#9906])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-1/igt@kms_vrr@max-min.html
- shard-dg2: NOTRUN -> [SKIP][335] ([i915#9906])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-2/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][336] ([i915#3555] / [i915#9906])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-3/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#9906]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-tglu: NOTRUN -> [SKIP][338] ([i915#9906])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-3/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#2437])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-8/igt@kms_writeback@writeback-check-output.html
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#2437])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-5/igt@kms_writeback@writeback-check-output.html
- shard-dg1: NOTRUN -> [SKIP][341] ([i915#2437])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_writeback@writeback-check-output.html
- shard-tglu: NOTRUN -> [SKIP][342] ([i915#2437])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-4/igt@kms_writeback@writeback-check-output.html
- shard-mtlp: NOTRUN -> [SKIP][343] ([i915#2437])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-6/igt@kms_writeback@writeback-check-output.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#2436])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@non-zero-reason:
- shard-dg2: NOTRUN -> [FAIL][345] ([i915#9100]) +1 other test fail
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-3/igt@perf@non-zero-reason.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][346] ([i915#8850])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-7/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][347] ([i915#11823] / [i915#12555])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-4/igt@perf_pmu@module-unload.html
* igt@perf_pmu@semaphore-busy@vcs1:
- shard-dg1: [PASS][348] -> [FAIL][349] ([i915#4349]) +3 other tests fail
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-16/igt@perf_pmu@semaphore-busy@vcs1.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@perf_pmu@semaphore-busy@vcs1.html
* igt@perf_pmu@semaphore-busy@vecs0:
- shard-mtlp: [PASS][350] -> [FAIL][351] ([i915#4349]) +4 other tests fail
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-mtlp-7/igt@perf_pmu@semaphore-busy@vecs0.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-5/igt@perf_pmu@semaphore-busy@vecs0.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][352] ([i915#3708]) +1 other test skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-17/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#3708] / [i915#4077])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-1/igt@prime_vgem@coherency-gtt.html
- shard-rkl: NOTRUN -> [SKIP][354] ([i915#3708]) +1 other test skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-3/igt@prime_vgem@coherency-gtt.html
- shard-dg1: NOTRUN -> [SKIP][355] ([i915#3708] / [i915#4077])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-18/igt@prime_vgem@coherency-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][356] ([i915#3708] / [i915#4077])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-4/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][357] ([i915#3708]) +2 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-2/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-mtlp: NOTRUN -> [SKIP][358] ([i915#3708])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-1/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][359] ([i915#9917]) +1 other test skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-1/igt@sriov_basic@bind-unbind-vf.html
- shard-tglu: NOTRUN -> [SKIP][360] ([i915#9917])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-3/igt@sriov_basic@bind-unbind-vf.html
#### Possible fixes ####
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [FAIL][361] ([i915#2842]) -> [PASS][362] +1 other test pass
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][363] ([i915#9820]) -> [PASS][364]
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [FAIL][365] ([i915#12548] / [i915#3591]) -> [PASS][366]
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][367] ([i915#7984]) -> [PASS][368]
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-mtlp-1/igt@i915_power@sanity.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-5/igt@i915_power@sanity.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-mtlp: [FAIL][369] ([i915#2346]) -> [PASS][370]
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-mtlp-8/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-mtlp: [FAIL][371] ([i915#11989] / [i915#2122]) -> [PASS][372] +1 other test pass
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-mtlp-7/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-4/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1:
- shard-tglu: [FAIL][373] ([i915#2122]) -> [PASS][374] +3 other tests pass
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-tglu-5/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-tglu-2/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@d-edp1:
- shard-mtlp: [FAIL][375] ([i915#11989]) -> [PASS][376] +2 other tests pass
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-mtlp-7/igt@kms_flip@flip-vs-blocking-wf-vblank@d-edp1.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-4/igt@kms_flip@flip-vs-blocking-wf-vblank@d-edp1.html
* igt@kms_flip@flip-vs-suspend@b-edp1:
- shard-mtlp: [INCOMPLETE][377] ([i915#6113]) -> [PASS][378] +1 other test pass
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-mtlp-1/igt@kms_flip@flip-vs-suspend@b-edp1.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-4/igt@kms_flip@flip-vs-suspend@b-edp1.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-snb: [INCOMPLETE][379] ([i915#4839]) -> [PASS][380] +1 other test pass
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-snb6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-snb4/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-dg2: [FAIL][381] ([i915#2122]) -> [PASS][382] +4 other tests pass
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg2-10/igt@kms_flip@plain-flip-fb-recreate.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-11/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-fb-recreate@a-vga1:
- shard-snb: [FAIL][383] ([i915#2122]) -> [PASS][384] +7 other tests pass
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-snb2/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-snb6/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-rkl: [FAIL][385] ([i915#11989] / [i915#2122]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-rkl-2/igt@kms_flip@wf_vblank-ts-check.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-3/igt@kms_flip@wf_vblank-ts-check.html
- shard-dg1: [FAIL][387] ([i915#11989] / [i915#12517] / [i915#2122]) -> [PASS][388]
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-19/igt@kms_flip@wf_vblank-ts-check.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-18/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-mtlp: [FAIL][389] -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-mtlp-4/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-7/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_flip@wf_vblank-ts-check@a-hdmi-a4:
- shard-dg1: [FAIL][391] ([i915#2122]) -> [PASS][392] +2 other tests pass
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-19/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a4.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-18/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a4.html
* igt@kms_flip@wf_vblank-ts-check@b-edp1:
- shard-mtlp: [FAIL][393] ([i915#2122]) -> [PASS][394] +1 other test pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-mtlp-4/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-7/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [FAIL][395] ([i915#6880]) -> [PASS][396]
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][397] ([i915#9519]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr@psr2-sprite-plane-move:
- shard-mtlp: [FAIL][399] ([i915#12432]) -> [PASS][400]
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-mtlp-6/igt@kms_psr@psr2-sprite-plane-move.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-5/igt@kms_psr@psr2-sprite-plane-move.html
* igt@kms_psr@psr2-sprite-plane-move@edp-1:
- shard-mtlp: [FAIL][401] ([i915#10105]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-mtlp-6/igt@kms_psr@psr2-sprite-plane-move@edp-1.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-5/igt@kms_psr@psr2-sprite-plane-move@edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [FAIL][403] ([i915#9196]) -> [PASS][404] +1 other test pass
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][405] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][406] ([i915#10131] / [i915#9820])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-dg1: [SKIP][407] ([i915#7828]) -> [SKIP][408] ([i915#4423] / [i915#7828])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-resolution-list.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-19/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [SKIP][409] ([i915#7118] / [i915#9424]) -> [TIMEOUT][410] ([i915#7173])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg2-8/igt@kms_content_protection@atomic-dpms.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-10/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@srm:
- shard-dg2: [TIMEOUT][411] ([i915#7173]) -> [SKIP][412] ([i915#7118])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg2-10/igt@kms_content_protection@srm.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-11/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2: [SKIP][413] ([i915#7118] / [i915#9424]) -> [FAIL][414] ([i915#1339] / [i915#7173])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg2-8/igt@kms_content_protection@uevent.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-10/igt@kms_content_protection@uevent.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render:
- shard-dg1: [SKIP][415] ([i915#3458] / [i915#4423]) -> [SKIP][416] ([i915#3458])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][417] ([i915#8708]) -> [SKIP][418] ([i915#4423] / [i915#8708])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: [SKIP][419] ([i915#4423] / [i915#8708]) -> [SKIP][420] ([i915#8708])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][421] ([i915#3458]) -> [SKIP][422] ([i915#10433] / [i915#3458]) +1 other test skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-dg1: [SKIP][423] -> [SKIP][424] ([i915#4423])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-dg1: [SKIP][425] ([i915#3458]) -> [SKIP][426] ([i915#3458] / [i915#4423]) +1 other test skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: [FAIL][427] ([i915#12701]) -> [SKIP][428] ([i915#12713])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg2-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane_lowres@tiling-4:
- shard-dg1: [SKIP][429] ([i915#3555]) -> [SKIP][430] ([i915#3555] / [i915#4423])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-17/igt@kms_plane_lowres@tiling-4.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-19/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-dg1: [SKIP][431] ([i915#12247] / [i915#4423]) -> [SKIP][432] ([i915#12247]) +1 other test skip
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][433] ([i915#4281]) -> [SKIP][434] ([i915#3361])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15656/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/shard-rkl-7/igt@kms_pm_dc@dc9-dpms.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[i915#10105]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10105
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10139]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10139
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11823
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12031
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12296]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12296
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12432]: https://gitlab.freedesktop.org/drm/i915/kernel/-/
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/index.html
[-- Attachment #2: Type: text/html, Size: 112199 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for Extend intel_blt to support large ctrl-surf-copy blits
2024-11-08 8:38 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-11-08 10:23 ` Zbigniew Kempczyński
0 siblings, 0 replies; 11+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-08 10:23 UTC (permalink / raw)
To: igt-dev; +Cc: I915-ci-infra
On Fri, Nov 08, 2024 at 08:38:37AM +0000, Patchwork wrote:
> Patch Details
>
> Series: Extend intel_blt to support large ctrl-surf-copy blits
> URL: https://patchwork.freedesktop.org/series/141084/
> State: failure
> Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12068/index.html
>
> CI Bug Log - changes from CI_DRM_15656_full -> IGTPW_12068_full
>
> Summary
>
> FAILURE
>
> Serious unknown changes coming with IGTPW_12068_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_12068_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_12068/index.html
>
> Participating hosts (9 -> 9)
>
> Additional (1): shard-glk-0
> Missing (1): shard-glk
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> IGTPW_12068_full:
>
> IGT changes
>
> Possible regressions
>
> * {igt@gem_ccs@large-ctrl-surf-copy} (NEW):
>
> * shard-rkl: NOTRUN -> SKIP
> * shard-dg1: NOTRUN -> SKIP
> * shard-tglu: NOTRUN -> SKIP
> * shard-mtlp: NOTRUN -> SKIP
Those skips are expected.
> * igt@kms_atomic_interruptible@universal-setplane-primary@pipe-a-edp-1:
>
> * shard-mtlp: PASS -> INCOMPLETE +1 other test incomplete
> * igt@kms_rotation_crc@sprite-rotation-90:
>
> * shard-dg2: NOTRUN -> SKIP +1 other test skip
>
> New tests
>
> New tests have been introduced between CI_DRM_15656_full and
> IGTPW_12068_full:
>
> New IGT tests (1)
>
> * igt@gem_ccs@large-ctrl-surf-copy:
> * Statuses : 1 pass(s) 5 skip(s)
> * Exec time: [0.0, 0.56] s
Pass is for DG2 and this is expected.
--
Zbigniew
>
> Known issues
>
> Here are the changes found in IGTPW_12068_full that come from known
> issues:
>
> IGT changes
>
> Issues hit
>
> * igt@api_intel_bb@blit-reloc-purge-cache:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#8411]) +1 other test skip
> * igt@device_reset@cold-reset-bound:
>
> * shard-tglu-1: NOTRUN -> SKIP (i915#11078)
> * shard-dg2: NOTRUN -> SKIP (i915#11078)
> * igt@device_reset@unbind-cold-reset-rebind:
>
> * shard-tglu: NOTRUN -> SKIP (i915#11078)
> * igt@drm_fdinfo@all-busy-check-all:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#8414]) +1 other test skip
> * igt@drm_fdinfo@isolation@rcs0:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#8414]) +7 other tests skip
> * igt@gem_basic@multigpu-create-close:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#7697])
> * igt@gem_caching@read-writes:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4873])
> * igt@gem_ccs@block-copy-compressed:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3555] / [i915#9323])
> * igt@gem_ccs@suspend-resume:
>
> * shard-dg2: NOTRUN -> INCOMPLETE ([i915#7297])
> * shard-rkl: NOTRUN -> SKIP ([i915#9323])
> * shard-dg1: NOTRUN -> SKIP ([i915#9323])
> * shard-tglu: NOTRUN -> SKIP ([i915#9323])
> * shard-mtlp: NOTRUN -> SKIP ([i915#9323])
> * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
>
> * shard-dg2: NOTRUN -> INCOMPLETE (i915#12392 / [i915#7297])
> * igt@gem_create@create-ext-cpu-access-big:
>
> * shard-dg2: PASS -> ABORT ([i915#9846])
> * igt@gem_create@create-ext-set-pat:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#8562])
> * igt@gem_ctx_engines@invalid-engines:
>
> * shard-rkl: PASS -> FAIL (i915#12031)
> * igt@gem_ctx_persistence@heartbeat-stop:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#8555])
> * shard-dg2: NOTRUN -> SKIP ([i915#8555])
> * igt@gem_ctx_persistence@hostile:
>
> * shard-dg1: PASS -> FAIL (i915#11980 / [i915#12580])
> * igt@gem_ctx_persistence@legacy-engines-persistence:
>
> * shard-snb: NOTRUN -> SKIP (i915#1099)
> * igt@gem_ctx_sseu@invalid-sseu:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#280])
> * shard-dg1: NOTRUN -> SKIP ([i915#280])
> * igt@gem_exec_balancer@bonded-dual:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4771])
> * igt@gem_exec_balancer@bonded-true-hang:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4812]) +3 other tests skip
> * igt@gem_exec_balancer@parallel-out-fence:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#4525])
> * igt@gem_exec_capture@capture@vecs0-lmem0:
>
> * shard-dg2: NOTRUN -> FAIL (i915#11965 / [i915#12558]) +2 other
> tests fail
> * igt@gem_exec_capture@capture@vecs1-smem:
>
> * shard-dg2: NOTRUN -> FAIL (i915#11965) +1 other test fail
> * igt@gem_exec_fair@basic-deadline:
>
> * shard-rkl: PASS -> FAIL ([i915#2846])
> * igt@gem_exec_fair@basic-none-rrul:
>
> * shard-rkl: NOTRUN -> FAIL ([i915#2842]) +1 other test fail
> * igt@gem_exec_fair@basic-pace-share:
>
> * shard-tglu: PASS -> FAIL ([i915#2842]) +1 other test fail
> * igt@gem_exec_fair@basic-pace-solo:
>
> * shard-rkl: PASS -> FAIL ([i915#2842]) +1 other test fail
> * igt@gem_exec_fair@basic-pace@bcs0:
>
> * shard-tglu: NOTRUN -> FAIL ([i915#2842]) +7 other tests fail
> * igt@gem_exec_fence@submit:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4812]) +2 other tests skip
> * igt@gem_exec_fence@submit67:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4812]) +2 other tests skip
> * igt@gem_exec_flush@basic-uc-pro-default:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3539] / [i915#4852]) +2 other
> tests skip
> * igt@gem_exec_flush@basic-wb-prw-default:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3539] / [i915#4852]) +2 other
> tests skip
> * igt@gem_exec_params@rsvd2-dirt:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#5107])
> * igt@gem_exec_reloc@basic-cpu-noreloc:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#3281]) +6 other tests skip
> * igt@gem_exec_reloc@basic-gtt-cpu:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3281]) +6 other tests skip
> * igt@gem_exec_reloc@basic-gtt-cpu-active:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3281]) +13 other tests skip
> * igt@gem_exec_reloc@basic-write-cpu-active:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3281]) +12 other tests skip
> * igt@gem_exec_schedule@pi-common@vcs0:
>
> * shard-rkl: NOTRUN -> FAIL (i915#12296) +4 other tests fail
> * igt@gem_exec_schedule@pi-common@vecs0:
>
> * shard-dg2: NOTRUN -> FAIL (i915#12296) +7 other tests fail
> * igt@gem_exec_schedule@pi-ringfull@vecs0:
>
> * shard-dg1: NOTRUN -> FAIL (i915#12296) +7 other tests fail
> * igt@gem_exec_schedule@preempt-queue-chain:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4537] / [i915#4812])
> * shard-dg2: NOTRUN -> SKIP ([i915#4537] / [i915#4812])
> * igt@gem_exec_suspend@basic-s3-devices:
>
> * shard-dg1: NOTRUN -> DMESG-WARN ([i915#4423]) +1 other test
> dmesg-warn
> * igt@gem_fence_thrash@bo-write-verify-none:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4860]) +1 other test skip
> * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4860])
> * shard-dg2: NOTRUN -> SKIP ([i915#4860]) +3 other tests skip
> * igt@gem_huc_copy@huc-copy:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#2190])
> * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4613]) +1 other test skip
> * shard-dg1: NOTRUN -> SKIP (i915#12193)
> * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4565])
> * igt@gem_lmem_swapping@parallel-random-engines:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#4613])
> * igt@gem_lmem_swapping@parallel-random-verify:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#4613]) +1 other test skip
> * igt@gem_lmem_swapping@verify-random-ccs:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#4613]) +4 other tests skip
> * igt@gem_media_vme:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#284])
> * igt@gem_mmap_gtt@basic-write:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4077]) +9 other tests skip
> * igt@gem_mmap_gtt@flink-race:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4077]) +5 other tests skip
> * shard-mtlp: NOTRUN -> SKIP ([i915#4077]) +2 other tests skip
> * igt@gem_mmap_wc@fault-concurrent:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4083]) +1 other test skip
> * igt@gem_mmap_wc@write-prefaulted:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4083]) +4 other tests skip
> * shard-mtlp: NOTRUN -> SKIP ([i915#4083]) +2 other tests skip
> * igt@gem_partial_pwrite_pread@write-uncached:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3282])
> * igt@gem_partial_pwrite_pread@writes-after-reads:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3282]) +2 other tests skip
> * shard-mtlp: NOTRUN -> SKIP ([i915#3282])
> * igt@gem_pread@snoop:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3282]) +2 other tests skip
> * igt@gem_pxp@create-protected-buffer:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#4270]) +1 other test skip
> * igt@gem_pxp@create-regular-buffer:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4270])
> * igt@gem_pxp@create-regular-context-1:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4270]) +4 other tests skip
> * igt@gem_pxp@verify-pxp-stale-buf-execution:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4270])
> * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#8428]) +5 other tests skip
> * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#5190] / [i915#8428]) +11 other
> tests skip
> * igt@gem_render_tiled_blits@basic:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4079])
> * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4079])
> * shard-rkl: NOTRUN -> SKIP ([i915#8411])
> * igt@gem_set_tiling_vs_pwrite:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4079]) +1 other test skip
> * igt@gem_userptr_blits@dmabuf-sync:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3297] / [i915#3323])
> * igt@gem_userptr_blits@dmabuf-unsync:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3297]) +4 other tests skip
> * shard-rkl: NOTRUN -> SKIP ([i915#3297])
> * igt@gem_userptr_blits@map-fixed-invalidate-busy:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#3297])
> * igt@gem_userptr_blits@map-fixed-invalidate-overlap:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3297] / [i915#4880]) +1 other
> test skip
> * shard-dg2: NOTRUN -> SKIP ([i915#3297] / [i915#4880])
> * igt@gem_userptr_blits@readonly-unsync:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3297]) +1 other test skip
> * igt@gem_userptr_blits@sd-probe:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3297] / [i915#4958])
> * igt@gem_userptr_blits@unsync-unmap:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3297])
> * igt@gen3_render_tiledy_blits:
>
> * shard-mtlp: NOTRUN -> SKIP +12 other tests skip
> * igt@gen7_exec_parse@bitmasks:
>
> * shard-dg2: NOTRUN -> SKIP +17 other tests skip
> * igt@gen9_exec_parse@bb-chained:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#2527] / [i915#2856])
> * igt@gen9_exec_parse@bb-start-cmd:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#2527]) +2 other tests skip
> * igt@gen9_exec_parse@bb-start-out:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#2856]) +2 other tests skip
> * igt@gen9_exec_parse@bb-start-param:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#2856]) +2 other tests skip
> * shard-rkl: NOTRUN -> SKIP ([i915#2527])
> * shard-tglu: NOTRUN -> SKIP ([i915#2527] / [i915#2856]) +2 other
> tests skip
> * igt@i915_module_load@resize-bar:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#6412])
> * shard-dg1: NOTRUN -> SKIP ([i915#7178])
> * igt@i915_pm_freq_api@freq-suspend@gt0:
>
> * shard-dg2: PASS -> INCOMPLETE ([i915#12455]) +1 other test
> incomplete
> * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
>
> * shard-dg1: PASS -> FAIL ([i915#3591])
> * igt@i915_pm_rps@thresholds-idle:
>
> * shard-dg2: NOTRUN -> SKIP (i915#11681)
> * igt@i915_pm_sseu@full-enable:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4387])
> * shard-rkl: NOTRUN -> SKIP ([i915#4387])
> * shard-dg1: NOTRUN -> SKIP ([i915#4387])
> * shard-mtlp: NOTRUN -> SKIP ([i915#8437])
> * igt@i915_query@hwconfig_table:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#6245])
> * igt@i915_query@query-topology-coherent-slice-mask:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#6188])
> * igt@i915_suspend@basic-s3-without-i915:
>
> * shard-tglu-1: NOTRUN -> INCOMPLETE ([i915#7443])
> * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#12454] / [i915#12712])
> * igt@kms_addfb_basic@tile-pitch-mismatch:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4212])
> * igt@kms_async_flips@test-cursor:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#10333)
> * igt@kms_atomic_transition@plane-all-modeset-transition:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#1769] / [i915#3555])
> * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#5286]) +3 other tests skip
> * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#5286]) +3 other tests skip
> * shard-tglu-1: NOTRUN -> SKIP ([i915#5286]) +2 other tests skip
> * shard-dg1: NOTRUN -> SKIP ([i915#4538] / [i915#5286]) +4 other
> tests skip
> * igt@kms_big_fb@linear-64bpp-rotate-90:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3638])
> * shard-dg1: NOTRUN -> SKIP ([i915#3638]) +1 other test skip
> * igt@kms_big_fb@y-tiled-64bpp-rotate-0:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4538] / [i915#5190]) +13 other
> tests skip
> * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
>
> * shard-rkl: NOTRUN -> SKIP +21 other tests skip
> * igt@kms_big_fb@yf-tiled-addfb:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#6187])
> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
>
> * shard-snb: NOTRUN -> SKIP +81 other tests skip
> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4538]) +7 other tests skip
> * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
>
> * shard-tglu: NOTRUN -> SKIP (i915#12313) +3 other tests skip
> * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#6095]) +104 other tests skip
> * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
>
> * shard-dg1: NOTRUN -> SKIP (i915#12313)
> * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
>
> * shard-dg2: NOTRUN -> SKIP (i915#10307 / [i915#6095]) +175 other
> tests skip
> * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#6095]) +24 other tests skip
> * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
>
> * shard-dg2: NOTRUN -> SKIP (i915#10307 / i915#10434 / [i915#6095])
> +2 other tests skip
> * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#6095]) +44 other tests skip
> * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#6095]) +14 other tests skip
> * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
>
> * shard-tglu-1: NOTRUN -> SKIP (i915#12313) +1 other test skip
> * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#12313)
> * shard-rkl: NOTRUN -> SKIP (i915#12313)
> * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#6095]) +75 other tests skip
> * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#7828]) +11 other tests skip
> * igt@kms_chamelium_frames@dp-crc-fast:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#7828]) +6 other tests skip
> * igt@kms_chamelium_hpd@dp-hpd-storm:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#7828]) +5 other tests skip
> * igt@kms_chamelium_hpd@vga-hpd:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#7828]) +4 other tests skip
> * igt@kms_chamelium_hpd@vga-hpd-after-suspend:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#7828])
> * igt@kms_chamelium_hpd@vga-hpd-without-ddc:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#7828]) +5 other tests skip
> * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
>
> * shard-dg2: NOTRUN -> TIMEOUT ([i915#7173])
> * igt@kms_content_protection@dp-mst-type-0:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3116] / [i915#3299]) +1 other
> test skip
> * igt@kms_content_protection@dp-mst-type-1:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3116])
> * igt@kms_content_protection@legacy:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#7116] / [i915#9424])
> * igt@kms_content_protection@lic-type-1:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#9424])
> * igt@kms_content_protection@uevent@pipe-a-dp-4:
>
> * shard-dg2: NOTRUN -> FAIL ([i915#1339] / [i915#7173])
> * igt@kms_cursor_crc@cursor-offscreen-512x512:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#11453 / [i915#3359])
> * shard-dg2: NOTRUN -> SKIP (i915#11453 / [i915#3359])
> * shard-rkl: NOTRUN -> SKIP (i915#11453 / [i915#3359])
> * igt@kms_cursor_crc@cursor-onscreen-512x170:
>
> * shard-dg1: NOTRUN -> SKIP (i915#11453 / [i915#3359]) +2 other
> tests skip
> * igt@kms_cursor_crc@cursor-random-512x512:
>
> * shard-tglu: NOTRUN -> SKIP (i915#11453 / [i915#3359]) +2 other
> tests skip
> * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3555]) +2 other tests skip
> * igt@kms_cursor_crc@cursor-rapid-movement-32x32:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3555]) +3 other tests skip
> * shard-mtlp: NOTRUN -> SKIP ([i915#3555] / [i915#8814])
> * igt@kms_cursor_crc@cursor-rapid-movement-64x21:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#8814]) +3 other tests skip
> * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#9067])
> * shard-dg2: NOTRUN -> SKIP ([i915#9067])
> * shard-rkl: NOTRUN -> SKIP ([i915#9067])
> * shard-dg1: NOTRUN -> SKIP ([i915#9067])
> * shard-tglu: NOTRUN -> SKIP ([i915#9067])
> * igt@kms_display_modes@mst-extended-mode-negative:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#8588])
> * shard-tglu: NOTRUN -> SKIP ([i915#8588])
> * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
>
> * shard-dg2: PASS -> SKIP ([i915#3555])
> * igt@kms_dp_aux_dev:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#1257])
> * igt@kms_dsc@dsc-fractional-bpp:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3840] / [i915#9688])
> * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3840])
> * igt@kms_dsc@dsc-with-bpc:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3555] / [i915#3840]) +1 other
> test skip
> * igt@kms_fbcon_fbt@psr:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3469]) +1 other test skip
> * igt@kms_feature_discovery@chamelium:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4854])
> * igt@kms_feature_discovery@display-2x:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#1839])
> * shard-dg2: NOTRUN -> SKIP ([i915#1839])
> * shard-rkl: NOTRUN -> SKIP ([i915#1839])
> * shard-dg1: NOTRUN -> SKIP ([i915#1839])
> * shard-tglu: NOTRUN -> SKIP ([i915#1839])
> * igt@kms_feature_discovery@dp-mst:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#9337])
> * shard-rkl: NOTRUN -> SKIP ([i915#9337])
> * shard-dg1: NOTRUN -> SKIP ([i915#9337])
> * igt@kms_feature_discovery@psr2:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#658]) +1 other test skip
> * igt@kms_fence_pin_leak:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4881])
> * igt@kms_flip@2x-flip-vs-fences:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3637]) +5 other tests skip
> * shard-mtlp: NOTRUN -> SKIP ([i915#8381]) +1 other test skip
> * igt@kms_flip@2x-flip-vs-panning-vs-hang:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3637]) +2 other tests skip
> * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#3637]) +6 other tests skip
> * shard-dg1: NOTRUN -> SKIP ([i915#9934]) +1 other test skip
> * igt@kms_flip@flip-vs-absolute-wf_vblank:
>
> * shard-mtlp: NOTRUN -> FAIL ([i915#2122]) +2 other tests fail
> * shard-dg2: NOTRUN -> FAIL ([i915#2122]) +1 other test fail
> * shard-dg1: PASS -> FAIL ([i915#12517] / [i915#2122])
> * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
>
> * shard-tglu: NOTRUN -> FAIL ([i915#2122]) +1 other test fail
> * igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1:
>
> * shard-mtlp: NOTRUN -> FAIL (i915#11989)
> * igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a4:
>
> * shard-dg1: PASS -> FAIL ([i915#2122]) +2 other tests fail
> * igt@kms_flip@flip-vs-fences-interruptible:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#8381]) +2 other tests skip
> * shard-dg1: NOTRUN -> SKIP ([i915#8381])
> * igt@kms_flip@flip-vs-suspend:
>
> * shard-dg2: NOTRUN -> INCOMPLETE ([i915#4839] / [i915#6113])
> * igt@kms_flip@flip-vs-suspend@d-dp4:
>
> * shard-dg2: NOTRUN -> INCOMPLETE ([i915#6113])
> * igt@kms_flip@modeset-vs-vblank-race:
>
> * shard-rkl: PASS -> FAIL (i915#10826) +1 other test fail
> * igt@kms_flip@plain-flip-fb-recreate:
>
> * shard-rkl: PASS -> FAIL ([i915#2122])
> * igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1:
>
> * shard-rkl: NOTRUN -> FAIL ([i915#2122]) +1 other test fail
> * igt@kms_flip@plain-flip-ts-check:
>
> * shard-mtlp: PASS -> FAIL ([i915#12457] / [i915#2122])
> * igt@kms_flip@plain-flip-ts-check@a-edp1:
>
> * shard-mtlp: PASS -> FAIL ([i915#2122])
> * igt@kms_flip@plain-flip-ts-check@b-edp1:
>
> * shard-mtlp: PASS -> FAIL (i915#11989)
> * igt@kms_flip@plain-flip-ts-check@d-hdmi-a1:
>
> * shard-tglu: PASS -> FAIL ([i915#2122]) +4 other tests fail
> * igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1:
>
> * shard-snb: PASS -> FAIL ([i915#2122]) +3 other tests fail
> * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1:
>
> * shard-tglu-1: NOTRUN -> FAIL ([i915#2122]) +1 other test fail
> * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#2672] / [i915#3555]) +1 other
> test skip
> * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#2672]) +1 other test skip
> * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#2587] / [i915#2672]) +2 other
> tests skip
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#2587] / [i915#2672]) +1 other
> test skip
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#2672] / [i915#3555])
> * shard-dg1: NOTRUN -> SKIP ([i915#2672] / [i915#3555])
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#2587] / [i915#2672]) +1 other
> test skip
> * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#2587] / [i915#2672] /
> [i915#3555])
> * shard-tglu: NOTRUN -> SKIP ([i915#2587] / [i915#2672] /
> [i915#3555])
> * shard-mtlp: NOTRUN -> SKIP ([i915#2672] / [i915#3555] /
> [i915#8813])
> * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#2672] / [i915#8813])
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#2672] / [i915#3555]) +1 other
> test skip
> * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#2672] / [i915#3555]) +1 other
> test skip
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#2672] / [i915#3555] /
> [i915#5190]) +2 other tests skip
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#2672]) +3 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
>
> * shard-dg2: NOTRUN -> FAIL ([i915#6880])
> * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
>
> * shard-snb: PASS -> SKIP
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#5354]) +54 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#1825]) +25 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-tiling-4:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#5439])
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#8708]) +31 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
>
> * shard-dg1: NOTRUN -> SKIP +30 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#8708]) +4 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#1825]) +18 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
>
> * shard-tglu-1: NOTRUN -> SKIP +21 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
>
> * shard-dg2: NOTRUN -> SKIP (i915#10433 / [i915#3458])
> * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3458]) +7 other tests skip
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3023]) +14 other tests skip
> * shard-dg1: NOTRUN -> SKIP ([i915#4423] / [i915#8708])
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
>
> * shard-tglu: NOTRUN -> SKIP +71 other tests skip
> * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3458]) +14 other tests skip
> * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#8708]) +15 other tests skip
> * igt@kms_hdmi_inject@inject-audio:
>
> * shard-tglu: PASS -> SKIP ([i915#433])
> * igt@kms_hdr@bpc-switch-dpms:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3555] / [i915#8228])
> * igt@kms_hdr@bpc-switch-suspend:
>
> * shard-dg2: PASS -> SKIP ([i915#3555] / [i915#8228])
> * igt@kms_hdr@invalid-metadata-sizes:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3555] / [i915#8228]) +1 other
> test skip
> * igt@kms_joiner@basic-force-ultra-joiner:
>
> * shard-tglu: NOTRUN -> SKIP (i915#12394)
> * shard-mtlp: NOTRUN -> SKIP (i915#10656)
> * shard-rkl: NOTRUN -> SKIP (i915#12394)
> * igt@kms_joiner@invalid-modeset-big-joiner:
>
> * shard-rkl: NOTRUN -> SKIP (i915#10656)
> * shard-dg1: NOTRUN -> SKIP (i915#10656)
> * shard-dg2: NOTRUN -> SKIP (i915#10656)
> * igt@kms_joiner@invalid-modeset-force-big-joiner:
>
> * shard-tglu: NOTRUN -> SKIP (i915#12388)
> * igt@kms_panel_fitting@atomic-fastset:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#6301])
> * shard-rkl: NOTRUN -> SKIP ([i915#6301])
> * shard-dg1: NOTRUN -> SKIP ([i915#6301])
> * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
>
> * shard-tglu: NOTRUN -> SKIP (i915#12247) +13 other tests skip
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
>
> * shard-rkl: NOTRUN -> SKIP (i915#12247) +4 other tests skip
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
>
> * shard-dg1: NOTRUN -> SKIP (i915#12247) +1 other test skip
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
>
> * shard-dg2: NOTRUN -> SKIP (i915#12247 / [i915#6953] /
> [i915#9423]) +1 other test skip
> * shard-dg1: NOTRUN -> SKIP (i915#12247 / [i915#6953])
> * shard-mtlp: NOTRUN -> SKIP (i915#12247 / [i915#6953])
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#12247) +3 other tests skip
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
>
> * shard-dg1: NOTRUN -> SKIP (i915#12247 / [i915#12504]) +6 other
> tests skip
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
>
> * shard-rkl: NOTRUN -> SKIP (i915#12247 / [i915#6953])
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
>
> * shard-dg2: NOTRUN -> SKIP (i915#12247) +7 other tests skip
> * igt@kms_pm_backlight@bad-brightness:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#9812])
> * igt@kms_pm_backlight@fade-with-dpms:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#5354])
> * igt@kms_pm_backlight@fade-with-suspend:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#9812])
> * igt@kms_pm_dc@dc3co-vpb-simulation:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#9685]) +1 other test skip
> * shard-tglu: NOTRUN -> SKIP ([i915#9685]) +1 other test skip
> * igt@kms_pm_dc@dc5-retention-flops:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3828])
> * igt@kms_pm_dc@dc6-psr:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#10139)
> * shard-dg2: NOTRUN -> SKIP ([i915#9685]) +1 other test skip
> * igt@kms_pm_lpsp@kms-lpsp:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#9340])
> * igt@kms_pm_lpsp@screens-disabled:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#8430])
> * igt@kms_pm_rpm@basic-pci-d3-state:
>
> * shard-dg1: PASS -> DMESG-WARN ([i915#4423]) +2 other tests
> dmesg-warn
> * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#9519])
> * igt@kms_pm_rpm@modeset-lpsp:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#9519]) +2 other tests skip
> * shard-rkl: PASS -> SKIP ([i915#9519]) +2 other tests skip
> * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
>
> * shard-rkl: NOTRUN -> SKIP (i915#11520) +5 other tests skip
> * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
>
> * shard-tglu-1: NOTRUN -> SKIP (i915#11520) +1 other test skip
> * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
>
> * shard-dg2: NOTRUN -> SKIP (i915#11520) +11 other tests skip
> * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#9808])
> * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
>
> * shard-tglu: NOTRUN -> SKIP (i915#11520) +7 other tests skip
> * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
>
> * shard-mtlp: NOTRUN -> SKIP (i915#12316) +8 other tests skip
> * igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
>
> * shard-snb: NOTRUN -> SKIP (i915#11520) +4 other tests skip
> * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
>
> * shard-dg1: NOTRUN -> SKIP (i915#11520) +8 other tests skip
> * igt@kms_psr2_su@page_flip-nv12:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#9683])
> * igt@kms_psr2_su@page_flip-xrgb8888:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#9683])
> * igt@kms_psr@fbc-pr-cursor-render:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#9688]) +16 other tests skip
> * igt@kms_psr@fbc-psr2-primary-mmap-gtt:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#9732]) +17 other tests skip
> * igt@kms_psr@pr-sprite-mmap-gtt:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#9732]) +5 other tests skip
> * igt@kms_psr@psr-cursor-render:
>
> * shard-dg2: NOTRUN -> SKIP (i915#1072 / [i915#9732]) +28 other
> tests skip
> * igt@kms_psr@psr-sprite-mmap-cpu:
>
> * shard-dg1: NOTRUN -> SKIP (i915#1072 / [i915#9732]) +20 other
> tests skip
> * igt@kms_psr@psr2-cursor-blt:
>
> * shard-rkl: NOTRUN -> SKIP (i915#1072 / [i915#9732]) +13 other
> tests skip
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#5190]) +1 other test skip
> * igt@kms_scaling_modes@scaling-mode-center:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3555]) +5 other tests skip
> * igt@kms_setmode@basic:
>
> * shard-snb: PASS -> FAIL ([i915#5465]) +2 other tests fail
> * igt@kms_setmode@basic-clone-single-crtc:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3555]) +4 other tests skip
> * shard-dg1: NOTRUN -> SKIP ([i915#3555]) +1 other test skip
> * shard-mtlp: NOTRUN -> SKIP ([i915#3555] / [i915#8809])
> * igt@kms_sysfs_edid_timing:
>
> * shard-dg1: NOTRUN -> FAIL (IGT#2 / [i915#6493])
> * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#8623])
> * igt@kms_vrr@flip-basic-fastset:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#9906])
> * igt@kms_vrr@lobf:
>
> * shard-rkl: NOTRUN -> SKIP (i915#11920)
> * shard-dg1: NOTRUN -> SKIP (i915#11920)
> * igt@kms_vrr@max-min:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#9906])
> * shard-dg2: NOTRUN -> SKIP ([i915#9906])
> * igt@kms_vrr@negative-basic:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3555] / [i915#9906])
> * igt@kms_vrr@seamless-rr-switch-virtual:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#9906]) +1 other test skip
> * igt@kms_vrr@seamless-rr-switch-vrr:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#9906])
> * igt@kms_writeback@writeback-check-output:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#2437])
> * shard-rkl: NOTRUN -> SKIP ([i915#2437])
> * shard-dg1: NOTRUN -> SKIP ([i915#2437])
> * shard-tglu: NOTRUN -> SKIP ([i915#2437])
> * shard-mtlp: NOTRUN -> SKIP ([i915#2437])
> * igt@perf@gen8-unprivileged-single-ctx-counters:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#2436])
> * igt@perf@non-zero-reason:
>
> * shard-dg2: NOTRUN -> FAIL ([i915#9100]) +1 other test fail
> * igt@perf_pmu@cpu-hotplug:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#8850])
> * igt@perf_pmu@module-unload:
>
> * shard-dg2: NOTRUN -> FAIL (i915#11823 / [i915#12555])
> * igt@perf_pmu@semaphore-busy@vcs1:
>
> * shard-dg1: PASS -> FAIL ([i915#4349]) +3 other tests fail
> * igt@perf_pmu@semaphore-busy@vecs0:
>
> * shard-mtlp: PASS -> FAIL ([i915#4349]) +4 other tests fail
> * igt@prime_vgem@basic-fence-flip:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3708]) +1 other test skip
> * igt@prime_vgem@coherency-gtt:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3708] / [i915#4077])
> * shard-rkl: NOTRUN -> SKIP ([i915#3708]) +1 other test skip
> * shard-dg1: NOTRUN -> SKIP ([i915#3708] / [i915#4077])
> * shard-mtlp: NOTRUN -> SKIP ([i915#3708] / [i915#4077])
> * igt@prime_vgem@fence-read-hang:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3708]) +2 other tests skip
> * igt@prime_vgem@fence-write-hang:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#3708])
> * igt@sriov_basic@bind-unbind-vf:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#9917]) +1 other test skip
> * shard-tglu: NOTRUN -> SKIP ([i915#9917])
>
> Possible fixes
>
> * igt@gem_exec_fair@basic-pace@vecs0:
>
> * shard-rkl: FAIL ([i915#2842]) -> PASS +1 other test pass
> * igt@i915_module_load@reload-with-fault-injection:
>
> * shard-rkl: ABORT ([i915#9820]) -> PASS
> * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
>
> * shard-dg1: FAIL ([i915#12548] / [i915#3591]) -> PASS
> * igt@i915_power@sanity:
>
> * shard-mtlp: SKIP ([i915#7984]) -> PASS
> * igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
>
> * shard-mtlp: FAIL ([i915#2346]) -> PASS
> * igt@kms_flip@flip-vs-blocking-wf-vblank:
>
> * shard-mtlp: FAIL (i915#11989 / [i915#2122]) -> PASS +1 other test
> pass
> * igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1:
>
> * shard-tglu: FAIL ([i915#2122]) -> PASS +3 other tests pass
> * igt@kms_flip@flip-vs-blocking-wf-vblank@d-edp1:
>
> * shard-mtlp: FAIL (i915#11989) -> PASS +2 other tests pass
> * igt@kms_flip@flip-vs-suspend@b-edp1:
>
> * shard-mtlp: INCOMPLETE ([i915#6113]) -> PASS +1 other test pass
> * igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
>
> * shard-snb: INCOMPLETE ([i915#4839]) -> PASS +1 other test pass
> * igt@kms_flip@plain-flip-fb-recreate:
>
> * shard-dg2: FAIL ([i915#2122]) -> PASS +4 other tests pass
> * igt@kms_flip@plain-flip-fb-recreate@a-vga1:
>
> * shard-snb: FAIL ([i915#2122]) -> PASS +7 other tests pass
> * igt@kms_flip@wf_vblank-ts-check:
>
> * shard-rkl: FAIL (i915#11989 / [i915#2122]) -> PASS
> * shard-dg1: FAIL (i915#11989 / [i915#12517] / [i915#2122]) -> PASS
> * igt@kms_flip@wf_vblank-ts-check@a-edp1:
>
> * shard-mtlp: FAIL -> PASS
> * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a4:
>
> * shard-dg1: FAIL ([i915#2122]) -> PASS +2 other tests pass
> * igt@kms_flip@wf_vblank-ts-check@b-edp1:
>
> * shard-mtlp: FAIL ([i915#2122]) -> PASS +1 other test pass
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
>
> * shard-dg2: FAIL ([i915#6880]) -> PASS
> * igt@kms_pm_rpm@modeset-non-lpsp-stress:
>
> * shard-rkl: SKIP ([i915#9519]) -> PASS
> * igt@kms_psr@psr2-sprite-plane-move:
>
> * shard-mtlp: FAIL (i915#12432) -> PASS
> * igt@kms_psr@psr2-sprite-plane-move@edp-1:
>
> * shard-mtlp: FAIL (i915#10105) -> PASS
> * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
>
> * shard-mtlp: FAIL ([i915#9196]) -> PASS +1 other test pass
>
> Warnings
>
> * igt@i915_module_load@reload-with-fault-injection:
>
> * shard-mtlp: ABORT (i915#10131 / i915#10887 / [i915#9820]) ->
> ABORT (i915#10131 / [i915#9820])
> * igt@kms_chamelium_edid@dp-edid-resolution-list:
>
> * shard-dg1: SKIP ([i915#7828]) -> SKIP ([i915#4423] / [i915#7828])
> * igt@kms_content_protection@atomic-dpms:
>
> * shard-dg2: SKIP ([i915#7118] / [i915#9424]) -> TIMEOUT
> ([i915#7173])
> * igt@kms_content_protection@srm:
>
> * shard-dg2: TIMEOUT ([i915#7173]) -> SKIP ([i915#7118])
> * igt@kms_content_protection@uevent:
>
> * shard-dg2: SKIP ([i915#7118] / [i915#9424]) -> FAIL ([i915#1339]
> / [i915#7173])
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render:
>
> * shard-dg1: SKIP ([i915#3458] / [i915#4423]) -> SKIP ([i915#3458])
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
>
> * shard-dg1: SKIP ([i915#8708]) -> SKIP ([i915#4423] / [i915#8708])
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
>
> * shard-dg1: SKIP ([i915#4423] / [i915#8708]) -> SKIP ([i915#8708])
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
>
> * shard-dg2: SKIP ([i915#3458]) -> SKIP (i915#10433 / [i915#3458])
> +1 other test skip
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
>
> * shard-dg1: SKIP -> SKIP ([i915#4423])
> * igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
>
> * shard-dg1: SKIP ([i915#3458]) -> SKIP ([i915#3458] / [i915#4423])
> +1 other test skip
> * igt@kms_hdr@brightness-with-hdr:
>
> * shard-dg2: FAIL ([i915#12701]) -> SKIP ([i915#12713])
> * igt@kms_plane_lowres@tiling-4:
>
> * shard-dg1: SKIP ([i915#3555]) -> SKIP ([i915#3555] / [i915#4423])
> * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
>
> * shard-dg1: SKIP (i915#12247 / [i915#4423]) -> SKIP (i915#12247)
> +1 other test skip
> * igt@kms_pm_dc@dc9-dpms:
>
> * shard-rkl: SKIP ([i915#4281]) -> SKIP ([i915#3361])
>
> {name}: This element is suppressed. This means it is ignored when
> computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ CI.xeFULL: failure for Extend intel_blt to support large ctrl-surf-copy blits
2024-11-08 6:47 [PATCH i-g-t 0/3] Extend intel_blt to support large ctrl-surf-copy blits Zbigniew Kempczyński
` (5 preceding siblings ...)
2024-11-08 8:38 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-11-09 11:49 ` Patchwork
2024-11-12 8:30 ` Zbigniew Kempczyński
6 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2024-11-09 11:49 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 84191 bytes --]
== Series Details ==
Series: Extend intel_blt to support large ctrl-surf-copy blits
URL : https://patchwork.freedesktop.org/series/141084/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8100_full -> XEIGTPW_12068_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12068_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12068_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12068_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-bmg: [PASS][1] -> [SKIP][2] +2 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-463/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_cursor_legacy@torture-move@all-pipes:
- shard-dg2-set2: [PASS][4] -> [DMESG-WARN][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_cursor_legacy@torture-move@all-pipes.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-432/igt@kms_cursor_legacy@torture-move@all-pipes.html
* igt@kms_flip@dpms-off-confusion-interruptible@b-dp2:
- shard-bmg: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-2/igt@kms_flip@dpms-off-confusion-interruptible@b-dp2.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-1/igt@kms_flip@dpms-off-confusion-interruptible@b-dp2.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-5:
- shard-dg2-set2: NOTRUN -> [FAIL][8]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-5.html
* igt@kms_psr@fbc-psr2-basic@edp-1:
- shard-lnl: [PASS][9] -> [FAIL][10] +1 other test fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-6/igt@kms_psr@fbc-psr2-basic@edp-1.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-1/igt@kms_psr@fbc-psr2-basic@edp-1.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: NOTRUN -> [SKIP][11] +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@xe_exec_compute_mode@lr-mode-workload:
- shard-dg2-set2: [PASS][12] -> [INCOMPLETE][13]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@xe_exec_compute_mode@lr-mode-workload.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-432/igt@xe_exec_compute_mode@lr-mode-workload.html
#### Warnings ####
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: [SKIP][14] ([Intel XE#2887]) -> [SKIP][15]
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-4/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
New tests
---------
New tests have been introduced between XEIGT_8100_full and XEIGTPW_12068_full:
### New IGT tests (1) ###
* igt@xe_ccs@large-ctrl-surf-copy:
- Statuses : 3 pass(s)
- Exec time: [0.36, 0.49] s
Known issues
------------
Here are the changes found in XEIGTPW_12068_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotrebind:
- shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#1885]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@core_hotunplug@hotrebind.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@core_hotunplug@hotrebind.html
* igt@core_hotunplug@unbind-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1885]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@core_hotunplug@unbind-rebind.html
* igt@fbdev@eof:
- shard-bmg: [PASS][19] -> [SKIP][20] ([Intel XE#2134])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-5/igt@fbdev@eof.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@fbdev@eof.html
* igt@fbdev@read:
- shard-dg2-set2: [PASS][21] -> [SKIP][22] ([Intel XE#2134]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@fbdev@read.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@fbdev@read.html
* igt@kms_addfb_basic@bad-pitch-63:
- shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2461])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-7/igt@kms_addfb_basic@bad-pitch-63.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_addfb_basic@bad-pitch-63.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-dg2-set2: [PASS][25] -> [SKIP][26] ([Intel XE#2423] / [i915#2575]) +98 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
- shard-lnl: [PASS][27] -> [FAIL][28] ([Intel XE#1701]) +1 other test fail
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-2/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][29] -> [FAIL][30] ([Intel XE#1426]) +1 other test fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-433/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#316]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-464/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1407])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg2-set2: [PASS][33] -> [SKIP][34] ([Intel XE#2890]) +31 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#829])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#619])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#1124]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#1124]) +13 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#367])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-5/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#367]) +5 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#787]) +96 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#2887]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#2669]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#455] / [Intel XE#787]) +28 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [PASS][46] -> [INCOMPLETE][47] ([Intel XE#1195] / [Intel XE#3113])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][48] ([Intel XE#1195])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#2907]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#314])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-433/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@dp-audio:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#373]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-2/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#306]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-435/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-max:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2325])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-1/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#373]) +10 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-463/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2252])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_content_protection@legacy:
- shard-dg2-set2: NOTRUN -> [FAIL][56] ([Intel XE#1178]) +1 other test fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-435/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent@pipe-a-dp-5:
- shard-dg2-set2: NOTRUN -> [FAIL][57] ([Intel XE#1188])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-466/igt@kms_content_protection@uevent@pipe-a-dp-5.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#308]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1424])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-256x256:
- shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#3189]) +8 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-256x256.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-256x256.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2321]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#2321])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#309]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#323]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@torture-move:
- shard-dg2-set2: [PASS][66] -> [DMESG-WARN][67] ([Intel XE#3184])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_cursor_legacy@torture-move.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-432/igt@kms_cursor_legacy@torture-move.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#301]) +6 other tests fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1421])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-8/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@busy-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#2423] / [i915#2575]) +57 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_flip@busy-flip.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: [PASS][72] -> [FAIL][73] ([Intel XE#3149] / [Intel XE#886])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1:
- shard-lnl: [PASS][74] -> [FAIL][75] ([Intel XE#886]) +2 other tests fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1:
- shard-lnl: NOTRUN -> [FAIL][76] ([Intel XE#886]) +3 other tests fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-8/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-lnl: [PASS][77] -> [FAIL][78] ([Intel XE#3149] / [Intel XE#3152])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp4:
- shard-dg2-set2: [PASS][79] -> [FAIL][80] ([Intel XE#301]) +4 other tests fail
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][81] -> [FAIL][82] ([Intel XE#3149])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip@plain-flip-fb-recreate@c-edp1:
- shard-lnl: [PASS][83] -> [FAIL][84] ([Intel XE#3403] / [Intel XE#886]) +1 other test fail
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-1/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#455]) +18 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@basic:
- shard-dg2-set2: [PASS][86] -> [SKIP][87] ([Intel XE#2351])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@kms_frontbuffer_tracking@basic.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#651]) +34 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2311]) +6 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#651])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [PASS][91] -> [SKIP][92] ([Intel XE#2351] / [Intel XE#2890]) +10 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2351] / [Intel XE#2890]) +23 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [FAIL][94] ([Intel XE#2333]) +1 other test fail
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2890]) +57 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#656]) +7 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2313]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#653]) +35 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2927])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-464/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#346])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-8/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#356])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-463/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-bmg: [PASS][102] -> [SKIP][103] ([Intel XE#829]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-2/igt@kms_plane@pixel-format-source-clamping.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [PASS][104] -> [FAIL][105] ([Intel XE#616]) +1 other test fail
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-463/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: NOTRUN -> [FAIL][106] ([Intel XE#361])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2763]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#870])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-464/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][110] -> [FAIL][111] ([Intel XE#1430])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-2/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@cursor:
- shard-lnl: [PASS][112] -> [DMESG-WARN][113] ([Intel XE#3184])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-5/igt@kms_pm_rpm@cursor.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-4/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@i2c:
- shard-dg2-set2: [PASS][114] -> [SKIP][115] ([Intel XE#2446]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@kms_pm_rpm@i2c.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2446]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#1489])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#2893])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-2/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1489]) +6 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-464/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1122])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-435/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2234] / [Intel XE#2850])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-6/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1406]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-1/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2351])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-suspend:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#3189]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_psr@psr2-suspend.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1127])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-464/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [FAIL][127] ([Intel XE#1729])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-lnl: [PASS][128] -> [FAIL][129] ([Intel XE#899]) +2 other tests fail
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak.html
* igt@testdisplay:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2423]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@testdisplay.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#1123])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#1126]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eudebug@basic-client:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2905]) +3 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-5/igt@xe_eudebug@basic-client.html
* igt@xe_eudebug@multiple-sessions:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2905]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-5/igt@xe_eudebug@multiple-sessions.html
* igt@xe_eudebug_online@debugger-reopen:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2905]) +11 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-463/igt@xe_eudebug_online@debugger-reopen.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: NOTRUN -> [FAIL][136] ([Intel XE#1000])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#688]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-3/igt@xe_evict@evict-mixed-threads-small-multi-vm.html
* igt@xe_exec_basic@many-null-rebind:
- shard-dg2-set2: [PASS][138] -> [SKIP][139] ([Intel XE#1130]) +194 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@xe_exec_basic@many-null-rebind.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#1392])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2322])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-4/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm:
- shard-bmg: [PASS][142] -> [FAIL][143] ([Intel XE#1630])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm:
- shard-lnl: [PASS][144] -> [FAIL][145] ([Intel XE#3320])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-5/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-1/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch:
- shard-lnl: [PASS][146] -> [FAIL][147] ([Intel XE#1630])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-5/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-8/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#288]) +27 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: [PASS][149] -> [FAIL][150] ([Intel XE#2136])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@xe_module_load@many-reload.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@xe_module_load@many-reload.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: NOTRUN -> [FAIL][151] ([Intel XE#2136])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2541]) +7 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-432/igt@xe_oa@polling-small-buf.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#1337])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-464/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#2839] / [Intel XE#977])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-432/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#979])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-433/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#2284] / [Intel XE#366])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-432/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s2idle-exec-after:
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#1130]) +87 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s4-exec-after:
- shard-lnl: [PASS][158] -> [ABORT][159] ([Intel XE#1358] / [Intel XE#1607])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-4/igt@xe_pm@s4-exec-after.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-2/igt@xe_pm@s4-exec-after.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#944])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-8/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-invalid-query:
- shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#944]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-435/igt@xe_query@multigpu-query-invalid-query.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#944])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-4/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_wedged@basic-wedged:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][163] ([Intel XE#2919])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-433/igt@xe_wedged@basic-wedged.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-lnl: [PASS][164] -> [DMESG-WARN][165] ([Intel XE#3119])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-7/igt@xe_wedged@wedged-at-any-timeout.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-8/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][166] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][167]
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][168] ([Intel XE#1195]) -> [PASS][169]
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][170] ([Intel XE#3113]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [INCOMPLETE][172] ([Intel XE#1195] / [Intel XE#3124]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][174] -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_color@ctm-0-50@pipe-c-edp-1:
- shard-lnl: [DMESG-WARN][176] ([Intel XE#2929]) -> [PASS][177] +1 other test pass
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-8/igt@kms_color@ctm-0-50@pipe-c-edp-1.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-4/igt@kms_color@ctm-0-50@pipe-c-edp-1.html
* igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-edp-1:
- shard-lnl: [FAIL][178] ([Intel XE#2577]) -> [PASS][179] +1 other test pass
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-4/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-edp-1.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-8/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-edp-1.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [FAIL][180] ([Intel XE#1475]) -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-435/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
- shard-lnl: [FAIL][182] ([Intel XE#1475]) -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [FAIL][184] ([Intel XE#301]) -> [PASS][185] +3 other tests pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [FAIL][186] ([Intel XE#886]) -> [PASS][187] +4 other tests pass
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-7/igt@kms_flip@blocking-wf_vblank.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-8/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][188] ([Intel XE#455]) -> [PASS][189]
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_hdr@invalid-hdr.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-466/igt@kms_hdr@invalid-hdr.html
* igt@kms_lease@lease-uevent:
- shard-lnl: [FAIL][190] -> [PASS][191] +1 other test pass
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-5/igt@kms_lease@lease-uevent.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-8/igt@kms_lease@lease-uevent.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][192] ([Intel XE#718]) -> [PASS][193]
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race:
- shard-lnl: [FAIL][194] ([Intel XE#1630]) -> [PASS][195] +2 other tests pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-1/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race:
- shard-bmg: [FAIL][196] ([Intel XE#1630]) -> [PASS][197] +2 other tests pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-4/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-4/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html
* igt@xe_gt_freq@freq_suspend:
- shard-dg2-set2: [ABORT][198] ([Intel XE#2625]) -> [PASS][199]
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-432/igt@xe_gt_freq@freq_suspend.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-433/igt@xe_gt_freq@freq_suspend.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][200] ([Intel XE#2136]) -> [PASS][201]
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@xe_module_load@reload.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-435/igt@xe_module_load@reload.html
- shard-bmg: [FAIL][202] ([Intel XE#2136]) -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-6/igt@xe_module_load@reload.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-3/igt@xe_module_load@reload.html
* igt@xe_pm@s2idle-mocs:
- shard-lnl: [DMESG-WARN][204] ([Intel XE#2932]) -> [PASS][205]
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-3/igt@xe_pm@s2idle-mocs.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-6/igt@xe_pm@s2idle-mocs.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-dg2-set2: [ABORT][206] ([Intel XE#1694]) -> [PASS][207]
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-prefetch.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-435/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s4-basic-exec:
- shard-lnl: [ABORT][208] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][209]
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-2/igt@xe_pm@s4-basic-exec.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-6/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm@s4-mocs:
- shard-lnl: [ABORT][210] ([Intel XE#1794]) -> [PASS][211]
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-2/igt@xe_pm@s4-mocs.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-7/igt@xe_pm@s4-mocs.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-bmg: [SKIP][212] ([Intel XE#2327]) -> [SKIP][213] ([Intel XE#829])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][214] ([Intel XE#316]) -> [SKIP][215] ([Intel XE#2351] / [Intel XE#2890]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-0:
- shard-lnl: [DMESG-WARN][216] ([Intel XE#1725]) -> [DMESG-FAIL][217] ([Intel XE#1725])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-1/igt@kms_big_fb@linear-64bpp-rotate-0.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-8/igt@kms_big_fb@linear-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][218] ([Intel XE#316]) -> [SKIP][219] ([Intel XE#2890]) +3 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-bmg: [SKIP][220] ([Intel XE#1124]) -> [SKIP][221] ([Intel XE#829]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][222] ([Intel XE#1124]) -> [SKIP][223] ([Intel XE#2890]) +3 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][224] ([Intel XE#1124]) -> [SKIP][225] ([Intel XE#2351] / [Intel XE#2890]) +4 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: [SKIP][226] ([Intel XE#2191]) -> [SKIP][227] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-435/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-bmg: [SKIP][228] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][229] ([Intel XE#3189])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][230] ([Intel XE#367]) -> [SKIP][231] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][232] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][233] ([Intel XE#2890]) +11 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-435/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][234] ([Intel XE#2907]) -> [SKIP][235] ([Intel XE#2890]) +2 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][236] ([Intel XE#1195]) -> [INCOMPLETE][237] ([Intel XE#1195] / [Intel XE#1727])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][238] ([Intel XE#1195] / [Intel XE#1727]) -> [INCOMPLETE][239] ([Intel XE#1195] / [Intel XE#2692])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][240] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][241] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-dg2-set2: [SKIP][242] ([Intel XE#306]) -> [SKIP][243] ([Intel XE#2423] / [i915#2575])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_chamelium_color@ctm-blue-to-red.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: [SKIP][244] ([Intel XE#2252]) -> [SKIP][245] ([Intel XE#3189]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-2/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][246] ([Intel XE#373]) -> [SKIP][247] ([Intel XE#2423] / [i915#2575]) +12 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [FAIL][248] ([Intel XE#1178]) -> [SKIP][249] ([Intel XE#2423] / [i915#2575])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-435/igt@kms_content_protection@atomic-dpms.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][250] ([Intel XE#307]) -> [SKIP][251] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: [FAIL][252] ([Intel XE#1178]) -> [TIMEOUT][253] ([Intel XE#3208])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_content_protection@lic-type-0.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-463/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: [SKIP][254] ([Intel XE#308]) -> [SKIP][255] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2-set2: [SKIP][256] ([Intel XE#455]) -> [SKIP][257] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-432/igt@kms_dsc@dsc-with-formats.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][258] ([Intel XE#455]) -> [SKIP][259] ([Intel XE#2890]) +4 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-435/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][260] ([Intel XE#1138]) -> [SKIP][261] ([Intel XE#2423] / [i915#2575])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@kms_feature_discovery@display-4x.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2-set2: [FAIL][262] ([Intel XE#301]) -> [SKIP][263] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-lnl: [FAIL][264] ([Intel XE#886]) -> [FAIL][265] ([Intel XE#3403] / [Intel XE#886])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][266] ([Intel XE#2311]) -> [SKIP][267] ([Intel XE#3189]) +4 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: [SKIP][268] ([Intel XE#651]) -> [SKIP][269] ([Intel XE#2351] / [Intel XE#2890]) +12 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-suspend.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [FAIL][270] ([Intel XE#2333]) -> [SKIP][271] ([Intel XE#3189])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][272] ([Intel XE#651]) -> [SKIP][273] ([Intel XE#2890]) +24 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][274] ([Intel XE#653]) -> [SKIP][275] ([Intel XE#2890]) +27 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
- shard-dg2-set2: [SKIP][276] ([Intel XE#653]) -> [SKIP][277] ([Intel XE#2351] / [Intel XE#2890]) +8 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: [SKIP][278] ([Intel XE#2350]) -> [SKIP][279] ([Intel XE#3189])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][280] ([Intel XE#2313]) -> [SKIP][281] ([Intel XE#3189]) +3 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2-set2: [FAIL][282] ([Intel XE#3312]) -> [SKIP][283] ([Intel XE#2423] / [i915#2575])
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_hdr@brightness-with-hdr.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: [SKIP][284] ([Intel XE#346]) -> [SKIP][285] ([Intel XE#2890]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_joiner@basic-big-joiner.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: [SKIP][286] ([Intel XE#2927]) -> [SKIP][287] ([Intel XE#2890])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][288] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][289] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: [SKIP][290] ([Intel XE#2938]) -> [SKIP][291] ([Intel XE#2890])
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: [SKIP][292] ([Intel XE#870]) -> [SKIP][293] ([Intel XE#2890])
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-432/igt@kms_pm_backlight@fade.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: [FAIL][294] ([Intel XE#1430]) -> [SKIP][295] ([Intel XE#3189])
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-6/igt@kms_pm_dc@dc6-dpms.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][296] ([Intel XE#908]) -> [SKIP][297] ([Intel XE#2890])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: [SKIP][298] ([Intel XE#1489]) -> [SKIP][299] ([Intel XE#3189]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][300] ([Intel XE#1489]) -> [SKIP][301] ([Intel XE#2890]) +11 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: [SKIP][302] ([Intel XE#1122]) -> [SKIP][303] ([Intel XE#2890])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-432/igt@kms_psr2_su@page_flip-p010.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-bmg: [SKIP][304] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][305] ([Intel XE#3189]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-5/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-bmg-8/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@pr-primary-page-flip:
- shard-dg2-set2: [SKIP][306] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][307] ([Intel XE#2351] / [Intel XE#2890]) +3 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_psr@pr-primary-page-flip.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: [SKIP][308] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][309] ([Intel XE#2890]) +7 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_psr@pr-sprite-blt.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-dg2-set2: [SKIP][310] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][311] ([Intel XE#2351])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_psr@psr-cursor-plane-move.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: [SKIP][312] -> [SKIP][313] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_rotation_crc@bad-pixel-format.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][314] ([Intel XE#1127]) -> [SKIP][315] ([Intel XE#2423] / [i915#2575])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][316] ([Intel XE#362]) -> [SKIP][317] ([Intel XE#1500])
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: [SKIP][318] ([Intel XE#455]) -> [SKIP][319] ([Intel XE#2423] / [i915#2575]) +8 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_vrr@flipline.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@kms_vrr@flipline.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][320] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][321] ([Intel XE#2423] / [i915#2575])
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-dg2-set2: [SKIP][322] ([Intel XE#1126]) -> [SKIP][323] ([Intel XE#1130])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0x3fff.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: [SKIP][324] ([Intel XE#2905]) -> [SKIP][325] ([Intel XE#1130]) +10 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: [FAIL][326] ([Intel XE#1600]) -> [SKIP][327] ([Intel XE#1130])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@xe_evict@evict-large-multi-vm-cm.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: [SKIP][328] ([Intel XE#288]) -> [SKIP][329] ([Intel XE#1130]) +32 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: [SKIP][330] ([Intel XE#255]) -> [SKIP][331] ([Intel XE#1130])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@xe_huc_copy@huc_copy.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@xe_huc_copy@huc_copy.html
* igt@xe_oa@syncs-userptr-wait-cfg:
- shard-dg2-set2: [SKIP][332] ([Intel XE#2541]) -> [SKIP][333] ([Intel XE#1130]) +9 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-435/igt@xe_oa@syncs-userptr-wait-cfg.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@xe_oa@syncs-userptr-wait-cfg.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [FAIL][334] ([Intel XE#1173]) -> [SKIP][335] ([Intel XE#1061])
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@xe_peer2peer@read.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][336] ([Intel XE#2284]) -> [SKIP][337] ([Intel XE#1130])
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@xe_pm@d3cold-mocs.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: [SKIP][338] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][339] ([Intel XE#1130])
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@xe_pm@d3cold-multiple-execs.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s2idle-basic:
- shard-dg2-set2: [ABORT][340] ([Intel XE#1358] / [Intel XE#1794]) -> [SKIP][341] ([Intel XE#1130])
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-432/igt@xe_pm@s2idle-basic.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@xe_pm@s2idle-basic.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: [SKIP][342] ([Intel XE#944]) -> [SKIP][343] ([Intel XE#1130]) +1 other test skip
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@xe_query@multigpu-query-engines.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@xe_query@multigpu-query-engines.html
* igt@xe_tlb@basic-tlb:
- shard-dg2-set2: [FAIL][344] ([Intel XE#2922]) -> [SKIP][345] ([Intel XE#1130])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@xe_tlb@basic-tlb.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/shard-dg2-434/igt@xe_tlb@basic-tlb.html
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[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#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1630]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1630
[Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2461
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2929
[Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3152
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#3189]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3189
[Intel XE#3208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3208
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3312
[Intel XE#3320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3320
[Intel XE#3403]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3403
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8100 -> IGTPW_12068
* Linux: xe-2179-438ef86a725b59a171dba81fc258bb23a0ff536c -> xe-2188-5f445c6723de9ac7087170f4ee8fcb2050ab8346
IGTPW_12068: 12068
IGT_8100: 84e42580f918da926481fd2fb37be01451d6ee9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2179-438ef86a725b59a171dba81fc258bb23a0ff536c: 438ef86a725b59a171dba81fc258bb23a0ff536c
xe-2188-5f445c6723de9ac7087170f4ee8fcb2050ab8346: 5f445c6723de9ac7087170f4ee8fcb2050ab8346
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/index.html
[-- Attachment #2: Type: text/html, Size: 103729 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: ✗ CI.xeFULL: failure for Extend intel_blt to support large ctrl-surf-copy blits
2024-11-09 11:49 ` ✗ CI.xeFULL: " Patchwork
@ 2024-11-12 8:30 ` Zbigniew Kempczyński
0 siblings, 0 replies; 11+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-12 8:30 UTC (permalink / raw)
To: igt-dev
On Sat, Nov 09, 2024 at 11:49:53AM +0000, Patchwork wrote:
> Patch Details
>
> Series: Extend intel_blt to support large ctrl-surf-copy blits
> URL: https://patchwork.freedesktop.org/series/141084/
> State: failure
> Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12068/index.html
>
> CI Bug Log - changes from XEIGT_8100_full -> XEIGTPW_12068_full
>
> Summary
>
> FAILURE
>
> Serious unknown changes coming with XEIGTPW_12068_full absolutely need to
> be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_12068_full, please notify your bug team
> (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in
> CI.
>
> Participating hosts (4 -> 4)
>
> No changes in participating hosts
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> XEIGTPW_12068_full:
>
> IGT changes
>
> Possible regressions
>
> * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
>
> * shard-bmg: PASS -> SKIP +2 other tests skip
Skip is related to missing crt-0 control file so this is not related
to the patch series.
> * igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
>
> * shard-dg2-set2: NOTRUN -> TIMEOUT
> * igt@kms_cursor_legacy@torture-move@all-pipes:
>
> * shard-dg2-set2: PASS -> DMESG-WARN
There are currently 3 tests which are using ctrl-surf-copy blits
changed in the series and they are: gem_ccs, xe_ccs and kms_ccs.
So any issue which occurs here is not related to the patch series.
--
Zbigniew
> * igt@kms_flip@dpms-off-confusion-interruptible@b-dp2:
>
> * shard-bmg: PASS -> INCOMPLETE +1 other test incomplete
> * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-5:
>
> * shard-dg2-set2: NOTRUN -> FAIL
> * igt@kms_psr@fbc-psr2-basic@edp-1:
>
> * shard-lnl: PASS -> FAIL +1 other test fail
> * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
>
> * shard-dg2-set2: NOTRUN -> SKIP +1 other test skip
> * igt@xe_exec_compute_mode@lr-mode-workload:
>
> * shard-dg2-set2: PASS -> INCOMPLETE
>
> Warnings
>
> * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc:
> * shard-bmg: SKIP (Intel XE#2887) -> SKIP
>
> New tests
>
> New tests have been introduced between XEIGT_8100_full and
> XEIGTPW_12068_full:
>
> New IGT tests (1)
>
> * igt@xe_ccs@large-ctrl-surf-copy:
> * Statuses : 3 pass(s)
> * Exec time: [0.36, 0.49] s
>
> Known issues
>
> Here are the changes found in XEIGTPW_12068_full that come from known
> issues:
>
> IGT changes
>
> Issues hit
>
> * igt@core_hotunplug@hotrebind:
>
> * shard-dg2-set2: PASS -> SKIP (Intel XE#1885) +1 other test skip
> * igt@core_hotunplug@unbind-rebind:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1885) +1 other test skip
> * igt@fbdev@eof:
>
> * shard-bmg: PASS -> SKIP (Intel XE#2134)
> * igt@fbdev@read:
>
> * shard-dg2-set2: PASS -> SKIP (Intel XE#2134) +2 other tests skip
> * igt@kms_addfb_basic@bad-pitch-63:
>
> * shard-bmg: PASS -> SKIP (Intel XE#2461)
> * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
>
> * shard-dg2-set2: PASS -> SKIP (Intel XE#2423 / i915#2575) +98
> other tests skip
> * shard-lnl: PASS -> FAIL (Intel XE#1701) +1 other test fail
> * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6:
>
> * shard-dg2-set2: PASS -> FAIL (Intel XE#1426) +1 other test fail
> * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#316) +3 other tests skip
> * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1407)
> * igt@kms_big_fb@4-tiled-addfb-size-overflow:
>
> * shard-dg2-set2: PASS -> SKIP (Intel XE#2890) +31 other tests skip
> * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#829)
> * igt@kms_big_fb@y-tiled-addfb:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#619)
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#1124) +1 other test skip
> * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1124) +13 other tests
> skip
> * igt@kms_bw@linear-tiling-3-displays-2560x1440p:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#367)
> * igt@kms_bw@linear-tiling-3-displays-3840x2160p:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#367) +5 other tests skip
> * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#787) +96 other tests
> skip
> * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2652 / Intel XE#787) +8 other
> tests skip
> * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2887) +2 other tests skip
> * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2669) +3 other tests skip
> * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455 / Intel XE#787) +28
> other tests skip
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
>
> * shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#1195 / Intel
> XE#3113)
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
>
> * shard-dg2-set2: NOTRUN -> INCOMPLETE (Intel XE#1195)
> * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2907) +3 other tests
> skip
> * igt@kms_cdclk@mode-transition-all-outputs:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#314)
> * igt@kms_chamelium_audio@dp-audio:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#373) +1 other test skip
> * igt@kms_chamelium_color@ctm-limited-range:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#306) +1 other test skip
> * igt@kms_chamelium_color@ctm-max:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2325)
> * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#373) +10 other tests
> skip
> * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2252)
> * igt@kms_content_protection@legacy:
>
> * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1178) +1 other test fail
> * igt@kms_content_protection@uevent@pipe-a-dp-5:
>
> * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1188)
> * igt@kms_cursor_crc@cursor-offscreen-512x512:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#308) +3 other tests skip
> * igt@kms_cursor_crc@cursor-offscreen-max-size:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1424)
> * igt@kms_cursor_crc@cursor-onscreen-256x256:
>
> * shard-bmg: PASS -> SKIP (Intel XE#3189) +8 other tests skip
> * igt@kms_cursor_crc@cursor-onscreen-512x512:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2321) +1 other test skip
> * igt@kms_cursor_crc@cursor-sliding-512x170:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2321)
> * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#309) +1 other test skip
> * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#323) +2 other tests skip
> * igt@kms_cursor_legacy@torture-move:
>
> * shard-dg2-set2: PASS -> DMESG-WARN (Intel XE#3184)
> * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
>
> * shard-bmg: PASS -> FAIL (Intel XE#301) +6 other tests fail
> * igt@kms_flip@2x-flip-vs-panning-interruptible:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1421)
> * igt@kms_flip@busy-flip:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2423 / i915#2575) +57
> other tests skip
> * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
>
> * shard-lnl: PASS -> FAIL (Intel XE#3149 / Intel XE#886)
> * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1:
>
> * shard-lnl: PASS -> FAIL (Intel XE#886) +2 other tests fail
> * igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1:
>
> * shard-lnl: NOTRUN -> FAIL (Intel XE#886) +3 other tests fail
> * igt@kms_flip@flip-vs-expired-vblank:
>
> * shard-lnl: PASS -> FAIL (Intel XE#3149 / Intel XE#3152)
> * igt@kms_flip@flip-vs-expired-vblank@a-dp4:
>
> * shard-dg2-set2: PASS -> FAIL (Intel XE#301) +4 other tests fail
> * igt@kms_flip@flip-vs-expired-vblank@c-edp1:
>
> * shard-lnl: PASS -> FAIL (Intel XE#3149)
> * igt@kms_flip@plain-flip-fb-recreate@c-edp1:
>
> * shard-lnl: PASS -> FAIL (Intel XE#3403 / Intel XE#886) +1 other
> test fail
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455) +18 other tests
> skip
> * igt@kms_frontbuffer_tracking@basic:
>
> * shard-dg2-set2: PASS -> SKIP (Intel XE#2351)
> * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#651) +34 other tests
> skip
> * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2311) +6 other tests skip
> * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#651)
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
>
> * shard-dg2-set2: PASS -> SKIP (Intel XE#2351 / Intel XE#2890) +10
> other tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2351 / Intel XE#2890)
> +23 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
>
> * shard-bmg: NOTRUN -> FAIL (Intel XE#2333) +1 other test fail
> * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2890) +57 other tests
> skip
> * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#656) +7 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2313) +2 other tests skip
> * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#653) +35 other tests
> skip
> * igt@kms_joiner@basic-ultra-joiner:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2927)
> * igt@kms_joiner@invalid-modeset-big-joiner:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#346)
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#356)
> * igt@kms_plane@pixel-format-source-clamping:
>
> * shard-bmg: PASS -> SKIP (Intel XE#829) +1 other test skip
> * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
>
> * shard-dg2-set2: PASS -> FAIL (Intel XE#616) +1 other test fail
> * igt@kms_plane_scaling@intel-max-src-size:
>
> * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#361)
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2763) +2 other tests
> skip
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2763 / Intel XE#455) +1
> other test skip
> * igt@kms_pm_backlight@bad-brightness:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#870)
> * igt@kms_pm_dc@dc6-dpms:
>
> * shard-lnl: PASS -> FAIL (Intel XE#1430)
> * igt@kms_pm_rpm@cursor:
>
> * shard-lnl: PASS -> DMESG-WARN (Intel XE#3184)
> * igt@kms_pm_rpm@i2c:
>
> * shard-dg2-set2: PASS -> SKIP (Intel XE#2446) +2 other tests skip
> * igt@kms_pm_rpm@modeset-non-lpsp:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2446) +1 other test skip
> * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#1489)
> * igt@kms_psr2_sf@pr-cursor-plane-update-sf:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2893)
> * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1489) +6 other tests
> skip
> * igt@kms_psr2_su@page_flip-xrgb8888:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1122)
> * igt@kms_psr@fbc-psr-no-drrs:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2234 / Intel XE#2850)
> * igt@kms_psr@fbc-psr2-primary-render:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2850 / Intel XE#929) +10
> other tests skip
> * igt@kms_psr@pr-sprite-plane-move:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1406) +2 other tests skip
> * igt@kms_psr@psr-sprite-plane-onoff:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2351)
> * igt@kms_psr@psr2-suspend:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#3189) +1 other test skip
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1127)
> * igt@kms_tiled_display@basic-test-pattern:
>
> * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1729)
> * igt@kms_universal_plane@cursor-fb-leak:
>
> * shard-lnl: PASS -> FAIL (Intel XE#899) +2 other tests fail
> * igt@testdisplay:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2423) +1 other test skip
> * igt@xe_copy_basic@mem-copy-linear-0x369:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1123)
> * igt@xe_copy_basic@mem-set-linear-0xfffe:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1126) +1 other test skip
> * igt@xe_eudebug@basic-client:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2905) +3 other tests skip
> * igt@xe_eudebug@multiple-sessions:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2905) +1 other test skip
> * igt@xe_eudebug_online@debugger-reopen:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2905) +11 other tests
> skip
> * igt@xe_evict@evict-mixed-many-threads-large:
>
> * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1000)
> * igt@xe_evict@evict-mixed-threads-small-multi-vm:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#688) +1 other test skip
> * igt@xe_exec_basic@many-null-rebind:
>
> * shard-dg2-set2: PASS -> SKIP (Intel XE#1130) +194 other tests
> skip
> * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1392)
> * igt@xe_exec_basic@multigpu-once-userptr-invalidate-race:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2322)
> * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm:
>
> * shard-bmg: PASS -> FAIL (Intel XE#1630)
> * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm:
>
> * shard-lnl: PASS -> FAIL (Intel XE#3320)
> * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch:
>
> * shard-lnl: PASS -> FAIL (Intel XE#1630)
> * igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#288) +27 other tests
> skip
> * igt@xe_module_load@many-reload:
>
> * shard-dg2-set2: PASS -> FAIL (Intel XE#2136)
> * igt@xe_module_load@reload-no-display:
>
> * shard-bmg: NOTRUN -> FAIL (Intel XE#2136)
> * igt@xe_oa@polling-small-buf:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2541) +7 other tests
> skip
> * igt@xe_pat@display-vs-wb-transient:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1337)
> * igt@xe_pat@pat-index-xe2:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2839 / Intel XE#977)
> * igt@xe_pat@pat-index-xelpg:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#979)
> * igt@xe_pm@d3cold-basic-exec:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2284 / Intel XE#366)
> * igt@xe_pm@s2idle-exec-after:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1130) +87 other tests
> skip
> * igt@xe_pm@s4-exec-after:
>
> * shard-lnl: PASS -> ABORT (Intel XE#1358 / Intel XE#1607)
> * igt@xe_query@multigpu-query-invalid-extension:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#944)
> * igt@xe_query@multigpu-query-invalid-query:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#944) +1 other test skip
> * igt@xe_query@multigpu-query-mem-usage:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#944)
> * igt@xe_wedged@basic-wedged:
>
> * shard-dg2-set2: NOTRUN -> DMESG-WARN (Intel XE#2919)
> * igt@xe_wedged@wedged-at-any-timeout:
>
> * shard-lnl: PASS -> DMESG-WARN (Intel XE#3119)
>
> Possible fixes
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
>
> * shard-dg2-set2: INCOMPLETE (Intel XE#1195 / Intel XE#1727) ->
> PASS
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
>
> * shard-dg2-set2: INCOMPLETE (Intel XE#1195) -> PASS
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
>
> * shard-dg2-set2: DMESG-WARN (Intel XE#3113) -> PASS
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
>
> * shard-dg2-set2: INCOMPLETE (Intel XE#1195 / Intel XE#3124) ->
> PASS
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
>
> * shard-dg2-set2: DMESG-WARN -> PASS
> * igt@kms_color@ctm-0-50@pipe-c-edp-1:
>
> * shard-lnl: DMESG-WARN (Intel XE#2929) -> PASS +1 other test pass
> * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-edp-1:
>
> * shard-lnl: FAIL (Intel XE#2577) -> PASS +1 other test pass
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>
> * shard-dg2-set2: FAIL (Intel XE#1475) -> PASS
> * shard-lnl: FAIL (Intel XE#1475) -> PASS
> * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
>
> * shard-bmg: FAIL (Intel XE#301) -> PASS +3 other tests pass
> * igt@kms_flip@blocking-wf_vblank:
>
> * shard-lnl: FAIL (Intel XE#886) -> PASS +4 other tests pass
> * igt@kms_hdr@invalid-hdr:
>
> * shard-dg2-set2: SKIP (Intel XE#455) -> PASS
> * igt@kms_lease@lease-uevent:
>
> * shard-lnl: FAIL -> PASS +1 other test pass
> * igt@kms_pm_dc@dc5-psr:
>
> * shard-lnl: FAIL (Intel XE#718) -> PASS
> * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race:
>
> * shard-lnl: FAIL (Intel XE#1630) -> PASS +2 other tests pass
> * igt@xe_exec_fault_mode@many-userptr-invalidate-race:
>
> * shard-bmg: FAIL (Intel XE#1630) -> PASS +2 other tests pass
> * igt@xe_gt_freq@freq_suspend:
>
> * shard-dg2-set2: ABORT (Intel XE#2625) -> PASS
> * igt@xe_module_load@reload:
>
> * shard-dg2-set2: FAIL (Intel XE#2136) -> PASS
> * shard-bmg: FAIL (Intel XE#2136) -> PASS
> * igt@xe_pm@s2idle-mocs:
>
> * shard-lnl: DMESG-WARN (Intel XE#2932) -> PASS
> * igt@xe_pm@s2idle-vm-bind-prefetch:
>
> * shard-dg2-set2: ABORT (Intel XE#1694) -> PASS
> * igt@xe_pm@s4-basic-exec:
>
> * shard-lnl: ABORT (Intel XE#1358 / Intel XE#1607 / Intel XE#1794)
> -> PASS
> * igt@xe_pm@s4-mocs:
>
> * shard-lnl: ABORT (Intel XE#1794) -> PASS
>
> Warnings
>
> * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
>
> * shard-bmg: SKIP (Intel XE#2327) -> SKIP (Intel XE#829)
> * igt@kms_big_fb@linear-16bpp-rotate-90:
>
> * shard-dg2-set2: SKIP (Intel XE#316) -> SKIP (Intel XE#2351 /
> Intel XE#2890) +2 other tests skip
> * igt@kms_big_fb@linear-64bpp-rotate-0:
>
> * shard-lnl: DMESG-WARN (Intel XE#1725) -> DMESG-FAIL (Intel
> XE#1725)
> * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
>
> * shard-dg2-set2: SKIP (Intel XE#316) -> SKIP (Intel XE#2890) +3
> other tests skip
> * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
>
> * shard-bmg: SKIP (Intel XE#1124) -> SKIP (Intel XE#829) +1 other
> test skip
> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
>
> * shard-dg2-set2: SKIP (Intel XE#1124) -> SKIP (Intel XE#2890) +3
> other tests skip
> * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
>
> * shard-dg2-set2: SKIP (Intel XE#1124) -> SKIP (Intel XE#2351 /
> Intel XE#2890) +4 other tests skip
> * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
>
> * shard-dg2-set2: SKIP (Intel XE#2191) -> SKIP (Intel XE#2423 /
> i915#2575) +1 other test skip
> * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
>
> * shard-bmg: SKIP (Intel XE#2314 / Intel XE#2894) -> SKIP (Intel
> XE#3189)
> * igt@kms_bw@linear-tiling-1-displays-1920x1080p:
>
> * shard-dg2-set2: SKIP (Intel XE#367) -> SKIP (Intel XE#2423 /
> i915#2575) +4 other tests skip
> * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
>
> * shard-dg2-set2: SKIP (Intel XE#455 / Intel XE#787) -> SKIP (Intel
> XE#2890) +11 other tests skip
> * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
>
> * shard-dg2-set2: SKIP (Intel XE#2907) -> SKIP (Intel XE#2890) +2
> other tests skip
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
>
> * shard-dg2-set2: INCOMPLETE (Intel XE#1195) -> INCOMPLETE (Intel
> XE#1195 / Intel XE#1727)
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
>
> * shard-dg2-set2: INCOMPLETE (Intel XE#1195 / Intel XE#1727) ->
> INCOMPLETE (Intel XE#1195 / Intel XE#2692)
> * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs:
>
> * shard-dg2-set2: SKIP (Intel XE#455 / Intel XE#787) -> SKIP (Intel
> XE#2351 / Intel XE#2890) +1 other test skip
> * igt@kms_chamelium_color@ctm-blue-to-red:
>
> * shard-dg2-set2: SKIP (Intel XE#306) -> SKIP (Intel XE#2423 /
> i915#2575)
> * igt@kms_chamelium_frames@hdmi-aspect-ratio:
>
> * shard-bmg: SKIP (Intel XE#2252) -> SKIP (Intel XE#3189) +1 other
> test skip
> * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
>
> * shard-dg2-set2: SKIP (Intel XE#373) -> SKIP (Intel XE#2423 /
> i915#2575) +12 other tests skip
> * igt@kms_content_protection@atomic-dpms:
>
> * shard-dg2-set2: FAIL (Intel XE#1178) -> SKIP (Intel XE#2423 /
> i915#2575)
> * igt@kms_content_protection@dp-mst-lic-type-0:
>
> * shard-dg2-set2: SKIP (Intel XE#307) -> SKIP (Intel XE#2423 /
> i915#2575) +1 other test skip
> * igt@kms_content_protection@lic-type-0:
>
> * shard-dg2-set2: FAIL (Intel XE#1178) -> TIMEOUT (Intel XE#3208)
> * igt@kms_cursor_crc@cursor-offscreen-512x170:
>
> * shard-dg2-set2: SKIP (Intel XE#308) -> SKIP (Intel XE#2423 /
> i915#2575) +1 other test skip
> * igt@kms_dsc@dsc-with-formats:
>
> * shard-dg2-set2: SKIP (Intel XE#455) -> SKIP (Intel XE#2351 /
> Intel XE#2890) +1 other test skip
> * igt@kms_dsc@dsc-with-output-formats-with-bpc:
>
> * shard-dg2-set2: SKIP (Intel XE#455) -> SKIP (Intel XE#2890) +4
> other tests skip
> * igt@kms_feature_discovery@display-4x:
>
> * shard-dg2-set2: SKIP (Intel XE#1138) -> SKIP (Intel XE#2423 /
> i915#2575)
> * igt@kms_flip@flip-vs-expired-vblank-interruptible:
>
> * shard-dg2-set2: FAIL (Intel XE#301) -> SKIP (Intel XE#2423 /
> i915#2575) +1 other test skip
> * igt@kms_flip@wf_vblank-ts-check:
>
> * shard-lnl: FAIL (Intel XE#886) -> FAIL (Intel XE#3403 / Intel
> XE#886)
> * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
>
> * shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#3189) +4 other
> tests skip
> * igt@kms_frontbuffer_tracking@drrs-suspend:
>
> * shard-dg2-set2: SKIP (Intel XE#651) -> SKIP (Intel XE#2351 /
> Intel XE#2890) +12 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
>
> * shard-bmg: FAIL (Intel XE#2333) -> SKIP (Intel XE#3189)
> * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
>
> * shard-dg2-set2: SKIP (Intel XE#651) -> SKIP (Intel XE#2890) +24
> other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
>
> * shard-dg2-set2: SKIP (Intel XE#653) -> SKIP (Intel XE#2890) +27
> other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
>
> * shard-dg2-set2: SKIP (Intel XE#653) -> SKIP (Intel XE#2351 /
> Intel XE#2890) +8 other tests skip
> * igt@kms_frontbuffer_tracking@plane-fbc-rte:
>
> * shard-bmg: SKIP (Intel XE#2350) -> SKIP (Intel XE#3189)
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
>
> * shard-bmg: SKIP (Intel XE#2313) -> SKIP (Intel XE#3189) +3 other
> tests skip
> * igt@kms_hdr@brightness-with-hdr:
>
> * shard-dg2-set2: FAIL (Intel XE#3312) -> SKIP (Intel XE#2423 /
> i915#2575)
> * igt@kms_joiner@basic-big-joiner:
>
> * shard-dg2-set2: SKIP (Intel XE#346) -> SKIP (Intel XE#2890) +1
> other test skip
> * igt@kms_joiner@invalid-modeset-ultra-joiner:
>
> * shard-dg2-set2: SKIP (Intel XE#2927) -> SKIP (Intel XE#2890)
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
>
> * shard-dg2-set2: SKIP (Intel XE#2763 / Intel XE#455) -> SKIP
> (Intel XE#2423 / i915#2575) +1 other test skip
> * igt@kms_pm_backlight@brightness-with-dpms:
>
> * shard-dg2-set2: SKIP (Intel XE#2938) -> SKIP (Intel XE#2890)
> * igt@kms_pm_backlight@fade:
>
> * shard-dg2-set2: SKIP (Intel XE#870) -> SKIP (Intel XE#2890)
> * igt@kms_pm_dc@dc6-dpms:
>
> * shard-bmg: FAIL (Intel XE#1430) -> SKIP (Intel XE#3189)
> * igt@kms_pm_dc@deep-pkgc:
>
> * shard-dg2-set2: SKIP (Intel XE#908) -> SKIP (Intel XE#2890)
> * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
>
> * shard-bmg: SKIP (Intel XE#1489) -> SKIP (Intel XE#3189) +1 other
> test skip
> * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
>
> * shard-dg2-set2: SKIP (Intel XE#1489) -> SKIP (Intel XE#2890) +11
> other tests skip
> * igt@kms_psr2_su@page_flip-p010:
>
> * shard-dg2-set2: SKIP (Intel XE#1122) -> SKIP (Intel XE#2890)
> * igt@kms_psr@fbc-psr-sprite-plane-onoff:
>
> * shard-bmg: SKIP (Intel XE#2234 / Intel XE#2850) -> SKIP (Intel
> XE#3189) +1 other test skip
> * igt@kms_psr@pr-primary-page-flip:
>
> * shard-dg2-set2: SKIP (Intel XE#2850 / Intel XE#929) -> SKIP
> (Intel XE#2351 / Intel XE#2890) +3 other tests skip
> * igt@kms_psr@pr-sprite-blt:
>
> * shard-dg2-set2: SKIP (Intel XE#2850 / Intel XE#929) -> SKIP
> (Intel XE#2890) +7 other tests skip
> * igt@kms_psr@psr-cursor-plane-move:
>
> * shard-dg2-set2: SKIP (Intel XE#2850 / Intel XE#929) -> SKIP
> (Intel XE#2351)
> * igt@kms_rotation_crc@bad-pixel-format:
>
> * shard-dg2-set2: SKIP -> SKIP (Intel XE#2423 / i915#2575) +2 other
> tests skip
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
>
> * shard-dg2-set2: SKIP (Intel XE#1127) -> SKIP (Intel XE#2423 /
> i915#2575)
> * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
>
> * shard-dg2-set2: SKIP (Intel XE#362) -> SKIP (Intel XE#1500)
> * igt@kms_vrr@flipline:
>
> * shard-dg2-set2: SKIP (Intel XE#455) -> SKIP (Intel XE#2423 /
> i915#2575) +8 other tests skip
> * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
>
> * shard-dg2-set2: SKIP (Intel XE#1091 / Intel XE#2849) -> SKIP
> (Intel XE#2423 / i915#2575)
> * igt@xe_copy_basic@mem-set-linear-0x3fff:
>
> * shard-dg2-set2: SKIP (Intel XE#1126) -> SKIP (Intel XE#1130)
> * igt@xe_eudebug_online@interrupt-all-set-breakpoint:
>
> * shard-dg2-set2: SKIP (Intel XE#2905) -> SKIP (Intel XE#1130) +10
> other tests skip
> * igt@xe_evict@evict-large-multi-vm-cm:
>
> * shard-dg2-set2: FAIL (Intel XE#1600) -> SKIP (Intel XE#1130)
> * igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
>
> * shard-dg2-set2: SKIP (Intel XE#288) -> SKIP (Intel XE#1130) +32
> other tests skip
> * igt@xe_huc_copy@huc_copy:
>
> * shard-dg2-set2: SKIP (Intel XE#255) -> SKIP (Intel XE#1130)
> * igt@xe_oa@syncs-userptr-wait-cfg:
>
> * shard-dg2-set2: SKIP (Intel XE#2541) -> SKIP (Intel XE#1130) +9
> other tests skip
> * igt@xe_peer2peer@read:
>
> * shard-dg2-set2: FAIL (Intel XE#1173) -> SKIP (Intel XE#1061)
> * igt@xe_pm@d3cold-mocs:
>
> * shard-dg2-set2: SKIP (Intel XE#2284) -> SKIP (Intel XE#1130)
> * igt@xe_pm@d3cold-multiple-execs:
>
> * shard-dg2-set2: SKIP (Intel XE#2284 / Intel XE#366) -> SKIP
> (Intel XE#1130)
> * igt@xe_pm@s2idle-basic:
>
> * shard-dg2-set2: ABORT (Intel XE#1358 / Intel XE#1794) -> SKIP
> (Intel XE#1130)
> * igt@xe_query@multigpu-query-engines:
>
> * shard-dg2-set2: SKIP (Intel XE#944) -> SKIP (Intel XE#1130) +1
> other test skip
> * igt@xe_tlb@basic-tlb:
>
> * shard-dg2-set2: FAIL (Intel XE#2922) -> SKIP (Intel XE#1130)
>
> Build changes
>
> * IGT: IGT_8100 -> IGTPW_12068
> * Linux: xe-2179-438ef86a725b59a171dba81fc258bb23a0ff536c ->
> xe-2188-5f445c6723de9ac7087170f4ee8fcb2050ab8346
>
> IGTPW_12068: 12068
> IGT_8100: 84e42580f918da926481fd2fb37be01451d6ee9a @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> xe-2179-438ef86a725b59a171dba81fc258bb23a0ff536c:
> 438ef86a725b59a171dba81fc258bb23a0ff536c
> xe-2188-5f445c6723de9ac7087170f4ee8fcb2050ab8346:
> 5f445c6723de9ac7087170f4ee8fcb2050ab8346
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t 1/3] lib/intel_blt: Handle multiple ctrl-surf-copy blits on big surface
2024-11-08 6:47 ` [PATCH i-g-t 1/3] lib/intel_blt: Handle multiple ctrl-surf-copy blits on big surface Zbigniew Kempczyński
@ 2024-11-15 13:10 ` Juha-Pekka Heikkilä
0 siblings, 0 replies; 11+ messages in thread
From: Juha-Pekka Heikkilä @ 2024-11-15 13:10 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
All look ok to me, entire set is
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
On Fri, Nov 8, 2024 at 8:47 AM Zbigniew Kempczyński
<zbigniew.kempczynski@intel.com> wrote:
>
> Copying ccs data for bigger surfaces requires couple of blits. This is
> caused by the limitation of 10-bit size (for Xe and Xe2+) of the
> ctrl-surf-copy operation. To handle bigger than 64MiB surfaces on Xe
> and 4MiB on Xe2+ we need to divide blits to fit in mentioned 10-bit
> size.
>
> Change introduces looping around big surface to produce batch with
> couple of ctrl-surf-copy blits.
>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> ---
> lib/intel_blt.c | 121 ++++++++++++++++++++++++++++++++++--------------
> 1 file changed, 86 insertions(+), 35 deletions(-)
>
> diff --git a/lib/intel_blt.c b/lib/intel_blt.c
> index 1b0f279177..b2fb3151e0 100644
> --- a/lib/intel_blt.c
> +++ b/lib/intel_blt.c
> @@ -1115,7 +1115,13 @@ int blt_block_copy(int fd,
> return ret;
> }
>
> -static uint16_t __ccs_size(int fd, const struct blt_ctrl_surf_copy_data *surf)
> +/*
> + * Function calculates CCS bytes used for the surface. Size field in
> + * ctrl-surf-copy command struct is for Xe and Xe2 10-bit length, so caller
> + * has to divide ccs copy of bigger surfaces to couple of separate commands.
> + * This function returns total size of ccs data used for the surface.
> + */
> +static uint32_t __ccs_size(int fd, const struct blt_ctrl_surf_copy_data *surf)
> {
> uint32_t src_size, dst_size;
> uint16_t ccsratio = CCS_RATIO(fd);
> @@ -1286,8 +1292,8 @@ uint64_t emit_blt_ctrl_surf_copy(int fd,
> uint64_t dst_offset, src_offset, bb_offset, alignment;
> uint32_t bbe = MI_BATCH_BUFFER_END;
> uint32_t *bb;
> - uint16_t num_ccs_blocks = (ip_ver >= IP_VER(20, 0)) ?
> - (xe_get_default_alignment(fd) / CCS_RATIO(fd)) : CCS_RATIO(fd);
> + uint32_t ccs_per_page, max_blocks, src_step, dst_step;
> + int32_t left_blocks;
>
> igt_assert_f(ahnd, "ctrl-surf-copy supports softpin only\n");
> igt_assert_f(surf, "ctrl-surf-copy requires data to do ctrl-surf-copy blit\n");
> @@ -1299,51 +1305,108 @@ uint64_t emit_blt_ctrl_surf_copy(int fd,
> alignment, surf->dst.pat_index);
> bb_offset = get_offset(ahnd, surf->bb.handle, surf->bb.size, alignment);
>
> + bb = bo_map(fd, surf->bb.handle, surf->bb.size, surf->driver);
> +
> + /*
> + * Copying in/out CCS data is limited by bitfield size_of_ctrl_copy size
> + * what means operation on bigger surface needs to be handled on couple
> + * of ctrl-surf-copy commands.
> + *
> + * Instead of hardcoding maximum number of blocks copied in single
> + * command we may calculate it from bitfield size (Xe and Xe2 differs
> + * in bitfield location [and in future platforms potentially size]).
> + */
> if (ip_ver >= IP_VER(20, 0)) {
> + ccs_per_page = SZ_4K / CCS_RATIO(fd);
> +
> data.xe2.dw00.client = 0x2;
> data.xe2.dw00.opcode = 0x48;
> data.xe2.dw00.src_access_type = surf->src.access_type;
> data.xe2.dw00.dst_access_type = surf->dst.access_type;
> -
> - /* Ensure dst has size capable to keep src ccs aux */
> - data.xe2.dw00.size_of_ctrl_copy = __ccs_size(fd, surf) / num_ccs_blocks - 1;
> data.xe2.dw00.length = 0x3;
>
> - data.xe2.dw01.src_address_lo = src_offset;
> - data.xe2.dw02.src_address_hi = src_offset >> 32;
> + data.xe2.dw00.size_of_ctrl_copy = -1;
> + max_blocks = data.xe2.dw00.size_of_ctrl_copy + 1;
> +
> + /*
> + * For Xe2+ each size_of_ctrl_copy increment covers 4K page size
> + * of surface, which in turn is covered by 8B of CCS data.
> + */
> + src_step = surf->src.access_type == DIRECT_ACCESS ? ccs_per_page : SZ_4K;
> + src_step *= max_blocks;
> + dst_step = surf->dst.access_type == DIRECT_ACCESS ? ccs_per_page : SZ_4K;
> + dst_step *= max_blocks;
> +
> data.xe2.dw02.src_mocs_index = surf->src.mocs_index;
> -
> - data.xe2.dw03.dst_address_lo = dst_offset;
> - data.xe2.dw04.dst_address_hi = dst_offset >> 32;
> data.xe2.dw04.dst_mocs_index = surf->dst.mocs_index;
>
> data_sz = sizeof(data.xe2);
> } else {
> + ccs_per_page = SZ_64K / CCS_RATIO(fd);
> +
> data.gen12.dw00.client = 0x2;
> data.gen12.dw00.opcode = 0x48;
> data.gen12.dw00.src_access_type = surf->src.access_type;
> data.gen12.dw00.dst_access_type = surf->dst.access_type;
> -
> - /* Ensure dst has size capable to keep src ccs aux */
> - data.gen12.dw00.size_of_ctrl_copy = __ccs_size(fd, surf) / num_ccs_blocks - 1;
> data.gen12.dw00.length = 0x3;
>
> - data.gen12.dw01.src_address_lo = src_offset;
> - data.gen12.dw02.src_address_hi = src_offset >> 32;
> + data.gen12.dw00.size_of_ctrl_copy = -1;
> + max_blocks = data.gen12.dw00.size_of_ctrl_copy + 1;
> +
> + /*
> + * For Xe each size_of_ctrl_copy increment covers 64K page size
> + * of surface, which in turn is covered by 256B of CCS data.
> + */
> + src_step = surf->src.access_type == DIRECT_ACCESS ? ccs_per_page : SZ_64K;
> + src_step *= max_blocks;
> + dst_step = surf->dst.access_type == DIRECT_ACCESS ? ccs_per_page : SZ_64K;
> + dst_step *= max_blocks;
> +
> data.gen12.dw02.src_mocs_index = surf->src.mocs_index;
> -
> - data.gen12.dw03.dst_address_lo = dst_offset;
> - data.gen12.dw04.dst_address_hi = dst_offset >> 32;
> data.gen12.dw04.dst_mocs_index = surf->dst.mocs_index;
>
> data_sz = sizeof(data.gen12);
> }
>
> - bb = bo_map(fd, surf->bb.handle, surf->bb.size, surf->driver);
> + left_blocks = __ccs_size(fd, surf) / ccs_per_page;
>
> - igt_assert(bb_pos + data_sz < surf->bb.size);
> - memcpy(bb + bb_pos, &data, data_sz);
> - bb_pos += data_sz;
> + while (left_blocks > 0) {
> + int32_t nblocks = min_t(int32_t, left_blocks, max_blocks);
> +
> + if (ip_ver >= IP_VER(20, 0)) {
> + data.xe2.dw00.size_of_ctrl_copy = nblocks - 1;
> + data.xe2.dw01.src_address_lo = src_offset;
> + data.xe2.dw02.src_address_hi = src_offset >> 32;
> + data.xe2.dw03.dst_address_lo = dst_offset;
> + data.xe2.dw04.dst_address_hi = dst_offset >> 32;
> + } else {
> + data.gen12.dw00.size_of_ctrl_copy = nblocks - 1;
> + data.gen12.dw01.src_address_lo = src_offset;
> + data.gen12.dw02.src_address_hi = src_offset >> 32;
> + data.gen12.dw03.dst_address_lo = dst_offset;
> + data.gen12.dw04.dst_address_hi = dst_offset >> 32;
> + }
> +
> + left_blocks -= max_blocks;
> + dst_offset += dst_step;
> + src_offset += src_step;
> +
> + igt_assert(bb_pos + data_sz < surf->bb.size);
> + memcpy(bb + bb_pos, &data, data_sz);
> + bb_pos += data_sz;
> +
> + if (surf->print_bb) {
> + igt_info("[CTRL SURF]:\n");
> + igt_info("src offset: 0x%" PRIx64 ", dst offset: 0x%" PRIx64
> + ", bb offset: 0x%" PRIx64 ", copy nblocks: 0x%x\n",
> + src_offset, dst_offset, bb_offset, nblocks);
> +
> + if (ip_ver >= IP_VER(20, 0))
> + xe2_dump_bb_surf_ctrl_cmd(&data.xe2);
> + else
> + dump_bb_surf_ctrl_cmd(&data.gen12);
> + }
> + }
>
> if (emit_bbe) {
> igt_assert(bb_pos + sizeof(uint32_t) < surf->bb.size);
> @@ -1351,18 +1414,6 @@ uint64_t emit_blt_ctrl_surf_copy(int fd,
> bb_pos += sizeof(uint32_t);
> }
>
> - if (surf->print_bb) {
> - igt_info("[CTRL SURF]:\n");
> - igt_info("src offset: %" PRIx64 ", dst offset: %" PRIx64
> - ", bb offset: %" PRIx64 "\n",
> - src_offset, dst_offset, bb_offset);
> -
> - if (ip_ver >= IP_VER(20, 0))
> - xe2_dump_bb_surf_ctrl_cmd(&data.xe2);
> - else
> - dump_bb_surf_ctrl_cmd(&data.gen12);
> - }
> -
> munmap(bb, surf->bb.size);
>
> return bb_pos;
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-11-15 13:10 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-08 6:47 [PATCH i-g-t 0/3] Extend intel_blt to support large ctrl-surf-copy blits Zbigniew Kempczyński
2024-11-08 6:47 ` [PATCH i-g-t 1/3] lib/intel_blt: Handle multiple ctrl-surf-copy blits on big surface Zbigniew Kempczyński
2024-11-15 13:10 ` Juha-Pekka Heikkilä
2024-11-08 6:47 ` [PATCH i-g-t 2/3] tests/xe_ccs: Add large-ctrl-surf-copy subtest Zbigniew Kempczyński
2024-11-08 6:47 ` [PATCH i-g-t 3/3] tests/gem_ccs: " Zbigniew Kempczyński
2024-11-08 7:29 ` ✓ CI.xeBAT: success for Extend intel_blt to support large ctrl-surf-copy blits Patchwork
2024-11-08 7:45 ` ✓ Fi.CI.BAT: " Patchwork
2024-11-08 8:38 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-11-08 10:23 ` Zbigniew Kempczyński
2024-11-09 11:49 ` ✗ CI.xeFULL: " Patchwork
2024-11-12 8:30 ` Zbigniew Kempczyński
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox