* [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver
@ 2026-02-20 16:17 Juha-Pekka Heikkila
2026-02-20 16:17 ` [PATCH i-g-t 1/8] lib: take out duplicate assert Juha-Pekka Heikkila
` (15 more replies)
0 siblings, 16 replies; 22+ messages in thread
From: Juha-Pekka Heikkila @ 2026-02-20 16:17 UTC (permalink / raw)
To: igt-dev; +Cc: Juha-Pekka Heikkila
Here enabled Vebox engine copy of framebuffers and force yuv framebuffers
on Vebox path.
Juha-Pekka Heikkila (8):
lib: take out duplicate assert
lib/intel_batchbuffer: make __intel_bb_create gt aware
lib/xe: add xe_exec_queue_create_class_gt
lib/intel_batchbuffer: add intel_bb_create_with_gt function
lib/intel_batchbuffer: move engine class selection to helper
lib/intel_batchbuffer/xe: add bb exec path to use specific engine and
gt
lib: Enable Vebox framebuffer copying on Intel Xe2
lib/igt_fb: on Intel force Vebox copy on yuv formats
lib/igt_fb.c | 49 +++++++++++++++-----
lib/intel_batchbuffer.c | 99 ++++++++++++++++++++++++++++-------------
lib/intel_batchbuffer.h | 3 ++
lib/veboxcopy_gen12.c | 2 -
lib/xe/xe_ioctl.c | 20 +++++++++
lib/xe/xe_ioctl.h | 2 +
6 files changed, 132 insertions(+), 43 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 22+ messages in thread* [PATCH i-g-t 1/8] lib: take out duplicate assert 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila @ 2026-02-20 16:17 ` Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware Juha-Pekka Heikkila ` (14 subsequent siblings) 15 siblings, 0 replies; 22+ messages in thread From: Juha-Pekka Heikkila @ 2026-02-20 16:17 UTC (permalink / raw) To: igt-dev; +Cc: Juha-Pekka Heikkila in gen12_vebox_copyfunc there's the same assert few lines below Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> --- lib/veboxcopy_gen12.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/veboxcopy_gen12.c b/lib/veboxcopy_gen12.c index 2193433a1..9d07ebb91 100644 --- a/lib/veboxcopy_gen12.c +++ b/lib/veboxcopy_gen12.c @@ -314,8 +314,6 @@ void gen12_vebox_copyfunc(struct intel_bb *ibb, uint32_t aux_pgtable_state; int format; - igt_assert(src->bpp == dst->bpp); - intel_bb_flush(ibb, I915_EXEC_VEBOX); intel_bb_add_intel_buf(ibb, dst, true); -- 2.43.0 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 1/8] lib: take out duplicate assert Juha-Pekka Heikkila @ 2026-02-20 16:17 ` Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 3/8] lib/xe: add xe_exec_queue_create_class_gt Juha-Pekka Heikkila ` (13 subsequent siblings) 15 siblings, 0 replies; 22+ messages in thread From: Juha-Pekka Heikkila @ 2026-02-20 16:17 UTC (permalink / raw) To: igt-dev; +Cc: Juha-Pekka Heikkila add possibility to use gt id in __intel_bb_create Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> --- lib/intel_batchbuffer.c | 20 +++++++++++--------- lib/intel_batchbuffer.h | 1 + 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index 3b25a385b..2e1c45335 100644 --- a/lib/intel_batchbuffer.c +++ b/lib/intel_batchbuffer.c @@ -903,7 +903,8 @@ static struct intel_bb * __intel_bb_create(int fd, uint32_t ctx, uint32_t vm, const intel_ctx_cfg_t *cfg, uint32_t size, bool do_relocs, uint64_t start, uint64_t end, uint64_t alignment, - uint8_t allocator_type, enum allocator_strategy strategy, uint64_t region) + uint8_t allocator_type, enum allocator_strategy strategy, + uint64_t region, uint16_t gt_id) { struct drm_i915_gem_exec_object2 *object; struct intel_bb *ibb = calloc(1, sizeof(*ibb)); @@ -913,6 +914,7 @@ __intel_bb_create(int fd, uint32_t ctx, uint32_t vm, const intel_ctx_cfg_t *cfg, ibb->devid = intel_get_drm_devid(fd); ibb->gen = intel_gen(ibb->devid); ibb->ctx = ctx; + ibb->gt_id = gt_id; ibb->fd = fd; ibb->driver = is_i915_device(fd) ? INTEL_DRIVER_I915 : @@ -1057,7 +1059,7 @@ struct intel_bb *intel_bb_create_full(int fd, uint32_t ctx, uint32_t vm, enum allocator_strategy strategy, uint64_t region) { return __intel_bb_create(fd, ctx, vm, cfg, size, false, start, end, - alignment, allocator_type, strategy, region); + alignment, allocator_type, strategy, region, 0); } /** @@ -1084,7 +1086,7 @@ struct intel_bb *intel_bb_create_with_allocator(int fd, uint32_t ctx, uint32_t v { return __intel_bb_create(fd, ctx, vm, cfg, size, false, 0, 0, 0, allocator_type, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915_device(fd) ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915_device(fd) ? REGION_SMEM : vram_if_possible(fd, 0), 0); } static bool aux_needs_softpin(int fd) @@ -1126,7 +1128,7 @@ struct intel_bb *intel_bb_create(int fd, uint32_t size) relocs && !aux_needs_softpin(fd), 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); } /** @@ -1155,7 +1157,7 @@ intel_bb_create_with_context(int fd, uint32_t ctx, uint32_t vm, relocs && !aux_needs_softpin(fd), 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); } /** @@ -1182,7 +1184,7 @@ intel_bb_create_with_context_in_region(int fd, uint32_t ctx, uint32_t vm, return __intel_bb_create(fd, ctx, vm, cfg, size, relocs && !aux_needs_softpin(fd), 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, - ALLOC_STRATEGY_HIGH_TO_LOW, region); + ALLOC_STRATEGY_HIGH_TO_LOW, region, 0); } /** @@ -1203,7 +1205,7 @@ struct intel_bb *intel_bb_create_with_relocs(int fd, uint32_t size) return __intel_bb_create(fd, 0, 0, NULL, size, true, 0, 0, 0, INTEL_ALLOCATOR_NONE, ALLOC_STRATEGY_NONE, - REGION_SMEM); + REGION_SMEM, 0); } /** @@ -1229,7 +1231,7 @@ intel_bb_create_with_relocs_and_context(int fd, uint32_t ctx, return __intel_bb_create(fd, ctx, 0, cfg, size, true, 0, 0, 0, INTEL_ALLOCATOR_NONE, ALLOC_STRATEGY_NONE, - REGION_SMEM); + REGION_SMEM, 0); } /** @@ -1254,7 +1256,7 @@ struct intel_bb *intel_bb_create_no_relocs(int fd, uint32_t size) return __intel_bb_create(fd, 0, 0, NULL, size, false, 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); } static void __intel_bb_destroy_relocations(struct intel_bb *ibb) diff --git a/lib/intel_batchbuffer.h b/lib/intel_batchbuffer.h index d0a7c8dc7..7049dd2d0 100644 --- a/lib/intel_batchbuffer.h +++ b/lib/intel_batchbuffer.h @@ -269,6 +269,7 @@ struct intel_bb { struct igt_pxp pxp; uint32_t ctx; uint32_t vm_id; + uint16_t gt_id; bool xe_bound; uint32_t engine_syncobj; -- 2.43.0 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH i-g-t 3/8] lib/xe: add xe_exec_queue_create_class_gt 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 1/8] lib: take out duplicate assert Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware Juha-Pekka Heikkila @ 2026-02-20 16:17 ` Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 4/8] lib/intel_batchbuffer: add intel_bb_create_with_gt function Juha-Pekka Heikkila ` (12 subsequent siblings) 15 siblings, 0 replies; 22+ messages in thread From: Juha-Pekka Heikkila @ 2026-02-20 16:17 UTC (permalink / raw) To: igt-dev; +Cc: Juha-Pekka Heikkila add function to create exec queue with class and gt id Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> --- lib/xe/xe_ioctl.c | 20 ++++++++++++++++++++ lib/xe/xe_ioctl.h | 2 ++ 2 files changed, 22 insertions(+) diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c index 16aae05c9..1aa3b43ae 100644 --- a/lib/xe/xe_ioctl.c +++ b/lib/xe/xe_ioctl.c @@ -503,6 +503,26 @@ uint32_t xe_exec_queue_create_class(int fd, uint32_t vm, uint16_t class) return create.exec_queue_id; } +uint32_t xe_exec_queue_create_class_gt(int fd, uint32_t vm, uint16_t class, + uint16_t gt_id) +{ + struct drm_xe_engine_class_instance instance = { + .engine_class = class, + .engine_instance = 0, + .gt_id = gt_id, + }; + struct drm_xe_exec_queue_create create = { + .vm_id = vm, + .width = 1, + .num_placements = 1, + .instances = to_user_pointer(&instance), + }; + + igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create), 0); + + return create.exec_queue_id; +} + int __xe_exec_queue_set_property(int fd, uint32_t exec_queue, uint32_t property, uint64_t value) { diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h index 3ea651063..fbc4fcf99 100644 --- a/lib/xe/xe_ioctl.h +++ b/lib/xe/xe_ioctl.h @@ -83,6 +83,8 @@ uint32_t xe_exec_queue_create(int fd, uint32_t vm, uint64_t ext); uint32_t xe_bind_exec_queue_create(int fd, uint32_t vm, uint64_t ext); uint32_t xe_exec_queue_create_class(int fd, uint32_t vm, uint16_t class); +uint32_t xe_exec_queue_create_class_gt(int fd, uint32_t vm, uint16_t class, + uint16_t gt_id); int __xe_exec_queue_set_property(int fd, uint32_t exec_queue, uint32_t property, uint64_t value); void xe_exec_queue_set_property(int fd, uint32_t exec_queue, uint32_t property, -- 2.43.0 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH i-g-t 4/8] lib/intel_batchbuffer: add intel_bb_create_with_gt function 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila ` (2 preceding siblings ...) 2026-02-20 16:17 ` [PATCH i-g-t 3/8] lib/xe: add xe_exec_queue_create_class_gt Juha-Pekka Heikkila @ 2026-02-20 16:17 ` Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 5/8] lib/intel_batchbuffer: move engine class selection to helper Juha-Pekka Heikkila ` (11 subsequent siblings) 15 siblings, 0 replies; 22+ messages in thread From: Juha-Pekka Heikkila @ 2026-02-20 16:17 UTC (permalink / raw) To: igt-dev; +Cc: Juha-Pekka Heikkila add possibility to use gt id with batchbuffer when on xe Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> --- lib/intel_batchbuffer.c | 26 ++++++++++++++++++++++++++ lib/intel_batchbuffer.h | 2 ++ 2 files changed, 28 insertions(+) diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index 2e1c45335..d8e5816ee 100644 --- a/lib/intel_batchbuffer.c +++ b/lib/intel_batchbuffer.c @@ -1160,6 +1160,32 @@ intel_bb_create_with_context(int fd, uint32_t ctx, uint32_t vm, is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); } +/** + * intel_bb_create_with_gt: + * @fd: drm fd - i915 or xe + * @gt: gt id + * @vm: for xe vm_id, unused for i915 + * @size: size of the batchbuffer + * + * Creates bb with gt id passed in @gt + * + * Returns: + * + * Pointer the intel_bb, asserts on failure. + */ +struct intel_bb *intel_bb_create_with_gt(int fd, uint32_t size, int vm, uint16_t gt) +{ + bool is_i915 = is_i915_device(fd); + bool relocs = is_i915 && gem_has_relocations(fd); + + return __intel_bb_create(fd, gt, vm, NULL, size, + relocs && !aux_needs_softpin(fd), 0, 0, 0, + INTEL_ALLOCATOR_SIMPLE, + ALLOC_STRATEGY_HIGH_TO_LOW, + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), + gt); +} + /** * intel_bb_create_with_context_in_region: * @fd: drm fd - i915 or xe diff --git a/lib/intel_batchbuffer.h b/lib/intel_batchbuffer.h index 7049dd2d0..8d54c6590 100644 --- a/lib/intel_batchbuffer.h +++ b/lib/intel_batchbuffer.h @@ -324,6 +324,8 @@ struct intel_bb *intel_bb_create(int fd, uint32_t size); struct intel_bb * intel_bb_create_with_context(int fd, uint32_t ctx, uint32_t vm, const intel_ctx_cfg_t *cfg, uint32_t size); +struct intel_bb *intel_bb_create_with_gt(int fd, uint32_t size, int vm, + uint16_t gt); struct intel_bb * intel_bb_create_with_context_in_region(int fd, uint32_t ctx, uint32_t vm, const intel_ctx_cfg_t *cfg, uint32_t size, uint64_t region); -- 2.43.0 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH i-g-t 5/8] lib/intel_batchbuffer: move engine class selection to helper 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila ` (3 preceding siblings ...) 2026-02-20 16:17 ` [PATCH i-g-t 4/8] lib/intel_batchbuffer: add intel_bb_create_with_gt function Juha-Pekka Heikkila @ 2026-02-20 16:17 ` Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 6/8] lib/intel_batchbuffer/xe: add bb exec path to use specific engine and gt Juha-Pekka Heikkila ` (10 subsequent siblings) 15 siblings, 0 replies; 22+ messages in thread From: Juha-Pekka Heikkila @ 2026-02-20 16:17 UTC (permalink / raw) To: igt-dev; +Cc: Juha-Pekka Heikkila move engine class selection to helper to avoid duplicate code Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> --- lib/intel_batchbuffer.c | 42 +++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index d8e5816ee..365976be5 100644 --- a/lib/intel_batchbuffer.c +++ b/lib/intel_batchbuffer.c @@ -2466,6 +2466,26 @@ static void update_offsets(struct intel_bb *ibb, } } +static unsigned short get_engine_class(int fd, uint64_t flags) +{ + switch (flags & I915_EXEC_RING_MASK) { + case I915_EXEC_DEFAULT: + case I915_EXEC_BLT: + return DRM_XE_ENGINE_CLASS_COPY; + case I915_EXEC_BSD: + return DRM_XE_ENGINE_CLASS_VIDEO_DECODE; + case I915_EXEC_RENDER: + if (xe_has_engine_class(fd, DRM_XE_ENGINE_CLASS_RENDER)) + return DRM_XE_ENGINE_CLASS_RENDER; + else + return DRM_XE_ENGINE_CLASS_COMPUTE; + case I915_EXEC_VEBOX: + return DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE; + default: + igt_assert_f(false, "Unknown engine: %x", (uint32_t)flags); + } +} + #define LINELEN 76 /* @@ -2508,26 +2528,8 @@ int __xe_bb_exec(struct intel_bb *ibb, uint64_t flags, bool sync) inst.engine_instance = (flags & I915_EXEC_BSD_MASK) >> I915_EXEC_BSD_SHIFT; - switch (flags & I915_EXEC_RING_MASK) { - case I915_EXEC_DEFAULT: - case I915_EXEC_BLT: - inst.engine_class = DRM_XE_ENGINE_CLASS_COPY; - break; - case I915_EXEC_BSD: - inst.engine_class = DRM_XE_ENGINE_CLASS_VIDEO_DECODE; - break; - case I915_EXEC_RENDER: - if (xe_has_engine_class(ibb->fd, DRM_XE_ENGINE_CLASS_RENDER)) - inst.engine_class = DRM_XE_ENGINE_CLASS_RENDER; - else - inst.engine_class = DRM_XE_ENGINE_CLASS_COMPUTE; - break; - case I915_EXEC_VEBOX: - inst.engine_class = DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE; - break; - default: - igt_assert_f(false, "Unknown engine: %x", (uint32_t) flags); - } + inst.engine_class = get_engine_class(ibb->fd, flags); + igt_debug("Run on %s\n", xe_engine_class_string(inst.engine_class)); if (ibb->engine_id) -- 2.43.0 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH i-g-t 6/8] lib/intel_batchbuffer/xe: add bb exec path to use specific engine and gt 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila ` (4 preceding siblings ...) 2026-02-20 16:17 ` [PATCH i-g-t 5/8] lib/intel_batchbuffer: move engine class selection to helper Juha-Pekka Heikkila @ 2026-02-20 16:17 ` Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 7/8] lib: Enable Vebox framebuffer copying on Intel Xe2 Juha-Pekka Heikkila ` (9 subsequent siblings) 15 siblings, 0 replies; 22+ messages in thread From: Juha-Pekka Heikkila @ 2026-02-20 16:17 UTC (permalink / raw) To: igt-dev; +Cc: Juha-Pekka Heikkila Add __xe_bb_exec path to use specific engine/class/gt Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> --- lib/intel_batchbuffer.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index 365976be5..f3b8aeaba 100644 --- a/lib/intel_batchbuffer.c +++ b/lib/intel_batchbuffer.c @@ -2520,7 +2520,14 @@ int __xe_bb_exec(struct intel_bb *ibb, uint64_t flags, bool sync) igt_assert_eq(ibb->num_relocs, 0); igt_assert_eq(ibb->xe_bound, false); - if (ibb->ctx) { + if (ibb->gt_id) { + unsigned short class = get_engine_class(ibb->fd, flags); + + engine_id = xe_exec_queue_create_class_gt(ibb->fd, + ibb->vm_id, + class, + ibb->gt_id); + } else if (ibb->ctx) { engine_id = ibb->ctx; } else if (ibb->last_engine != engine) { struct drm_xe_engine_class_instance inst = { }; -- 2.43.0 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH i-g-t 7/8] lib: Enable Vebox framebuffer copying on Intel Xe2 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila ` (5 preceding siblings ...) 2026-02-20 16:17 ` [PATCH i-g-t 6/8] lib/intel_batchbuffer/xe: add bb exec path to use specific engine and gt Juha-Pekka Heikkila @ 2026-02-20 16:17 ` Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 8/8] lib/igt_fb: on Intel force Vebox copy on yuv formats Juha-Pekka Heikkila ` (8 subsequent siblings) 15 siblings, 0 replies; 22+ messages in thread From: Juha-Pekka Heikkila @ 2026-02-20 16:17 UTC (permalink / raw) To: igt-dev; +Cc: Juha-Pekka Heikkila Choose correct gt for Vebox and use gen12 veboxcopy functionality on Xe2 Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> --- lib/igt_fb.c | 20 +++++++++++++++++++- lib/intel_batchbuffer.c | 2 +- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/lib/igt_fb.c b/lib/igt_fb.c index d59fe133b..cfd5d66fb 100644 --- a/lib/igt_fb.c +++ b/lib/igt_fb.c @@ -2560,6 +2560,7 @@ struct fb_blit_upload { struct fb_blit_linear linear; struct buf_ops *bops; struct intel_bb *ibb; + uint32_t vm; }; static enum blt_tiling_type fb_tile_to_blt_tile(uint64_t tile) @@ -3345,6 +3346,9 @@ static void free_linear_mapping(struct fb_blit_upload *blit) if (blit->ibb) { intel_bb_destroy(blit->ibb); buf_ops_destroy(blit->bops); + + if (is_xe_device(fd) && blit->vm) + xe_vm_destroy(fd, blit->vm); } } @@ -3364,10 +3368,24 @@ static void setup_linear_mapping(struct fb_blit_upload *blit) int fd = blit->fd; struct igt_fb *fb = blit->fb; struct fb_blit_linear *linear = &blit->linear; + struct drm_xe_engine *engine; + uint16_t class; if (!igt_vc4_is_tiled(fb->modifier) && use_enginecopy(fb)) { blit->bops = buf_ops_create(fd); - blit->ibb = intel_bb_create(fd, 4096); + + if (is_xe_device(fd)) { + class = use_vebox_copy(fb, fb) ? DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE : + DRM_XE_ENGINE_CLASS_RENDER; + + engine = xe_find_engine_by_class(fd, class); + blit->vm = xe_vm_create(fd, 0, 0); + blit->ibb = intel_bb_create_with_gt(fd, 4096, + blit->vm, + engine->instance.gt_id); + } else { + blit->ibb = intel_bb_create(fd, 4096); + } } /* diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index f3b8aeaba..ef89b93df 100644 --- a/lib/intel_batchbuffer.c +++ b/lib/intel_batchbuffer.c @@ -697,7 +697,7 @@ igt_vebox_copyfunc_t igt_get_vebox_copyfunc(int devid) { igt_vebox_copyfunc_t copy = NULL; - if (IS_GEN12(devid)) + if (intel_gen(devid) >= 12) copy = gen12_vebox_copyfunc; return copy; -- 2.43.0 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH i-g-t 8/8] lib/igt_fb: on Intel force Vebox copy on yuv formats 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila ` (6 preceding siblings ...) 2026-02-20 16:17 ` [PATCH i-g-t 7/8] lib: Enable Vebox framebuffer copying on Intel Xe2 Juha-Pekka Heikkila @ 2026-02-20 16:17 ` Juha-Pekka Heikkila 2026-02-20 22:34 ` ✗ Xe.CI.BAT: failure for Enable Vebox engine copy on Intel Xe driver (rev5) Patchwork ` (7 subsequent siblings) 15 siblings, 0 replies; 22+ messages in thread From: Juha-Pekka Heikkila @ 2026-02-20 16:17 UTC (permalink / raw) To: igt-dev; +Cc: Juha-Pekka Heikkila This is to test Vebox engine along with other engines. Vebox is forced to be used when tiling convert is needed and destination is not linear. Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> --- lib/igt_fb.c | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/lib/igt_fb.c b/lib/igt_fb.c index cfd5d66fb..0499dd590 100644 --- a/lib/igt_fb.c +++ b/lib/igt_fb.c @@ -2596,6 +2596,14 @@ static bool block_copy_ok(const struct igt_fb *fb) fb_tile_to_blt_tile(fb->modifier)); } +static bool use_vebox_copy(const struct igt_fb *src_fb, + const struct igt_fb *dst_fb) +{ + return igt_fb_is_gen12_mc_ccs_modifier(dst_fb->modifier) || + igt_format_is_yuv(src_fb->drm_format) || + igt_format_is_yuv(dst_fb->drm_format); +} + static bool ccs_needs_enginecopy(const struct igt_fb *fb) { if (igt_fb_is_gen12_rc_ccs_cc_modifier(fb->modifier)) @@ -2624,6 +2632,12 @@ static bool blitter_ok(const struct igt_fb *fb) is_xe_device(fb->fd)) return false; + /* + * This is to utilize Vebox engine for testing on Xe driver. + */ + if (use_vebox_copy(fb, fb) && fb->modifier != DRM_FORMAT_MOD_NONE) + return false; + if (is_xe_device(fb->fd)) return true; @@ -2664,6 +2678,12 @@ static bool use_enginecopy(const struct igt_fb *fb) if (ccs_needs_enginecopy(fb)) return true; + /* + * This is to utilize Vebox for testing + */ + if (use_vebox_copy(fb, fb)) + return true; + return fb->modifier == I915_FORMAT_MOD_Yf_TILED || fb->modifier == I915_FORMAT_MOD_X_TILED; } @@ -2874,15 +2894,6 @@ static void fini_buf(struct intel_buf *buf) intel_buf_destroy(buf); } -static bool use_vebox_copy(const struct igt_fb *src_fb, - const struct igt_fb *dst_fb) -{ - - return igt_fb_is_gen12_mc_ccs_modifier(dst_fb->modifier) || - igt_format_is_yuv(src_fb->drm_format) || - igt_format_is_yuv(dst_fb->drm_format); -} - /** * copy_with_engine: * @blit: context for the copy operation -- 2.43.0 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* ✗ Xe.CI.BAT: failure for Enable Vebox engine copy on Intel Xe driver (rev5) 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila ` (7 preceding siblings ...) 2026-02-20 16:17 ` [PATCH i-g-t 8/8] lib/igt_fb: on Intel force Vebox copy on yuv formats Juha-Pekka Heikkila @ 2026-02-20 22:34 ` Patchwork 2026-02-20 22:40 ` ✓ i915.CI.BAT: success " Patchwork ` (6 subsequent siblings) 15 siblings, 0 replies; 22+ messages in thread From: Patchwork @ 2026-02-20 22:34 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4039 bytes --] == Series Details == Series: Enable Vebox engine copy on Intel Xe driver (rev5) URL : https://patchwork.freedesktop.org/series/161376/ State : failure == Summary == CI Bug Log - changes from XEIGT_8764_BAT -> XEIGTPW_14586_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14586_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14586_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (14 -> 14) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14586_BAT: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@basic-plain-flip@c-edp1: - bat-adlp-7: [PASS][1] -> [FAIL][2] +11 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html Known issues ------------ Here are the changes found in XEIGTPW_14586_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-dpms: - bat-adlp-7: [PASS][3] -> [FAIL][4] ([Intel XE#3149]) +7 other tests fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html * igt@xe_waitfence@engine: - bat-dg2-oem2: [PASS][5] -> [FAIL][6] ([Intel XE#6519]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/bat-dg2-oem2/igt@xe_waitfence@engine.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/bat-dg2-oem2/igt@xe_waitfence@engine.html * igt@xe_waitfence@reltime: - bat-dg2-oem2: [PASS][7] -> [FAIL][8] ([Intel XE#6520]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/bat-dg2-oem2/igt@xe_waitfence@reltime.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/bat-dg2-oem2/igt@xe_waitfence@reltime.html #### Warnings #### * igt@kms_dsc@dsc-basic: - bat-adlp-7: [SKIP][9] ([Intel XE#455]) -> [SKIP][10] ([Intel XE#2244] / [Intel XE#455]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/bat-adlp-7/igt@kms_dsc@dsc-basic.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/bat-adlp-7/igt@kms_dsc@dsc-basic.html - bat-dg2-oem2: [SKIP][11] ([Intel XE#455]) -> [SKIP][12] ([Intel XE#2244] / [Intel XE#455]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519 [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520 Build changes ------------- * IGT: IGT_8764 -> IGTPW_14586 * Linux: xe-4577-157c1f59af33fb9acf6e0e055e7317b634711120 -> xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d IGTPW_14586: cb850243beaef57e25e4b8c7a2e4761ef1bc59ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8764: 8764 xe-4577-157c1f59af33fb9acf6e0e055e7317b634711120: 157c1f59af33fb9acf6e0e055e7317b634711120 xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d: 7c2ed7e89e283615b5f133d0205061934541e26d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/index.html [-- Attachment #2: Type: text/html, Size: 5006 bytes --] ^ permalink raw reply [flat|nested] 22+ messages in thread
* ✓ i915.CI.BAT: success for Enable Vebox engine copy on Intel Xe driver (rev5) 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila ` (8 preceding siblings ...) 2026-02-20 22:34 ` ✗ Xe.CI.BAT: failure for Enable Vebox engine copy on Intel Xe driver (rev5) Patchwork @ 2026-02-20 22:40 ` Patchwork 2026-02-21 2:00 ` ✗ Xe.CI.BAT: failure for Enable Vebox engine copy on Intel Xe driver (rev6) Patchwork ` (5 subsequent siblings) 15 siblings, 0 replies; 22+ messages in thread From: Patchwork @ 2026-02-20 22:40 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2558 bytes --] == Series Details == Series: Enable Vebox engine copy on Intel Xe driver (rev5) URL : https://patchwork.freedesktop.org/series/161376/ State : success == Summary == CI Bug Log - changes from IGT_8764 -> IGTPW_14586 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/index.html Participating hosts (42 -> 40) ------------------------------ Additional (1): fi-glk-j4005 Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6 Known issues ------------ Here are the changes found in IGTPW_14586 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-glk-j4005: NOTRUN -> [SKIP][1] ([i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-glk-j4005: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_selftest@live@workarounds: - bat-arls-6: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8764/bat-arls-6/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/bat-arls-6/igt@i915_selftest@live@workarounds.html * igt@kms_psr@psr-primary-page-flip: - fi-glk-j4005: NOTRUN -> [SKIP][5] +12 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8764 -> IGTPW_14586 * Linux: CI_DRM_18008 -> CI_DRM_18015 CI-20190529: 20190529 CI_DRM_18008: 157c1f59af33fb9acf6e0e055e7317b634711120 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18015: 7c2ed7e89e283615b5f133d0205061934541e26d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14586: cb850243beaef57e25e4b8c7a2e4761ef1bc59ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8764: 8764 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/index.html [-- Attachment #2: Type: text/html, Size: 3260 bytes --] ^ permalink raw reply [flat|nested] 22+ messages in thread
* ✗ Xe.CI.BAT: failure for Enable Vebox engine copy on Intel Xe driver (rev6) 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila ` (9 preceding siblings ...) 2026-02-20 22:40 ` ✓ i915.CI.BAT: success " Patchwork @ 2026-02-21 2:00 ` Patchwork 2026-02-21 2:11 ` ✓ i915.CI.BAT: success " Patchwork ` (4 subsequent siblings) 15 siblings, 0 replies; 22+ messages in thread From: Patchwork @ 2026-02-21 2:00 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3567 bytes --] == Series Details == Series: Enable Vebox engine copy on Intel Xe driver (rev6) URL : https://patchwork.freedesktop.org/series/161376/ State : failure == Summary == CI Bug Log - changes from XEIGT_8764_BAT -> XEIGTPW_14587_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14587_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14587_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (14 -> 14) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14587_BAT: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@basic-plain-flip@c-edp1: - bat-adlp-7: [PASS][1] -> [FAIL][2] +11 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html Known issues ------------ Here are the changes found in XEIGTPW_14587_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-dpms: - bat-adlp-7: [PASS][3] -> [FAIL][4] ([Intel XE#3149]) +7 other tests fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html * igt@xe_waitfence@reltime: - bat-dg2-oem2: [PASS][5] -> [FAIL][6] ([Intel XE#6520]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/bat-dg2-oem2/igt@xe_waitfence@reltime.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/bat-dg2-oem2/igt@xe_waitfence@reltime.html #### Warnings #### * igt@kms_dsc@dsc-basic: - bat-adlp-7: [SKIP][7] ([Intel XE#455]) -> [SKIP][8] ([Intel XE#2244] / [Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/bat-adlp-7/igt@kms_dsc@dsc-basic.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/bat-adlp-7/igt@kms_dsc@dsc-basic.html - bat-dg2-oem2: [SKIP][9] ([Intel XE#455]) -> [SKIP][10] ([Intel XE#2244] / [Intel XE#455]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520 Build changes ------------- * IGT: IGT_8764 -> IGTPW_14587 * Linux: xe-4577-157c1f59af33fb9acf6e0e055e7317b634711120 -> xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d IGTPW_14587: 14587 IGT_8764: 8764 xe-4577-157c1f59af33fb9acf6e0e055e7317b634711120: 157c1f59af33fb9acf6e0e055e7317b634711120 xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d: 7c2ed7e89e283615b5f133d0205061934541e26d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/index.html [-- Attachment #2: Type: text/html, Size: 4513 bytes --] ^ permalink raw reply [flat|nested] 22+ messages in thread
* ✓ i915.CI.BAT: success for Enable Vebox engine copy on Intel Xe driver (rev6) 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila ` (10 preceding siblings ...) 2026-02-21 2:00 ` ✗ Xe.CI.BAT: failure for Enable Vebox engine copy on Intel Xe driver (rev6) Patchwork @ 2026-02-21 2:11 ` Patchwork 2026-02-21 13:06 ` ✗ i915.CI.Full: failure for Enable Vebox engine copy on Intel Xe driver (rev5) Patchwork ` (3 subsequent siblings) 15 siblings, 0 replies; 22+ messages in thread From: Patchwork @ 2026-02-21 2:11 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1926 bytes --] == Series Details == Series: Enable Vebox engine copy on Intel Xe driver (rev6) URL : https://patchwork.freedesktop.org/series/161376/ State : success == Summary == CI Bug Log - changes from IGT_8764 -> IGTPW_14587 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/index.html Participating hosts (42 -> 39) ------------------------------ Missing (3): bat-dg2-13 bat-rpls-4 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14587 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@workarounds: - bat-dg2-14: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8764/bat-dg2-14/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/bat-dg2-14/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8764/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8764 -> IGTPW_14587 * Linux: CI_DRM_18008 -> CI_DRM_18015 CI-20190529: 20190529 CI_DRM_18008: 157c1f59af33fb9acf6e0e055e7317b634711120 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18015: 7c2ed7e89e283615b5f133d0205061934541e26d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14587: 14587 IGT_8764: 8764 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/index.html [-- Attachment #2: Type: text/html, Size: 2608 bytes --] ^ permalink raw reply [flat|nested] 22+ messages in thread
* ✗ i915.CI.Full: failure for Enable Vebox engine copy on Intel Xe driver (rev5) 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila ` (11 preceding siblings ...) 2026-02-21 2:11 ` ✓ i915.CI.BAT: success " Patchwork @ 2026-02-21 13:06 ` Patchwork 2026-02-21 14:44 ` ✗ i915.CI.Full: failure for Enable Vebox engine copy on Intel Xe driver (rev6) Patchwork ` (2 subsequent siblings) 15 siblings, 0 replies; 22+ messages in thread From: Patchwork @ 2026-02-21 13:06 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 145383 bytes --] == Series Details == Series: Enable Vebox engine copy on Intel Xe driver (rev5) URL : https://patchwork.freedesktop.org/series/161376/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18015_full -> IGTPW_14586_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14586_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14586_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14586_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_big@single: - shard-dg2: [PASS][1] -> [CRASH][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-1/igt@gem_exec_big@single.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-7/igt@gem_exec_big@single.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-dg1: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-fence.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-fence.html * igt@kms_plane@pixel-format-x-tiled-modifier: - shard-dg2: NOTRUN -> [FAIL][5] +4 other tests fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-6/igt@kms_plane@pixel-format-x-tiled-modifier.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-0: - shard-dg2: [PASS][6] -> [FAIL][7] +8 other tests fail [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-1/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-6/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-0.html - shard-rkl: NOTRUN -> [FAIL][8] +4 other tests fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-5/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-0.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-3: - shard-dg1: [PASS][9] -> [FAIL][10] +7 other tests fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-13/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-3.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-3.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-0: - shard-mtlp: [PASS][11] -> [FAIL][12] +7 other tests fail [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-mtlp-5/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-1/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-0.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-3: - shard-tglu: [PASS][13] -> [FAIL][14] +6 other tests fail [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-tglu-10/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-3.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-5/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-3.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-0: - shard-mtlp: NOTRUN -> [FAIL][15] +4 other tests fail [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-2/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-0.html Known issues ------------ Here are the changes found in IGTPW_14586_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#8411]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-14/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-3/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-14/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#14544] / [i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-tglu: NOTRUN -> [SKIP][21] ([i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][22] -> [INCOMPLETE][23] ([i915#13356]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-11/igt@gem_ccs@suspend-resume.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-4/igt@gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][24] ([i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-4/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][25] -> [INCOMPLETE][26] ([i915#12392] / [i915#13356]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-11/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#7697]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-5/igt@gem_close_race@multigpu-basic-threads.html - shard-tglu: NOTRUN -> [SKIP][28] ([i915#7697]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-5/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#6335]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#8562]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@file: - shard-snb: NOTRUN -> [SKIP][31] ([i915#1099]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-snb7/igt@gem_ctx_persistence@file.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#8555]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-3/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#280]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@gem_ctx_sseu@engines.html - shard-tglu-1: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][35] ([i915#280]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-13/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#280]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-7/igt@gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][37] ([i915#280]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-11/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#4525]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-5/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-tglu: NOTRUN -> [SKIP][39] ([i915#4525]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-4/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][40] ([i915#11965]) +1 other test fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-1/igt@gem_exec_capture@capture.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][41] ([i915#6334]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk1/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][42] ([i915#11965]) +4 other tests fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-3/igt@gem_exec_capture@capture@vecs0-lmem0.html - shard-dg1: NOTRUN -> [FAIL][43] ([i915#11965]) +2 other tests fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-12/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fence@submit67: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-12/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-1/igt@gem_exec_flush@basic-uc-ro-default.html - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-12/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-5/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-cpu-wc-noreloc: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html - shard-rkl: NOTRUN -> [SKIP][49] ([i915#14544] / [i915#3281]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +11 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-3/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-wc-read: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +11 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-18/igt@gem_exec_reloc@basic-wc-read.html * igt@gem_exec_suspend@basic-s3-devices@smem: - shard-mtlp: [PASS][52] -> [INCOMPLETE][53] ([i915#13356]) +1 other test incomplete [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-mtlp-2/igt@gem_exec_suspend@basic-s3-devices@smem.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-3/igt@gem_exec_suspend@basic-s3-devices@smem.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) +6 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][57] ([i915#4613]) +8 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk6/igt@gem_lmem_swapping@random-engines.html - shard-rkl: NOTRUN -> [SKIP][58] ([i915#14544] / [i915#4613]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][59] -> [CRASH][60] ([i915#5493]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: [PASS][61] -> [CRASH][62] ([i915#5493]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_mmap_gtt@basic-read: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4077]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-3/igt@gem_mmap_gtt@basic-read.html * igt@gem_mmap_wc@pf-nonblock: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4083]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-18/igt@gem_mmap_wc@pf-nonblock.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4083]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-7/igt@gem_mmap_wc@write-gtt-read-wc.html - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3282]) +7 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@bench: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3282]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-1/igt@gem_pread@bench.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#13398]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4270]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-14/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@yf-tiled-ccs-to-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#8428]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-4/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html - shard-dg2: NOTRUN -> [SKIP][74] ([i915#5190] / [i915#8428]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-5/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#8411]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4885]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-4/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][77] ([i915#3323]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk6/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3297]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-14/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4880]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-9/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][82] +83 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-snb1/igt@gem_vm_create@invalid-create.html * igt@gen7_exec_parse@batch-without-end: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#14544]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@basic-rejected: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#2527]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-14/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-invalid-length: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#2856]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-5/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#2856]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-11/igt@gen9_exec_parse@batch-without-end.html - shard-rkl: NOTRUN -> [SKIP][87] ([i915#2527]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-4/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@shadow-peek: - shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#2527] / [i915#2856]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html * igt@i915_drm_fdinfo@busy-idle@bcs0: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#14073]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@i915_drm_fdinfo@busy-idle@bcs0.html * igt@i915_drm_fdinfo@isolation@rcs0: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#14073]) +6 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-1/igt@i915_drm_fdinfo@isolation@rcs0.html * igt@i915_drm_fdinfo@virtual-busy-all: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#14118]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-4/igt@i915_drm_fdinfo@virtual-busy-all.html - shard-dg2: NOTRUN -> [SKIP][93] ([i915#14118]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-6/igt@i915_drm_fdinfo@virtual-busy-all.html - shard-dg1: NOTRUN -> [SKIP][94] ([i915#14118]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-14/igt@i915_drm_fdinfo@virtual-busy-all.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-glk: NOTRUN -> [ABORT][95] ([i915#15342]) +1 other test abort [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk9/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#8399]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-7/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#8399]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-4/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu-1: NOTRUN -> [WARN][98] ([i915#13790] / [i915#2681]) +1 other test warn [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][99] ([i915#13356] / [i915#15172]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk2/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#11681]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-6/igt@i915_pm_rps@thresholds-idle-park.html - shard-dg1: NOTRUN -> [SKIP][101] ([i915#11681]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@i915_pm_rps@thresholds-idle-park.html - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#11681]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_rps@waitboost: - shard-mtlp: [PASS][103] -> [FAIL][104] ([i915#15365]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-mtlp-5/igt@i915_pm_rps@waitboost.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-5/igt@i915_pm_rps@waitboost.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#4387]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-3/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#6245]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-8/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#5723]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@i915_query@test-query-geometry-subslices.html - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#5723]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [PASS][109] -> [INCOMPLETE][110] ([i915#4817]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-5/igt@i915_suspend@fence-restore-tiled2untiled.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-3/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][111] ([i915#4817]) +1 other test incomplete [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk5/igt@i915_suspend@forcewake.html * igt@intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#7707]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#12454] / [i915#12712]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#10333]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-6/igt@kms_async_flips@test-cursor.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#9531]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2: [PASS][116] -> [FAIL][117] ([i915#5956]) +1 other test fail [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][118] +5 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-4/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5286]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#14544] / [i915#5286]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#5286]) +8 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#5286]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#5286]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#5286]) +7 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3828]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html - shard-tglu: NOTRUN -> [SKIP][126] ([i915#3828]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#3828]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][128] +10 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-1/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#3638]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#3638]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-13/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538]) +4 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#6095]) +69 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-9/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-d-dp-3: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#6095]) +54 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-11/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-d-dp-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#6095]) +196 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#6095]) +93 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#10307] / [i915#6095]) +105 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#12313]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][140] ([i915#12313]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#12313]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#12805]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][143] ([i915#12805]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#14098] / [i915#6095]) +67 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#12313]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-14/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#12313] / [i915#14544]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][147] ([i915#12313]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#6095]) +59 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6095]) +34 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#12313]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#14544] / [i915#6095]) +7 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +7 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-5/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-5/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html - shard-dg2: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-8/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +5 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-4/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +7 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +3 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#6944] / [i915#7116] / [i915#9424]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-16/igt@kms_content_protection@atomic.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#9424]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-1/igt@kms_content_protection@atomic.html - shard-dg2: NOTRUN -> [FAIL][161] ([i915#7173]) +2 other tests fail [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-11/igt@kms_content_protection@atomic.html - shard-rkl: NOTRUN -> [SKIP][162] ([i915#6944] / [i915#7118] / [i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-3/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#15330]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#15330] / [i915#3299]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-16/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy-hdcp14: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#6944]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-6/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#6944] / [i915#7118]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][168] ([i915#6944] / [i915#7116] / [i915#7118]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-10/igt@kms_content_protection@srm.html * igt@kms_content_protection@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#6944]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-1/igt@kms_content_protection@suspend-resume.html * igt@kms_content_protection@type1: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-8/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#13049]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: NOTRUN -> [FAIL][172] ([i915#13566]) +3 other tests fail [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [FAIL][173] ([i915#13566]) +3 other tests fail [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#13049]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3555]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-rkl: [PASS][176] -> [FAIL][177] ([i915#13566]) +1 other test fail [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-7/igt@kms_cursor_crc@cursor-random-256x85.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#3555]) +4 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3555]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#13049]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: NOTRUN -> [FAIL][181] ([i915#13566]) +3 other tests fail [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#13049]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: NOTRUN -> [FAIL][183] ([i915#13028]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#13046] / [i915#5354]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-7/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#4103] / [i915#4213]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#4103]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#9809]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#9067]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#4213]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg2: NOTRUN -> [SKIP][190] ([i915#4103] / [i915#4213]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][191] ([i915#4103]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#4103]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#9723]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][194] ([i915#9723]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-9/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-dg2: [PASS][195] -> [SKIP][196] ([i915#13749]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-11/igt@kms_dp_link_training@non-uhbr-sst.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-6/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3840] / [i915#9053]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3955]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html - shard-tglu: NOTRUN -> [SKIP][199] ([i915#3469]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#1839]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#9337]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-8/igt@kms_feature_discovery@dp-mst.html - shard-rkl: NOTRUN -> [SKIP][202] ([i915#9337]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-5/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][203] ([i915#9337]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-14/igt@kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][204] ([i915#9337]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-5/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#9337]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-5/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#658]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#658]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-18/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#9934]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-11/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3637] / [i915#9934]) +7 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-8/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#9934]) +4 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-14/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][211] ([i915#12745] / [i915#4839] / [i915#6113]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk1/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-snb: [PASS][212] -> [TIMEOUT][213] ([i915#14033] / [i915#14350]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][214] -> [TIMEOUT][215] ([i915#14033]) +2 other tests timeout [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][216] ([i915#4839] / [i915#6113]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk1/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-nonexisting-fb: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3637] / [i915#9934]) +3 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-5/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#3637] / [i915#9934]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#9934]) +7 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#8381]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-6/igt@kms_flip@flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][221] ([i915#8381]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@kms_flip@flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8381]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-1/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][223] ([i915#12745] / [i915#4839]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][224] ([i915#12745]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@nonexisting-fb: - shard-dg1: [PASS][225] -> [DMESG-WARN][226] ([i915#4423]) +2 other tests dmesg-warn [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-14/igt@kms_flip@nonexisting-fb.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@kms_flip@nonexisting-fb.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#15643]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#15643]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html - shard-dg2: NOTRUN -> [SKIP][229] ([i915#15643] / [i915#5190]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#15643]) +2 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#15643]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#14544] / [i915#15643]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#15643]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_force_connector_basic@force-edid: - shard-mtlp: [PASS][234] -> [SKIP][235] ([i915#15672]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-mtlp-2/igt@kms_force_connector_basic@force-edid.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: NOTRUN -> [SKIP][236] +17 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-dg2: [PASS][237] -> [FAIL][238] ([i915#15389]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-cpu.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: [PASS][239] -> [FAIL][240] ([i915#15389] / [i915#6880]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#5354]) +7 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][242] +34 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][243] +26 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][244] +48 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#1825]) +11 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][246] ([i915#10056]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk10/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#8708]) +5 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#15104]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][249] ([i915#15104]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][250] ([i915#15104]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-glk10: NOTRUN -> [SKIP][251] +64 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#1825]) +45 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#8708]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#14544] / [i915#1825]) +5 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#15102]) +13 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#9766]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#15102]) +7 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#15102]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#15102]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#15102] / [i915#3023]) +16 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#15102] / [i915#3458]) +4 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#15102]) +19 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#8708]) +11 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#15102] / [i915#3458]) +11 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-13/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][267] ([i915#15436]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: [PASS][268] -> [SKIP][269] ([i915#3555] / [i915#8228]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-3/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#12713] / [i915#3555] / [i915#8228]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-8/igt@kms_hdr@static-swap.html - shard-dg2: [PASS][271] -> [SKIP][272] ([i915#3555] / [i915#8228]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-11/igt@kms_hdr@static-swap.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-3/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8228]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-4/igt@kms_hdr@static-toggle.html * igt@kms_invalid_mode@clock-too-high: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#6403] / [i915#8826]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#9457]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#8826] / [i915#9457]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#15458]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#15458]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-14/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#15638] / [i915#15722]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-13/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@legacy: - shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#6301]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk10: NOTRUN -> [INCOMPLETE][282] ([i915#12756] / [i915#13409] / [i915#13476]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk10: NOTRUN -> [INCOMPLETE][283] ([i915#13409] / [i915#13476]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#14712]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg1: NOTRUN -> [ABORT][285] ([i915#4423]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#15709]) +5 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html - shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#15709]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][288] ([i915#15709]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-1: - shard-snb: [PASS][289] -> [SKIP][290] +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-snb1/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-1.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-snb5/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-1.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#15608]) +3 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-2/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#15608]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-2/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html - shard-dg2: NOTRUN -> [SKIP][293] ([i915#15608]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-6/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#15709]) +2 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-16/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#15709]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#15709]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-7: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#15608]) +3 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-16/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#15608]) +7 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane_lowres@tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#3555]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#8821]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-6/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@2x-tiling-none: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#13958] / [i915#14544]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#14259]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-3/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#14259]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-6/igt@kms_plane_multiple@tiling-y.html - shard-dg2: NOTRUN -> [SKIP][304] ([i915#14259]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-3/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#14259]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#15329] / [i915#3555]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#15329]) +3 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#15329]) +3 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-tglu: NOTRUN -> [SKIP][309] ([i915#15329]) +4 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-10/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][310] ([i915#9812]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-5/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#14544] / [i915#9685]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#9685]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@kms_pm_dc@dc5-psr.html - shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#9685]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html - shard-dg1: NOTRUN -> [SKIP][314] ([i915#9685]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-12/igt@kms_pm_dc@dc5-psr.html - shard-dg2: NOTRUN -> [SKIP][315] ([i915#9685]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#9685]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-7/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@cursor-dpms: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#4077]) +2 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-4/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][318] -> [SKIP][319] ([i915#15073]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html - shard-dg1: NOTRUN -> [SKIP][320] ([i915#15073]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#4077]) +4 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-13/igt@kms_pm_rpm@fences.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#15073]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][323] ([i915#15073]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-rkl: NOTRUN -> [SKIP][324] ([i915#15073]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#6524]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-3/igt@kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][326] ([i915#6524]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][327] ([i915#11520]) +8 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#11520]) +12 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][329] ([i915#11520]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-snb7/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][330] ([i915#11520]) +2 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-13/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][331] ([i915#9808]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#12316]) +2 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][333] ([i915#11520]) +9 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk5/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#11520]) +3 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#11520]) +2 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-8/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-glk10: NOTRUN -> [SKIP][336] ([i915#11520]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#11520] / [i915#14544]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#9683]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#9683]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][340] ([i915#9683]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-render: - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#9688]) +10 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-5/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#1072] / [i915#9732]) +7 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-3/igt@kms_psr@fbc-pr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#9732]) +9 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@fbc-psr2-primary-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#9732]) +21 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-9/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-dg1: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +14 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-16/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-cursor-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_psr@pr-cursor-mmap-cpu.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#1072] / [i915#9732]) +25 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#4077] / [i915#9688]) +3 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-4/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][349] +438 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk6/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][350] ([i915#5289]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#5190]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-dg1: NOTRUN -> [SKIP][352] ([i915#5289]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][353] ([i915#5289]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#5289]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#5289]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][356] ([i915#13179]) +1 other test abort [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][357] ([i915#3555] / [i915#8809]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][358] ([i915#10959]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][359] ([i915#9906]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-2/igt@kms_vrr@flip-basic-fastset.html - shard-mtlp: NOTRUN -> [SKIP][360] ([i915#8808] / [i915#9906]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-2/igt@kms_vrr@flip-basic-fastset.html - shard-dg2: NOTRUN -> [SKIP][361] ([i915#9906]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-6/igt@kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][362] ([i915#9906]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][363] ([i915#3555] / [i915#8808]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-6/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][364] ([i915#3555]) +2 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-6/igt@kms_vrr@flip-suspend.html - shard-dg2: NOTRUN -> [SKIP][365] ([i915#15243] / [i915#3555]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-8/igt@kms_vrr@flip-suspend.html - shard-rkl: NOTRUN -> [SKIP][366] ([i915#15243] / [i915#3555]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-3/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-tglu-1: NOTRUN -> [SKIP][367] ([i915#11920]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][368] ([i915#9906]) +3 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#7387]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-8/igt@perf@global-sseu-config.html * igt@perf_pmu@busy-idle@ccs0: - shard-dg2: [PASS][370] -> [FAIL][371] ([i915#4349]) +1 other test fail [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-7/igt@perf_pmu@busy-idle@ccs0.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-8/igt@perf_pmu@busy-idle@ccs0.html * igt@perf_pmu@busy-idle@vecs0: - shard-dg1: [PASS][372] -> [FAIL][373] ([i915#4349]) +1 other test fail [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-14/igt@perf_pmu@busy-idle@vecs0.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-16/igt@perf_pmu@busy-idle@vecs0.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][374] ([i915#8516]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-5/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][375] ([i915#13356] / [i915#14242]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk2/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][376] ([i915#8516]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-4/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][377] ([i915#3708]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-13/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][378] ([i915#3708] / [i915#4077]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg1: NOTRUN -> [SKIP][379] ([i915#9917]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-17/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][380] ([i915#9917]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-5: - shard-tglu-1: NOTRUN -> [FAIL][381] ([i915#12910]) +9 other tests fail [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-5.html #### Possible fixes #### * igt@gem_create@create-clear: - shard-dg1: [INCOMPLETE][382] -> [PASS][383] +1 other test pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-16/igt@gem_create@create-clear.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-14/igt@gem_create@create-clear.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: [SKIP][384] ([i915#4270]) -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-5/igt@gem_pxp@create-protected-buffer.html * igt@i915_pm_rpm@system-suspend-devices: - shard-rkl: [ABORT][386] ([i915#15060]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-1/igt@i915_pm_rpm@system-suspend-devices.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [DMESG-WARN][388] ([i915#14545]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-5/igt@i915_suspend@basic-s3-without-i915.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-7/igt@i915_suspend@basic-s3-without-i915.html - shard-dg1: [DMESG-WARN][390] ([i915#14545]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-12/igt@i915_suspend@basic-s3-without-i915.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-18/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@sysfs-reader: - shard-glk: [INCOMPLETE][392] ([i915#4817]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-glk5/igt@i915_suspend@sysfs-reader.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk9/igt@i915_suspend@sysfs-reader.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-mtlp: [FAIL][394] ([i915#5956]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][396] ([i915#5138]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_color@deep-color: - shard-dg2: [SKIP][398] ([i915#12655] / [i915#3555]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-6/igt@kms_color@deep-color.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-11/igt@kms_color@deep-color.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-tglu: [FAIL][400] ([i915#13566]) -> [PASS][401] +1 other test pass [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-tglu-4/igt@kms_cursor_crc@cursor-random-128x42.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-tglu-10/igt@kms_cursor_crc@cursor-random-128x42.html - shard-rkl: [FAIL][402] ([i915#13566]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-8/igt@kms_cursor_crc@cursor-random-128x42.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-1/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_dp_aux_dev: - shard-dg2: [SKIP][404] ([i915#1257]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-4/igt@kms_dp_aux_dev.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-11/igt@kms_dp_aux_dev.html * igt@kms_hdr@bpc-switch: - shard-rkl: [SKIP][406] ([i915#3555] / [i915#8228]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-4/igt@kms_hdr@bpc-switch.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_hdr@bpc-switch.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [SKIP][408] ([i915#6953]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][410] ([i915#15073]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg1: [SKIP][412] ([i915#15073]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-13/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg1: [DMESG-WARN][414] ([i915#4423]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-16/igt@kms_pm_rpm@i2c.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-18/igt@kms_pm_rpm@i2c.html * igt@kms_setmode@basic: - shard-mtlp: [FAIL][416] ([i915#15106]) -> [PASS][417] +1 other test pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-mtlp-4/igt@kms_setmode@basic.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-7/igt@kms_setmode@basic.html - shard-dg2: [FAIL][418] ([i915#15106]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-6/igt@kms_setmode@basic.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-11/igt@kms_setmode@basic.html * igt@kms_vblank@ts-continuation-suspend: - shard-rkl: [INCOMPLETE][420] ([i915#12276]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-4/igt@kms_vblank@ts-continuation-suspend.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@kms_vblank@ts-continuation-suspend.html * igt@perf_pmu@most-busy-check-all@bcs0: - shard-mtlp: [FAIL][422] ([i915#15520]) -> [PASS][423] +1 other test pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-mtlp-5/igt@perf_pmu@most-busy-check-all@bcs0.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-mtlp-6/igt@perf_pmu@most-busy-check-all@bcs0.html #### Warnings #### * igt@drm_buddy@drm_buddy: - shard-rkl: [SKIP][424] ([i915#15678]) -> [SKIP][425] ([i915#14544] / [i915#15678]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-4/igt@drm_buddy@drm_buddy.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@drm_buddy@drm_buddy.html * igt@gem_basic@multigpu-create-close: - shard-rkl: [SKIP][426] ([i915#14544] / [i915#7697]) -> [SKIP][427] ([i915#7697]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@gem_basic@multigpu-create-close.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: [SKIP][428] ([i915#9323]) -> [SKIP][429] ([i915#14544] / [i915#9323]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-3/igt@gem_ccs@block-multicopy-compressed.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: [SKIP][430] ([i915#7697]) -> [SKIP][431] ([i915#14544] / [i915#7697]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-3/igt@gem_close_race@multigpu-basic-process.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html * igt@gem_exec_reloc@basic-gtt: - shard-rkl: [SKIP][432] ([i915#3281]) -> [SKIP][433] ([i915#14544] / [i915#3281]) +4 other tests skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-7/igt@gem_exec_reloc@basic-gtt.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@gem_exec_reloc@basic-gtt.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: [SKIP][434] ([i915#14544] / [i915#3281]) -> [SKIP][435] ([i915#3281]) +3 other tests skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: [SKIP][436] ([i915#14544] / [i915#7276]) -> [SKIP][437] ([i915#7276]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@gem_exec_schedule@semaphore-power.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-rkl: [SKIP][438] ([i915#4613]) -> [SKIP][439] ([i915#14544] / [i915#4613]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-rkl: [SKIP][440] ([i915#14544] / [i915#3282]) -> [SKIP][441] ([i915#3282]) +1 other test skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pwrite@basic-self: - shard-rkl: [SKIP][442] ([i915#3282]) -> [SKIP][443] ([i915#14544] / [i915#3282]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-8/igt@gem_pwrite@basic-self.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@gem_pwrite@basic-self.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [FAIL][444] ([i915#15717]) -> [SKIP][445] ([i915#13717] / [i915#14544]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-buffer.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: [SKIP][446] ([i915#3297] / [i915#3323]) -> [SKIP][447] ([i915#14544] / [i915#3297] / [i915#3323]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: [SKIP][448] ([i915#2527]) -> [SKIP][449] ([i915#14544] / [i915#2527]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-2/igt@gen9_exec_parse@bb-start-param.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: [SKIP][450] ([i915#14544] / [i915#2527]) -> [SKIP][451] ([i915#2527]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@gen9_exec_parse@secure-batches.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: [SKIP][452] ([i915#8399]) -> [SKIP][453] ([i915#14544] / [i915#8399]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-8/igt@i915_pm_freq_api@freq-basic-api.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: [SKIP][454] ([i915#14544] / [i915#6590]) -> [SKIP][455] ([i915#6590]) +1 other test skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@i915_pm_freq_mult@media-freq@gt0.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-rkl: [ABORT][456] ([i915#15060]) -> [INCOMPLETE][457] ([i915#13356]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-1/igt@i915_pm_rpm@system-suspend-execbuf.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_suspend@forcewake: - shard-rkl: [INCOMPLETE][458] ([i915#4817]) -> [ABORT][459] ([i915#15140]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@i915_suspend@forcewake.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-1/igt@i915_suspend@forcewake.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-rkl: [SKIP][460] ([i915#5286]) -> [SKIP][461] ([i915#14544] / [i915#5286]) +1 other test skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-rkl: [SKIP][462] ([i915#14544] / [i915#5286]) -> [SKIP][463] ([i915#5286]) +1 other test skip [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-rkl: [SKIP][464] ([i915#3638]) -> [SKIP][465] ([i915#14544] / [i915#3638]) +1 other test skip [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-4/igt@kms_big_fb@linear-8bpp-rotate-90.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][466] ([i915#14544] / [i915#3638]) -> [SKIP][467] ([i915#3638]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_ccs@bad-rotation-90-y-tiled-ccs: - shard-rkl: [SKIP][468] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][469] ([i915#14098] / [i915#6095]) +2 other tests skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-ccs.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@kms_ccs@bad-rotation-90-y-tiled-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-rkl: [SKIP][470] ([i915#14098] / [i915#6095]) -> [SKIP][471] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][472] ([i915#12313]) -> [SKIP][473] ([i915#12313] / [i915#14544]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][474] ([i915#6095]) -> [SKIP][475] ([i915#14544] / [i915#6095]) +1 other test skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_chamelium_hpd@dp-hpd: - shard-rkl: [SKIP][476] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][477] ([i915#11151] / [i915#7828]) +4 other tests skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: [SKIP][478] ([i915#11151] / [i915#7828]) -> [SKIP][479] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@atomic-hdcp14: - shard-dg2: [SKIP][480] ([i915#6944]) -> [FAIL][481] ([i915#7173]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-7/igt@kms_content_protection@atomic-hdcp14.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-11/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: [SKIP][482] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][483] ([i915#15330] / [i915#3116]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-dg2: [FAIL][484] ([i915#7173]) -> [SKIP][485] ([i915#6944]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-11/igt@kms_content_protection@lic-type-0-hdcp14.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-1/igt@kms_content_protection@lic-type-0-hdcp14.html - shard-rkl: [SKIP][486] ([i915#6944]) -> [SKIP][487] ([i915#14544] / [i915#6944]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-2/igt@kms_content_protection@lic-type-0-hdcp14.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-rkl: [SKIP][488] ([i915#6944] / [i915#9424]) -> [SKIP][489] ([i915#14544] / [i915#6944] / [i915#9424]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-4/igt@kms_content_protection@mei-interface.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent: - shard-dg2: [FAIL][490] ([i915#1339] / [i915#7173]) -> [SKIP][491] ([i915#6944] / [i915#7118] / [i915#9424]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-11/igt@kms_content_protection@uevent.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-7/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: [SKIP][492] ([i915#3555]) -> [SKIP][493] ([i915#14544] / [i915#3555]) +1 other test skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: [SKIP][494] -> [SKIP][495] ([i915#14544]) +5 other tests skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: [SKIP][496] ([i915#14544] / [i915#4103]) -> [SKIP][497] ([i915#4103]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: [SKIP][498] ([i915#14544]) -> [SKIP][499] +1 other test skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: [SKIP][500] ([i915#9723]) -> [SKIP][501] ([i915#14544] / [i915#9723]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_link_training@uhbr-mst: - shard-rkl: [SKIP][502] ([i915#13748]) -> [SKIP][503] ([i915#13748] / [i915#14544]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-7/igt@kms_dp_link_training@uhbr-mst.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: [SKIP][504] ([i915#13707]) -> [SKIP][505] ([i915#13707] / [i915#14544]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-rkl: [SKIP][506] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][507] ([i915#3555] / [i915#3840]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_dsc@dsc-basic.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-3/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg1: [SKIP][508] ([i915#3840]) -> [SKIP][509] ([i915#3840] / [i915#4423]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: [SKIP][510] ([i915#3555] / [i915#3840]) -> [SKIP][511] ([i915#14544] / [i915#3555] / [i915#3840]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-rkl: [SKIP][512] ([i915#9934]) -> [SKIP][513] ([i915#14544] / [i915#9934]) +3 other tests skip [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-rkl: [SKIP][514] ([i915#14544] / [i915#9934]) -> [SKIP][515] ([i915#9934]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][516] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][517] ([i915#12314] / [i915#12745] / [i915#4839]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [INCOMPLETE][518] ([i915#4839]) -> [INCOMPLETE][519] ([i915#12314] / [i915#4839]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-rkl: [SKIP][520] ([i915#14544] / [i915#15643]) -> [SKIP][521] ([i915#15643]) +1 other test skip [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: [SKIP][522] ([i915#15643]) -> [SKIP][523] ([i915#14544] / [i915#15643]) [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][524] ([i915#15102]) -> [SKIP][525] ([i915#14544] / [i915#15102]) +3 other tests skip [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][526] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][527] ([i915#15102] / [i915#3458]) [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg1: [SKIP][528] -> [SKIP][529] ([i915#4423]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][530] ([i915#14544] / [i915#1825]) -> [SKIP][531] ([i915#1825]) +7 other tests skip [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: [SKIP][532] ([i915#1825]) -> [SKIP][533] ([i915#14544] / [i915#1825]) +11 other tests skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: [SKIP][534] ([i915#15102] / [i915#3023]) -> [SKIP][535] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][536] ([i915#15102] / [i915#3458]) -> [SKIP][537] ([i915#10433] / [i915#15102] / [i915#3458]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-rkl: [SKIP][538] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][539] ([i915#15102] / [i915#3023]) +8 other tests skip [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: [SKIP][540] ([i915#3555] / [i915#8228]) -> [INCOMPLETE][541] ([i915#15436]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-rkl: [SKIP][542] ([i915#1187] / [i915#12713]) -> [SKIP][543] ([i915#12713]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [INCOMPLETE][544] ([i915#15436]) -> [SKIP][545] ([i915#3555] / [i915#8228]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: [SKIP][546] ([i915#14544] / [i915#6301]) -> [SKIP][547] ([i915#6301]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: - shard-rkl: [SKIP][548] ([i915#14544] / [i915#15709]) -> [SKIP][549] ([i915#15709]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping: - shard-rkl: [SKIP][550] ([i915#15709]) -> [SKIP][551] ([i915#14544] / [i915#15709]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: [SKIP][552] ([i915#14259]) -> [SKIP][553] ([i915#14259] / [i915#14544]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-7/igt@kms_plane_multiple@tiling-yf.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: [SKIP][554] ([i915#14544] / [i915#15329]) -> [SKIP][555] ([i915#15329]) +7 other tests skip [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: [SKIP][556] ([i915#14544] / [i915#6524]) -> [SKIP][557] ([i915#6524]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-3/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-rkl: [SKIP][558] ([i915#11520]) -> [SKIP][559] ([i915#11520] / [i915#14544]) +2 other tests skip [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][560] ([i915#11520] / [i915#14544]) -> [SKIP][561] ([i915#11520]) +3 other tests skip [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr@fbc-pr-dpms: - shard-dg1: [SKIP][562] ([i915#1072] / [i915#9732]) -> [SKIP][563] ([i915#1072] / [i915#4423] / [i915#9732]) [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-13/igt@kms_psr@fbc-pr-dpms.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-13/igt@kms_psr@fbc-pr-dpms.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-rkl: [SKIP][564] ([i915#1072] / [i915#9732]) -> [SKIP][565] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip [564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-8/igt@kms_psr@fbc-psr-primary-mmap-gtt.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-dg1: [SKIP][566] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][567] ([i915#1072] / [i915#9732]) [566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-16/igt@kms_psr@fbc-psr2-cursor-blt.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-dg1-14/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-sprite-blt: - shard-rkl: [SKIP][568] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][569] ([i915#1072] / [i915#9732]) +6 other tests skip [568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-blt.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-blt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: [SKIP][570] ([i915#5289]) -> [SKIP][571] ([i915#14544] / [i915#5289]) [570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@clone-exclusive-crtc: - shard-rkl: [SKIP][572] ([i915#14544] / [i915#3555]) -> [SKIP][573] ([i915#3555]) +1 other test skip [572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: [SKIP][574] ([i915#14544] / [i915#8623]) -> [SKIP][575] ([i915#8623]) [574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-dpms: - shard-rkl: [SKIP][576] ([i915#15243] / [i915#3555]) -> [SKIP][577] ([i915#14544] / [i915#15243] / [i915#3555]) [576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-5/igt@kms_vrr@flip-dpms.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-rkl: [SKIP][578] ([i915#11920] / [i915#14544]) -> [SKIP][579] ([i915#11920]) [578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_vrr@lobf.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-8/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-rkl: [SKIP][580] ([i915#14544] / [i915#3555] / [i915#9906]) -> [SKIP][581] ([i915#3555] / [i915#9906]) [580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_vrr@negative-basic.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-3/igt@kms_vrr@negative-basic.html * igt@prime_vgem@basic-fence-read: - shard-rkl: [SKIP][582] ([i915#3291] / [i915#3708]) -> [SKIP][583] ([i915#14544] / [i915#3291] / [i915#3708]) [582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-2/igt@prime_vgem@basic-fence-read.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-read-hang: - shard-rkl: [SKIP][584] ([i915#3708]) -> [SKIP][585] ([i915#14544] / [i915#3708]) [584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-8/igt@prime_vgem@fence-read-hang.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: [SKIP][586] ([i915#9917]) -> [SKIP][587] ([i915#14544] / [i915#9917]) +1 other test skip [586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-2/igt@sriov_basic@bind-unbind-vf.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13028]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13028 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140 [i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365 [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15520 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15717 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6403 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9457 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8764 -> IGTPW_14586 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18015: 7c2ed7e89e283615b5f133d0205061934541e26d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14586: cb850243beaef57e25e4b8c7a2e4761ef1bc59ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8764: 8764 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14586/index.html [-- Attachment #2: Type: text/html, Size: 196672 bytes --] ^ permalink raw reply [flat|nested] 22+ messages in thread
* ✗ i915.CI.Full: failure for Enable Vebox engine copy on Intel Xe driver (rev6) 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila ` (12 preceding siblings ...) 2026-02-21 13:06 ` ✗ i915.CI.Full: failure for Enable Vebox engine copy on Intel Xe driver (rev5) Patchwork @ 2026-02-21 14:44 ` Patchwork 2026-02-23 11:16 ` ✗ Xe.CI.FULL: failure for Enable Vebox engine copy on Intel Xe driver (rev5) Patchwork 2026-02-23 12:38 ` ✗ Xe.CI.FULL: failure for Enable Vebox engine copy on Intel Xe driver (rev6) Patchwork 15 siblings, 0 replies; 22+ messages in thread From: Patchwork @ 2026-02-21 14:44 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 139763 bytes --] == Series Details == Series: Enable Vebox engine copy on Intel Xe driver (rev6) URL : https://patchwork.freedesktop.org/series/161376/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18015_full -> IGTPW_14587_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14587_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14587_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14587_full: ### IGT changes ### #### Possible regressions #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][1] -> [CRASH][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-4/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-0: - shard-dg2: [PASS][5] -> [FAIL][6] +8 other tests fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-1/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-8/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-0.html - shard-rkl: NOTRUN -> [FAIL][7] +4 other tests fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-0.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-3: - shard-dg1: [PASS][8] -> [FAIL][9] +7 other tests fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-13/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-3.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-12/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-3.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-3: - shard-tglu: [PASS][10] -> [FAIL][11] +6 other tests fail [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-tglu-10/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-3.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-7/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-3.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-0: - shard-dg2: NOTRUN -> [FAIL][12] +4 other tests fail [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-0.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-0: - shard-mtlp: NOTRUN -> [FAIL][13] +4 other tests fail [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-2/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-0.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-mtlp: [PASS][14] -> [FAIL][15] +7 other tests fail [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-mtlp-4/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-3/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html #### Warnings #### * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][16] ([i915#15128]) -> [SKIP][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html New tests --------- New tests have been introduced between CI_DRM_18015_full and IGTPW_14587_full: ### New IGT tests (23) ### * igt@kms_frontbuffer_tracking@4-tiled-16bpp-rotate-0: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@cursor-offscreen-32x10: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@etime-multi-wait-all-available-unsubmitted: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@execbuf-with-allocator: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@getfb2-handle-not-fb: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@invalid-bsd-ring: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@invalid-bsd1-flag-on-render: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@legacy-resubmit: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@modeset-lpsp-stress-no-wait: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@multi-wait-for-submit-signaled: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@multiplane-rotation-cropping-bottom: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@nullptr: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@planar-pixel-format-settings: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@planes-upscale-20x20: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@pr-overlay-plane-update-sf-dmg-area: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@pr-sprite-mmap-cpu: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@process-exit-busy: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@short-reads: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@ts-continuation-dpms-suspend: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@write: - Statuses : - Exec time: [None] s * igt@kms_frontbuffer_tracking@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_14587_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#8411]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-13/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#11078]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-4/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-7/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-12/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#13008]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][24] -> [INCOMPLETE][25] ([i915#13356]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-11/igt@gem_ccs@suspend-resume.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-5/igt@gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][26] ([i915#9323]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-1/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][27] -> [INCOMPLETE][28] ([i915#12392] / [i915#13356]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-11/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-5/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#7697]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#7697]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-2/igt@gem_close_race@multigpu-basic-threads.html - shard-tglu: NOTRUN -> [SKIP][31] ([i915#7697]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-3/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_ctx_persistence@file: - shard-snb: NOTRUN -> [SKIP][32] ([i915#1099]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-snb7/igt@gem_ctx_persistence@file.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#8555]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-3/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][35] ([i915#280]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-17/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][36] ([i915#280]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-2/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#280]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-8/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#280]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@kms: - shard-tglu: [PASS][39] -> [DMESG-WARN][40] ([i915#13363]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-tglu-2/igt@gem_eio@kms.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-2/igt@gem_eio@kms.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#4525]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-3/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-contexts: - shard-tglu: NOTRUN -> [SKIP][42] ([i915#4525]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-2/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#4525]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][44] ([i915#11965]) +1 other test fail [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-1/igt@gem_exec_capture@capture.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][45] ([i915#6334]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk2/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#6344]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][47] ([i915#11965]) +4 other tests fail [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-6/igt@gem_exec_capture@capture@vecs0-lmem0.html - shard-dg1: NOTRUN -> [FAIL][48] ([i915#11965]) +2 other tests fail [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-16/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fence@submit67: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-18/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-6/igt@gem_exec_flush@basic-uc-ro-default.html - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-16/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][52] +5 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-active: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#14544] / [i915#3281]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-cpu-read-active: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3281]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-read-active.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3281]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#3281]) +11 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-18/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-wc: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#3281]) +7 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_suspend@basic-s3: - shard-glk: NOTRUN -> [INCOMPLETE][58] ([i915#13196] / [i915#13356]) +1 other test incomplete [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk6/igt@gem_exec_suspend@basic-s3.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4613]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#4613]) +7 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613]) +5 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][62] -> [CRASH][63] ([i915#5493]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random: - shard-glk: NOTRUN -> [SKIP][64] ([i915#4613]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk2/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_vme: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#284]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-17/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-read: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4077]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@gem_mmap_gtt@basic-read.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-18/igt@gem_mmap_wc@write-gtt-read-wc.html - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4083]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-8/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@bench: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3282]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-4/igt@gem_pread@bench.html * igt@gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][72] ([i915#2658]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3282]) +6 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-glk10: NOTRUN -> [WARN][74] ([i915#14702] / [i915#2658]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#13398]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4270]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-16/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@yf-tiled-ccs-to-x-tiled: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8428]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-5/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#8411]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4885]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-4/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [PASS][81] -> [INCOMPLETE][82] ([i915#13809]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-3/igt@gem_softpin@noreloc-s3.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@gem_softpin@noreloc-s3.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#3297]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-2/igt@gem_userptr_blits@dmabuf-unsync.html - shard-tglu: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-3/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-12/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4880]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-busy.html - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4880]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-busy.html - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gen9_exec_parse@basic-rejected: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#2527]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-13/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-invalid-length: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#2856]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-8/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#2856]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-7/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-7/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#2527]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-1/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@secure-batches: - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@gen9_exec_parse@secure-batches.html * igt@i915_drm_fdinfo@busy-idle@bcs0: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#14073]) +5 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-13/igt@i915_drm_fdinfo@busy-idle@bcs0.html * igt@i915_drm_fdinfo@isolation@rcs0: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#14073]) +6 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-2/igt@i915_drm_fdinfo@isolation@rcs0.html * igt@i915_drm_fdinfo@virtual-busy-all: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#14118]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-4/igt@i915_drm_fdinfo@virtual-busy-all.html - shard-dg2: NOTRUN -> [SKIP][99] ([i915#14118]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-5/igt@i915_drm_fdinfo@virtual-busy-all.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#14118]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-14/igt@i915_drm_fdinfo@virtual-busy-all.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#8399]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-8/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#8399]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-3/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: [PASS][103] -> [FAIL][104] ([i915#12964]) +1 other test fail [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-1/igt@i915_pm_rc6_residency@rc6-accuracy.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#14498]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@system-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][106] ([i915#13356]) +2 other tests incomplete [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk2/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#11681]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-7/igt@i915_pm_rps@thresholds-idle-park.html - shard-dg1: NOTRUN -> [SKIP][108] ([i915#11681]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-16/igt@i915_pm_rps@thresholds-idle-park.html - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#11681]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#4387]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-2/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#6245]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-5/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#5723]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-8/igt@i915_query@test-query-geometry-subslices.html - shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#5723]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#12454] / [i915#12712]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#10333]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-3/igt@kms_async_flips@test-cursor.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#9531]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#1769] / [i915#3555]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5286]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-12/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#5286]) +5 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#5286]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#5286]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#5286]) +8 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#3638]) +5 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][124] ([i915#3828]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3828]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#3828]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][127] +11 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#3638]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-13/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538]) +4 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-glk10: NOTRUN -> [SKIP][131] +177 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk10/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#6095]) +74 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#6095]) +74 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#12313]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][135] ([i915#12313]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#12313]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#10307] / [i915#6095]) +121 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#12805]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][139] ([i915#12805]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: NOTRUN -> [INCOMPLETE][140] ([i915#15582]) +1 other test incomplete [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#14098] / [i915#6095]) +59 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#12313]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-12/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#6095]) +39 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html - shard-dg1: NOTRUN -> [SKIP][144] ([i915#6095]) +210 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#12313]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#12313]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6095]) +34 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#6095]) +75 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#3742]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#13783]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#14544]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-4/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-8/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +8 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +6 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#14544] / [i915#7828]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +4 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html - shard-dg1: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +6 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-18/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#12655] / [i915#3555]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#7118] / [i915#9424]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-3/igt@kms_content_protection@atomic.html - shard-rkl: NOTRUN -> [SKIP][161] ([i915#6944] / [i915#7118] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@kms_content_protection@atomic.html - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_content_protection@atomic.html - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#6944] / [i915#9424]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-5/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][164] ([i915#7173]) +1 other test fail [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#15330]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#15330] / [i915#3299]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-18/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#15330]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-4/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@legacy: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#6944] / [i915#7116] / [i915#9424]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-13/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy-hdcp14: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#6944]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-3/igt@kms_content_protection@legacy-hdcp14.html - shard-tglu: NOTRUN -> [SKIP][170] ([i915#6944]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-6/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#6944] / [i915#9424]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#6944] / [i915#7118]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-2/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][173] ([i915#6944] / [i915#7116] / [i915#7118]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-3/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-10/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#3555]) +4 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#13049]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#13049]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1: - shard-tglu: [PASS][178] -> [FAIL][179] ([i915#13566]) +1 other test fail [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3555]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8814]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#3555]) +5 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#13049]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: NOTRUN -> [FAIL][185] ([i915#13566]) +3 other tests fail [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-rkl: [PASS][186] -> [FAIL][187] ([i915#13566]) +2 other tests fail [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-64x21.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][188] ([i915#13566]) +5 other tests fail [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#13046] / [i915#5354]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#4103] / [i915#4213]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-16/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#4103]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-rkl: NOTRUN -> [SKIP][192] +30 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#9809]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#9067]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#4103] / [i915#4213]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][196] ([i915#4103]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-tglu: NOTRUN -> [SKIP][197] ([i915#4103]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#4213]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][199] ([i915#9723]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#13691]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-4/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-dg2: [PASS][201] -> [SKIP][202] ([i915#13749]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-11/igt@kms_dp_link_training@non-uhbr-sst.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-3/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3840]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#3840]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3840]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-9/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#3840] / [i915#9053]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#3955]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html - shard-tglu: NOTRUN -> [SKIP][208] ([i915#3469]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#1839]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-8/igt@kms_feature_discovery@display-4x.html - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#1839]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#9337]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-6/igt@kms_feature_discovery@dp-mst.html - shard-rkl: NOTRUN -> [SKIP][212] ([i915#9337]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][213] ([i915#9337]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-12/igt@kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][214] ([i915#9337]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-5/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#9337]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-1/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#658]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#658]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-13/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#9934]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-3/igt@kms_flip@2x-absolute-wf_vblank.html - shard-rkl: NOTRUN -> [SKIP][219] ([i915#9934]) +7 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@kms_flip@2x-absolute-wf_vblank.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#9934]) +4 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-18/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#9934]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#3637] / [i915#9934]) +6 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-8/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1: - shard-snb: [PASS][223] -> [TIMEOUT][224] ([i915#14033]) +1 other test timeout [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-nonexisting-fb: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3637] / [i915#9934]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-4/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#3637] / [i915#9934]) +8 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#8381]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-7/igt@kms_flip@flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][228] ([i915#8381]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-18/igt@kms_flip@flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#8381]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-5/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][230] ([i915#12745] / [i915#4839]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][231] ([i915#12745]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#15643]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#15643]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html - shard-dg2: NOTRUN -> [SKIP][234] ([i915#15643] / [i915#5190]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#15643]) +3 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#15643]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][237] ([i915#15643]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt: - shard-dg2: [PASS][238] -> [FAIL][239] ([i915#15389]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-mtlp: [PASS][240] -> [ABORT][241] ([i915#13562]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [PASS][242] -> [FAIL][243] ([i915#15389] / [i915#6880]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#5354]) +7 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html - shard-rkl: NOTRUN -> [SKIP][245] ([i915#14544] / [i915#1825]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][246] +24 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][247] +57 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#1825]) +12 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [PASS][249] -> [INCOMPLETE][250] ([i915#10056]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html - shard-glk10: NOTRUN -> [INCOMPLETE][251] ([i915#10056]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk10/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#8708]) +5 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#14544] / [i915#15102]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#15104]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][255] ([i915#15104]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][256] ([i915#15104]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#15102] / [i915#3458]) +4 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][258] +37 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#8708]) +5 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#1825]) +45 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#5439]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#9766]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#15102]) +5 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#15102]) +21 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html - shard-dg2: NOTRUN -> [SKIP][265] ([i915#15102]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#15102]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#15102] / [i915#3023]) +19 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#15102]) +16 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#8708]) +10 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#15102] / [i915#3458]) +12 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8228]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-14/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][273] ([i915#15436]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: [PASS][274] -> [SKIP][275] ([i915#3555] / [i915#8228]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-3/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-dg2: [PASS][276] -> [SKIP][277] ([i915#3555] / [i915#8228]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-11/igt@kms_hdr@static-swap.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-7/igt@kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#12713] / [i915#3555] / [i915#8228]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-2/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-4/igt@kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-8/igt@kms_hdr@static-toggle.html * igt@kms_invalid_mode@clock-too-high: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#6403] / [i915#8826]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-1/igt@kms_invalid_mode@clock-too-high.html * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#9457]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-1/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html * igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#8826] / [i915#9457]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-1/igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#15460]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#15458]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-13/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#15638] / [i915#15722]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-14/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: [PASS][287] -> [INCOMPLETE][288] ([i915#12756] / [i915#13476]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-2/igt@kms_pipe_crc_basic@suspend-read-crc.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html - shard-glk10: NOTRUN -> [INCOMPLETE][289] ([i915#12756] / [i915#13409] / [i915#13476]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][290] ([i915#13476]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk10: NOTRUN -> [INCOMPLETE][291] ([i915#13409] / [i915#13476]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#15709]) +5 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#15709]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-1: - shard-snb: [PASS][294] -> [SKIP][295] +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-snb1/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-1.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-snb5/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-1.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#15608]) +5 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-4/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-2: - shard-snb: NOTRUN -> [SKIP][297] +85 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-snb1/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-2.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#15608]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#15608]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-2/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-tglu-1: NOTRUN -> [SKIP][300] ([i915#15709]) +4 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#15709]) +2 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-17/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#15709]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-3/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#15709]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-3/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7: - shard-dg1: NOTRUN -> [SKIP][304] ([i915#15608]) +3 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-14/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#15608]) +5 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-glk: NOTRUN -> [INCOMPLETE][306] ([i915#13026]) +1 other test incomplete [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk9/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#3555] / [i915#8821]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-2/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@2x-tiling-none: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#13958]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#14259]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-4/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#14259]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-8/igt@kms_plane_multiple@tiling-y.html - shard-dg2: NOTRUN -> [SKIP][311] ([i915#14259]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#14259]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-16/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#15329]) +4 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#15329] / [i915#6953]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][315] ([i915#15329]) +3 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#9812]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#9685]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-4/igt@kms_pm_dc@dc5-psr.html - shard-rkl: NOTRUN -> [SKIP][318] ([i915#9685]) +2 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-8/igt@kms_pm_dc@dc5-psr.html - shard-dg1: NOTRUN -> [SKIP][319] ([i915#9685]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-17/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#9685]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-8/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@cursor-dpms: - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#4077]) +2 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-1/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][322] -> [SKIP][323] ([i915#15073]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][324] -> [SKIP][325] ([i915#15073]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#15073]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#4077]) +4 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-13/igt@kms_pm_rpm@fences.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#15073]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html - shard-rkl: NOTRUN -> [SKIP][329] ([i915#15073]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html - shard-dg1: NOTRUN -> [SKIP][330] ([i915#15073]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][331] ([i915#15073]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@package-g7: - shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#15403]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_pm_rpm@package-g7.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#14544] / [i915#6524]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][334] ([i915#6524]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-7/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#11520]) +7 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-glk: NOTRUN -> [SKIP][336] ([i915#11520]) +10 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#11520] / [i915#14544]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#11520]) +2 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-3/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html - shard-snb: NOTRUN -> [SKIP][339] ([i915#11520]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-snb7/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#9808]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#12316]) +2 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][342] ([i915#11520]) +4 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-13/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-glk10: NOTRUN -> [SKIP][343] ([i915#11520]) +5 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#11520]) +6 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#11520]) +12 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#9683]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][347] ([i915#9683]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][348] ([i915#9683]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-16/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#1072] / [i915#9732]) +5 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-4/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][350] +379 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk1/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr2-primary-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][351] ([i915#9732]) +21 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-8/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-dg1: NOTRUN -> [SKIP][352] ([i915#1072] / [i915#9732]) +16 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-12/igt@kms_psr@fbc-psr2-sprite-render.html - shard-mtlp: NOTRUN -> [SKIP][353] ([i915#9688]) +10 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-6/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#9732]) +11 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@pr-no-drrs: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr-cursor-render: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#1072] / [i915#9732]) +24 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][357] ([i915#4077] / [i915#9688]) +3 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-7/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#9685]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#5190]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-rkl: NOTRUN -> [SKIP][360] ([i915#5289]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-dg1: NOTRUN -> [SKIP][361] ([i915#5289]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][362] ([i915#5289]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-mtlp: NOTRUN -> [SKIP][363] ([i915#5289]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][364] ([i915#3555] / [i915#8809]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-5/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu-1: NOTRUN -> [SKIP][365] ([i915#8623]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1: - shard-glk: [PASS][366] -> [INCOMPLETE][367] ([i915#12276]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-glk2/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-glk1/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][368] ([i915#9906]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][369] ([i915#9906]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-13/igt@kms_vrr@flip-basic-fastset.html - shard-tglu: NOTRUN -> [SKIP][370] ([i915#9906]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-3/igt@kms_vrr@flip-basic-fastset.html - shard-mtlp: NOTRUN -> [SKIP][371] ([i915#8808] / [i915#9906]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-7/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][372] ([i915#3555]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-5/igt@kms_vrr@flip-suspend.html - shard-mtlp: NOTRUN -> [SKIP][373] ([i915#3555] / [i915#8808]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-1/igt@kms_vrr@flip-suspend.html - shard-dg2: NOTRUN -> [SKIP][374] ([i915#15243] / [i915#3555]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-6/igt@kms_vrr@flip-suspend.html - shard-rkl: NOTRUN -> [SKIP][375] ([i915#15243] / [i915#3555]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][376] ([i915#9906]) +2 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-tglu-1: NOTRUN -> [SKIP][377] ([i915#9906]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][378] ([i915#7387]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-7/igt@perf@global-sseu-config.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][379] ([i915#8516]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-4/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][380] ([i915#3708]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-16/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][381] ([i915#3708] / [i915#4077]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-12/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg1: NOTRUN -> [SKIP][382] ([i915#9917]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-12/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][383] ([i915#9917]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-on.html #### Possible fixes #### * igt@gem_create@create-clear: - shard-dg1: [INCOMPLETE][384] -> [PASS][385] +1 other test pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-16/igt@gem_create@create-clear.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-12/igt@gem_create@create-clear.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [INCOMPLETE][386] ([i915#13390]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@gem_eio@in-flight-suspend.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@gem_eio@in-flight-suspend.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [ABORT][388] ([i915#14809]) -> [PASS][389] +1 other test pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-mtlp-6/igt@gem_mmap_offset@clear-via-pagefault.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-7/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: [SKIP][390] ([i915#4270]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@gem_pxp@create-protected-buffer.html * igt@gem_workarounds@suspend-resume-fd: - shard-rkl: [INCOMPLETE][392] ([i915#13356]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-rkl: [ABORT][394] ([i915#15060]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-1/igt@i915_pm_rpm@system-suspend-execbuf.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-8/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [DMESG-WARN][396] ([i915#14545]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-5/igt@i915_suspend@basic-s3-without-i915.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-3/igt@i915_suspend@basic-s3-without-i915.html - shard-dg1: [DMESG-WARN][398] ([i915#14545]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-12/igt@i915_suspend@basic-s3-without-i915.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-18/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@forcewake: - shard-rkl: [INCOMPLETE][400] ([i915#4817]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@i915_suspend@forcewake.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@i915_suspend@forcewake.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-mtlp: [FAIL][402] ([i915#5956]) -> [PASS][403] +1 other test pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][404] ([i915#5138]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][406] ([i915#13566]) -> [PASS][407] +3 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-rkl: [INCOMPLETE][408] ([i915#6113]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: [SKIP][410] ([i915#3555] / [i915#8228]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-1/igt@kms_hdr@invalid-metadata-sizes.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: [SKIP][412] ([i915#15459]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [SKIP][414] ([i915#15073]) -> [PASS][415] +1 other test pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][416] ([i915#15073]) -> [PASS][417] +1 other test pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg1: [SKIP][418] ([i915#15073]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg1: [DMESG-WARN][420] ([i915#4423]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-16/igt@kms_pm_rpm@i2c.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-17/igt@kms_pm_rpm@i2c.html * igt@kms_setmode@basic: - shard-tglu: [FAIL][422] ([i915#15106]) -> [PASS][423] +2 other tests pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-tglu-3/igt@kms_setmode@basic.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-tglu-6/igt@kms_setmode@basic.html - shard-mtlp: [FAIL][424] ([i915#15106]) -> [PASS][425] +1 other test pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-mtlp-4/igt@kms_setmode@basic.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-7/igt@kms_setmode@basic.html - shard-dg2: [FAIL][426] ([i915#15106]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-6/igt@kms_setmode@basic.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-4/igt@kms_setmode@basic.html * igt@kms_vblank@ts-continuation-suspend: - shard-rkl: [INCOMPLETE][428] ([i915#12276]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-4/igt@kms_vblank@ts-continuation-suspend.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-8/igt@kms_vblank@ts-continuation-suspend.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][430] ([i915#4349]) -> [PASS][431] +4 other tests pass [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@most-busy-check-all@bcs0: - shard-mtlp: [FAIL][432] ([i915#15520]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-mtlp-5/igt@perf_pmu@most-busy-check-all@bcs0.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-3/igt@perf_pmu@most-busy-check-all@bcs0.html #### Warnings #### * igt@gem_basic@multigpu-create-close: - shard-rkl: [SKIP][434] ([i915#14544] / [i915#7697]) -> [SKIP][435] ([i915#7697]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@gem_basic@multigpu-create-close.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@gem_basic@multigpu-create-close.html * igt@gem_exec_reloc@basic-write-gtt: - shard-rkl: [SKIP][436] ([i915#3281]) -> [SKIP][437] ([i915#14544] / [i915#3281]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-7/igt@gem_exec_reloc@basic-write-gtt.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@gem_exec_reloc@basic-write-gtt.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: [SKIP][438] ([i915#14544] / [i915#3281]) -> [SKIP][439] ([i915#3281]) +3 other tests skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: [SKIP][440] ([i915#14544] / [i915#7276]) -> [SKIP][441] ([i915#7276]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-8/igt@gem_exec_schedule@semaphore-power.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-rkl: [SKIP][442] ([i915#4613]) -> [SKIP][443] ([i915#14544] / [i915#4613]) +1 other test skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-rkl: [SKIP][444] ([i915#14544] / [i915#3282]) -> [SKIP][445] ([i915#3282]) +1 other test skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [FAIL][446] ([i915#15717]) -> [SKIP][447] ([i915#13717]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-buffer.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: [SKIP][448] ([i915#13717] / [i915#14544]) -> [SKIP][449] ([i915#13717]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][450] ([i915#3282] / [i915#3297]) -> [SKIP][451] ([i915#14544] / [i915#3282] / [i915#3297]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-7/igt@gem_userptr_blits@forbidden-operations.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: [SKIP][452] ([i915#3297]) -> [SKIP][453] ([i915#14544] / [i915#3297]) +1 other test skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-cycles.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@bb-start-cmd: - shard-rkl: [SKIP][454] ([i915#2527]) -> [SKIP][455] ([i915#14544] / [i915#2527]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-8/igt@gen9_exec_parse@bb-start-cmd.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: [SKIP][456] ([i915#14544] / [i915#2527]) -> [SKIP][457] ([i915#2527]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-8/igt@gen9_exec_parse@secure-batches.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-rkl: [SKIP][458] ([i915#5286]) -> [SKIP][459] ([i915#14544] / [i915#5286]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-rkl: [SKIP][460] ([i915#14544] / [i915#5286]) -> [SKIP][461] ([i915#5286]) +2 other tests skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][462] ([i915#14544] / [i915#3638]) -> [SKIP][463] ([i915#3638]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-1/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: [SKIP][464] ([i915#14544]) -> [SKIP][465] +2 other tests skip [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-rkl: [SKIP][466] -> [SKIP][467] ([i915#14544]) +4 other tests skip [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][468] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][469] ([i915#14098] / [i915#6095]) +8 other tests skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-rkl: [SKIP][470] ([i915#14098] / [i915#6095]) -> [SKIP][471] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-4/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][472] ([i915#6095]) -> [SKIP][473] ([i915#14544] / [i915#6095]) +1 other test skip [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-4/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-2.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][474] ([i915#14544] / [i915#6095]) -> [SKIP][475] ([i915#6095]) +6 other tests skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-rkl: [SKIP][476] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][477] ([i915#11151] / [i915#7828]) +3 other tests skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_chamelium_frames@dp-frame-dump.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-4/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: [SKIP][478] ([i915#6944] / [i915#7118] / [i915#9424]) -> [FAIL][479] ([i915#7173]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-dg2: [SKIP][480] ([i915#6944]) -> [FAIL][481] ([i915#7173]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-5/igt@kms_content_protection@atomic-dpms-hdcp14.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: [SKIP][482] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][483] ([i915#15330] / [i915#3116]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-dg2: [FAIL][484] ([i915#7173]) -> [SKIP][485] ([i915#6944]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-11/igt@kms_content_protection@lic-type-0-hdcp14.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-6/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][486] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][487] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-8/igt@kms_content_protection@type1.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg2: [FAIL][488] ([i915#1339] / [i915#7173]) -> [SKIP][489] ([i915#6944] / [i915#7118] / [i915#9424]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-11/igt@kms_content_protection@uevent.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-6/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-rkl: [SKIP][490] ([i915#14544] / [i915#3555]) -> [SKIP][491] ([i915#3555]) +1 other test skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: [SKIP][492] ([i915#4103]) -> [SKIP][493] ([i915#14544] / [i915#4103]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: [SKIP][494] ([i915#14544] / [i915#4103]) -> [SKIP][495] ([i915#4103]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - shard-rkl: [SKIP][496] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][497] ([i915#3555] / [i915#3840]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_dsc@dsc-basic.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@kms_dsc@dsc-basic.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-rkl: [SKIP][498] ([i915#9934]) -> [SKIP][499] ([i915#14544] / [i915#9934]) +1 other test skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms-on-nop.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-rkl: [SKIP][500] ([i915#14544] / [i915#9934]) -> [SKIP][501] ([i915#9934]) +1 other test skip [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_flip@2x-plain-flip-ts-check.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-rkl: [SKIP][502] ([i915#14544] / [i915#15643]) -> [SKIP][503] ([i915#15643]) +1 other test skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render: - shard-rkl: [SKIP][504] ([i915#15102]) -> [SKIP][505] ([i915#14544] / [i915#15102]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-rkl: [SKIP][506] ([i915#15102] / [i915#3023]) -> [SKIP][507] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][508] ([i915#14544] / [i915#1825]) -> [SKIP][509] ([i915#1825]) +9 other tests skip [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][510] ([i915#1825]) -> [SKIP][511] ([i915#14544] / [i915#1825]) +1 other test skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: [SKIP][512] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][513] ([i915#15102] / [i915#3458]) +1 other test skip [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][514] ([i915#15102] / [i915#3458]) -> [SKIP][515] ([i915#10433] / [i915#15102] / [i915#3458]) +2 other tests skip [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-rkl: [SKIP][516] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][517] ([i915#15102] / [i915#3023]) +6 other tests skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: [SKIP][518] ([i915#3555] / [i915#8228]) -> [INCOMPLETE][519] ([i915#15436]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][520] ([i915#12713]) -> [SKIP][521] ([i915#1187] / [i915#12713]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-mtlp-7/igt@kms_hdr@brightness-with-hdr.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-swap: - shard-dg1: [SKIP][522] ([i915#3555] / [i915#8228]) -> [SKIP][523] ([i915#3555] / [i915#4423] / [i915#8228]) [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-18/igt@kms_hdr@static-swap.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-16/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: [SKIP][524] ([i915#14544] / [i915#15458]) -> [SKIP][525] ([i915#15458]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-4/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: [SKIP][526] ([i915#14544] / [i915#15709]) -> [SKIP][527] ([i915#15709]) +1 other test skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-5/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: [SKIP][528] ([i915#14544] / [i915#15329]) -> [SKIP][529] ([i915#15329]) +7 other tests skip [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: [SKIP][530] ([i915#5354]) -> [SKIP][531] ([i915#14544] / [i915#5354]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-5/igt@kms_pm_backlight@fade-with-dpms.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][532] ([i915#11520] / [i915#14544]) -> [SKIP][533] ([i915#11520]) +3 other tests skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-rkl: [SKIP][534] ([i915#11520]) -> [SKIP][535] ([i915#11520] / [i915#14544]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: [SKIP][536] ([i915#9683]) -> [SKIP][537] ([i915#14544] / [i915#9683]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-5/igt@kms_psr2_su@page_flip-nv12.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-dg1: [SKIP][538] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][539] ([i915#1072] / [i915#9732]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-dg1-16/igt@kms_psr@fbc-psr2-cursor-blt.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-dg1-18/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@pr-basic: - shard-rkl: [SKIP][540] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][541] ([i915#1072] / [i915#9732]) +4 other tests skip [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_psr@pr-basic.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-1/igt@kms_psr@pr-basic.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: [SKIP][542] ([i915#14544] / [i915#8623]) -> [SKIP][543] ([i915#8623]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@lobf: - shard-rkl: [SKIP][544] ([i915#11920] / [i915#14544]) -> [SKIP][545] ([i915#11920]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_vrr@lobf.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-4/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-rkl: [SKIP][546] ([i915#14544] / [i915#3555] / [i915#9906]) -> [SKIP][547] ([i915#3555] / [i915#9906]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-6/igt@kms_vrr@negative-basic.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-2/igt@kms_vrr@negative-basic.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: [SKIP][548] ([i915#2435]) -> [SKIP][549] ([i915#14544] / [i915#2435]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18015/shard-rkl-7/igt@perf@per-context-mode-unprivileged.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809 [i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15520 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15717 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6403 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9457 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8764 -> IGTPW_14587 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18015: 7c2ed7e89e283615b5f133d0205061934541e26d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14587: 14587 IGT_8764: 8764 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14587/index.html [-- Attachment #2: Type: text/html, Size: 185269 bytes --] ^ permalink raw reply [flat|nested] 22+ messages in thread
* ✗ Xe.CI.FULL: failure for Enable Vebox engine copy on Intel Xe driver (rev5) 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila ` (13 preceding siblings ...) 2026-02-21 14:44 ` ✗ i915.CI.Full: failure for Enable Vebox engine copy on Intel Xe driver (rev6) Patchwork @ 2026-02-23 11:16 ` Patchwork 2026-02-23 12:38 ` ✗ Xe.CI.FULL: failure for Enable Vebox engine copy on Intel Xe driver (rev6) Patchwork 15 siblings, 0 replies; 22+ messages in thread From: Patchwork @ 2026-02-23 11:16 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 44806 bytes --] == Series Details == Series: Enable Vebox engine copy on Intel Xe driver (rev5) URL : https://patchwork.freedesktop.org/series/161376/ State : failure == Summary == CI Bug Log - changes from XEIGT_8764_FULL -> XEIGTPW_14586_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14586_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14586_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14586_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping: - shard-lnl: [PASS][1] -> [FAIL][2] +10 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-8/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-1/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-0: - shard-bmg: NOTRUN -> [FAIL][3] +4 other tests fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-1/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-0.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-0: - shard-bmg: [PASS][4] -> [FAIL][5] +5 other tests fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-9/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-0.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-3/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-0.html Known issues ------------ Here are the changes found in XEIGTPW_14586_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1407]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#7059]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +7 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#2191]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1512]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#367]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-4/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2652]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-9/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#3432]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +11 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#373]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-1/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_color@ctm-max: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2325]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-4/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2252]) +5 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-6/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_content_protection@atomic-hdcp14: - shard-bmg: NOTRUN -> [FAIL][21] ([Intel XE#3304]) +2 other tests fail [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-3/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@lic-type-1: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2341]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-1/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2320]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1424]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-1/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2321]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_dsc@dsc-fractional-bpp: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2244]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_fbcon_fbt@psr: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#776]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-4/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#1138]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-2/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1421]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-3/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [PASS][30] -> [FAIL][31] ([Intel XE#301]) +1 other test fail [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7178]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#7178]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7179]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-8/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#651]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2311]) +16 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4141]) +6 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7061]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#6312]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2313]) +22 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#656]) +8 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_joiner@basic-max-non-joiner: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#4298]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-9/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7283]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane_lowres@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#599]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-y: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#4596]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-2/igt@kms_plane_multiple@2x-tiling-y.html - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#5021]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_backlight@fade-with-suspend: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#870]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-8/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1128] / [Intel XE#1406]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-4/igt@kms_psr2_su@page_flip-p010.html - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#1406] / [Intel XE#2387]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@pr-sprite-render: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-3/igt@kms_psr@pr-sprite-render.html * igt@kms_rotation_crc@multiplane-rotation: - shard-bmg: [PASS][57] -> [FAIL][58] ([Intel XE#6946] / [Intel XE#7264]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-6/igt@kms_rotation_crc@multiplane-rotation.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-7/igt@kms_rotation_crc@multiplane-rotation.html - shard-lnl: [PASS][59] -> [FAIL][60] ([Intel XE#1874] / [Intel XE#6946] / [Intel XE#7264] / [Intel XE#7305]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-2/igt@kms_rotation_crc@multiplane-rotation.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-4/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-lnl: [PASS][61] -> [FAIL][62] ([Intel XE#1874] / [Intel XE#7264] / [Intel XE#7305]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-3/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-8/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html - shard-bmg: [PASS][63] -> [FAIL][64] ([Intel XE#7264]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-7/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-3/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#1435]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [FAIL][66] ([Intel XE#1729]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-basic-fastset: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#1499]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-2/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#2142]) +1 other test fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_eudebug@attach-debug-metadata: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#4837]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-6/igt@xe_eudebug@attach-debug-metadata.html * igt@xe_eudebug@basic-read-event: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#4837]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-1/igt@xe_eudebug@basic-read-event.html * igt@xe_eudebug_online@set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-4/igt@xe_eudebug_online@set-breakpoint.html * igt@xe_eudebug_online@set-breakpoint-sigint-debugger: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-6/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [PASS][74] -> [INCOMPLETE][75] ([Intel XE#6321]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-small.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: NOTRUN -> [INCOMPLETE][76] ([Intel XE#6321]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-small-cm: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-8/igt@xe_evict@evict-small-cm.html * igt@xe_exec_basic@multigpu-once-bindexecqueue: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1392]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-6/igt@xe_exec_basic@multigpu-once-bindexecqueue.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2322]) +6 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html * igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-imm: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#7136]) +9 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-1/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-imm.html * igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority-smem: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#6874]) +7 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-5/igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority-smem.html * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#6874]) +17 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-1/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#6196]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma.html * igt@xe_exec_threads@threads-multi-queue-cm-basic: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#7138]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-2/igt@xe_exec_threads@threads-multi-queue-cm-basic.html * igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#7138]) +6 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html * igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early: - shard-bmg: [PASS][86] -> [ABORT][87] ([Intel XE#6652]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html * igt@xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#5100]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-3/igt@xe_mmap@pci-membarrier-parallel.html * igt@xe_mmap@small-bar: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#586]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-1/igt@xe_mmap@small-bar.html * igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#6964]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-2/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html * igt@xe_multigpu_svm@mgpu-latency-prefetch: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#6964]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-4/igt@xe_multigpu_svm@mgpu-latency-prefetch.html * igt@xe_pm@vram-d3cold-threshold: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#579]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-4/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pxp@pxp-stale-bo-bind-post-rpm: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#4733]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-4/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html * igt@xe_query@multigpu-query-invalid-extension: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#944]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-8/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_query@multigpu-query-pxp-status: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#944]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-7/igt@xe_query@multigpu-query-pxp-status.html * igt@xe_sriov_flr@flr-each-isolation: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#3342]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-4/igt@xe_sriov_flr@flr-each-isolation.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events-linear: - shard-lnl: [FAIL][97] ([Intel XE#5993]) -> [PASS][98] +3 other tests pass [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][99] ([Intel XE#4459]) -> [PASS][100] +1 other test pass [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_exec_basic@many-execqueues-rebind: - shard-bmg: [ABORT][101] -> [PASS][102] +1 other test pass [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-2/igt@xe_exec_basic@many-execqueues-rebind.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-5/igt@xe_exec_basic@many-execqueues-rebind.html * igt@xe_exec_system_allocator@process-many-stride-new-madvise: - shard-bmg: [INCOMPLETE][103] ([Intel XE#2594]) -> [PASS][104] +1 other test pass [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-9/igt@xe_exec_system_allocator@process-many-stride-new-madvise.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-4/igt@xe_exec_system_allocator@process-many-stride-new-madvise.html * igt@xe_module_load@load: - shard-lnl: ([PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [SKIP][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130]) ([Intel XE#378]) -> ([PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-2/igt@xe_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-3/igt@xe_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-4/igt@xe_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-4/igt@xe_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-4/igt@xe_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-8/igt@xe_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-7/igt@xe_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-7/igt@xe_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-7/igt@xe_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-3/igt@xe_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-3/igt@xe_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-1/igt@xe_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-3/igt@xe_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-1/igt@xe_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-6/igt@xe_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-6/igt@xe_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-6/igt@xe_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-4/igt@xe_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-1/igt@xe_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-5/igt@xe_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-2/igt@xe_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-2/igt@xe_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-8/igt@xe_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-8/igt@xe_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-5/igt@xe_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-5/igt@xe_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-2/igt@xe_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-5/igt@xe_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-8/igt@xe_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-3/igt@xe_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-6/igt@xe_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-6/igt@xe_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-8/igt@xe_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-3/igt@xe_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-1/igt@xe_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-5/igt@xe_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-5/igt@xe_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-4/igt@xe_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-4/igt@xe_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-7/igt@xe_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-7/igt@xe_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-1/igt@xe_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-1/igt@xe_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-8/igt@xe_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-3/igt@xe_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-2/igt@xe_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-7/igt@xe_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-3/igt@xe_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-2/igt@xe_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-2/igt@xe_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-4/igt@xe_module_load@load.html * igt@xe_pm_residency@aspm_link_residency: - shard-bmg: [SKIP][156] ([Intel XE#7258]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-6/igt@xe_pm_residency@aspm_link_residency.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-8/igt@xe_pm_residency@aspm_link_residency.html * igt@xe_sriov_auto_provisioning@exclusive-ranges@numvfs-random: - shard-bmg: [FAIL][158] ([Intel XE#5937]) -> [PASS][159] +1 other test pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-8/igt@xe_sriov_auto_provisioning@exclusive-ranges@numvfs-random.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-8/igt@xe_sriov_auto_provisioning@exclusive-ranges@numvfs-random.html #### Warnings #### * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: [SKIP][160] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][161] ([Intel XE#2652]) +49 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-dp-2: - shard-bmg: [SKIP][162] ([Intel XE#6969]) -> [SKIP][163] ([Intel XE#6969] / [Intel XE#7289]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-3/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-dp-2.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-9/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-dp-2.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-edp-1: - shard-lnl: [SKIP][164] ([Intel XE#6969]) -> [SKIP][165] ([Intel XE#6969] / [Intel XE#7289]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-6/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-edp-1.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-edp-1.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-edp-1: - shard-lnl: [SKIP][166] ([Intel XE#6969] / [Intel XE#7006]) -> [SKIP][167] ([Intel XE#6969] / [Intel XE#7006] / [Intel XE#7289]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-6/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-edp-1.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-edp-1.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-2: - shard-bmg: [SKIP][168] ([Intel XE#6969] / [Intel XE#7006]) -> [SKIP][169] ([Intel XE#6969] / [Intel XE#7006] / [Intel XE#7289]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-3/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-2.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-9/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-2.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-lnl: [SKIP][170] ([Intel XE#7173]) -> [SKIP][171] ([Intel XE#7173] / [Intel XE#7294]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - shard-lnl: [SKIP][172] ([Intel XE#6886]) -> [SKIP][173] ([Intel XE#2763] / [Intel XE#6886]) +45 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: [SKIP][174] ([Intel XE#6886]) -> [SKIP][175] ([Intel XE#2763] / [Intel XE#6886]) +19 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][176] ([Intel XE#2426]) -> [SKIP][177] ([Intel XE#2509]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6946 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969 [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7173 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7258]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7258 [Intel XE#7264]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7264 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7289]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7289 [Intel XE#7294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7294 [Intel XE#7305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7305 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8764 -> IGTPW_14586 * Linux: xe-4577-157c1f59af33fb9acf6e0e055e7317b634711120 -> xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d IGTPW_14586: cb850243beaef57e25e4b8c7a2e4761ef1bc59ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8764: 8764 xe-4577-157c1f59af33fb9acf6e0e055e7317b634711120: 157c1f59af33fb9acf6e0e055e7317b634711120 xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d: 7c2ed7e89e283615b5f133d0205061934541e26d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14586/index.html [-- Attachment #2: Type: text/html, Size: 51483 bytes --] ^ permalink raw reply [flat|nested] 22+ messages in thread
* ✗ Xe.CI.FULL: failure for Enable Vebox engine copy on Intel Xe driver (rev6) 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila ` (14 preceding siblings ...) 2026-02-23 11:16 ` ✗ Xe.CI.FULL: failure for Enable Vebox engine copy on Intel Xe driver (rev5) Patchwork @ 2026-02-23 12:38 ` Patchwork 15 siblings, 0 replies; 22+ messages in thread From: Patchwork @ 2026-02-23 12:38 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 53552 bytes --] == Series Details == Series: Enable Vebox engine copy on Intel Xe driver (rev6) URL : https://patchwork.freedesktop.org/series/161376/ State : failure == Summary == CI Bug Log - changes from XEIGT_8764_FULL -> XEIGTPW_14587_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14587_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14587_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14587_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-hdmi-a-3: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html * igt@kms_flip@2x-plain-flip-fb-recreate@ad-dp2-hdmi-a3: - shard-bmg: [PASS][3] -> [DMESG-WARN][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-9/igt@kms_flip@2x-plain-flip-fb-recreate@ad-dp2-hdmi-a3.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate@ad-dp2-hdmi-a3.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear: - shard-lnl: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping: - shard-lnl: [PASS][7] -> [FAIL][8] +9 other tests fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-8/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-4/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-0: - shard-bmg: NOTRUN -> [FAIL][9] +4 other tests fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-7/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-0.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-0: - shard-bmg: [PASS][10] -> [FAIL][11] +4 other tests fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-9/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-0.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-9/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-0.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv: - shard-bmg: [PASS][12] -> [ABORT][13] [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html Known issues ------------ Here are the changes found in XEIGTPW_14587_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@unused-pitches: - shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#6557] / [Intel XE#6703]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-1/igt@kms_addfb_basic@unused-pitches.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_addfb_basic@unused-pitches.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1: - shard-lnl: [PASS][16] -> [FAIL][17] ([Intel XE#6054]) +3 other tests fail [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7059]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2327]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +7 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-8/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2314] / [Intel XE#2894]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1512]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-1/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#367]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-3/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-5/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2652]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][27] -> [INCOMPLETE][28] ([Intel XE#7084]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#3432]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +7 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2325]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-4/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_edid@vga-edid-read: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#373]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-2/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2252]) +4 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-3/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_content_protection@atomic-hdcp14: - shard-bmg: NOTRUN -> [FAIL][34] ([Intel XE#3304]) +2 other tests fail [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-8/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@lic-type-1: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2341]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-9/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2320]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1424]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2321]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_fbcon_fbt@psr: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#776]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1138]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-5/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1421]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-3/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3: - shard-bmg: [PASS][42] -> [DMESG-FAIL][43] ([Intel XE#5545]) +1 other test dmesg-fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-9/igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [PASS][44] -> [FAIL][45] ([Intel XE#301]) +1 other test fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1397] / [Intel XE#1745]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1397]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7178]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#7178]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7179]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#651]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2311]) +15 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#4141]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7061]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#6312]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#6703]) +20 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2313]) +18 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#656]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#1503]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-3/igt@kms_hdr@invalid-hdr.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-9/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-max-non-joiner: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#4298]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-5/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#6900]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7283]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane_lowres@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#599]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-2/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_backlight@fade-with-suspend: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#870]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-3/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#6693]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1128] / [Intel XE#1406]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-2/igt@kms_psr2_su@page_flip-p010.html - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#2387]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@pr-sprite-render: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-3/igt@kms_psr@pr-sprite-render.html * igt@kms_rotation_crc@multiplane-rotation: - shard-lnl: [PASS][76] -> [FAIL][77] ([Intel XE#1874] / [Intel XE#6946] / [Intel XE#7264] / [Intel XE#7305]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-2/igt@kms_rotation_crc@multiplane-rotation.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-5/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-bmg: [PASS][78] -> [FAIL][79] ([Intel XE#7264]) +1 other test fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-4/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#1874] / [Intel XE#7264] / [Intel XE#7305]) +1 other test fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-3/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-8/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#1435]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_sharpness_filter@filter-tap: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#6503]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-4/igt@kms_sharpness_filter@filter-tap.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#1499]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-6/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@xe_eudebug@attach-debug-metadata: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#4837]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-8/igt@xe_eudebug@attach-debug-metadata.html * igt@xe_eudebug@basic-read-event: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#4837]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-5/igt@xe_eudebug@basic-read-event.html * igt@xe_eudebug_online@set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-4/igt@xe_eudebug_online@set-breakpoint.html * igt@xe_eudebug_online@set-breakpoint-sigint-debugger: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4837] / [Intel XE#6665]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-4/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html * igt@xe_evict@evict-small-cm: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-7/igt@xe_evict@evict-small-cm.html * igt@xe_exec_basic@many-execqueues-null-defer-bind: - shard-bmg: [PASS][90] -> [SKIP][91] ([Intel XE#6703]) +127 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-8/igt@xe_exec_basic@many-execqueues-null-defer-bind.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@xe_exec_basic@many-execqueues-null-defer-bind.html * igt@xe_exec_basic@multigpu-once-bindexecqueue: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1392]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-1/igt@xe_exec_basic@multigpu-once-bindexecqueue.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2322]) +6 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html * igt@xe_exec_fault_mode@once-multi-queue-rebind-imm: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#7136]) +8 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-8/igt@xe_exec_fault_mode@once-multi-queue-rebind-imm.html * igt@xe_exec_multi_queue@few-execs-preempt-mode-priority: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#6874]) +15 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-5/igt@xe_exec_multi_queue@few-execs-preempt-mode-priority.html * igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority-smem: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#6874]) +7 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-7/igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority-smem.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#6196]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma.html * igt@xe_exec_threads@threads-multi-queue-cm-basic: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#7138]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-cm-basic.html * igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7138]) +8 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html * igt@xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#5100]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-6/igt@xe_mmap@pci-membarrier-parallel.html * igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#6964]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-6/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html * igt@xe_multigpu_svm@mgpu-latency-prefetch: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#6964]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-9/igt@xe_multigpu_svm@mgpu-latency-prefetch.html * igt@xe_pxp@pxp-stale-bo-bind-post-rpm: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#4733]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-3/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html * igt@xe_query@multigpu-query-invalid-extension: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#944]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-6/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_query@multigpu-query-pxp-status: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#944]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-7/igt@xe_query@multigpu-query-pxp-status.html * igt@xe_sriov_flr@flr-each-isolation: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#3342]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-1/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [PASS][107] -> [FAIL][108] ([Intel XE#6569]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-3/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_vm@munmap-style-unbind-userptr-inval-many-end: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#6557] / [Intel XE#6703]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@xe_vm@munmap-style-unbind-userptr-inval-many-end.html #### Possible fixes #### * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [SKIP][110] ([Intel XE#7308]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-3/igt@kms_hdmi_inject@inject-audio.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-4/igt@kms_hdmi_inject@inject-audio.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][112] ([Intel XE#6361]) -> [PASS][113] +2 other tests pass [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@xe_exec_basic@many-execqueues-rebind: - shard-bmg: [ABORT][114] -> [PASS][115] +1 other test pass [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-2/igt@xe_exec_basic@many-execqueues-rebind.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-5/igt@xe_exec_basic@many-execqueues-rebind.html * igt@xe_exec_system_allocator@process-many-stride-new-madvise: - shard-bmg: [INCOMPLETE][116] ([Intel XE#2594]) -> [PASS][117] +1 other test pass [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-9/igt@xe_exec_system_allocator@process-many-stride-new-madvise.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-3/igt@xe_exec_system_allocator@process-many-stride-new-madvise.html * igt@xe_pm_residency@aspm_link_residency: - shard-bmg: [SKIP][118] ([Intel XE#7258]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-6/igt@xe_pm_residency@aspm_link_residency.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-3/igt@xe_pm_residency@aspm_link_residency.html * igt@xe_sriov_auto_provisioning@exclusive-ranges@numvfs-random: - shard-bmg: [FAIL][120] ([Intel XE#5937]) -> [PASS][121] +1 other test pass [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-8/igt@xe_sriov_auto_provisioning@exclusive-ranges@numvfs-random.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-4/igt@xe_sriov_auto_provisioning@exclusive-ranges@numvfs-random.html #### Warnings #### * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-bmg: [SKIP][122] ([Intel XE#2327]) -> [SKIP][123] ([Intel XE#6703]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-5/igt@kms_big_fb@linear-64bpp-rotate-90.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: [SKIP][124] ([Intel XE#1124]) -> [SKIP][125] ([Intel XE#6703]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][126] ([Intel XE#367]) -> [SKIP][127] ([Intel XE#6703]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-8/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-bmg: [SKIP][128] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][129] ([Intel XE#6703]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: [SKIP][130] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][131] ([Intel XE#2652]) +22 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][132] ([Intel XE#3432]) -> [SKIP][133] ([Intel XE#6703]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][134] ([Intel XE#2887]) -> [SKIP][135] ([Intel XE#6703]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html * igt@kms_chamelium_hpd@common-hpd-after-hibernate: - shard-bmg: [SKIP][136] ([Intel XE#2252]) -> [SKIP][137] ([Intel XE#6703]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-3/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-edp-1: - shard-lnl: [SKIP][138] ([Intel XE#6969]) -> [SKIP][139] ([Intel XE#6969] / [Intel XE#7289]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-6/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-edp-1.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-edp-1.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-edp-1: - shard-lnl: [SKIP][140] ([Intel XE#6969] / [Intel XE#7006]) -> [SKIP][141] ([Intel XE#6969] / [Intel XE#7006] / [Intel XE#7289]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-6/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-edp-1.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-edp-1.html * igt@kms_content_protection@legacy: - shard-bmg: [FAIL][142] ([Intel XE#1178] / [Intel XE#3304]) -> [SKIP][143] ([Intel XE#6703]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-7/igt@kms_content_protection@legacy.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: [SKIP][144] ([Intel XE#2321]) -> [SKIP][145] ([Intel XE#6703]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-bmg: [SKIP][146] ([Intel XE#2286]) -> [SKIP][147] ([Intel XE#6703]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: [SKIP][148] ([Intel XE#2244]) -> [SKIP][149] ([Intel XE#6703]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-bmg: [SKIP][150] ([Intel XE#7178]) -> [SKIP][151] ([Intel XE#6703]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][152] ([Intel XE#2311]) -> [SKIP][153] ([Intel XE#6703]) +7 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][154] ([Intel XE#4141]) -> [SKIP][155] ([Intel XE#6703]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][156] ([Intel XE#4141]) -> [SKIP][157] ([Intel XE#6557] / [Intel XE#6703]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-bmg: [SKIP][158] ([Intel XE#2313]) -> [SKIP][159] ([Intel XE#6703]) +5 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-slowdraw.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-lnl: [SKIP][160] ([Intel XE#7173]) -> [SKIP][161] ([Intel XE#7173] / [Intel XE#7294]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier: - shard-bmg: [SKIP][162] ([Intel XE#7283]) -> [SKIP][163] ([Intel XE#6703]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - shard-lnl: [SKIP][164] ([Intel XE#6886]) -> [SKIP][165] ([Intel XE#2763] / [Intel XE#6886]) +45 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-lnl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: [SKIP][166] ([Intel XE#6886]) -> [SKIP][167] ([Intel XE#2763] / [Intel XE#6886]) +24 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][168] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][169] ([Intel XE#1406] / [Intel XE#6703]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-9/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-pr-primary-blt: - shard-bmg: [SKIP][170] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][171] ([Intel XE#1406] / [Intel XE#6703]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-7/igt@kms_psr@fbc-pr-primary-blt.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: [SKIP][172] ([Intel XE#2330]) -> [SKIP][173] ([Intel XE#6703]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][174] ([Intel XE#2426]) -> [SKIP][175] ([Intel XE#2509]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@xe_eudebug@basic-vm-bind-vm-destroy: - shard-bmg: [SKIP][176] ([Intel XE#4837]) -> [SKIP][177] ([Intel XE#6703]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-vm-destroy.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-vm-destroy.html * igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: - shard-bmg: [SKIP][178] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][179] ([Intel XE#6703]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-3/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap: - shard-bmg: [SKIP][180] ([Intel XE#2322]) -> [SKIP][181] ([Intel XE#6703]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html * igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch: - shard-bmg: [SKIP][182] ([Intel XE#7136]) -> [SKIP][183] ([Intel XE#6703]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-3/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html * igt@xe_exec_multi_queue@max-queues-basic-smem: - shard-bmg: [SKIP][184] ([Intel XE#6874]) -> [SKIP][185] ([Intel XE#6703]) +5 other tests skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-4/igt@xe_exec_multi_queue@max-queues-basic-smem.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@xe_exec_multi_queue@max-queues-basic-smem.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr: - shard-bmg: [SKIP][186] ([Intel XE#7138]) -> [SKIP][187] ([Intel XE#6703]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-bmg: [ABORT][188] ([Intel XE#5466] / [Intel XE#6652]) -> [ABORT][189] ([Intel XE#5466]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html * igt@xe_pm@d3cold-i2c: - shard-bmg: [SKIP][190] ([Intel XE#5694]) -> [SKIP][191] ([Intel XE#6703]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-8/igt@xe_pm@d3cold-i2c.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@xe_pm@d3cold-i2c.html * igt@xe_query@multigpu-query-gt-list: - shard-bmg: [SKIP][192] ([Intel XE#944]) -> [SKIP][193] ([Intel XE#6703]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8764/shard-bmg-4/igt@xe_query@multigpu-query-gt-list.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/shard-bmg-2/igt@xe_query@multigpu-query-gt-list.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900 [Intel XE#6946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6946 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969 [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7173 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7258]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7258 [Intel XE#7264]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7264 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7289]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7289 [Intel XE#7294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7294 [Intel XE#7305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7305 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8764 -> IGTPW_14587 * Linux: xe-4577-157c1f59af33fb9acf6e0e055e7317b634711120 -> xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d IGTPW_14587: 14587 IGT_8764: 8764 xe-4577-157c1f59af33fb9acf6e0e055e7317b634711120: 157c1f59af33fb9acf6e0e055e7317b634711120 xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d: 7c2ed7e89e283615b5f133d0205061934541e26d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14587/index.html [-- Attachment #2: Type: text/html, Size: 64173 bytes --] ^ permalink raw reply [flat|nested] 22+ messages in thread
* [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver
@ 2026-03-13 13:51 Juha-Pekka Heikkila
2026-03-13 13:51 ` [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware Juha-Pekka Heikkila
0 siblings, 1 reply; 22+ messages in thread
From: Juha-Pekka Heikkila @ 2026-03-13 13:51 UTC (permalink / raw)
To: igt-dev; +Cc: Juha-Pekka Heikkila
Here enabled Vebox engine copy of framebuffers and force yuv framebuffers
on Vebox path.
With these patches are seen issues when selecting gt other than default
on devices where there is maximum of one gt per tile, this probably
need to be looked at separately.
Juha-Pekka Heikkila (8):
lib: take out duplicate assert
lib/intel_batchbuffer: make __intel_bb_create gt aware
lib/xe: add xe_exec_queue_create_class_gt
lib/intel_batchbuffer: add intel_bb_create_with_gt function
lib/intel_batchbuffer: move engine class selection to helper
lib/intel_batchbuffer/xe: add bb exec path to use specific engine and
gt
lib: Enable Vebox framebuffer copying on Intel Xe2
lib/igt_fb: on Intel Xe force Vebox copy on yuv formats
lib/igt_fb.c | 54 +++++++++++++++++----
lib/intel_batchbuffer.c | 102 ++++++++++++++++++++++++++++------------
lib/intel_batchbuffer.h | 3 ++
lib/veboxcopy_gen12.c | 2 -
lib/xe/xe_ioctl.c | 20 ++++++++
lib/xe/xe_ioctl.h | 2 +
6 files changed, 140 insertions(+), 43 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 22+ messages in thread* [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware 2026-03-13 13:51 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila @ 2026-03-13 13:51 ` Juha-Pekka Heikkila 0 siblings, 0 replies; 22+ messages in thread From: Juha-Pekka Heikkila @ 2026-03-13 13:51 UTC (permalink / raw) To: igt-dev; +Cc: Juha-Pekka Heikkila add possibility to use gt id in __intel_bb_create Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> --- lib/intel_batchbuffer.c | 20 +++++++++++--------- lib/intel_batchbuffer.h | 1 + 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index 3b25a385b..2e1c45335 100644 --- a/lib/intel_batchbuffer.c +++ b/lib/intel_batchbuffer.c @@ -903,7 +903,8 @@ static struct intel_bb * __intel_bb_create(int fd, uint32_t ctx, uint32_t vm, const intel_ctx_cfg_t *cfg, uint32_t size, bool do_relocs, uint64_t start, uint64_t end, uint64_t alignment, - uint8_t allocator_type, enum allocator_strategy strategy, uint64_t region) + uint8_t allocator_type, enum allocator_strategy strategy, + uint64_t region, uint16_t gt_id) { struct drm_i915_gem_exec_object2 *object; struct intel_bb *ibb = calloc(1, sizeof(*ibb)); @@ -913,6 +914,7 @@ __intel_bb_create(int fd, uint32_t ctx, uint32_t vm, const intel_ctx_cfg_t *cfg, ibb->devid = intel_get_drm_devid(fd); ibb->gen = intel_gen(ibb->devid); ibb->ctx = ctx; + ibb->gt_id = gt_id; ibb->fd = fd; ibb->driver = is_i915_device(fd) ? INTEL_DRIVER_I915 : @@ -1057,7 +1059,7 @@ struct intel_bb *intel_bb_create_full(int fd, uint32_t ctx, uint32_t vm, enum allocator_strategy strategy, uint64_t region) { return __intel_bb_create(fd, ctx, vm, cfg, size, false, start, end, - alignment, allocator_type, strategy, region); + alignment, allocator_type, strategy, region, 0); } /** @@ -1084,7 +1086,7 @@ struct intel_bb *intel_bb_create_with_allocator(int fd, uint32_t ctx, uint32_t v { return __intel_bb_create(fd, ctx, vm, cfg, size, false, 0, 0, 0, allocator_type, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915_device(fd) ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915_device(fd) ? REGION_SMEM : vram_if_possible(fd, 0), 0); } static bool aux_needs_softpin(int fd) @@ -1126,7 +1128,7 @@ struct intel_bb *intel_bb_create(int fd, uint32_t size) relocs && !aux_needs_softpin(fd), 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); } /** @@ -1155,7 +1157,7 @@ intel_bb_create_with_context(int fd, uint32_t ctx, uint32_t vm, relocs && !aux_needs_softpin(fd), 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); } /** @@ -1182,7 +1184,7 @@ intel_bb_create_with_context_in_region(int fd, uint32_t ctx, uint32_t vm, return __intel_bb_create(fd, ctx, vm, cfg, size, relocs && !aux_needs_softpin(fd), 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, - ALLOC_STRATEGY_HIGH_TO_LOW, region); + ALLOC_STRATEGY_HIGH_TO_LOW, region, 0); } /** @@ -1203,7 +1205,7 @@ struct intel_bb *intel_bb_create_with_relocs(int fd, uint32_t size) return __intel_bb_create(fd, 0, 0, NULL, size, true, 0, 0, 0, INTEL_ALLOCATOR_NONE, ALLOC_STRATEGY_NONE, - REGION_SMEM); + REGION_SMEM, 0); } /** @@ -1229,7 +1231,7 @@ intel_bb_create_with_relocs_and_context(int fd, uint32_t ctx, return __intel_bb_create(fd, ctx, 0, cfg, size, true, 0, 0, 0, INTEL_ALLOCATOR_NONE, ALLOC_STRATEGY_NONE, - REGION_SMEM); + REGION_SMEM, 0); } /** @@ -1254,7 +1256,7 @@ struct intel_bb *intel_bb_create_no_relocs(int fd, uint32_t size) return __intel_bb_create(fd, 0, 0, NULL, size, false, 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); } static void __intel_bb_destroy_relocations(struct intel_bb *ibb) diff --git a/lib/intel_batchbuffer.h b/lib/intel_batchbuffer.h index d0a7c8dc7..7049dd2d0 100644 --- a/lib/intel_batchbuffer.h +++ b/lib/intel_batchbuffer.h @@ -269,6 +269,7 @@ struct intel_bb { struct igt_pxp pxp; uint32_t ctx; uint32_t vm_id; + uint16_t gt_id; bool xe_bound; uint32_t engine_syncobj; -- 2.43.0 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver
@ 2026-03-18 15:05 Juha-Pekka Heikkila
2026-03-18 15:05 ` [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware Juha-Pekka Heikkila
0 siblings, 1 reply; 22+ messages in thread
From: Juha-Pekka Heikkila @ 2026-03-18 15:05 UTC (permalink / raw)
To: igt-dev; +Cc: Juha-Pekka Heikkila
Here enabled Vebox engine copy of framebuffers and force 4tiled yuv
framebuffers on Vebox path.
Juha-Pekka Heikkila (8):
lib: take out duplicate assert
lib/intel_batchbuffer: make __intel_bb_create gt aware
lib/xe: add xe_exec_queue_create_class_gt
lib/intel_batchbuffer: add intel_bb_create_with_gt function
lib/intel_batchbuffer: move engine class selection to helper
lib/intel_batchbuffer/xe: add bb exec path to use specific engine and
gt
lib: Enable Vebox framebuffer copying on Intel Xe2
lib/igt_fb: on Intel Xe force Vebox copy on yuv formats
lib/igt_fb.c | 51 +++++++++++++++-----
lib/intel_batchbuffer.c | 102 ++++++++++++++++++++++++++++------------
lib/intel_batchbuffer.h | 3 ++
lib/veboxcopy_gen12.c | 2 -
lib/xe/xe_ioctl.c | 20 ++++++++
lib/xe/xe_ioctl.h | 2 +
6 files changed, 136 insertions(+), 44 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 22+ messages in thread* [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware 2026-03-18 15:05 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila @ 2026-03-18 15:05 ` Juha-Pekka Heikkila 0 siblings, 0 replies; 22+ messages in thread From: Juha-Pekka Heikkila @ 2026-03-18 15:05 UTC (permalink / raw) To: igt-dev; +Cc: Juha-Pekka Heikkila add possibility to use gt id in __intel_bb_create Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> --- lib/intel_batchbuffer.c | 20 +++++++++++--------- lib/intel_batchbuffer.h | 1 + 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index b09506574..802e771a4 100644 --- a/lib/intel_batchbuffer.c +++ b/lib/intel_batchbuffer.c @@ -905,7 +905,8 @@ static struct intel_bb * __intel_bb_create(int fd, uint32_t ctx, uint32_t vm, const intel_ctx_cfg_t *cfg, uint32_t size, bool do_relocs, uint64_t start, uint64_t end, uint64_t alignment, - uint8_t allocator_type, enum allocator_strategy strategy, uint64_t region) + uint8_t allocator_type, enum allocator_strategy strategy, + uint64_t region, uint16_t gt_id) { struct drm_i915_gem_exec_object2 *object; struct intel_bb *ibb = calloc(1, sizeof(*ibb)); @@ -915,6 +916,7 @@ __intel_bb_create(int fd, uint32_t ctx, uint32_t vm, const intel_ctx_cfg_t *cfg, ibb->devid = intel_get_drm_devid(fd); ibb->gen = intel_gen(ibb->devid); ibb->ctx = ctx; + ibb->gt_id = gt_id; ibb->fd = fd; ibb->driver = is_i915_device(fd) ? INTEL_DRIVER_I915 : @@ -1059,7 +1061,7 @@ struct intel_bb *intel_bb_create_full(int fd, uint32_t ctx, uint32_t vm, enum allocator_strategy strategy, uint64_t region) { return __intel_bb_create(fd, ctx, vm, cfg, size, false, start, end, - alignment, allocator_type, strategy, region); + alignment, allocator_type, strategy, region, 0); } /** @@ -1086,7 +1088,7 @@ struct intel_bb *intel_bb_create_with_allocator(int fd, uint32_t ctx, uint32_t v { return __intel_bb_create(fd, ctx, vm, cfg, size, false, 0, 0, 0, allocator_type, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915_device(fd) ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915_device(fd) ? REGION_SMEM : vram_if_possible(fd, 0), 0); } static bool aux_needs_softpin(int fd) @@ -1128,7 +1130,7 @@ struct intel_bb *intel_bb_create(int fd, uint32_t size) relocs && !aux_needs_softpin(fd), 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); } /** @@ -1157,7 +1159,7 @@ intel_bb_create_with_context(int fd, uint32_t ctx, uint32_t vm, relocs && !aux_needs_softpin(fd), 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); } /** @@ -1184,7 +1186,7 @@ intel_bb_create_with_context_in_region(int fd, uint32_t ctx, uint32_t vm, return __intel_bb_create(fd, ctx, vm, cfg, size, relocs && !aux_needs_softpin(fd), 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, - ALLOC_STRATEGY_HIGH_TO_LOW, region); + ALLOC_STRATEGY_HIGH_TO_LOW, region, 0); } /** @@ -1205,7 +1207,7 @@ struct intel_bb *intel_bb_create_with_relocs(int fd, uint32_t size) return __intel_bb_create(fd, 0, 0, NULL, size, true, 0, 0, 0, INTEL_ALLOCATOR_NONE, ALLOC_STRATEGY_NONE, - REGION_SMEM); + REGION_SMEM, 0); } /** @@ -1231,7 +1233,7 @@ intel_bb_create_with_relocs_and_context(int fd, uint32_t ctx, return __intel_bb_create(fd, ctx, 0, cfg, size, true, 0, 0, 0, INTEL_ALLOCATOR_NONE, ALLOC_STRATEGY_NONE, - REGION_SMEM); + REGION_SMEM, 0); } /** @@ -1256,7 +1258,7 @@ struct intel_bb *intel_bb_create_no_relocs(int fd, uint32_t size) return __intel_bb_create(fd, 0, 0, NULL, size, false, 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); } static void __intel_bb_destroy_relocations(struct intel_bb *ibb) diff --git a/lib/intel_batchbuffer.h b/lib/intel_batchbuffer.h index d0a7c8dc7..7049dd2d0 100644 --- a/lib/intel_batchbuffer.h +++ b/lib/intel_batchbuffer.h @@ -269,6 +269,7 @@ struct intel_bb { struct igt_pxp pxp; uint32_t ctx; uint32_t vm_id; + uint16_t gt_id; bool xe_bound; uint32_t engine_syncobj; -- 2.43.0 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver
@ 2026-03-20 13:46 Juha-Pekka Heikkila
2026-03-20 13:46 ` [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware Juha-Pekka Heikkila
0 siblings, 1 reply; 22+ messages in thread
From: Juha-Pekka Heikkila @ 2026-03-20 13:46 UTC (permalink / raw)
To: igt-dev; +Cc: Juha-Pekka Heikkila
Here enabled Vebox engine copy of framebuffers and force 4tiled yuv
framebuffers on Vebox path.
Juha-Pekka Heikkila (8):
lib: take out duplicate assert
lib/intel_batchbuffer: make __intel_bb_create gt aware
lib/xe: add xe_exec_queue_create_class_gt
lib/intel_batchbuffer: add intel_bb_create_with_gt function
lib/intel_batchbuffer: move engine class selection to helper
lib/intel_batchbuffer/xe: add bb exec path to use specific engine and
gt
lib: Enable Vebox framebuffer copying on Intel Xe2
lib/igt_fb: on Intel Xe force Vebox copy on yuv formats
lib/igt_fb.c | 52 +++++++++++++++-----
lib/intel_batchbuffer.c | 102 ++++++++++++++++++++++++++++------------
lib/intel_batchbuffer.h | 3 ++
lib/veboxcopy_gen12.c | 2 -
lib/xe/xe_ioctl.c | 20 ++++++++
lib/xe/xe_ioctl.h | 2 +
6 files changed, 137 insertions(+), 44 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 22+ messages in thread* [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware 2026-03-20 13:46 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila @ 2026-03-20 13:46 ` Juha-Pekka Heikkila 0 siblings, 0 replies; 22+ messages in thread From: Juha-Pekka Heikkila @ 2026-03-20 13:46 UTC (permalink / raw) To: igt-dev; +Cc: Juha-Pekka Heikkila add possibility to use gt id in __intel_bb_create Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> --- lib/intel_batchbuffer.c | 20 +++++++++++--------- lib/intel_batchbuffer.h | 1 + 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index b09506574..802e771a4 100644 --- a/lib/intel_batchbuffer.c +++ b/lib/intel_batchbuffer.c @@ -905,7 +905,8 @@ static struct intel_bb * __intel_bb_create(int fd, uint32_t ctx, uint32_t vm, const intel_ctx_cfg_t *cfg, uint32_t size, bool do_relocs, uint64_t start, uint64_t end, uint64_t alignment, - uint8_t allocator_type, enum allocator_strategy strategy, uint64_t region) + uint8_t allocator_type, enum allocator_strategy strategy, + uint64_t region, uint16_t gt_id) { struct drm_i915_gem_exec_object2 *object; struct intel_bb *ibb = calloc(1, sizeof(*ibb)); @@ -915,6 +916,7 @@ __intel_bb_create(int fd, uint32_t ctx, uint32_t vm, const intel_ctx_cfg_t *cfg, ibb->devid = intel_get_drm_devid(fd); ibb->gen = intel_gen(ibb->devid); ibb->ctx = ctx; + ibb->gt_id = gt_id; ibb->fd = fd; ibb->driver = is_i915_device(fd) ? INTEL_DRIVER_I915 : @@ -1059,7 +1061,7 @@ struct intel_bb *intel_bb_create_full(int fd, uint32_t ctx, uint32_t vm, enum allocator_strategy strategy, uint64_t region) { return __intel_bb_create(fd, ctx, vm, cfg, size, false, start, end, - alignment, allocator_type, strategy, region); + alignment, allocator_type, strategy, region, 0); } /** @@ -1086,7 +1088,7 @@ struct intel_bb *intel_bb_create_with_allocator(int fd, uint32_t ctx, uint32_t v { return __intel_bb_create(fd, ctx, vm, cfg, size, false, 0, 0, 0, allocator_type, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915_device(fd) ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915_device(fd) ? REGION_SMEM : vram_if_possible(fd, 0), 0); } static bool aux_needs_softpin(int fd) @@ -1128,7 +1130,7 @@ struct intel_bb *intel_bb_create(int fd, uint32_t size) relocs && !aux_needs_softpin(fd), 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); } /** @@ -1157,7 +1159,7 @@ intel_bb_create_with_context(int fd, uint32_t ctx, uint32_t vm, relocs && !aux_needs_softpin(fd), 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); } /** @@ -1184,7 +1186,7 @@ intel_bb_create_with_context_in_region(int fd, uint32_t ctx, uint32_t vm, return __intel_bb_create(fd, ctx, vm, cfg, size, relocs && !aux_needs_softpin(fd), 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, - ALLOC_STRATEGY_HIGH_TO_LOW, region); + ALLOC_STRATEGY_HIGH_TO_LOW, region, 0); } /** @@ -1205,7 +1207,7 @@ struct intel_bb *intel_bb_create_with_relocs(int fd, uint32_t size) return __intel_bb_create(fd, 0, 0, NULL, size, true, 0, 0, 0, INTEL_ALLOCATOR_NONE, ALLOC_STRATEGY_NONE, - REGION_SMEM); + REGION_SMEM, 0); } /** @@ -1231,7 +1233,7 @@ intel_bb_create_with_relocs_and_context(int fd, uint32_t ctx, return __intel_bb_create(fd, ctx, 0, cfg, size, true, 0, 0, 0, INTEL_ALLOCATOR_NONE, ALLOC_STRATEGY_NONE, - REGION_SMEM); + REGION_SMEM, 0); } /** @@ -1256,7 +1258,7 @@ struct intel_bb *intel_bb_create_no_relocs(int fd, uint32_t size) return __intel_bb_create(fd, 0, 0, NULL, size, false, 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); } static void __intel_bb_destroy_relocations(struct intel_bb *ibb) diff --git a/lib/intel_batchbuffer.h b/lib/intel_batchbuffer.h index d0a7c8dc7..7049dd2d0 100644 --- a/lib/intel_batchbuffer.h +++ b/lib/intel_batchbuffer.h @@ -269,6 +269,7 @@ struct intel_bb { struct igt_pxp pxp; uint32_t ctx; uint32_t vm_id; + uint16_t gt_id; bool xe_bound; uint32_t engine_syncobj; -- 2.43.0 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver
@ 2026-03-23 16:29 Juha-Pekka Heikkila
2026-03-23 16:29 ` [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware Juha-Pekka Heikkila
0 siblings, 1 reply; 22+ messages in thread
From: Juha-Pekka Heikkila @ 2026-03-23 16:29 UTC (permalink / raw)
To: igt-dev; +Cc: Juha-Pekka Heikkila
Here enabled Vebox engine copy of framebuffers and force 4tiled yuv
framebuffers on Vebox path.
Juha-Pekka Heikkila (8):
lib: take out duplicate assert
lib/intel_batchbuffer: make __intel_bb_create gt aware
lib/xe: add xe_exec_queue_create_class_gt
lib/intel_batchbuffer: add intel_bb_create_with_gt function
lib/intel_batchbuffer: move engine class selection to helper
lib/intel_batchbuffer/xe: add bb exec path to use specific engine and
gt
lib: Enable Vebox framebuffer copying on Intel Xe2
lib/igt_fb: on Intel Xe force Vebox copy on yuv formats
lib/igt_fb.c | 53 ++++++++++++++++-----
lib/intel_batchbuffer.c | 102 ++++++++++++++++++++++++++++------------
lib/intel_batchbuffer.h | 3 ++
lib/veboxcopy_gen12.c | 2 -
lib/xe/xe_ioctl.c | 20 ++++++++
lib/xe/xe_ioctl.h | 2 +
6 files changed, 138 insertions(+), 44 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 22+ messages in thread* [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware 2026-03-23 16:29 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila @ 2026-03-23 16:29 ` Juha-Pekka Heikkila 2026-04-18 4:26 ` Naladala, Ramanaidu 0 siblings, 1 reply; 22+ messages in thread From: Juha-Pekka Heikkila @ 2026-03-23 16:29 UTC (permalink / raw) To: igt-dev; +Cc: Juha-Pekka Heikkila add possibility to use gt id in __intel_bb_create Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> --- lib/intel_batchbuffer.c | 20 +++++++++++--------- lib/intel_batchbuffer.h | 1 + 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index b09506574..802e771a4 100644 --- a/lib/intel_batchbuffer.c +++ b/lib/intel_batchbuffer.c @@ -905,7 +905,8 @@ static struct intel_bb * __intel_bb_create(int fd, uint32_t ctx, uint32_t vm, const intel_ctx_cfg_t *cfg, uint32_t size, bool do_relocs, uint64_t start, uint64_t end, uint64_t alignment, - uint8_t allocator_type, enum allocator_strategy strategy, uint64_t region) + uint8_t allocator_type, enum allocator_strategy strategy, + uint64_t region, uint16_t gt_id) { struct drm_i915_gem_exec_object2 *object; struct intel_bb *ibb = calloc(1, sizeof(*ibb)); @@ -915,6 +916,7 @@ __intel_bb_create(int fd, uint32_t ctx, uint32_t vm, const intel_ctx_cfg_t *cfg, ibb->devid = intel_get_drm_devid(fd); ibb->gen = intel_gen(ibb->devid); ibb->ctx = ctx; + ibb->gt_id = gt_id; ibb->fd = fd; ibb->driver = is_i915_device(fd) ? INTEL_DRIVER_I915 : @@ -1059,7 +1061,7 @@ struct intel_bb *intel_bb_create_full(int fd, uint32_t ctx, uint32_t vm, enum allocator_strategy strategy, uint64_t region) { return __intel_bb_create(fd, ctx, vm, cfg, size, false, start, end, - alignment, allocator_type, strategy, region); + alignment, allocator_type, strategy, region, 0); } /** @@ -1086,7 +1088,7 @@ struct intel_bb *intel_bb_create_with_allocator(int fd, uint32_t ctx, uint32_t v { return __intel_bb_create(fd, ctx, vm, cfg, size, false, 0, 0, 0, allocator_type, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915_device(fd) ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915_device(fd) ? REGION_SMEM : vram_if_possible(fd, 0), 0); } static bool aux_needs_softpin(int fd) @@ -1128,7 +1130,7 @@ struct intel_bb *intel_bb_create(int fd, uint32_t size) relocs && !aux_needs_softpin(fd), 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); } /** @@ -1157,7 +1159,7 @@ intel_bb_create_with_context(int fd, uint32_t ctx, uint32_t vm, relocs && !aux_needs_softpin(fd), 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); } /** @@ -1184,7 +1186,7 @@ intel_bb_create_with_context_in_region(int fd, uint32_t ctx, uint32_t vm, return __intel_bb_create(fd, ctx, vm, cfg, size, relocs && !aux_needs_softpin(fd), 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, - ALLOC_STRATEGY_HIGH_TO_LOW, region); + ALLOC_STRATEGY_HIGH_TO_LOW, region, 0); } /** @@ -1205,7 +1207,7 @@ struct intel_bb *intel_bb_create_with_relocs(int fd, uint32_t size) return __intel_bb_create(fd, 0, 0, NULL, size, true, 0, 0, 0, INTEL_ALLOCATOR_NONE, ALLOC_STRATEGY_NONE, - REGION_SMEM); + REGION_SMEM, 0); } /** @@ -1231,7 +1233,7 @@ intel_bb_create_with_relocs_and_context(int fd, uint32_t ctx, return __intel_bb_create(fd, ctx, 0, cfg, size, true, 0, 0, 0, INTEL_ALLOCATOR_NONE, ALLOC_STRATEGY_NONE, - REGION_SMEM); + REGION_SMEM, 0); } /** @@ -1256,7 +1258,7 @@ struct intel_bb *intel_bb_create_no_relocs(int fd, uint32_t size) return __intel_bb_create(fd, 0, 0, NULL, size, false, 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, ALLOC_STRATEGY_HIGH_TO_LOW, - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); } static void __intel_bb_destroy_relocations(struct intel_bb *ibb) diff --git a/lib/intel_batchbuffer.h b/lib/intel_batchbuffer.h index d0a7c8dc7..7049dd2d0 100644 --- a/lib/intel_batchbuffer.h +++ b/lib/intel_batchbuffer.h @@ -269,6 +269,7 @@ struct intel_bb { struct igt_pxp pxp; uint32_t ctx; uint32_t vm_id; + uint16_t gt_id; bool xe_bound; uint32_t engine_syncobj; -- 2.43.0 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* Re: [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware 2026-03-23 16:29 ` [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware Juha-Pekka Heikkila @ 2026-04-18 4:26 ` Naladala, Ramanaidu 0 siblings, 0 replies; 22+ messages in thread From: Naladala, Ramanaidu @ 2026-04-18 4:26 UTC (permalink / raw) To: igt-dev [-- Attachment #1: Type: text/plain, Size: 4752 bytes --] Hi JP, On 3/23/2026 9:59 PM, Juha-Pekka Heikkila wrote: > add possibility to use gt id in __intel_bb_create > > Signed-off-by: Juha-Pekka Heikkila<juhapekka.heikkila@gmail.com> > --- > lib/intel_batchbuffer.c | 20 +++++++++++--------- > lib/intel_batchbuffer.h | 1 + > 2 files changed, 12 insertions(+), 9 deletions(-) > > diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c > index b09506574..802e771a4 100644 > --- a/lib/intel_batchbuffer.c > +++ b/lib/intel_batchbuffer.c > @@ -905,7 +905,8 @@ static struct intel_bb * > __intel_bb_create(int fd, uint32_t ctx, uint32_t vm, const intel_ctx_cfg_t *cfg, > uint32_t size, bool do_relocs, > uint64_t start, uint64_t end, uint64_t alignment, > - uint8_t allocator_type, enum allocator_strategy strategy, uint64_t region) > + uint8_t allocator_type, enum allocator_strategy strategy, > + uint64_t region, uint16_t gt_id) Update the function document with new argument. > { > struct drm_i915_gem_exec_object2 *object; > struct intel_bb *ibb = calloc(1, sizeof(*ibb)); > @@ -915,6 +916,7 @@ __intel_bb_create(int fd, uint32_t ctx, uint32_t vm, const intel_ctx_cfg_t *cfg, > ibb->devid = intel_get_drm_devid(fd); > ibb->gen = intel_gen(ibb->devid); > ibb->ctx = ctx; > + ibb->gt_id = gt_id; > > ibb->fd = fd; > ibb->driver = is_i915_device(fd) ? INTEL_DRIVER_I915 : > @@ -1059,7 +1061,7 @@ struct intel_bb *intel_bb_create_full(int fd, uint32_t ctx, uint32_t vm, > enum allocator_strategy strategy, uint64_t region) > { > return __intel_bb_create(fd, ctx, vm, cfg, size, false, start, end, > - alignment, allocator_type, strategy, region); > + alignment, allocator_type, strategy, region, 0); > } The code always uses the magic number |0| for |gt_id|. Since |gt_id| is passed explicitly to support multi-tile dGPU configurations, could we read and assign |gt_id| dynamically instead of assuming |GT 0|? > > /** > @@ -1086,7 +1088,7 @@ struct intel_bb *intel_bb_create_with_allocator(int fd, uint32_t ctx, uint32_t v > { > return __intel_bb_create(fd, ctx, vm, cfg, size, false, 0, 0, 0, > allocator_type, ALLOC_STRATEGY_HIGH_TO_LOW, > - is_i915_device(fd) ? REGION_SMEM : vram_if_possible(fd, 0)); > + is_i915_device(fd) ? REGION_SMEM : vram_if_possible(fd, 0), 0); > } > > static bool aux_needs_softpin(int fd) > @@ -1128,7 +1130,7 @@ struct intel_bb *intel_bb_create(int fd, uint32_t size) > relocs && !aux_needs_softpin(fd), 0, 0, 0, > INTEL_ALLOCATOR_SIMPLE, > ALLOC_STRATEGY_HIGH_TO_LOW, > - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); > + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); > } > > /** > @@ -1157,7 +1159,7 @@ intel_bb_create_with_context(int fd, uint32_t ctx, uint32_t vm, > relocs && !aux_needs_softpin(fd), 0, 0, 0, > INTEL_ALLOCATOR_SIMPLE, > ALLOC_STRATEGY_HIGH_TO_LOW, > - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); > + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); > } > > /** > @@ -1184,7 +1186,7 @@ intel_bb_create_with_context_in_region(int fd, uint32_t ctx, uint32_t vm, > return __intel_bb_create(fd, ctx, vm, cfg, size, > relocs && !aux_needs_softpin(fd), 0, 0, 0, > INTEL_ALLOCATOR_SIMPLE, > - ALLOC_STRATEGY_HIGH_TO_LOW, region); > + ALLOC_STRATEGY_HIGH_TO_LOW, region, 0); > } > > /** > @@ -1205,7 +1207,7 @@ struct intel_bb *intel_bb_create_with_relocs(int fd, uint32_t size) > > return __intel_bb_create(fd, 0, 0, NULL, size, true, 0, 0, 0, > INTEL_ALLOCATOR_NONE, ALLOC_STRATEGY_NONE, > - REGION_SMEM); > + REGION_SMEM, 0); > } > > /** > @@ -1231,7 +1233,7 @@ intel_bb_create_with_relocs_and_context(int fd, uint32_t ctx, > > return __intel_bb_create(fd, ctx, 0, cfg, size, true, 0, 0, 0, > INTEL_ALLOCATOR_NONE, ALLOC_STRATEGY_NONE, > - REGION_SMEM); > + REGION_SMEM, 0); > } > > /** > @@ -1256,7 +1258,7 @@ struct intel_bb *intel_bb_create_no_relocs(int fd, uint32_t size) > return __intel_bb_create(fd, 0, 0, NULL, size, false, 0, 0, 0, > INTEL_ALLOCATOR_SIMPLE, > ALLOC_STRATEGY_HIGH_TO_LOW, > - is_i915 ? REGION_SMEM : vram_if_possible(fd, 0)); > + is_i915 ? REGION_SMEM : vram_if_possible(fd, 0), 0); > } > > static void __intel_bb_destroy_relocations(struct intel_bb *ibb) > diff --git a/lib/intel_batchbuffer.h b/lib/intel_batchbuffer.h > index d0a7c8dc7..7049dd2d0 100644 > --- a/lib/intel_batchbuffer.h > +++ b/lib/intel_batchbuffer.h > @@ -269,6 +269,7 @@ struct intel_bb { > struct igt_pxp pxp; > uint32_t ctx; > uint32_t vm_id; > + uint16_t gt_id; > > bool xe_bound; > uint32_t engine_syncobj; [-- Attachment #2: Type: text/html, Size: 5625 bytes --] ^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2026-04-18 4:26 UTC | newest] Thread overview: 22+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-20 16:17 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 1/8] lib: take out duplicate assert Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 3/8] lib/xe: add xe_exec_queue_create_class_gt Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 4/8] lib/intel_batchbuffer: add intel_bb_create_with_gt function Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 5/8] lib/intel_batchbuffer: move engine class selection to helper Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 6/8] lib/intel_batchbuffer/xe: add bb exec path to use specific engine and gt Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 7/8] lib: Enable Vebox framebuffer copying on Intel Xe2 Juha-Pekka Heikkila 2026-02-20 16:17 ` [PATCH i-g-t 8/8] lib/igt_fb: on Intel force Vebox copy on yuv formats Juha-Pekka Heikkila 2026-02-20 22:34 ` ✗ Xe.CI.BAT: failure for Enable Vebox engine copy on Intel Xe driver (rev5) Patchwork 2026-02-20 22:40 ` ✓ i915.CI.BAT: success " Patchwork 2026-02-21 2:00 ` ✗ Xe.CI.BAT: failure for Enable Vebox engine copy on Intel Xe driver (rev6) Patchwork 2026-02-21 2:11 ` ✓ i915.CI.BAT: success " Patchwork 2026-02-21 13:06 ` ✗ i915.CI.Full: failure for Enable Vebox engine copy on Intel Xe driver (rev5) Patchwork 2026-02-21 14:44 ` ✗ i915.CI.Full: failure for Enable Vebox engine copy on Intel Xe driver (rev6) Patchwork 2026-02-23 11:16 ` ✗ Xe.CI.FULL: failure for Enable Vebox engine copy on Intel Xe driver (rev5) Patchwork 2026-02-23 12:38 ` ✗ Xe.CI.FULL: failure for Enable Vebox engine copy on Intel Xe driver (rev6) Patchwork -- strict thread matches above, loose matches on Subject: below -- 2026-03-13 13:51 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila 2026-03-13 13:51 ` [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware Juha-Pekka Heikkila 2026-03-18 15:05 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila 2026-03-18 15:05 ` [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware Juha-Pekka Heikkila 2026-03-20 13:46 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila 2026-03-20 13:46 ` [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware Juha-Pekka Heikkila 2026-03-23 16:29 [PATCH i-g-t 0/8] Enable Vebox engine copy on Intel Xe driver Juha-Pekka Heikkila 2026-03-23 16:29 ` [PATCH i-g-t 2/8] lib/intel_batchbuffer: make __intel_bb_create gt aware Juha-Pekka Heikkila 2026-04-18 4:26 ` Naladala, Ramanaidu
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox