* [igt-dev] [PATCH i-g-t v2 0/3] Add block-multicopy-* subtests
@ 2022-12-15 11:35 Zbigniew Kempczyński
2022-12-15 11:35 ` [igt-dev] [PATCH i-g-t v2 1/3] lib/i915_blt: Remove src == dst pitch restriction Zbigniew Kempczyński
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Zbigniew Kempczyński @ 2022-12-15 11:35 UTC (permalink / raw)
To: igt-dev
According to debugging with hw team extend the test to exercise blits
in single batch and additional step with inplace decompression to same
tiling format.
v2: - return to safe alignment in blit functions
- add test functions table
- avoid casting in formatting
Cc: Karolina Stolarek <karolina.stolarek@intel.com>
Zbigniew Kempczyński (3):
lib/i915_blt: Remove src == dst pitch restriction
lib/i915_blt: Extract blit emit functions
tests/gem_ccs: Add block-multicopy subtest
lib/i915/i915_blt.c | 281 +++++++++++++++++++++++++++++++------------
lib/i915/i915_blt.h | 19 +++
tests/i915/gem_ccs.c | 250 ++++++++++++++++++++++++++++++++++++--
3 files changed, 460 insertions(+), 90 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [igt-dev] [PATCH i-g-t v2 1/3] lib/i915_blt: Remove src == dst pitch restriction 2022-12-15 11:35 [igt-dev] [PATCH i-g-t v2 0/3] Add block-multicopy-* subtests Zbigniew Kempczyński @ 2022-12-15 11:35 ` Zbigniew Kempczyński 2022-12-15 11:35 ` [igt-dev] [PATCH i-g-t v2 2/3] lib/i915_blt: Extract blit emit functions Zbigniew Kempczyński ` (3 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Zbigniew Kempczyński @ 2022-12-15 11:35 UTC (permalink / raw) To: igt-dev During debugging phase we established there's not necessary to enforce same pitch for destination surface in FULL_RESOLVE mode. Relax this condition allowing caller to pass requirement surface configuration. Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> Cc: Karolina Stolarek <karolina.stolarek@intel.com> Reviewed-by: Karolina Stolarek <karolina.stolarek@intel.com> --- lib/i915/i915_blt.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/lib/i915/i915_blt.c b/lib/i915/i915_blt.c index 3776c56c60..42c28623f9 100644 --- a/lib/i915/i915_blt.c +++ b/lib/i915/i915_blt.c @@ -317,13 +317,11 @@ static void fill_data(struct gen12_block_copy_data *data, data->dw00.special_mode = __special_mode(blt); data->dw00.length = extended_command ? 20 : 10; - if (__special_mode(blt) == SM_FULL_RESOLVE && blt->src.tiling == T_TILE64) { - data->dw01.dst_pitch = blt->src.pitch - 1; + if (__special_mode(blt) == SM_FULL_RESOLVE) data->dw01.dst_aux_mode = __aux_mode(&blt->src); - } else { - data->dw01.dst_pitch = blt->dst.pitch - 1; + else data->dw01.dst_aux_mode = __aux_mode(&blt->dst); - } + data->dw01.dst_pitch = blt->dst.pitch - 1; data->dw01.dst_mocs = blt->dst.mocs; data->dw01.dst_compression = blt->dst.compression; -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t v2 2/3] lib/i915_blt: Extract blit emit functions 2022-12-15 11:35 [igt-dev] [PATCH i-g-t v2 0/3] Add block-multicopy-* subtests Zbigniew Kempczyński 2022-12-15 11:35 ` [igt-dev] [PATCH i-g-t v2 1/3] lib/i915_blt: Remove src == dst pitch restriction Zbigniew Kempczyński @ 2022-12-15 11:35 ` Zbigniew Kempczyński 2022-12-15 11:35 ` [igt-dev] [PATCH i-g-t v2 3/3] tests/gem_ccs: Add block-multicopy subtest Zbigniew Kempczyński ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Zbigniew Kempczyński @ 2022-12-15 11:35 UTC (permalink / raw) To: igt-dev Add some flexibility in building user pipelines extracting blitter emission code to dedicated functions. Previous blitter functions which do one blit-and-execute are rewritten to use those functions. Requires usage with stateful allocator (offset might be acquired more than one, so it must not change). Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> Cc: Karolina Stolarek <karolina.stolarek@intel.com> Reviewed-by: Karolina Stolarek <karolina.stolarek@intel.com> --- v2: back to use safe alignment to be independent from allocator alignment setting, remove casting and use direct PRI% formatting --- lib/i915/i915_blt.c | 273 ++++++++++++++++++++++++++++++++------------ lib/i915/i915_blt.h | 19 +++ 2 files changed, 219 insertions(+), 73 deletions(-) diff --git a/lib/i915/i915_blt.c b/lib/i915/i915_blt.c index 42c28623f9..541935656b 100644 --- a/lib/i915/i915_blt.c +++ b/lib/i915/i915_blt.c @@ -503,64 +503,68 @@ static void dump_bb_ext(struct gen12_block_copy_data_ext *data) } /** - * blt_block_copy: + * emit_blt_block_copy: * @i915: drm fd - * @ctx: intel_ctx_t context - * @e: blitter engine for @ctx * @ahnd: allocator handle * @blt: basic blitter data (for TGL/DG1 which doesn't support ext version) * @ext: extended blitter data (for DG2+, supports flatccs compression) + * @bb_pos: position at which insert block copy commands + * @emit_bbe: emit MI_BATCH_BUFFER_END after block-copy or not * - * Function does blit between @src and @dst described in @blt object. + * Function inserts block-copy blit into batch at @bb_pos. Allows concatenating + * with other commands to achieve pipelining. * * Returns: - * execbuffer status. + * Next write position in batch. */ -int blt_block_copy(int i915, - const intel_ctx_t *ctx, - const struct intel_execution_engine2 *e, - uint64_t ahnd, - const struct blt_copy_data *blt, - const struct blt_block_copy_data_ext *ext) +uint64_t emit_blt_block_copy(int i915, + uint64_t ahnd, + const struct blt_copy_data *blt, + const struct blt_block_copy_data_ext *ext, + uint64_t bb_pos, + bool emit_bbe) { - struct drm_i915_gem_execbuffer2 execbuf = {}; - struct drm_i915_gem_exec_object2 obj[3] = {}; struct gen12_block_copy_data data = {}; struct gen12_block_copy_data_ext dext = {}; uint64_t dst_offset, src_offset, bb_offset, alignment; - uint32_t *bb; - int i, ret; + uint32_t bbe = MI_BATCH_BUFFER_END; + uint8_t *bb; igt_assert_f(ahnd, "block-copy supports softpin only\n"); igt_assert_f(blt, "block-copy requires data to do blit\n"); alignment = gem_detect_safe_alignment(i915); src_offset = get_offset(ahnd, blt->src.handle, blt->src.size, alignment); - if (__special_mode(blt) == SM_FULL_RESOLVE) - dst_offset = src_offset; - else - dst_offset = get_offset(ahnd, blt->dst.handle, blt->dst.size, alignment); + dst_offset = get_offset(ahnd, blt->dst.handle, blt->dst.size, alignment); bb_offset = get_offset(ahnd, blt->bb.handle, blt->bb.size, alignment); fill_data(&data, blt, src_offset, dst_offset, ext); - i = sizeof(data) / sizeof(uint32_t); bb = gem_mmap__device_coherent(i915, blt->bb.handle, 0, blt->bb.size, PROT_READ | PROT_WRITE); - memcpy(bb, &data, sizeof(data)); + + igt_assert(bb_pos + sizeof(data) < blt->bb.size); + memcpy(bb + bb_pos, &data, sizeof(data)); + bb_pos += sizeof(data); if (ext) { fill_data_ext(&dext, ext); - memcpy(bb + i, &dext, sizeof(dext)); - i += sizeof(dext) / sizeof(uint32_t); + igt_assert(bb_pos + sizeof(dext) < blt->bb.size); + memcpy(bb + bb_pos, &dext, sizeof(dext)); + bb_pos += sizeof(dext); + } + + if (emit_bbe) { + igt_assert(bb_pos + sizeof(uint32_t) < blt->bb.size); + memcpy(bb + bb_pos, &bbe, sizeof(bbe)); + bb_pos += sizeof(uint32_t); } - bb[i++] = MI_BATCH_BUFFER_END; if (blt->print_bb) { igt_info("[BLOCK COPY]\n"); - igt_info("src offset: %llx, dst offset: %llx, bb offset: %llx\n", - (long long) src_offset, (long long) dst_offset, - (long long) bb_offset); + igt_info("src offset: %" PRIx64 ", dst offset: %" PRIx64 + ", bb offset: %" PRIx64 "\n", + src_offset, dst_offset, bb_offset); dump_bb_cmd(&data); if (ext) @@ -569,6 +573,45 @@ int blt_block_copy(int i915, munmap(bb, blt->bb.size); + return bb_pos; +} + +/** + * blt_block_copy: + * @i915: drm fd + * @ctx: intel_ctx_t context + * @e: blitter engine for @ctx + * @ahnd: allocator handle + * @blt: basic blitter data (for TGL/DG1 which doesn't support ext version) + * @ext: extended blitter data (for DG2+, supports flatccs compression) + * + * Function does blit between @src and @dst described in @blt object. + * + * Returns: + * execbuffer status. + */ +int blt_block_copy(int i915, + const intel_ctx_t *ctx, + const struct intel_execution_engine2 *e, + uint64_t ahnd, + const struct blt_copy_data *blt, + const struct blt_block_copy_data_ext *ext) +{ + struct drm_i915_gem_execbuffer2 execbuf = {}; + struct drm_i915_gem_exec_object2 obj[3] = {}; + uint64_t dst_offset, src_offset, bb_offset, alignment; + int ret; + + igt_assert_f(ahnd, "block-copy supports softpin only\n"); + igt_assert_f(blt, "block-copy requires data to do blit\n"); + + alignment = gem_detect_safe_alignment(i915); + src_offset = get_offset(ahnd, blt->src.handle, blt->src.size, alignment); + dst_offset = get_offset(ahnd, blt->dst.handle, blt->dst.size, alignment); + bb_offset = get_offset(ahnd, blt->bb.handle, blt->bb.size, alignment); + + emit_blt_block_copy(i915, ahnd, blt, ext, 0, true); + obj[0].offset = CANONICAL(dst_offset); obj[1].offset = CANONICAL(src_offset); obj[2].offset = CANONICAL(bb_offset); @@ -655,31 +698,30 @@ static void dump_bb_surf_ctrl_cmd(const struct gen12_ctrl_surf_copy_data *data) } /** - * blt_ctrl_surf_copy: + * emit_blt_ctrl_surf_copy: * @i915: drm fd - * @ctx: intel_ctx_t context - * @e: blitter engine for @ctx * @ahnd: allocator handle * @surf: blitter data for ctrl-surf-copy + * @bb_pos: position at which insert block copy commands + * @emit_bbe: emit MI_BATCH_BUFFER_END after ctrl-surf-copy or not * - * Function does ctrl-surf-copy blit between @src and @dst described in - * @blt object. + * Function emits ctrl-surf-copy blit between @src and @dst described in + * @blt object at @bb_pos. Allows concatenating with other commands to + * achieve pipelining. * * Returns: - * execbuffer status. + * Next write position in batch. */ -int blt_ctrl_surf_copy(int i915, - const intel_ctx_t *ctx, - const struct intel_execution_engine2 *e, - uint64_t ahnd, - const struct blt_ctrl_surf_copy_data *surf) +uint64_t emit_blt_ctrl_surf_copy(int i915, + uint64_t ahnd, + const struct blt_ctrl_surf_copy_data *surf, + uint64_t bb_pos, + bool emit_bbe) { - struct drm_i915_gem_execbuffer2 execbuf = {}; - struct drm_i915_gem_exec_object2 obj[3] = {}; struct gen12_ctrl_surf_copy_data data = {}; uint64_t dst_offset, src_offset, bb_offset, alignment; + uint32_t bbe = MI_BATCH_BUFFER_END; uint32_t *bb; - int i; 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"); @@ -695,12 +737,9 @@ int blt_ctrl_surf_copy(int i915, data.dw00.size_of_ctrl_copy = __ccs_size(surf) / CCS_RATIO - 1; data.dw00.length = 0x3; - src_offset = get_offset(ahnd, surf->src.handle, surf->src.size, - alignment); - dst_offset = get_offset(ahnd, surf->dst.handle, surf->dst.size, - alignment); - bb_offset = get_offset(ahnd, surf->bb.handle, surf->bb.size, - alignment); + src_offset = get_offset(ahnd, surf->src.handle, surf->src.size, alignment); + dst_offset = get_offset(ahnd, surf->dst.handle, surf->dst.size, alignment); + bb_offset = get_offset(ahnd, surf->bb.handle, surf->bb.size, alignment); data.dw01.src_address_lo = src_offset; data.dw02.src_address_hi = src_offset >> 32; @@ -710,22 +749,67 @@ int blt_ctrl_surf_copy(int i915, data.dw04.dst_address_hi = dst_offset >> 32; data.dw04.dst_mocs = surf->dst.mocs; - i = sizeof(data) / sizeof(uint32_t); bb = gem_mmap__device_coherent(i915, surf->bb.handle, 0, surf->bb.size, PROT_READ | PROT_WRITE); - memcpy(bb, &data, sizeof(data)); - bb[i++] = MI_BATCH_BUFFER_END; + + igt_assert(bb_pos + sizeof(data) < surf->bb.size); + memcpy(bb + bb_pos, &data, sizeof(data)); + bb_pos += sizeof(data); + + if (emit_bbe) { + igt_assert(bb_pos + sizeof(uint32_t) < surf->bb.size); + memcpy(bb + bb_pos, &bbe, sizeof(bbe)); + bb_pos += sizeof(uint32_t); + } if (surf->print_bb) { - igt_info("BB [CTRL SURF]:\n"); - igt_info("src offset: %llx, dst offset: %llx, bb offset: %llx\n", - (long long) src_offset, (long long) dst_offset, - (long long) bb_offset); + igt_info("[CTRL SURF]:\n"); + igt_info("src offset: %" PRIx64 ", dst offset: %" PRIx64 + ", bb offset: %" PRIx64 "\n", + src_offset, dst_offset, bb_offset); dump_bb_surf_ctrl_cmd(&data); } + munmap(bb, surf->bb.size); + return bb_pos; +} + +/** + * blt_ctrl_surf_copy: + * @i915: drm fd + * @ctx: intel_ctx_t context + * @e: blitter engine for @ctx + * @ahnd: allocator handle + * @surf: blitter data for ctrl-surf-copy + * + * Function does ctrl-surf-copy blit between @src and @dst described in + * @blt object. + * + * Returns: + * execbuffer status. + */ +int blt_ctrl_surf_copy(int i915, + const intel_ctx_t *ctx, + const struct intel_execution_engine2 *e, + uint64_t ahnd, + const struct blt_ctrl_surf_copy_data *surf) +{ + struct drm_i915_gem_execbuffer2 execbuf = {}; + struct drm_i915_gem_exec_object2 obj[3] = {}; + uint64_t dst_offset, src_offset, bb_offset, alignment; + + 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"); + + alignment = max_t(uint64_t, gem_detect_safe_alignment(i915), 1ull << 16); + src_offset = get_offset(ahnd, surf->src.handle, surf->src.size, alignment); + dst_offset = get_offset(ahnd, surf->dst.handle, surf->dst.size, alignment); + bb_offset = get_offset(ahnd, surf->bb.handle, surf->bb.size, alignment); + + emit_blt_ctrl_surf_copy(i915, ahnd, surf, 0, true); + obj[0].offset = CANONICAL(dst_offset); obj[1].offset = CANONICAL(src_offset); obj[2].offset = CANONICAL(bb_offset); @@ -869,31 +953,31 @@ static void dump_bb_fast_cmd(struct gen12_fast_copy_data *data) } /** - * blt_fast_copy: + * emit_blt_fast_copy: * @i915: drm fd - * @ctx: intel_ctx_t context - * @e: blitter engine for @ctx * @ahnd: allocator handle * @blt: blitter data for fast-copy (same as for block-copy but doesn't use * compression fields). + * @bb_pos: position at which insert block copy commands + * @emit_bbe: emit MI_BATCH_BUFFER_END after fast-copy or not * - * Function does fast blit between @src and @dst described in @blt object. + * Function emits fast-copy blit between @src and @dst described in @blt object + * at @bb_pos. Allows concatenating with other commands to + * achieve pipelining. * * Returns: - * execbuffer status. + * Next write position in batch. */ -int blt_fast_copy(int i915, - const intel_ctx_t *ctx, - const struct intel_execution_engine2 *e, - uint64_t ahnd, - const struct blt_copy_data *blt) +uint64_t emit_blt_fast_copy(int i915, + uint64_t ahnd, + const struct blt_copy_data *blt, + uint64_t bb_pos, + bool emit_bbe) { - struct drm_i915_gem_execbuffer2 execbuf = {}; - struct drm_i915_gem_exec_object2 obj[3] = {}; struct gen12_fast_copy_data data = {}; uint64_t dst_offset, src_offset, bb_offset, alignment; + uint32_t bbe = MI_BATCH_BUFFER_END; uint32_t *bb; - int i, ret; alignment = gem_detect_safe_alignment(i915); @@ -931,22 +1015,65 @@ int blt_fast_copy(int i915, data.dw08.src_address_lo = src_offset; data.dw09.src_address_hi = src_offset >> 32; - i = sizeof(data) / sizeof(uint32_t); bb = gem_mmap__device_coherent(i915, blt->bb.handle, 0, blt->bb.size, PROT_READ | PROT_WRITE); - memcpy(bb, &data, sizeof(data)); - bb[i++] = MI_BATCH_BUFFER_END; + igt_assert(bb_pos + sizeof(data) < blt->bb.size); + memcpy(bb + bb_pos, &data, sizeof(data)); + bb_pos += sizeof(data); + + if (emit_bbe) { + igt_assert(bb_pos + sizeof(uint32_t) < blt->bb.size); + memcpy(bb + bb_pos, &bbe, sizeof(bbe)); + bb_pos += sizeof(uint32_t); + } if (blt->print_bb) { - igt_info("BB [FAST COPY]\n"); - igt_info("blit [src offset: %llx, dst offset: %llx\n", - (long long) src_offset, (long long) dst_offset); + igt_info("[FAST COPY]\n"); + igt_info("src offset: %" PRIx64 ", dst offset: %" PRIx64 + ", bb offset: %" PRIx64 "\n", + src_offset, dst_offset, bb_offset); dump_bb_fast_cmd(&data); } munmap(bb, blt->bb.size); + return bb_pos; +} + +/** + * blt_fast_copy: + * @i915: drm fd + * @ctx: intel_ctx_t context + * @e: blitter engine for @ctx + * @ahnd: allocator handle + * @blt: blitter data for fast-copy (same as for block-copy but doesn't use + * compression fields). + * + * Function does fast blit between @src and @dst described in @blt object. + * + * Returns: + * execbuffer status. + */ +int blt_fast_copy(int i915, + const intel_ctx_t *ctx, + const struct intel_execution_engine2 *e, + uint64_t ahnd, + const struct blt_copy_data *blt) +{ + struct drm_i915_gem_execbuffer2 execbuf = {}; + struct drm_i915_gem_exec_object2 obj[3] = {}; + uint64_t dst_offset, src_offset, bb_offset, alignment; + int ret; + + alignment = gem_detect_safe_alignment(i915); + + src_offset = get_offset(ahnd, blt->src.handle, blt->src.size, alignment); + dst_offset = get_offset(ahnd, blt->dst.handle, blt->dst.size, alignment); + bb_offset = get_offset(ahnd, blt->bb.handle, blt->bb.size, alignment); + + emit_blt_fast_copy(i915, ahnd, blt, 0, true); + obj[0].offset = CANONICAL(dst_offset); obj[1].offset = CANONICAL(src_offset); obj[2].offset = CANONICAL(bb_offset); diff --git a/lib/i915/i915_blt.h b/lib/i915/i915_blt.h index e0e8b52bc2..34db9bb962 100644 --- a/lib/i915/i915_blt.h +++ b/lib/i915/i915_blt.h @@ -168,6 +168,13 @@ bool blt_supports_compression(int i915); bool blt_supports_tiling(int i915, enum blt_tiling tiling); const char *blt_tiling_name(enum blt_tiling tiling); +uint64_t emit_blt_block_copy(int i915, + uint64_t ahnd, + const struct blt_copy_data *blt, + const struct blt_block_copy_data_ext *ext, + uint64_t bb_pos, + bool emit_bbe); + int blt_block_copy(int i915, const intel_ctx_t *ctx, const struct intel_execution_engine2 *e, @@ -175,12 +182,24 @@ int blt_block_copy(int i915, const struct blt_copy_data *blt, const struct blt_block_copy_data_ext *ext); +uint64_t emit_blt_ctrl_surf_copy(int i915, + uint64_t ahnd, + const struct blt_ctrl_surf_copy_data *surf, + uint64_t bb_pos, + bool emit_bbe); + int blt_ctrl_surf_copy(int i915, const intel_ctx_t *ctx, const struct intel_execution_engine2 *e, uint64_t ahnd, const struct blt_ctrl_surf_copy_data *surf); +uint64_t emit_blt_fast_copy(int i915, + uint64_t ahnd, + const struct blt_copy_data *blt, + uint64_t bb_pos, + bool emit_bbe); + int blt_fast_copy(int i915, const intel_ctx_t *ctx, const struct intel_execution_engine2 *e, -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t v2 3/3] tests/gem_ccs: Add block-multicopy subtest 2022-12-15 11:35 [igt-dev] [PATCH i-g-t v2 0/3] Add block-multicopy-* subtests Zbigniew Kempczyński 2022-12-15 11:35 ` [igt-dev] [PATCH i-g-t v2 1/3] lib/i915_blt: Remove src == dst pitch restriction Zbigniew Kempczyński 2022-12-15 11:35 ` [igt-dev] [PATCH i-g-t v2 2/3] lib/i915_blt: Extract blit emit functions Zbigniew Kempczyński @ 2022-12-15 11:35 ` Zbigniew Kempczyński 2022-12-19 8:23 ` Karolina Stolarek 2022-12-15 14:01 ` [igt-dev] ✓ Fi.CI.BAT: success for Add block-multicopy-* subtests (rev2) Patchwork 2022-12-16 13:37 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 1 reply; 8+ messages in thread From: Zbigniew Kempczyński @ 2022-12-15 11:35 UTC (permalink / raw) To: igt-dev Exercise sequence of blits packed in single batch. It may reveal flushing/decompressing/detiling problems during execution. multicopy-inplace version differs from copy-inplace version with additional blit to same tiling format during decompression to separate problems visible in decompressing/detiling in one step. Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> Cc: Karolina Stolarek <karolina.stolarek@intel.com> --- v2: extract test functions table --- tests/i915/gem_ccs.c | 250 ++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 238 insertions(+), 12 deletions(-) diff --git a/tests/i915/gem_ccs.c b/tests/i915/gem_ccs.c index 4ecb3e36ac..51a5a4d086 100644 --- a/tests/i915/gem_ccs.c +++ b/tests/i915/gem_ccs.c @@ -262,6 +262,113 @@ static void surf_copy(int i915, gem_close(i915, ccs); } +struct blt_copy3_data { + int i915; + struct blt_copy_object src; + struct blt_copy_object mid; + struct blt_copy_object dst; + struct blt_copy_object final; + struct blt_copy_batch bb; + enum blt_color_depth color_depth; + + /* debug stuff */ + bool print_bb; +}; + +struct blt_block_copy3_data_ext { + struct blt_block_copy_object_ext src; + struct blt_block_copy_object_ext mid; + struct blt_block_copy_object_ext dst; + struct blt_block_copy_object_ext final; +}; + +#define FILL_OBJ(_idx, _handle, _offset, _flags) do { \ + obj[(_idx)].handle = (_handle); \ + obj[(_idx)].offset = (_offset); \ + obj[(_idx)++].flags = EXEC_OBJECT_PINNED | \ + EXEC_OBJECT_SUPPORTS_48B_ADDRESS | (_flags) ; \ +} while (0) + +static int blt_block_copy3(int i915, + const intel_ctx_t *ctx, + const struct intel_execution_engine2 *e, + uint64_t ahnd, + const struct blt_copy3_data *blt3, + const struct blt_block_copy3_data_ext *ext3) +{ + struct drm_i915_gem_execbuffer2 execbuf = {}; + struct drm_i915_gem_exec_object2 obj[5] = {}; + struct blt_copy_data blt0; + struct blt_block_copy_data_ext ext0; + uint64_t src_offset, mid_offset, dst_offset, final_offset, bb_offset, alignment; + uint64_t bb_pos = 0; + uint32_t *bb; + int i, ret; + + igt_assert_f(ahnd, "block-copy3 supports softpin only\n"); + igt_assert_f(blt3, "block-copy3 requires data to do blit\n"); + + alignment = gem_detect_safe_alignment(i915); + src_offset = get_offset(ahnd, blt3->src.handle, blt3->src.size, alignment); + mid_offset = get_offset(ahnd, blt3->mid.handle, blt3->mid.size, alignment); + dst_offset = get_offset(ahnd, blt3->dst.handle, blt3->dst.size, alignment); + final_offset = get_offset(ahnd, blt3->final.handle, blt3->final.size, alignment); + bb_offset = get_offset(ahnd, blt3->bb.handle, blt3->bb.size, alignment); + + /* First blit src -> mid */ + memset(&blt0, 0, sizeof(blt0)); + blt0.src = blt3->src; + blt0.dst = blt3->mid; + blt0.bb = blt3->bb; + blt0.color_depth = blt3->color_depth; + blt0.print_bb = blt3->print_bb; + ext0.src = ext3->src; + ext0.dst = ext3->mid; + bb_pos = emit_blt_block_copy(i915, ahnd, &blt0, &ext0, bb_pos, false); + + /* Second blit mid -> dst */ + memset(&blt0, 0, sizeof(blt0)); + blt0.src = blt3->mid; + blt0.dst = blt3->dst; + blt0.bb = blt3->bb; + blt0.color_depth = blt3->color_depth; + blt0.print_bb = blt3->print_bb; + ext0.src = ext3->mid; + ext0.dst = ext3->dst; + bb_pos = emit_blt_block_copy(i915, ahnd, &blt0, &ext0, bb_pos, false); + + /* Third blit dst -> final */ + memset(&blt0, 0, sizeof(blt0)); + blt0.src = blt3->dst; + blt0.dst = blt3->final; + blt0.bb = blt3->bb; + blt0.color_depth = blt3->color_depth; + blt0.print_bb = blt3->print_bb; + ext0.src = ext3->dst; + ext0.dst = ext3->final; + bb_pos = emit_blt_block_copy(i915, ahnd, &blt0, &ext0, bb_pos, true); + + i = 0; + FILL_OBJ(i, blt3->src.handle, CANONICAL(src_offset), 0); + FILL_OBJ(i, blt3->mid.handle, CANONICAL(mid_offset), EXEC_OBJECT_WRITE); + if (mid_offset != dst_offset) + FILL_OBJ(i, blt3->dst.handle, CANONICAL(dst_offset), EXEC_OBJECT_WRITE); + FILL_OBJ(i, blt3->final.handle, CANONICAL(final_offset), 0); + FILL_OBJ(i, blt3->bb.handle, CANONICAL(bb_offset), 0); + + execbuf.buffer_count = i; + + execbuf.buffers_ptr = to_user_pointer(obj); + execbuf.rsvd1 = ctx ? ctx->id : 0; + execbuf.flags = e ? e->flags : I915_EXEC_BLT; + ret = __gem_execbuf(i915, &execbuf); + + gem_sync(i915, blt3->bb.handle); + munmap(bb, blt3->bb.size); + + return ret; +} + static void block_copy(int i915, const intel_ctx_t *ctx, const struct intel_execution_engine2 *e, @@ -380,10 +487,111 @@ static void block_copy(int i915, igt_assert_f(!result, "source and destination surfaces differs!\n"); } +static void block_multicopy(int i915, + const intel_ctx_t *ctx, + const struct intel_execution_engine2 *e, + uint32_t region1, uint32_t region2, + enum blt_tiling mid_tiling, + const struct test_config *config) +{ + struct blt_copy3_data blt3 = {}; + struct blt_block_copy3_data_ext ext3 = {}, *pext3 = &ext3; + struct blt_copy_object *src, *mid, *dst, *final; + const uint32_t bpp = 32; + uint64_t bb_size = 4096; + uint64_t ahnd = get_reloc_ahnd(i915, ctx->id); + uint32_t run_id = mid_tiling; + uint32_t mid_region = region2, bb; + uint32_t width = param.width, height = param.height; + enum blt_compression mid_compression = config->compression; + int mid_compression_format = param.compression_format; + enum blt_compression_type comp_type = COMPRESSION_TYPE_3D; + uint8_t uc_mocs = intel_get_uc_mocs(i915); + int result; + + igt_assert(__gem_create_in_memory_regions(i915, &bb, &bb_size, region1) == 0); + + if (!blt_supports_compression(i915)) + pext3 = NULL; + + src = create_object(i915, region1, width, height, bpp, uc_mocs, + T_LINEAR, COMPRESSION_DISABLED, comp_type, true); + mid = create_object(i915, mid_region, width, height, bpp, uc_mocs, + mid_tiling, mid_compression, comp_type, true); + dst = create_object(i915, region1, width, height, bpp, uc_mocs, + mid_tiling, COMPRESSION_DISABLED, comp_type, true); + final = create_object(i915, region1, width, height, bpp, uc_mocs, + T_LINEAR, COMPRESSION_DISABLED, comp_type, true); + igt_assert(src->size == dst->size); + PRINT_SURFACE_INFO("src", src); + PRINT_SURFACE_INFO("mid", mid); + PRINT_SURFACE_INFO("dst", dst); + PRINT_SURFACE_INFO("final", final); + + blt_surface_fill_rect(i915, src, width, height); + + memset(&blt3, 0, sizeof(blt3)); + blt3.color_depth = CD_32bit; + blt3.print_bb = param.print_bb; + set_blt_object(&blt3.src, src); + set_blt_object(&blt3.mid, mid); + set_blt_object(&blt3.dst, dst); + set_blt_object(&blt3.final, final); + + if (config->inplace) { + set_object(&blt3.dst, mid->handle, dst->size, mid->region, mid->mocs, + mid_tiling, COMPRESSION_DISABLED, comp_type); + blt3.dst.ptr = mid->ptr; + } + + set_object_ext(&ext3.src, 0, width, height, SURFACE_TYPE_2D); + set_object_ext(&ext3.mid, mid_compression_format, width, height, SURFACE_TYPE_2D); + set_object_ext(&ext3.dst, 0, width, height, SURFACE_TYPE_2D); + set_object_ext(&ext3.final, 0, width, height, SURFACE_TYPE_2D); + set_batch(&blt3.bb, bb, bb_size, region1); + + blt_block_copy3(i915, ctx, e, ahnd, &blt3, pext3); + gem_sync(i915, blt3.final.handle); + + WRITE_PNG(i915, run_id, "src", &blt3.src, width, height); + if (!config->inplace) + WRITE_PNG(i915, run_id, "mid", &blt3.mid, width, height); + WRITE_PNG(i915, run_id, "dst", &blt3.dst, width, height); + WRITE_PNG(i915, run_id, "final", &blt3.final, width, height); + + result = memcmp(src->ptr, blt3.final.ptr, src->size); + + destroy_object(i915, src); + destroy_object(i915, mid); + destroy_object(i915, dst); + destroy_object(i915, final); + gem_close(i915, bb); + put_ahnd(ahnd); + + igt_assert_f(!result, "source and destination surfaces differs!\n"); +} + +enum copy_func { + BLOCK_COPY, + BLOCK_MULTICOPY, +}; + +static const struct { + const char *suffix; + void (*copyfn)(int, const intel_ctx_t *, + const struct intel_execution_engine2 *, + uint32_t, uint32_t, enum blt_tiling, + const struct test_config *); +} copyfns[] = { + [BLOCK_COPY] = { "", block_copy }, + [BLOCK_MULTICOPY] = { "-multicopy", block_multicopy }, +}; + static void block_copy_test(int i915, const struct test_config *config, const intel_ctx_t *ctx, - struct igt_collection *set) + struct igt_collection *set, + enum copy_func copy_function) { struct igt_collection *regions; const struct intel_execution_engine2 *e; @@ -415,15 +623,18 @@ static void block_copy_test(int i915, continue; regtxt = memregion_dynamic_subtest_name(regions); - igt_dynamic_f("%s-%s-compfmt%d-%s", + + igt_dynamic_f("%s-%s-compfmt%d-%s%s", blt_tiling_name(tiling), config->compression ? "compressed" : "uncompressed", - param.compression_format, regtxt) { - block_copy(i915, ctx, e, - region1, region2, - tiling, config); + param.compression_format, regtxt, + copyfns[copy_function].suffix) { + copyfns[copy_function].copyfn(i915, ctx, e, + region1, region2, + tiling, config); } + free(regtxt); } } @@ -506,14 +717,21 @@ igt_main_args("bf:pst:W:H:", NULL, help_str, opt_handler, NULL) igt_subtest_with_dynamic("block-copy-uncompressed") { struct test_config config = {}; - block_copy_test(i915, &config, ctx, set); + block_copy_test(i915, &config, ctx, set, BLOCK_COPY); } igt_describe("Check block-copy flatccs compressed blit"); igt_subtest_with_dynamic("block-copy-compressed") { struct test_config config = { .compression = true }; - block_copy_test(i915, &config, ctx, set); + block_copy_test(i915, &config, ctx, set, BLOCK_COPY); + } + + igt_describe("Check block-multicopy flatccs compressed blit"); + igt_subtest_with_dynamic("block-multicopy-compressed") { + struct test_config config = { .compression = true }; + + block_copy_test(i915, &config, ctx, set, BLOCK_MULTICOPY); } igt_describe("Check block-copy flatccs inplace decompression blit"); @@ -521,7 +739,15 @@ igt_main_args("bf:pst:W:H:", NULL, help_str, opt_handler, NULL) struct test_config config = { .compression = true, .inplace = true }; - block_copy_test(i915, &config, ctx, set); + block_copy_test(i915, &config, ctx, set, BLOCK_COPY); + } + + igt_describe("Check block-multicopy flatccs inplace decompression blit"); + igt_subtest_with_dynamic("block-multicopy-inplace") { + struct test_config config = { .compression = true, + .inplace = true }; + + block_copy_test(i915, &config, ctx, set, BLOCK_MULTICOPY); } igt_describe("Check flatccs data can be copied from/to surface"); @@ -529,7 +755,7 @@ igt_main_args("bf:pst:W:H:", NULL, help_str, opt_handler, NULL) struct test_config config = { .compression = true, .surfcopy = true }; - block_copy_test(i915, &config, ctx, set); + block_copy_test(i915, &config, ctx, set, BLOCK_COPY); } igt_describe("Check flatccs data are physically tagged and visible" @@ -539,7 +765,7 @@ igt_main_args("bf:pst:W:H:", NULL, help_str, opt_handler, NULL) .surfcopy = true, .new_ctx = true }; - block_copy_test(i915, &config, ctx, set); + block_copy_test(i915, &config, ctx, set, BLOCK_COPY); } igt_describe("Check flatccs data persists after suspend / resume (S0)"); @@ -548,7 +774,7 @@ igt_main_args("bf:pst:W:H:", NULL, help_str, opt_handler, NULL) .surfcopy = true, .suspend_resume = true }; - block_copy_test(i915, &config, ctx, set); + block_copy_test(i915, &config, ctx, set, BLOCK_COPY); } igt_fixture { -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 3/3] tests/gem_ccs: Add block-multicopy subtest 2022-12-15 11:35 ` [igt-dev] [PATCH i-g-t v2 3/3] tests/gem_ccs: Add block-multicopy subtest Zbigniew Kempczyński @ 2022-12-19 8:23 ` Karolina Stolarek 0 siblings, 0 replies; 8+ messages in thread From: Karolina Stolarek @ 2022-12-19 8:23 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev On 15.12.2022 12:35, Zbigniew Kempczyński wrote: > Exercise sequence of blits packed in single batch. It may reveal > flushing/decompressing/detiling problems during execution. > multicopy-inplace version differs from copy-inplace version with > additional blit to same tiling format during decompression to separate > problems visible in decompressing/detiling in one step. > > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > Cc: Karolina Stolarek <karolina.stolarek@intel.com> > > --- > v2: extract test functions table > --- That looks great right now, thanks. Checked other patches, I agree with the changes. So: Reviewed-by: Karolina Stolarek <karolina.stolarek@intel.com> Many thanks, Karolina > tests/i915/gem_ccs.c | 250 ++++++++++++++++++++++++++++++++++++++++--- > 1 file changed, 238 insertions(+), 12 deletions(-) > > diff --git a/tests/i915/gem_ccs.c b/tests/i915/gem_ccs.c > index 4ecb3e36ac..51a5a4d086 100644 > --- a/tests/i915/gem_ccs.c > +++ b/tests/i915/gem_ccs.c > @@ -262,6 +262,113 @@ static void surf_copy(int i915, > gem_close(i915, ccs); > } > > +struct blt_copy3_data { > + int i915; > + struct blt_copy_object src; > + struct blt_copy_object mid; > + struct blt_copy_object dst; > + struct blt_copy_object final; > + struct blt_copy_batch bb; > + enum blt_color_depth color_depth; > + > + /* debug stuff */ > + bool print_bb; > +}; > + > +struct blt_block_copy3_data_ext { > + struct blt_block_copy_object_ext src; > + struct blt_block_copy_object_ext mid; > + struct blt_block_copy_object_ext dst; > + struct blt_block_copy_object_ext final; > +}; > + > +#define FILL_OBJ(_idx, _handle, _offset, _flags) do { \ > + obj[(_idx)].handle = (_handle); \ > + obj[(_idx)].offset = (_offset); \ > + obj[(_idx)++].flags = EXEC_OBJECT_PINNED | \ > + EXEC_OBJECT_SUPPORTS_48B_ADDRESS | (_flags) ; \ > +} while (0) > + > +static int blt_block_copy3(int i915, > + const intel_ctx_t *ctx, > + const struct intel_execution_engine2 *e, > + uint64_t ahnd, > + const struct blt_copy3_data *blt3, > + const struct blt_block_copy3_data_ext *ext3) > +{ > + struct drm_i915_gem_execbuffer2 execbuf = {}; > + struct drm_i915_gem_exec_object2 obj[5] = {}; > + struct blt_copy_data blt0; > + struct blt_block_copy_data_ext ext0; > + uint64_t src_offset, mid_offset, dst_offset, final_offset, bb_offset, alignment; > + uint64_t bb_pos = 0; > + uint32_t *bb; > + int i, ret; > + > + igt_assert_f(ahnd, "block-copy3 supports softpin only\n"); > + igt_assert_f(blt3, "block-copy3 requires data to do blit\n"); > + > + alignment = gem_detect_safe_alignment(i915); > + src_offset = get_offset(ahnd, blt3->src.handle, blt3->src.size, alignment); > + mid_offset = get_offset(ahnd, blt3->mid.handle, blt3->mid.size, alignment); > + dst_offset = get_offset(ahnd, blt3->dst.handle, blt3->dst.size, alignment); > + final_offset = get_offset(ahnd, blt3->final.handle, blt3->final.size, alignment); > + bb_offset = get_offset(ahnd, blt3->bb.handle, blt3->bb.size, alignment); > + > + /* First blit src -> mid */ > + memset(&blt0, 0, sizeof(blt0)); > + blt0.src = blt3->src; > + blt0.dst = blt3->mid; > + blt0.bb = blt3->bb; > + blt0.color_depth = blt3->color_depth; > + blt0.print_bb = blt3->print_bb; > + ext0.src = ext3->src; > + ext0.dst = ext3->mid; > + bb_pos = emit_blt_block_copy(i915, ahnd, &blt0, &ext0, bb_pos, false); > + > + /* Second blit mid -> dst */ > + memset(&blt0, 0, sizeof(blt0)); > + blt0.src = blt3->mid; > + blt0.dst = blt3->dst; > + blt0.bb = blt3->bb; > + blt0.color_depth = blt3->color_depth; > + blt0.print_bb = blt3->print_bb; > + ext0.src = ext3->mid; > + ext0.dst = ext3->dst; > + bb_pos = emit_blt_block_copy(i915, ahnd, &blt0, &ext0, bb_pos, false); > + > + /* Third blit dst -> final */ > + memset(&blt0, 0, sizeof(blt0)); > + blt0.src = blt3->dst; > + blt0.dst = blt3->final; > + blt0.bb = blt3->bb; > + blt0.color_depth = blt3->color_depth; > + blt0.print_bb = blt3->print_bb; > + ext0.src = ext3->dst; > + ext0.dst = ext3->final; > + bb_pos = emit_blt_block_copy(i915, ahnd, &blt0, &ext0, bb_pos, true); > + > + i = 0; > + FILL_OBJ(i, blt3->src.handle, CANONICAL(src_offset), 0); > + FILL_OBJ(i, blt3->mid.handle, CANONICAL(mid_offset), EXEC_OBJECT_WRITE); > + if (mid_offset != dst_offset) > + FILL_OBJ(i, blt3->dst.handle, CANONICAL(dst_offset), EXEC_OBJECT_WRITE); > + FILL_OBJ(i, blt3->final.handle, CANONICAL(final_offset), 0); > + FILL_OBJ(i, blt3->bb.handle, CANONICAL(bb_offset), 0); > + > + execbuf.buffer_count = i; > + > + execbuf.buffers_ptr = to_user_pointer(obj); > + execbuf.rsvd1 = ctx ? ctx->id : 0; > + execbuf.flags = e ? e->flags : I915_EXEC_BLT; > + ret = __gem_execbuf(i915, &execbuf); > + > + gem_sync(i915, blt3->bb.handle); > + munmap(bb, blt3->bb.size); > + > + return ret; > +} > + > static void block_copy(int i915, > const intel_ctx_t *ctx, > const struct intel_execution_engine2 *e, > @@ -380,10 +487,111 @@ static void block_copy(int i915, > igt_assert_f(!result, "source and destination surfaces differs!\n"); > } > > +static void block_multicopy(int i915, > + const intel_ctx_t *ctx, > + const struct intel_execution_engine2 *e, > + uint32_t region1, uint32_t region2, > + enum blt_tiling mid_tiling, > + const struct test_config *config) > +{ > + struct blt_copy3_data blt3 = {}; > + struct blt_block_copy3_data_ext ext3 = {}, *pext3 = &ext3; > + struct blt_copy_object *src, *mid, *dst, *final; > + const uint32_t bpp = 32; > + uint64_t bb_size = 4096; > + uint64_t ahnd = get_reloc_ahnd(i915, ctx->id); > + uint32_t run_id = mid_tiling; > + uint32_t mid_region = region2, bb; > + uint32_t width = param.width, height = param.height; > + enum blt_compression mid_compression = config->compression; > + int mid_compression_format = param.compression_format; > + enum blt_compression_type comp_type = COMPRESSION_TYPE_3D; > + uint8_t uc_mocs = intel_get_uc_mocs(i915); > + int result; > + > + igt_assert(__gem_create_in_memory_regions(i915, &bb, &bb_size, region1) == 0); > + > + if (!blt_supports_compression(i915)) > + pext3 = NULL; > + > + src = create_object(i915, region1, width, height, bpp, uc_mocs, > + T_LINEAR, COMPRESSION_DISABLED, comp_type, true); > + mid = create_object(i915, mid_region, width, height, bpp, uc_mocs, > + mid_tiling, mid_compression, comp_type, true); > + dst = create_object(i915, region1, width, height, bpp, uc_mocs, > + mid_tiling, COMPRESSION_DISABLED, comp_type, true); > + final = create_object(i915, region1, width, height, bpp, uc_mocs, > + T_LINEAR, COMPRESSION_DISABLED, comp_type, true); > + igt_assert(src->size == dst->size); > + PRINT_SURFACE_INFO("src", src); > + PRINT_SURFACE_INFO("mid", mid); > + PRINT_SURFACE_INFO("dst", dst); > + PRINT_SURFACE_INFO("final", final); > + > + blt_surface_fill_rect(i915, src, width, height); > + > + memset(&blt3, 0, sizeof(blt3)); > + blt3.color_depth = CD_32bit; > + blt3.print_bb = param.print_bb; > + set_blt_object(&blt3.src, src); > + set_blt_object(&blt3.mid, mid); > + set_blt_object(&blt3.dst, dst); > + set_blt_object(&blt3.final, final); > + > + if (config->inplace) { > + set_object(&blt3.dst, mid->handle, dst->size, mid->region, mid->mocs, > + mid_tiling, COMPRESSION_DISABLED, comp_type); > + blt3.dst.ptr = mid->ptr; > + } > + > + set_object_ext(&ext3.src, 0, width, height, SURFACE_TYPE_2D); > + set_object_ext(&ext3.mid, mid_compression_format, width, height, SURFACE_TYPE_2D); > + set_object_ext(&ext3.dst, 0, width, height, SURFACE_TYPE_2D); > + set_object_ext(&ext3.final, 0, width, height, SURFACE_TYPE_2D); > + set_batch(&blt3.bb, bb, bb_size, region1); > + > + blt_block_copy3(i915, ctx, e, ahnd, &blt3, pext3); > + gem_sync(i915, blt3.final.handle); > + > + WRITE_PNG(i915, run_id, "src", &blt3.src, width, height); > + if (!config->inplace) > + WRITE_PNG(i915, run_id, "mid", &blt3.mid, width, height); > + WRITE_PNG(i915, run_id, "dst", &blt3.dst, width, height); > + WRITE_PNG(i915, run_id, "final", &blt3.final, width, height); > + > + result = memcmp(src->ptr, blt3.final.ptr, src->size); > + > + destroy_object(i915, src); > + destroy_object(i915, mid); > + destroy_object(i915, dst); > + destroy_object(i915, final); > + gem_close(i915, bb); > + put_ahnd(ahnd); > + > + igt_assert_f(!result, "source and destination surfaces differs!\n"); > +} > + > +enum copy_func { > + BLOCK_COPY, > + BLOCK_MULTICOPY, > +}; > + > +static const struct { > + const char *suffix; > + void (*copyfn)(int, const intel_ctx_t *, > + const struct intel_execution_engine2 *, > + uint32_t, uint32_t, enum blt_tiling, > + const struct test_config *); > +} copyfns[] = { > + [BLOCK_COPY] = { "", block_copy }, > + [BLOCK_MULTICOPY] = { "-multicopy", block_multicopy }, > +}; > + > static void block_copy_test(int i915, > const struct test_config *config, > const intel_ctx_t *ctx, > - struct igt_collection *set) > + struct igt_collection *set, > + enum copy_func copy_function) > { > struct igt_collection *regions; > const struct intel_execution_engine2 *e; > @@ -415,15 +623,18 @@ static void block_copy_test(int i915, > continue; > > regtxt = memregion_dynamic_subtest_name(regions); > - igt_dynamic_f("%s-%s-compfmt%d-%s", > + > + igt_dynamic_f("%s-%s-compfmt%d-%s%s", > blt_tiling_name(tiling), > config->compression ? > "compressed" : "uncompressed", > - param.compression_format, regtxt) { > - block_copy(i915, ctx, e, > - region1, region2, > - tiling, config); > + param.compression_format, regtxt, > + copyfns[copy_function].suffix) { > + copyfns[copy_function].copyfn(i915, ctx, e, > + region1, region2, > + tiling, config); > } > + > free(regtxt); > } > } > @@ -506,14 +717,21 @@ igt_main_args("bf:pst:W:H:", NULL, help_str, opt_handler, NULL) > igt_subtest_with_dynamic("block-copy-uncompressed") { > struct test_config config = {}; > > - block_copy_test(i915, &config, ctx, set); > + block_copy_test(i915, &config, ctx, set, BLOCK_COPY); > } > > igt_describe("Check block-copy flatccs compressed blit"); > igt_subtest_with_dynamic("block-copy-compressed") { > struct test_config config = { .compression = true }; > > - block_copy_test(i915, &config, ctx, set); > + block_copy_test(i915, &config, ctx, set, BLOCK_COPY); > + } > + > + igt_describe("Check block-multicopy flatccs compressed blit"); > + igt_subtest_with_dynamic("block-multicopy-compressed") { > + struct test_config config = { .compression = true }; > + > + block_copy_test(i915, &config, ctx, set, BLOCK_MULTICOPY); > } > > igt_describe("Check block-copy flatccs inplace decompression blit"); > @@ -521,7 +739,15 @@ igt_main_args("bf:pst:W:H:", NULL, help_str, opt_handler, NULL) > struct test_config config = { .compression = true, > .inplace = true }; > > - block_copy_test(i915, &config, ctx, set); > + block_copy_test(i915, &config, ctx, set, BLOCK_COPY); > + } > + > + igt_describe("Check block-multicopy flatccs inplace decompression blit"); > + igt_subtest_with_dynamic("block-multicopy-inplace") { > + struct test_config config = { .compression = true, > + .inplace = true }; > + > + block_copy_test(i915, &config, ctx, set, BLOCK_MULTICOPY); > } > > igt_describe("Check flatccs data can be copied from/to surface"); > @@ -529,7 +755,7 @@ igt_main_args("bf:pst:W:H:", NULL, help_str, opt_handler, NULL) > struct test_config config = { .compression = true, > .surfcopy = true }; > > - block_copy_test(i915, &config, ctx, set); > + block_copy_test(i915, &config, ctx, set, BLOCK_COPY); > } > > igt_describe("Check flatccs data are physically tagged and visible" > @@ -539,7 +765,7 @@ igt_main_args("bf:pst:W:H:", NULL, help_str, opt_handler, NULL) > .surfcopy = true, > .new_ctx = true }; > > - block_copy_test(i915, &config, ctx, set); > + block_copy_test(i915, &config, ctx, set, BLOCK_COPY); > } > > igt_describe("Check flatccs data persists after suspend / resume (S0)"); > @@ -548,7 +774,7 @@ igt_main_args("bf:pst:W:H:", NULL, help_str, opt_handler, NULL) > .surfcopy = true, > .suspend_resume = true }; > > - block_copy_test(i915, &config, ctx, set); > + block_copy_test(i915, &config, ctx, set, BLOCK_COPY); > } > > igt_fixture { ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add block-multicopy-* subtests (rev2) 2022-12-15 11:35 [igt-dev] [PATCH i-g-t v2 0/3] Add block-multicopy-* subtests Zbigniew Kempczyński ` (2 preceding siblings ...) 2022-12-15 11:35 ` [igt-dev] [PATCH i-g-t v2 3/3] tests/gem_ccs: Add block-multicopy subtest Zbigniew Kempczyński @ 2022-12-15 14:01 ` Patchwork 2022-12-16 13:37 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2022-12-15 14:01 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 16929 bytes --] == Series Details == Series: Add block-multicopy-* subtests (rev2) URL : https://patchwork.freedesktop.org/series/111852/ State : success == Summary == CI Bug Log - changes from CI_DRM_12510 -> IGTPW_8240 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/index.html Participating hosts (19 -> 41) ------------------------------ Additional (22): fi-kbl-soraka bat-dg1-6 bat-dg1-5 bat-adlp-6 bat-rpls-1 bat-rpls-2 fi-skl-6600u fi-bsw-n3050 bat-dg2-8 bat-adlm-1 bat-dg2-9 fi-bwr-2160 bat-adln-1 bat-atsm-1 bat-jsl-3 bat-rplp-1 bat-dg2-11 fi-bsw-nick bat-dg1-7 bat-kbl-2 bat-adlp-9 bat-adlp-4 Known issues ------------ Here are the changes found in IGTPW_8240 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-adlp-4: NOTRUN -> [SKIP][1] ([i915#7456]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-adlp-4/igt@debugfs_test@basic-hwmon.html * igt@gem_exec_gttfill@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271]) +7 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/fi-kbl-soraka/igt@gem_exec_gttfill@basic.html * igt@gem_huc_copy@huc-copy: - fi-skl-6600u: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/fi-skl-6600u/igt@gem_huc_copy@huc-copy.html - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-bsw-nick: NOTRUN -> [SKIP][6] ([fdo#109271]) +39 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/fi-bsw-nick/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@random-engines: - fi-bsw-n3050: NOTRUN -> [SKIP][7] ([fdo#109271]) +20 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html - fi-skl-6600u: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#4613]) +3 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/fi-skl-6600u/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-adlp-4: NOTRUN -> [SKIP][9] ([i915#4613]) +3 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-adlp-4/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-dg1-5: NOTRUN -> [SKIP][10] ([i915#4083]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-5/igt@gem_mmap@basic.html - bat-dg1-6: NOTRUN -> [SKIP][11] ([i915#4083]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-6/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-dg1-6: NOTRUN -> [SKIP][12] ([i915#4079]) +1 similar issue [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-6/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg1-6: NOTRUN -> [SKIP][13] ([i915#4077]) +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-6/igt@gem_tiled_fence_blits@basic.html - bat-dg1-5: NOTRUN -> [SKIP][14] ([i915#4077]) +2 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-5/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-dg1-5: NOTRUN -> [SKIP][15] ([i915#4079]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-5/igt@gem_tiled_pread_basic.html - bat-adlp-4: NOTRUN -> [SKIP][16] ([i915#3282]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-adlp-4/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness: - bat-dg1-6: NOTRUN -> [SKIP][17] ([i915#7561]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-6/igt@i915_pm_backlight@basic-brightness.html - bat-dg1-5: NOTRUN -> [SKIP][18] ([i915#7561]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-5/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_rps@basic-api: - bat-dg1-6: NOTRUN -> [SKIP][19] ([i915#6621]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-6/igt@i915_pm_rps@basic-api.html - bat-dg1-5: NOTRUN -> [SKIP][20] ([i915#6621]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-5/igt@i915_pm_rps@basic-api.html - bat-adlp-4: NOTRUN -> [SKIP][21] ([i915#6621]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-adlp-4/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][22] ([i915#1886]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - bat-dg1-5: NOTRUN -> [SKIP][23] ([i915#4212]) +7 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg1-5: NOTRUN -> [SKIP][24] ([i915#4215]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html - bat-dg1-6: NOTRUN -> [SKIP][25] ([i915#4215]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-dg1-6: NOTRUN -> [SKIP][26] ([i915#4212]) +7 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-6/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_chamelium@dp-crc-fast: - bat-adlp-4: NOTRUN -> [SKIP][27] ([fdo#111827]) +8 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-adlp-4/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@dp-edid-read: - fi-bsw-n3050: NOTRUN -> [SKIP][28] ([fdo#109271] / [fdo#111827]) +8 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/fi-bsw-n3050/igt@kms_chamelium@dp-edid-read.html * igt@kms_chamelium@hdmi-crc-fast: - fi-skl-6600u: NOTRUN -> [SKIP][29] ([fdo#109271] / [fdo#111827]) +8 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/fi-skl-6600u/igt@kms_chamelium@hdmi-crc-fast.html - bat-dg1-6: NOTRUN -> [SKIP][30] ([fdo#111827]) +8 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-6/igt@kms_chamelium@hdmi-crc-fast.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-bsw-nick: NOTRUN -> [SKIP][31] ([fdo#109271] / [fdo#111827]) +8 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/fi-bsw-nick/igt@kms_chamelium@hdmi-hpd-fast.html - bat-dg1-5: NOTRUN -> [SKIP][32] ([fdo#111827]) +8 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-5/igt@kms_chamelium@hdmi-hpd-fast.html - fi-kbl-soraka: NOTRUN -> [SKIP][33] ([fdo#109271] / [fdo#111827]) +7 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/fi-kbl-soraka/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor: - bat-adlp-4: NOTRUN -> [SKIP][34] ([i915#4103]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-adlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html - bat-dg1-5: NOTRUN -> [SKIP][35] ([i915#4103] / [i915#4213]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html - bat-dg1-6: NOTRUN -> [SKIP][36] ([i915#4103] / [i915#4213]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg1-5: NOTRUN -> [SKIP][37] ([fdo#109285]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-5/igt@kms_force_connector_basic@force-load-detect.html - bat-dg1-6: NOTRUN -> [SKIP][38] ([fdo#109285]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-adlp-4: NOTRUN -> [SKIP][39] ([i915#4093]) +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-adlp-4/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_psr@primary_mmap_gtt: - fi-bwr-2160: NOTRUN -> [SKIP][40] ([fdo#109271]) +54 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/fi-bwr-2160/igt@kms_psr@primary_mmap_gtt.html * igt@kms_psr@sprite_plane_onoff: - bat-dg1-6: NOTRUN -> [SKIP][41] ([i915#1072] / [i915#4078]) +3 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-6/igt@kms_psr@sprite_plane_onoff.html - bat-dg1-5: NOTRUN -> [SKIP][42] ([i915#1072] / [i915#4078]) +3 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-5/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg1-6: NOTRUN -> [SKIP][43] ([i915#3555]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-6/igt@kms_setmode@basic-clone-single-crtc.html - bat-dg1-5: NOTRUN -> [SKIP][44] ([i915#3555]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-5/igt@kms_setmode@basic-clone-single-crtc.html - bat-adlp-4: NOTRUN -> [SKIP][45] ([i915#3555] / [i915#4579]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-adlp-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-dg1-5: NOTRUN -> [SKIP][46] ([i915#3708]) +3 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-5/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-dg1-5: NOTRUN -> [SKIP][47] ([i915#3708] / [i915#4077]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-5/igt@prime_vgem@basic-gtt.html - bat-dg1-6: NOTRUN -> [SKIP][48] ([i915#3708] / [i915#4077]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-6/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - bat-dg1-6: NOTRUN -> [SKIP][49] ([i915#3708]) +3 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-6/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-userptr: - bat-adlp-4: NOTRUN -> [SKIP][50] ([fdo#109295] / [i915#3301] / [i915#3708]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-adlp-4/igt@prime_vgem@basic-userptr.html - fi-skl-6600u: NOTRUN -> [SKIP][51] ([fdo#109271]) +4 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/fi-skl-6600u/igt@prime_vgem@basic-userptr.html - bat-dg1-5: NOTRUN -> [SKIP][52] ([i915#3708] / [i915#4873]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-5/igt@prime_vgem@basic-userptr.html - bat-dg1-6: NOTRUN -> [SKIP][53] ([i915#3708] / [i915#4873]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-dg1-6/igt@prime_vgem@basic-userptr.html * igt@prime_vgem@basic-write: - bat-adlp-4: NOTRUN -> [SKIP][54] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/bat-adlp-4/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions: - fi-bsw-kefka: [FAIL][55] ([i915#6298]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3003]: https://gitlab.freedesktop.org/drm/intel/issues/3003 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4093]: https://gitlab.freedesktop.org/drm/intel/issues/4093 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4303]: https://gitlab.freedesktop.org/drm/intel/issues/4303 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077 [i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078 [i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093 [i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094 [i915#6166]: https://gitlab.freedesktop.org/drm/intel/issues/6166 [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298 [i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 [i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7498]: https://gitlab.freedesktop.org/drm/intel/issues/7498 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7094 -> IGTPW_8240 CI-20190529: 20190529 CI_DRM_12510: e7a0d02714edf5ceac30b8da5ed7151d7dadbd40 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8240: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/index.html IGT_7094: 1763071e9d50c5e992257c9197cb26f166de6fae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@gem_ccs@block-multicopy-compressed +igt@gem_ccs@block-multicopy-inplace == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/index.html [-- Attachment #2: Type: text/html, Size: 20378 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Add block-multicopy-* subtests (rev2) 2022-12-15 11:35 [igt-dev] [PATCH i-g-t v2 0/3] Add block-multicopy-* subtests Zbigniew Kempczyński ` (3 preceding siblings ...) 2022-12-15 14:01 ` [igt-dev] ✓ Fi.CI.BAT: success for Add block-multicopy-* subtests (rev2) Patchwork @ 2022-12-16 13:37 ` Patchwork 2022-12-19 8:02 ` Zbigniew Kempczyński 4 siblings, 1 reply; 8+ messages in thread From: Patchwork @ 2022-12-16 13:37 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 49784 bytes --] == Series Details == Series: Add block-multicopy-* subtests (rev2) URL : https://patchwork.freedesktop.org/series/111852/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12510_full -> IGTPW_8240_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8240_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8240_full, please notify your bug team 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_8240/index.html Participating hosts (14 -> 11) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8240_full: ### IGT changes ### #### Possible regressions #### * {igt@gem_ccs@block-multicopy-compressed} (NEW): - shard-iclb: NOTRUN -> [SKIP][1] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb1/igt@gem_ccs@block-multicopy-compressed.html - {shard-rkl}: NOTRUN -> [SKIP][2] +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html - {shard-dg1}: NOTRUN -> [SKIP][3] +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-dg1-19/igt@gem_ccs@block-multicopy-compressed.html - shard-tglb: NOTRUN -> [SKIP][4] +1 similar issue [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb7/igt@gem_ccs@block-multicopy-compressed.html * {igt@gem_ccs@block-multicopy-inplace} (NEW): - {shard-tglu}: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-1-size-64: - shard-glk: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-glk6/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-1-size-64.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-glk2/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-1-size-64.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@perf_pmu@all-busy-idle-check-all: - {shard-dg1}: [PASS][8] -> [FAIL][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-dg1-15/igt@perf_pmu@all-busy-idle-check-all.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-dg1-13/igt@perf_pmu@all-busy-idle-check-all.html New tests --------- New tests have been introduced between CI_DRM_12510_full and IGTPW_8240_full: ### New IGT tests (2) ### * igt@gem_ccs@block-multicopy-compressed: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@gem_ccs@block-multicopy-inplace: - Statuses : 8 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8240_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglb: [PASS][10] -> [FAIL][11] ([i915#6268]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-tglb5/igt@gem_ctx_exec@basic-nohangcheck.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglb: NOTRUN -> [SKIP][12] ([fdo#109314]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb6/igt@gem_ctx_param@set-priority-not-supported.html - shard-iclb: NOTRUN -> [SKIP][13] ([fdo#109314]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb2/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@legacy-engines-hostile: - shard-snb: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#1099]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-snb4/igt@gem_ctx_persistence@legacy-engines-hostile.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-iclb: [PASS][15] -> [SKIP][16] ([i915#4525]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-iclb2/igt@gem_exec_balancer@parallel-keep-in-fence.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb8/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglb: NOTRUN -> [FAIL][17] ([i915#6117]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb7/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [PASS][18] -> [FAIL][19] ([i915#2846]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-glk4/igt@gem_exec_fair@basic-deadline.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-glk8/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-iclb: [PASS][20] -> [FAIL][21] ([i915#2842]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb6/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-glk: [PASS][22] -> [FAIL][23] ([i915#2842]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-glk7/igt@gem_exec_fair@basic-none@vcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-glk6/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [PASS][24] -> [FAIL][25] ([i915#2842]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [PASS][26] -> [FAIL][27] ([i915#2842]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: NOTRUN -> [FAIL][28] ([i915#2842]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-glk8/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][29] ([i915#2842]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_lmem_swapping@massive: - shard-iclb: NOTRUN -> [SKIP][30] ([i915#4613]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb7/igt@gem_lmem_swapping@massive.html - shard-tglb: NOTRUN -> [SKIP][31] ([i915#4613]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb2/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@verify: - shard-glk: NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#4613]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-glk9/igt@gem_lmem_swapping@verify.html * igt@gem_media_vme: - shard-tglb: NOTRUN -> [SKIP][33] ([i915#284]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb2/igt@gem_media_vme.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-iclb: NOTRUN -> [SKIP][34] ([i915#4270]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb3/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html - shard-tglb: NOTRUN -> [SKIP][35] ([i915#4270]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb1/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_softpin@evict-single-offset: - shard-apl: NOTRUN -> [FAIL][36] ([i915#4171]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-apl6/igt@gem_softpin@evict-single-offset.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglb: NOTRUN -> [SKIP][37] ([i915#3297]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb7/igt@gem_userptr_blits@create-destroy-unsync.html - shard-iclb: NOTRUN -> [SKIP][38] ([i915#3297]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gen3_render_linear_blits: - shard-iclb: NOTRUN -> [SKIP][39] ([fdo#109289]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb6/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@basic-allowed: - shard-tglb: NOTRUN -> [SKIP][40] ([fdo#109289]) +2 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb7/igt@gen7_exec_parse@basic-allowed.html * igt@gen9_exec_parse@basic-rejected: - shard-tglb: NOTRUN -> [SKIP][41] ([i915#2527] / [i915#2856]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb2/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-invalid-length: - shard-iclb: NOTRUN -> [SKIP][42] ([i915#2856]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb8/igt@gen9_exec_parse@batch-invalid-length.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [PASS][43] -> [FAIL][44] ([i915#3989] / [i915#454]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-iclb8/igt@i915_pm_dc@dc6-dpms.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-tglb: NOTRUN -> [SKIP][45] ([i915#4281]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb7/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglb: NOTRUN -> [WARN][46] ([i915#2681]) +3 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-iclb: NOTRUN -> [WARN][47] ([i915#2684]) +2 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-iclb: NOTRUN -> [FAIL][48] ([i915#2684] / [i915#3591]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_pm_rpm@pc8-residency: - shard-iclb: NOTRUN -> [SKIP][49] ([fdo#109293] / [fdo#109506]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb5/igt@i915_pm_rpm@pc8-residency.html * igt@i915_pm_sseu@full-enable: - shard-tglb: NOTRUN -> [SKIP][50] ([i915#4387]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb2/igt@i915_pm_sseu@full-enable.html * igt@i915_query@test-query-geometry-subslices: - shard-iclb: NOTRUN -> [SKIP][51] ([i915#5723]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb8/igt@i915_query@test-query-geometry-subslices.html - shard-tglb: NOTRUN -> [SKIP][52] ([i915#5723]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb5/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@forcewake: - shard-apl: NOTRUN -> [DMESG-WARN][53] ([i915#180]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-apl1/igt@i915_suspend@forcewake.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-iclb: NOTRUN -> [SKIP][54] ([i915#404]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglb: NOTRUN -> [SKIP][55] ([i915#404]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-iclb: NOTRUN -> [SKIP][56] ([i915#5286]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html - shard-tglb: NOTRUN -> [SKIP][57] ([i915#5286]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][58] ([fdo#111614]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb1/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html - shard-iclb: NOTRUN -> [SKIP][59] ([fdo#110725] / [fdo#111614]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb1/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][60] ([fdo#111615]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_joiner@invalid-modeset: - shard-tglb: NOTRUN -> [SKIP][61] ([i915#2705]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb1/igt@kms_big_joiner@invalid-modeset.html - shard-iclb: NOTRUN -> [SKIP][62] ([i915#2705]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb7/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][63] ([fdo#109278] / [i915#3886]) +2 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb7/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#3886]) +2 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-apl1/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html - shard-tglb: NOTRUN -> [SKIP][65] ([i915#3689] / [i915#3886]) +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb2/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][66] ([fdo#111615] / [i915#3689]) +3 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb1/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][67] ([i915#6095]) +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb2/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#3886]) +2 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-glk1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-tglb: NOTRUN -> [SKIP][69] ([i915#3689] / [i915#6095]) +2 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb2/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][70] ([i915#3689]) +2 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb2/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_cdclk@mode-transition: - shard-iclb: NOTRUN -> [SKIP][71] ([i915#3742]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb8/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium@hdmi-crc-fast: - shard-glk: NOTRUN -> [SKIP][72] ([fdo#109271] / [fdo#111827]) +3 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-glk7/igt@kms_chamelium@hdmi-crc-fast.html * igt@kms_chamelium@hdmi-edid-stress-resolution-4k: - shard-tglb: NOTRUN -> [SKIP][73] ([fdo#109284] / [fdo#111827]) +2 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb1/igt@kms_chamelium@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium@hdmi-hpd: - shard-iclb: NOTRUN -> [SKIP][74] ([fdo#109284] / [fdo#111827]) +2 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb6/igt@kms_chamelium@hdmi-hpd.html - shard-apl: NOTRUN -> [SKIP][75] ([fdo#109271] / [fdo#111827]) +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-apl8/igt@kms_chamelium@hdmi-hpd.html * igt@kms_chamelium@vga-hpd-with-enabled-mode: - shard-snb: NOTRUN -> [SKIP][76] ([fdo#109271] / [fdo#111827]) +2 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-snb4/igt@kms_chamelium@vga-hpd-with-enabled-mode.html * igt@kms_color@deep-color: - shard-iclb: NOTRUN -> [SKIP][77] ([i915#3555]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb5/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglb: NOTRUN -> [SKIP][78] ([i915#3116] / [i915#3299]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb2/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-iclb: NOTRUN -> [SKIP][79] ([i915#3116]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-tglb: NOTRUN -> [SKIP][80] ([fdo#109274] / [fdo#111825]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb7/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-iclb: NOTRUN -> [SKIP][81] ([i915#3840]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb6/igt@kms_dsc@dsc-with-bpc-formats.html - shard-apl: NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#7205]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-apl1/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-iclb: NOTRUN -> [SKIP][83] ([fdo#109274]) +2 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb3/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglb: NOTRUN -> [SKIP][84] ([fdo#109274] / [fdo#111825] / [i915#3637]) +2 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-iclb: [PASS][85] -> [SKIP][86] ([i915#3555]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-tglb: NOTRUN -> [SKIP][87] ([i915#2587] / [i915#2672]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][88] ([i915#2672]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][89] ([i915#2587] / [i915#2672]) +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][90] ([i915#2672] / [i915#3555]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt: - shard-tglb: NOTRUN -> [SKIP][91] ([i915#6497]) +4 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt: - shard-iclb: NOTRUN -> [SKIP][92] ([fdo#109280]) +13 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-tglb: NOTRUN -> [SKIP][93] ([fdo#109280] / [fdo#111825]) +14 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-glk: NOTRUN -> [SKIP][94] ([fdo#109271]) +59 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-glk8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglb: NOTRUN -> [SKIP][95] ([i915#3555]) +2 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb6/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-edp-1: - shard-iclb: NOTRUN -> [SKIP][96] ([i915#5235]) +2 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [PASS][97] -> [SKIP][98] ([i915#5235]) +2 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-iclb3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#658]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-glk2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-iclb: NOTRUN -> [SKIP][100] ([fdo#109642] / [fdo#111068] / [i915#658]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb8/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-apl: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#658]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-apl2/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglb: NOTRUN -> [SKIP][102] ([i915#7037]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@psr2_sprite_blt: - shard-iclb: NOTRUN -> [SKIP][103] ([fdo#109441]) +1 similar issue [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb8/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr@psr2_sprite_mmap_cpu: - shard-iclb: [PASS][104] -> [SKIP][105] ([fdo#109441]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_cpu.html * igt@kms_psr@psr2_sprite_plane_onoff: - shard-apl: NOTRUN -> [SKIP][106] ([fdo#109271]) +62 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-apl1/igt@kms_psr@psr2_sprite_plane_onoff.html - shard-tglb: NOTRUN -> [FAIL][107] ([i915#132] / [i915#3467]) +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb2/igt@kms_psr@psr2_sprite_plane_onoff.html * igt@kms_vblank@pipe-c-query-busy-hang: - shard-snb: NOTRUN -> [SKIP][108] ([fdo#109271]) +89 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-snb5/igt@kms_vblank@pipe-c-query-busy-hang.html * igt@kms_vblank@pipe-d-wait-idle: - shard-iclb: NOTRUN -> [SKIP][109] ([fdo#109278]) +7 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb1/igt@kms_vblank@pipe-d-wait-idle.html - shard-apl: NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#533]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-apl2/igt@kms_vblank@pipe-d-wait-idle.html * igt@perf_pmu@event-wait@rcs0: - shard-iclb: NOTRUN -> [SKIP][111] ([fdo#112283]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb1/igt@perf_pmu@event-wait@rcs0.html - shard-tglb: NOTRUN -> [SKIP][112] ([fdo#112283]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb6/igt@perf_pmu@event-wait@rcs0.html * igt@prime_vgem@basic-userptr: - shard-tglb: NOTRUN -> [SKIP][113] ([fdo#109295] / [i915#3301]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb2/igt@prime_vgem@basic-userptr.html - shard-iclb: NOTRUN -> [SKIP][114] ([fdo#109295] / [i915#3301]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb7/igt@prime_vgem@basic-userptr.html * igt@sysfs_clients@pidname: - shard-glk: NOTRUN -> [SKIP][115] ([fdo#109271] / [i915#2994]) +1 similar issue [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-glk5/igt@sysfs_clients@pidname.html * igt@v3d/v3d_create_bo@create-bo-4096: - shard-iclb: NOTRUN -> [SKIP][116] ([fdo#109315]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb2/igt@v3d/v3d_create_bo@create-bo-4096.html * igt@v3d/v3d_perfmon@get-values-invalid-pointer: - shard-tglb: NOTRUN -> [SKIP][117] ([fdo#109315] / [i915#2575]) +2 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb2/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html #### Possible fixes #### * igt@gem_eio@kms: - {shard-dg1}: [FAIL][118] ([i915#5784]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-dg1-18/igt@gem_eio@kms.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-dg1-12/igt@gem_eio@kms.html * igt@gem_exec_fair@basic-deadline: - {shard-rkl}: [FAIL][120] ([i915#2846]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][122] ([i915#2842]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-glk7/igt@gem_exec_fair@basic-none-share@rcs0.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-glk7/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - {shard-rkl}: [SKIP][124] ([i915#3281]) -> [PASS][125] +8 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-rkl-1/igt@gem_exec_reloc@basic-wc-read-noreloc.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_mmap_gtt@coherency: - {shard-rkl}: [SKIP][126] ([fdo#111656]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-rkl-1/igt@gem_mmap_gtt@coherency.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-rkl-5/igt@gem_mmap_gtt@coherency.html * igt@gem_pread@snoop: - {shard-rkl}: [SKIP][128] ([i915#3282]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-rkl-4/igt@gem_pread@snoop.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-rkl-5/igt@gem_pread@snoop.html * igt@gen9_exec_parse@bb-start-out: - {shard-rkl}: [SKIP][130] ([i915#2527]) -> [PASS][131] +1 similar issue [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-rkl-3/igt@gen9_exec_parse@bb-start-out.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-rkl-5/igt@gen9_exec_parse@bb-start-out.html * igt@i915_pm_dc@dc6-dpms: - {shard-rkl}: [SKIP][132] ([i915#3361]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-rkl-5/igt@i915_pm_dc@dc6-dpms.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-rkl-4/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][134] ([i915#3989] / [i915#454]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-iclb7/igt@i915_pm_dc@dc6-psr.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb1/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - {shard-dg1}: [SKIP][136] ([i915#1397]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_suspend@basic-s2idle-without-i915: - {shard-rkl}: [FAIL][138] ([fdo#103375]) -> [PASS][139] +1 similar issue [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-rkl-3/igt@i915_suspend@basic-s2idle-without-i915.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-rkl-2/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-glk: [FAIL][140] ([i915#2346]) -> [PASS][141] +1 similar issue [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1: - shard-glk: [FAIL][142] ([i915#79]) -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-suspend: - {shard-rkl}: [SKIP][144] ([i915#1849] / [i915#4098]) -> [PASS][145] +4 similar issues [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1: - shard-iclb: [SKIP][146] ([i915#5235]) -> [PASS][147] +5 similar issues [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html * igt@kms_psr@dpms: - {shard-rkl}: [SKIP][148] ([i915#1072]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-rkl-4/igt@kms_psr@dpms.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-rkl-6/igt@kms_psr@dpms.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: [SKIP][150] ([fdo#109441]) -> [PASS][151] +1 similar issue [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-iclb1/igt@kms_psr@psr2_primary_page_flip.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglb: [SKIP][152] ([i915#5519]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-tglb5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-tglb1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-iclb: [SKIP][154] ([i915#5519]) -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-iclb5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_vblank@pipe-a-ts-continuation-idle: - {shard-rkl}: [SKIP][156] ([i915#1845] / [i915#4098]) -> [PASS][157] +6 similar issues [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-rkl-3/igt@kms_vblank@pipe-a-ts-continuation-idle.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-rkl-6/igt@kms_vblank@pipe-a-ts-continuation-idle.html * igt@perf@gen8-unprivileged-single-ctx-counters: - {shard-rkl}: [SKIP][158] ([i915#2436]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-rkl-1/igt@perf@gen8-unprivileged-single-ctx-counters.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@sysfs_heartbeat_interval@precise@rcs0: - {shard-dg1}: [FAIL][160] ([i915#1755]) -> [PASS][161] +4 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-dg1-18/igt@sysfs_heartbeat_interval@precise@rcs0.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-dg1-14/igt@sysfs_heartbeat_interval@precise@rcs0.html #### Warnings #### * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-iclb: [SKIP][162] ([i915#2920]) -> [SKIP][163] ([i915#658]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb6/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-iclb: [SKIP][164] ([i915#2920]) -> [SKIP][165] ([fdo#111068] / [i915#658]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-iclb: [SKIP][166] ([i915#658]) -> [SKIP][167] ([i915#2920]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@runner@aborted: - shard-apl: ([FAIL][168], [FAIL][169]) ([i915#3002] / [i915#4312]) -> ([FAIL][170], [FAIL][171], [FAIL][172]) ([i915#180] / [i915#3002] / [i915#4312]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-apl8/igt@runner@aborted.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12510/shard-apl3/igt@runner@aborted.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-apl8/igt@runner@aborted.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-apl1/igt@runner@aborted.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/shard-apl1/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 [i915#7205]: https://gitlab.freedesktop.org/drm/intel/issues/7205 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7673]: https://gitlab.freedesktop.org/drm/intel/issues/7673 [i915#7679]: https://gitlab.freedesktop.org/drm/intel/issues/7679 [i915#7681]: https://gitlab.freedesktop.org/drm/intel/issues/7681 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7094 -> IGTPW_8240 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12510: e7a0d02714edf5ceac30b8da5ed7151d7dadbd40 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8240: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/index.html IGT_7094: 1763071e9d50c5e992257c9197cb26f166de6fae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/index.html [-- Attachment #2: Type: text/html, Size: 53622 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Add block-multicopy-* subtests (rev2) 2022-12-16 13:37 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-12-19 8:02 ` Zbigniew Kempczyński 0 siblings, 0 replies; 8+ messages in thread From: Zbigniew Kempczyński @ 2022-12-19 8:02 UTC (permalink / raw) To: igt-dev On Fri, Dec 16, 2022 at 01:37:09PM +0000, Patchwork wrote: > Patch Details > > Series: Add block-multicopy-* subtests (rev2) > URL: https://patchwork.freedesktop.org/series/111852/ > State: failure > Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/index.html > > CI Bug Log - changes from CI_DRM_12510_full -> IGTPW_8240_full > > Summary > > FAILURE > > Serious unknown changes coming with IGTPW_8240_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_8240_full, please notify your bug team 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_8240/index.html > > Participating hosts (14 -> 11) > > Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_8240_full: > > IGT changes > > Possible regressions > > * {igt@gem_ccs@block-multicopy-compressed} (NEW): > > * shard-iclb: NOTRUN -> SKIP +1 similar issue > > * {shard-rkl}: NOTRUN -> SKIP +1 similar issue > > * {shard-dg1}: NOTRUN -> SKIP +1 similar issue > > * shard-tglb: NOTRUN -> SKIP +1 similar issue > > * {igt@gem_ccs@block-multicopy-inplace} (NEW): > > * {shard-tglu}: NOTRUN -> SKIP Test makes sense on discrete with flatccs (dg2+). > * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-1-size-64: > > * shard-glk: PASS -> FAIL Unrelated to above fail. -- Zbigniew > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * igt@perf_pmu@all-busy-idle-check-all: > * {shard-dg1}: PASS -> FAIL > > New tests > > New tests have been introduced between CI_DRM_12510_full and > IGTPW_8240_full: > > New IGT tests (2) > > * igt@gem_ccs@block-multicopy-compressed: > > * Statuses : 7 skip(s) > * Exec time: [0.0] s > * igt@gem_ccs@block-multicopy-inplace: > > * Statuses : 8 skip(s) > * Exec time: [0.0] s > > Known issues > > Here are the changes found in IGTPW_8240_full that come from known issues: > > IGT changes > > Issues hit > > * igt@gem_ctx_exec@basic-nohangcheck: > > * shard-tglb: PASS -> FAIL (i915#6268) > * igt@gem_ctx_param@set-priority-not-supported: > > * shard-tglb: NOTRUN -> SKIP (fdo#109314) > > * shard-iclb: NOTRUN -> SKIP (fdo#109314) > > * igt@gem_ctx_persistence@legacy-engines-hostile: > > * shard-snb: NOTRUN -> SKIP (fdo#109271 / i915#1099) > * igt@gem_exec_balancer@parallel-keep-in-fence: > > * shard-iclb: PASS -> SKIP (i915#4525) +1 similar issue > * igt@gem_exec_balancer@parallel-ordering: > > * shard-tglb: NOTRUN -> FAIL (i915#6117) > * igt@gem_exec_fair@basic-deadline: > > * shard-glk: PASS -> FAIL (i915#2846) > * igt@gem_exec_fair@basic-none-share@rcs0: > > * shard-iclb: PASS -> FAIL (i915#2842) > * igt@gem_exec_fair@basic-none@vcs0: > > * shard-glk: PASS -> FAIL (i915#2842) +1 similar issue > * igt@gem_exec_fair@basic-pace-share@rcs0: > > * shard-tglb: PASS -> FAIL (i915#2842) > * igt@gem_exec_fair@basic-pace-solo@rcs0: > > * shard-apl: PASS -> FAIL (i915#2842) > * igt@gem_exec_fair@basic-pace@vcs0: > > * shard-glk: NOTRUN -> FAIL (i915#2842) > * igt@gem_exec_fair@basic-pace@vcs1: > > * shard-iclb: NOTRUN -> FAIL (i915#2842) > * igt@gem_lmem_swapping@massive: > > * shard-iclb: NOTRUN -> SKIP (i915#4613) > > * shard-tglb: NOTRUN -> SKIP (i915#4613) +1 similar issue > > * igt@gem_lmem_swapping@verify: > > * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#4613) > * igt@gem_media_vme: > > * shard-tglb: NOTRUN -> SKIP (i915#284) > * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: > > * shard-iclb: NOTRUN -> SKIP (i915#4270) > > * shard-tglb: NOTRUN -> SKIP (i915#4270) > > * igt@gem_softpin@evict-single-offset: > > * shard-apl: NOTRUN -> FAIL (i915#4171) > * igt@gem_userptr_blits@create-destroy-unsync: > > * shard-tglb: NOTRUN -> SKIP (i915#3297) > > * shard-iclb: NOTRUN -> SKIP (i915#3297) > > * igt@gen3_render_linear_blits: > > * shard-iclb: NOTRUN -> SKIP (fdo#109289) +1 similar issue > * igt@gen7_exec_parse@basic-allowed: > > * shard-tglb: NOTRUN -> SKIP (fdo#109289) +2 similar issues > * igt@gen9_exec_parse@basic-rejected: > > * shard-tglb: NOTRUN -> SKIP (i915#2527 / i915#2856) +1 similar > issue > * igt@gen9_exec_parse@batch-invalid-length: > > * shard-iclb: NOTRUN -> SKIP (i915#2856) > * igt@i915_pm_dc@dc6-dpms: > > * shard-iclb: PASS -> FAIL (i915#3989 / i915#454) > * igt@i915_pm_dc@dc9-dpms: > > * shard-tglb: NOTRUN -> SKIP (i915#4281) > * igt@i915_pm_rc6_residency@rc6-idle@rcs0: > > * shard-tglb: NOTRUN -> WARN (i915#2681) +3 similar issues > * igt@i915_pm_rc6_residency@rc6-idle@vcs0: > > * shard-iclb: NOTRUN -> WARN (i915#2684) +2 similar issues > * igt@i915_pm_rc6_residency@rc6-idle@vecs0: > > * shard-iclb: NOTRUN -> FAIL (i915#2684 / i915#3591) > * igt@i915_pm_rpm@pc8-residency: > > * shard-iclb: NOTRUN -> SKIP (fdo#109293 / fdo#109506) > * igt@i915_pm_sseu@full-enable: > > * shard-tglb: NOTRUN -> SKIP (i915#4387) > * igt@i915_query@test-query-geometry-subslices: > > * shard-iclb: NOTRUN -> SKIP (i915#5723) > > * shard-tglb: NOTRUN -> SKIP (i915#5723) > > * igt@i915_suspend@forcewake: > > * shard-apl: NOTRUN -> DMESG-WARN (i915#180) > * igt@kms_atomic@plane-primary-overlay-mutable-zpos: > > * shard-iclb: NOTRUN -> SKIP (i915#404) > > * shard-tglb: NOTRUN -> SKIP (i915#404) > > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: > > * shard-iclb: NOTRUN -> SKIP (i915#5286) > > * shard-tglb: NOTRUN -> SKIP (i915#5286) > > * igt@kms_big_fb@x-tiled-32bpp-rotate-90: > > * shard-tglb: NOTRUN -> SKIP (fdo#111614) > > * shard-iclb: NOTRUN -> SKIP (fdo#110725 / fdo#111614) > > * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: > > * shard-tglb: NOTRUN -> SKIP (fdo#111615) +1 similar issue > * igt@kms_big_joiner@invalid-modeset: > > * shard-tglb: NOTRUN -> SKIP (i915#2705) > > * shard-iclb: NOTRUN -> SKIP (i915#2705) > > * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: > > * shard-iclb: NOTRUN -> SKIP (fdo#109278 / i915#3886) +2 similar > issues > * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: > > * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#3886) +2 similar > issues > > * shard-tglb: NOTRUN -> SKIP (i915#3689 / i915#3886) +1 similar > issue > > * igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs: > > * shard-tglb: NOTRUN -> SKIP (fdo#111615 / i915#3689) +3 similar > issues > * igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_mc_ccs: > > * shard-tglb: NOTRUN -> SKIP (i915#6095) +2 similar issues > * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: > > * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#3886) +2 similar > issues > * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: > > * shard-tglb: NOTRUN -> SKIP (i915#3689 / i915#6095) +2 similar > issues > * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs: > > * shard-tglb: NOTRUN -> SKIP (i915#3689) +2 similar issues > * igt@kms_cdclk@mode-transition: > > * shard-iclb: NOTRUN -> SKIP (i915#3742) > * igt@kms_chamelium@hdmi-crc-fast: > > * shard-glk: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +3 similar > issues > * igt@kms_chamelium@hdmi-edid-stress-resolution-4k: > > * shard-tglb: NOTRUN -> SKIP (fdo#109284 / fdo#111827) +2 similar > issues > * igt@kms_chamelium@hdmi-hpd: > > * shard-iclb: NOTRUN -> SKIP (fdo#109284 / fdo#111827) +2 similar > issues > > * shard-apl: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +2 similar > issues > > * igt@kms_chamelium@vga-hpd-with-enabled-mode: > > * shard-snb: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +2 similar > issues > * igt@kms_color@deep-color: > > * shard-iclb: NOTRUN -> SKIP (i915#3555) +1 similar issue > * igt@kms_content_protection@dp-mst-lic-type-0: > > * shard-tglb: NOTRUN -> SKIP (i915#3116 / i915#3299) > > * shard-iclb: NOTRUN -> SKIP (i915#3116) > > * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: > > * shard-tglb: NOTRUN -> SKIP (fdo#109274 / fdo#111825) > * igt@kms_dsc@dsc-with-bpc-formats: > > * shard-iclb: NOTRUN -> SKIP (i915#3840) > > * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#7205) > > * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: > > * shard-iclb: NOTRUN -> SKIP (fdo#109274) +2 similar issues > * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: > > * shard-tglb: NOTRUN -> SKIP (fdo#109274 / fdo#111825 / i915#3637) > +2 similar issues > * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: > > * shard-iclb: PASS -> SKIP (i915#3555) > * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: > > * shard-tglb: NOTRUN -> SKIP (i915#2587 / i915#2672) > * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: > > * shard-iclb: NOTRUN -> SKIP (i915#2672) +2 similar issues > * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: > > * shard-iclb: NOTRUN -> SKIP (i915#2587 / i915#2672) +1 similar > issue > * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: > > * shard-iclb: NOTRUN -> SKIP (i915#2672 / i915#3555) > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt: > > * shard-tglb: NOTRUN -> SKIP (i915#6497) +4 similar issues > * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt: > > * shard-iclb: NOTRUN -> SKIP (fdo#109280) +13 similar issues > * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: > > * shard-tglb: NOTRUN -> SKIP (fdo#109280 / fdo#111825) +14 similar > issues > * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: > > * shard-glk: NOTRUN -> SKIP (fdo#109271) +59 similar issues > * igt@kms_hdr@bpc-switch-dpms: > > * shard-tglb: NOTRUN -> SKIP (i915#3555) +2 similar issues > * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-edp-1: > > * shard-iclb: NOTRUN -> SKIP (i915#5235) +2 similar issues > * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: > > * shard-iclb: PASS -> SKIP (i915#5235) +2 similar issues > * igt@kms_psr2_sf@plane-move-sf-dmg-area: > > * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#658) > * igt@kms_psr2_su@frontbuffer-xrgb8888: > > * shard-iclb: NOTRUN -> SKIP (fdo#109642 / fdo#111068 / i915#658) > > * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#658) > > * shard-tglb: NOTRUN -> SKIP (i915#7037) > > * igt@kms_psr@psr2_sprite_blt: > > * shard-iclb: NOTRUN -> SKIP (fdo#109441) +1 similar issue > * igt@kms_psr@psr2_sprite_mmap_cpu: > > * shard-iclb: PASS -> SKIP (fdo#109441) > * igt@kms_psr@psr2_sprite_plane_onoff: > > * shard-apl: NOTRUN -> SKIP (fdo#109271) +62 similar issues > > * shard-tglb: NOTRUN -> FAIL (i915#132 / i915#3467) +1 similar > issue > > * igt@kms_vblank@pipe-c-query-busy-hang: > > * shard-snb: NOTRUN -> SKIP (fdo#109271) +89 similar issues > * igt@kms_vblank@pipe-d-wait-idle: > > * shard-iclb: NOTRUN -> SKIP (fdo#109278) +7 similar issues > > * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#533) > > * igt@perf_pmu@event-wait@rcs0: > > * shard-iclb: NOTRUN -> SKIP (fdo#112283) > > * shard-tglb: NOTRUN -> SKIP (fdo#112283) > > * igt@prime_vgem@basic-userptr: > > * shard-tglb: NOTRUN -> SKIP (fdo#109295 / i915#3301) > > * shard-iclb: NOTRUN -> SKIP (fdo#109295 / i915#3301) > > * igt@sysfs_clients@pidname: > > * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#2994) +1 similar > issue > * igt@v3d/v3d_create_bo@create-bo-4096: > > * shard-iclb: NOTRUN -> SKIP (fdo#109315) +1 similar issue > * igt@v3d/v3d_perfmon@get-values-invalid-pointer: > > * shard-tglb: NOTRUN -> SKIP (fdo#109315 / i915#2575) +2 similar > issues > > Possible fixes > > * igt@gem_eio@kms: > > * {shard-dg1}: FAIL (i915#5784) -> PASS > * igt@gem_exec_fair@basic-deadline: > > * {shard-rkl}: FAIL (i915#2846) -> PASS > * igt@gem_exec_fair@basic-none-share@rcs0: > > * shard-glk: FAIL (i915#2842) -> PASS > * igt@gem_exec_reloc@basic-wc-read-noreloc: > > * {shard-rkl}: SKIP (i915#3281) -> PASS +8 similar issues > * igt@gem_mmap_gtt@coherency: > > * {shard-rkl}: SKIP (fdo#111656) -> PASS > * igt@gem_pread@snoop: > > * {shard-rkl}: SKIP (i915#3282) -> PASS > * igt@gen9_exec_parse@bb-start-out: > > * {shard-rkl}: SKIP (i915#2527) -> PASS +1 similar issue > * igt@i915_pm_dc@dc6-dpms: > > * {shard-rkl}: SKIP (i915#3361) -> PASS > * igt@i915_pm_dc@dc6-psr: > > * shard-iclb: FAIL (i915#3989 / i915#454) -> PASS > * igt@i915_pm_rpm@dpms-mode-unset-lpsp: > > * {shard-dg1}: SKIP (i915#1397) -> PASS > * igt@i915_suspend@basic-s2idle-without-i915: > > * {shard-rkl}: FAIL (fdo#103375) -> PASS +1 similar issue > * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: > > * shard-glk: FAIL (i915#2346) -> PASS +1 similar issue > * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1: > > * shard-glk: FAIL (i915#79) -> PASS > * igt@kms_frontbuffer_tracking@fbc-suspend: > > * {shard-rkl}: SKIP (i915#1849 / i915#4098) -> PASS +4 similar > issues > * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1: > > * shard-iclb: SKIP (i915#5235) -> PASS +5 similar issues > * igt@kms_psr@dpms: > > * {shard-rkl}: SKIP (i915#1072) -> PASS > * igt@kms_psr@psr2_primary_page_flip: > > * shard-iclb: SKIP (fdo#109441) -> PASS +1 similar issue > * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > > * shard-tglb: SKIP (i915#5519) -> PASS > > * shard-iclb: SKIP (i915#5519) -> PASS > > * igt@kms_vblank@pipe-a-ts-continuation-idle: > > * {shard-rkl}: SKIP (i915#1845 / i915#4098) -> PASS +6 similar > issues > * igt@perf@gen8-unprivileged-single-ctx-counters: > > * {shard-rkl}: SKIP (i915#2436) -> PASS > * igt@sysfs_heartbeat_interval@precise@rcs0: > > * {shard-dg1}: FAIL (i915#1755) -> PASS +4 similar issues > > Warnings > > * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: > > * shard-iclb: SKIP (i915#2920) -> SKIP (i915#658) > * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: > > * shard-iclb: SKIP (i915#2920) -> SKIP (fdo#111068 / i915#658) > * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: > > * shard-iclb: SKIP (i915#658) -> SKIP (i915#2920) > * igt@runner@aborted: > > * shard-apl: (FAIL, FAIL) (i915#3002 / i915#4312) -> (FAIL, FAIL, > FAIL) (i915#180 / i915#3002 / i915#4312) > > {name}: This element is suppressed. This means it is ignored when > computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_7094 -> IGTPW_8240 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_12510: e7a0d02714edf5ceac30b8da5ed7151d7dadbd40 @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_8240: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8240/index.html > IGT_7094: 1763071e9d50c5e992257c9197cb26f166de6fae @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ > git://anongit.freedesktop.org/piglit ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2022-12-19 8:23 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-12-15 11:35 [igt-dev] [PATCH i-g-t v2 0/3] Add block-multicopy-* subtests Zbigniew Kempczyński 2022-12-15 11:35 ` [igt-dev] [PATCH i-g-t v2 1/3] lib/i915_blt: Remove src == dst pitch restriction Zbigniew Kempczyński 2022-12-15 11:35 ` [igt-dev] [PATCH i-g-t v2 2/3] lib/i915_blt: Extract blit emit functions Zbigniew Kempczyński 2022-12-15 11:35 ` [igt-dev] [PATCH i-g-t v2 3/3] tests/gem_ccs: Add block-multicopy subtest Zbigniew Kempczyński 2022-12-19 8:23 ` Karolina Stolarek 2022-12-15 14:01 ` [igt-dev] ✓ Fi.CI.BAT: success for Add block-multicopy-* subtests (rev2) Patchwork 2022-12-16 13:37 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-12-19 8:02 ` 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