* [PATCH i-g-t v2 0/2] RFC: Add preferred FB modifier helper
@ 2026-05-12 6:20 Jeevan B
2026-05-12 6:20 ` [PATCH i-g-t v2 1/2] lib/igt_fb: Add IGT_FORMAT_MOD_PREFERRED helper modifier Jeevan B
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Jeevan B @ 2026-05-12 6:20 UTC (permalink / raw)
To: igt-dev; +Cc: maarten.lankhorst, ville.syrjala, Jeevan B
Add an IGT‑internal modifier, IGT_FORMAT_MOD_PREFERRED, allowing
tests to request the preferred tiling format without hardcoding
driver‑specific modifiers.
A follow‑up HAX patch updates kms_cursor_legacy to use this modifier
for cursor framebuffer creation to exercise the new code paths.
Jeevan B (2):
lib/igt_fb: Add IGT_FORMAT_MOD_PREFERRED helper modifier
HAX: kms_cursor_legacy: Use IGT_FORMAT_MOD_PREFERRED for cursor FBs
lib/igt_fb.c | 71 ++++++++++++++++++++++++++++++++++++++-
lib/igt_fb.h | 19 +++++++++++
tests/kms_cursor_legacy.c | 31 ++++++++---------
3 files changed, 105 insertions(+), 16 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH i-g-t v2 1/2] lib/igt_fb: Add IGT_FORMAT_MOD_PREFERRED helper modifier 2026-05-12 6:20 [PATCH i-g-t v2 0/2] RFC: Add preferred FB modifier helper Jeevan B @ 2026-05-12 6:20 ` Jeevan B 2026-05-12 6:20 ` [PATCH i-g-t v2 2/2] HAX: kms_cursor_legacy: Use IGT_FORMAT_MOD_PREFERRED for cursor FBs Jeevan B ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Jeevan B @ 2026-05-12 6:20 UTC (permalink / raw) To: igt-dev; +Cc: maarten.lankhorst, ville.syrjala, Jeevan B lib/igt_fb: Add IGT_FORMAT_MOD_PREFERRED helper modifier Add IGT_FORMAT_MOD_PREFERRED as an internal FB modifier sentinel so tests can request preferred tiling without hardcoding driver rules. Resolve it in igt_fb_resolve_modifier() (never pass it to kernel) by checking support for the requested format in this order: X_TILED -> 4_TILED -> LINEAR. v2: - Switch from gen/driver policy to capability-based selection - Drop Y_TILED preference Signed-off-by: Jeevan B <jeevan.b@intel.com> --- lib/igt_fb.c | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++- lib/igt_fb.h | 19 ++++++++++++++ 2 files changed, 89 insertions(+), 1 deletion(-) diff --git a/lib/igt_fb.c b/lib/igt_fb.c index fa9220953..454a59859 100644 --- a/lib/igt_fb.c +++ b/lib/igt_fb.c @@ -790,6 +790,67 @@ static int fb_num_planes(const struct igt_fb *fb) return num_planes; } +/** + * igt_fb_resolve_modifier: + * @fd: DRM device fd + * @modifier: Requested modifier, may be IGT_FORMAT_MOD_PREFERRED + * + * Resolve the IGT_FORMAT_MOD_PREFERRED sentinel to an actual framebuffer + * modifier by checking device capabilities. Tries modifiers in order of + * preference: X-tile (compatibility), 4-tile (modern), then LINEAR (fallback). + * Returns the first supported modifier. + * + * This approach avoids hardcoded driver/generation checks and instead + * validates actual device capabilities. + * + * Returns: The resolved DRM format modifier that is supported by the device. + */ +static bool igt_fb_modifier_is_supported(int fd, uint32_t format, + uint64_t modifier) +{ + igt_display_t display; + bool supported = false; + + if (modifier == DRM_FORMAT_MOD_LINEAR) + return true; /* LINEAR is always supported */ + + igt_display_require(&display, fd); + supported = igt_display_has_format_mod(&display, format, modifier); + igt_display_fini(&display); + + return supported; +} + +static uint64_t igt_fb_resolve_modifier(int fd, uint32_t format, + uint64_t modifier) +{ + uint64_t preferred_modifiers[] = { + I915_FORMAT_MOD_X_TILED, /* X-tile: good compatibility */ + I915_FORMAT_MOD_4_TILED, /* 4-tile: modern, potentially better */ + DRM_FORMAT_MOD_LINEAR /* Linear: always fallback */ + }; + uint64_t resolved = DRM_FORMAT_MOD_LINEAR; + + if (modifier != IGT_FORMAT_MOD_PREFERRED) + return modifier; + + /* Try preferred modifiers in order, independent of driver checks. */ + for (int i = 0; i < ARRAY_SIZE(preferred_modifiers); i++) { + if (igt_fb_modifier_is_supported(fd, format, + preferred_modifiers[i])) { + resolved = preferred_modifiers[i]; + igt_debug("Found supported modifier: %s(0x%" PRIx64 ")\n", + igt_fb_modifier_name(resolved), resolved); + break; + } + } + + igt_debug("Resolved IGT_FORMAT_MOD_PREFERRED to %s(0x%" PRIx64 ")\n", + igt_fb_modifier_name(resolved), resolved); + + return resolved; +} + void igt_init_fb(struct igt_fb *fb, int fd, int width, int height, uint32_t drm_format, uint64_t modifier, enum igt_color_encoding color_encoding, @@ -803,7 +864,13 @@ void igt_init_fb(struct igt_fb *fb, int fd, int width, int height, fb->width = width; fb->height = height; - fb->modifier = modifier; + fb->modifier = igt_fb_resolve_modifier(fd, drm_format, modifier); + /* Log the chosen modifier for debugging. */ + if (modifier == IGT_FORMAT_MOD_PREFERRED) { + igt_debug("Created framebuffer: %dx%d, format=%s, modifier=%s(0x%" PRIx64 ")\n", + width, height, igt_format_str(drm_format), + igt_fb_modifier_name(fb->modifier), fb->modifier); + } fb->drm_format = drm_format; fb->fd = fd; fb->num_planes = fb_num_planes(fb); @@ -5266,6 +5333,8 @@ void igt_format_array_fill(uint32_t **formats_array, unsigned int *count, const char *igt_fb_modifier_name(uint64_t modifier) { switch (modifier) { + case IGT_FORMAT_MOD_PREFERRED: + return "preferred"; case DRM_FORMAT_MOD_LINEAR: return "linear"; case I915_FORMAT_MOD_X_TILED: diff --git a/lib/igt_fb.h b/lib/igt_fb.h index 8e5907dab..27aa9e161 100644 --- a/lib/igt_fb.h +++ b/lib/igt_fb.h @@ -50,6 +50,25 @@ typedef struct _igt_crc igt_crc_t; */ #define IGT_FORMAT_FLOAT fourcc_code('I', 'G', 'F', 'x') +/** + * IGT_FORMAT_MOD_PREFERRED: + * + * Modifier used by tests to request the best tiling format for the + * current device. The actual modifier is selected inside igt_init_fb() + * based on device capabilities, so tests don't need to handle driver or + * generation-specific details. + * + * Default selection rules (capability-based): + * - If X_TILED is supported for the requested format, use X_TILED + * - Else if 4_TILED is supported for the requested format, use 4_TILED + * - Else use LINEAR + * + * Note: This is a special placeholder value and must never be sent to + * the kernel. Modifier selection is logged in IGT debug output. + */ +#define IGT_FORMAT_MOD_PREFERRED UINT64_C(0xfffffffffffffffe) + + #define IGT_FORMAT_FMT "%c%c%c%c(0x%08x)" #define IGT_FORMAT_ARGS(f) ((f) >> 0) & 0xff, ((f) >> 8) & 0xff, \ ((f) >> 16) & 0xff, ((f) >> 24) & 0xff, (f) -- 2.43.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH i-g-t v2 2/2] HAX: kms_cursor_legacy: Use IGT_FORMAT_MOD_PREFERRED for cursor FBs 2026-05-12 6:20 [PATCH i-g-t v2 0/2] RFC: Add preferred FB modifier helper Jeevan B 2026-05-12 6:20 ` [PATCH i-g-t v2 1/2] lib/igt_fb: Add IGT_FORMAT_MOD_PREFERRED helper modifier Jeevan B @ 2026-05-12 6:20 ` Jeevan B 2026-05-12 12:59 ` ✗ i915.CI.BAT: failure for RFC: Add preferred FB modifier helper (rev2) Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Jeevan B @ 2026-05-12 6:20 UTC (permalink / raw) To: igt-dev; +Cc: maarten.lankhorst, ville.syrjala, Jeevan B Switch all cursor-related framebuffer creations in kms_cursor_legacy to use IGT_FORMAT_MOD_PREFERRED instead of DRM_FORMAT_MOD_LINEAR. Signed-off-by: Jeevan B <jeevan.b@intel.com> --- tests/kms_cursor_legacy.c | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c index 5399ef481..e32d2ac7e 100644 --- a/tests/kms_cursor_legacy.c +++ b/tests/kms_cursor_legacy.c @@ -373,7 +373,7 @@ static void set_fb_on_crtc(igt_display_t *display, igt_crtc_t *crtc, igt_create_pattern_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, fb_info); + DRM_FORMAT_XRGB8888, IGT_FORMAT_MOD_PREFERRED, fb_info); primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); igt_plane_set_fb(primary, fb_info); @@ -579,7 +579,7 @@ static void prepare_flip_test(igt_display_t *display, igt_skip_on(width <= 64 && height <= 64); igt_create_color_fb(display->drm_fd, width, height, - DRM_FORMAT_ARGB8888, DRM_FORMAT_MOD_LINEAR, 1., 0., .7, cursor_fb2); + DRM_FORMAT_ARGB8888, IGT_FORMAT_MOD_PREFERRED, 1., 0., .7, cursor_fb2); arg[0].flags = arg[1].flags = DRM_MODE_CURSOR_BO; arg[1].handle = cursor_fb2->gem_handle; @@ -605,7 +605,7 @@ static void prepare_flip_test(igt_display_t *display, crtc->planes[1].type != DRM_PLANE_TYPE_CURSOR); igt_create_color_pattern_fb(display->drm_fd, prim_fb->width, prim_fb->height, - DRM_FORMAT_ARGB8888, DRM_FORMAT_MOD_LINEAR, .1, .1, .1, argb_fb); + DRM_FORMAT_ARGB8888, IGT_FORMAT_MOD_PREFERRED, .1, .1, .1, argb_fb); } } @@ -652,10 +652,10 @@ static void flip(igt_display_t *display, } igt_create_color_fb(display->drm_fd, fb_info.width, fb_info.height, - DRM_FORMAT_ARGB8888, DRM_FORMAT_MOD_LINEAR, .5, .5, .5, &cursor_fb); + DRM_FORMAT_ARGB8888, IGT_FORMAT_MOD_PREFERRED, .5, .5, .5, &cursor_fb); igt_create_color_fb(display->drm_fd, 64, 64, DRM_FORMAT_ARGB8888, - DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb); + IGT_FORMAT_MOD_PREFERRED, 1., 1., 1., &cursor_fb); cursor = set_cursor_on_crtc(display, cursor_crtc, &cursor_fb); populate_cursor_args(display, cursor_crtc, arg, &cursor_fb); @@ -769,7 +769,7 @@ static void basic_flip_cursor(igt_display_t *display, set_fb_on_crtc(display, crtc, output, &fb_info); igt_create_color_fb(display->drm_fd, 64, 64, DRM_FORMAT_ARGB8888, - DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb); + IGT_FORMAT_MOD_PREFERRED, 1., 1., 1., &cursor_fb); cursor = set_cursor_on_crtc(display, crtc, &cursor_fb); populate_cursor_args(display, crtc, arg, &cursor_fb); @@ -948,7 +948,7 @@ static void flip_vs_cursor(igt_display_t *display, enum flip_test mode, int nloo set_fb_on_crtc(display, crtc, output, &fb_info); igt_create_color_fb(display->drm_fd, 64, 64, DRM_FORMAT_ARGB8888, - DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb); + IGT_FORMAT_MOD_PREFERRED, 1., 1., 1., &cursor_fb); cursor = set_cursor_on_crtc(display, crtc, &cursor_fb); populate_cursor_args(display, crtc, arg, &cursor_fb); @@ -1089,7 +1089,7 @@ static void nonblocking_modeset_vs_cursor(igt_display_t *display, int loops) set_fb_on_crtc(display, crtc, output, &fb_info); primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); igt_create_color_fb(display->drm_fd, 64, 64, DRM_FORMAT_ARGB8888, - DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb); + IGT_FORMAT_MOD_PREFERRED, 1., 1., 1., &cursor_fb); cursor = set_cursor_on_crtc(display, crtc, &cursor_fb); populate_cursor_args(display, crtc, arg, &cursor_fb); arg[0].flags |= DRM_MODE_CURSOR_BO; @@ -1216,7 +1216,7 @@ static void two_screens_flip_vs_cursor(igt_display_t *display, int nloops, bool } igt_create_color_fb(display->drm_fd, 64, 64, DRM_FORMAT_ARGB8888, - DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb); + IGT_FORMAT_MOD_PREFERRED, 1., 1., 1., &cursor_fb); cursor = set_cursor_on_crtc(display, crtc, &cursor_fb); populate_cursor_args(display, crtc, arg1, &cursor_fb); @@ -1395,7 +1395,7 @@ static void cursor_vs_flip(igt_display_t *display, enum flip_test mode, int nloo vrefresh = igt_output_get_mode(output)->vrefresh; igt_create_color_fb(display->drm_fd, 64, 64, DRM_FORMAT_ARGB8888, - DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb); + IGT_FORMAT_MOD_PREFERRED, 1., 1., 1., &cursor_fb); cursor = set_cursor_on_crtc(display, crtc, &cursor_fb); populate_cursor_args(display, crtc, arg, &cursor_fb); @@ -1513,7 +1513,7 @@ static void two_screens_cursor_vs_flip(igt_display_t *display, int nloops, bool } igt_create_color_fb(display->drm_fd, 64, 64, DRM_FORMAT_ARGB8888, - DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb); + IGT_FORMAT_MOD_PREFERRED, 1., 1., 1., &cursor_fb); cursors[0] = set_cursor_on_crtc(display, crtc[0], &cursor_fb); populate_cursor_args(display, crtc[0], arg[0], &cursor_fb); @@ -1628,7 +1628,7 @@ static void flip_vs_cursor_crc(igt_display_t *display, bool atomic) set_fb_on_crtc(display, crtc, output, &fb_info); igt_create_color_fb(display->drm_fd, 64, 64, DRM_FORMAT_ARGB8888, - DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb); + IGT_FORMAT_MOD_PREFERRED, 1., 1., 1., &cursor_fb); populate_cursor_args(display, crtc, arg, &cursor_fb); igt_display_commit2(display, display->is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY); @@ -1709,10 +1709,11 @@ static void flip_vs_cursor_busy_crc(igt_display_t *display, bool atomic) set_fb_on_crtc(display, crtc, output, &fb_info[0]); plane_primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); igt_create_color_pattern_fb(display->drm_fd, fb_info[0].width, fb_info[0].height, - DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, .1, .1, .1, &fb_info[1]); + DRM_FORMAT_XRGB8888, IGT_FORMAT_MOD_PREFERRED, .1, .1, .1, + &fb_info[1]); igt_create_color_fb(display->drm_fd, 64, 64, DRM_FORMAT_ARGB8888, - DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb); + IGT_FORMAT_MOD_PREFERRED, 1., 1., 1., &cursor_fb); populate_cursor_args(display, crtc, arg, &cursor_fb); igt_display_commit2(display, display->is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY); @@ -1816,7 +1817,7 @@ static void modeset_atomic_cursor_hotspot(igt_display_t *display) cursor_width = cursor_height = 64; igt_create_color_fb(display->drm_fd, cursor_width, cursor_height, DRM_FORMAT_ARGB8888, - DRM_FORMAT_MOD_LINEAR, 1., 1., 1., &cursor_fb); + IGT_FORMAT_MOD_PREFERRED, 1., 1., 1., &cursor_fb); igt_display_commit2(display, COMMIT_ATOMIC); -- 2.43.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✗ i915.CI.BAT: failure for RFC: Add preferred FB modifier helper (rev2) 2026-05-12 6:20 [PATCH i-g-t v2 0/2] RFC: Add preferred FB modifier helper Jeevan B 2026-05-12 6:20 ` [PATCH i-g-t v2 1/2] lib/igt_fb: Add IGT_FORMAT_MOD_PREFERRED helper modifier Jeevan B 2026-05-12 6:20 ` [PATCH i-g-t v2 2/2] HAX: kms_cursor_legacy: Use IGT_FORMAT_MOD_PREFERRED for cursor FBs Jeevan B @ 2026-05-12 12:59 ` Patchwork 2026-05-12 13:28 ` ✗ Xe.CI.BAT: " Patchwork 2026-05-13 0:05 ` ✗ Xe.CI.FULL: " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-05-12 12:59 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11681 bytes --] == Series Details == Series: RFC: Add preferred FB modifier helper (rev2) URL : https://patchwork.freedesktop.org/series/164817/ State : failure == Summary == CI Bug Log - changes from IGT_8904 -> IGTPW_15160 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15160 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15160, 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_15160/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15160: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-mtlp-9: [PASS][1] -> [FAIL][2] +5 other tests fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html - bat-mtlp-8: [PASS][3] -> [FAIL][4] +5 other tests fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-mtlp-8/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-mtlp-8/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html - bat-adls-6: [PASS][5] -> [FAIL][6] +5 other tests fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-adls-6/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-adls-6/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html - bat-arlh-3: [PASS][7] -> [FAIL][8] +5 other tests fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-arlh-3/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-arlh-3/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html - bat-dg1-7: [PASS][9] -> [FAIL][10] +5 other tests fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-dg1-7/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-dg1-7/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html - fi-glk-j4005: [PASS][11] -> [FAIL][12] +5 other tests fail [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/fi-glk-j4005/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/fi-glk-j4005/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html - bat-adlp-9: [PASS][13] -> [FAIL][14] +5 other tests fail [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-adlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-adlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html - bat-rpls-4: [PASS][15] -> [FAIL][16] +5 other tests fail [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-rpls-4/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-rpls-4/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html - bat-twl-1: [PASS][17] -> [FAIL][18] +5 other tests fail [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-twl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-twl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html - bat-jsl-5: [PASS][19] -> [FAIL][20] +5 other tests fail [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-jsl-5/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-jsl-5/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html - bat-apl-1: [PASS][21] -> [FAIL][22] +5 other tests fail [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-apl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-apl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html - bat-rplp-1: [PASS][23] -> [FAIL][24] +5 other tests fail [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-rplp-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-rplp-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html - bat-dg2-9: [PASS][25] -> [FAIL][26] +5 other tests fail [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-dg2-9/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-dg2-9/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-adlp-6: [PASS][27] -> [FAIL][28] +5 other tests fail [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-adlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-adlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html - fi-skl-6600u: [PASS][29] -> [FAIL][30] +5 other tests fail [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/fi-skl-6600u/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/fi-skl-6600u/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - bat-arls-6: [PASS][31] -> [FAIL][32] +5 other tests fail [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-arls-6/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-arls-6/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html - fi-kbl-7567u: [PASS][33] -> [FAIL][34] +5 other tests fail [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/fi-kbl-7567u/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/fi-kbl-7567u/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html - fi-cfl-guc: [PASS][35] -> [FAIL][36] +5 other tests fail [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/fi-cfl-guc/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/fi-cfl-guc/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic: - fi-cfl-8700k: [PASS][37] -> [FAIL][38] +5 other tests fail [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/fi-cfl-8700k/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/fi-cfl-8700k/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - bat-twl-2: [PASS][39] -> [FAIL][40] +5 other tests fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-twl-2/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-twl-2/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html - bat-dg2-14: [PASS][41] -> [FAIL][42] +5 other tests fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-dg2-14/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-dg2-14/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html - bat-dg2-8: [PASS][43] -> [FAIL][44] +5 other tests fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-dg2-8/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-dg2-8/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html - fi-bsw-n3050: [PASS][45] -> [FAIL][46] +7 other tests fail [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/fi-bsw-n3050/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/fi-bsw-n3050/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html - bat-arls-5: [PASS][47] -> [FAIL][48] +5 other tests fail [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-arls-5/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-arls-5/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - fi-tgl-1115g4: [PASS][49] -> [FAIL][50] +5 other tests fail [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html #### Warnings #### * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - fi-cfl-8109u: [DMESG-WARN][51] ([i915#15673]) -> [FAIL][52] +5 other tests fail [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/fi-cfl-8109u/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/fi-cfl-8109u/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html Known issues ------------ Here are the changes found in IGTPW_15160 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@workarounds: - bat-dg2-14: [PASS][53] -> [DMESG-FAIL][54] ([i915#12061]) +1 other test dmesg-fail [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-dg2-14/igt@i915_selftest@live@workarounds.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-dg2-14/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live: - bat-dg2-8: [DMESG-FAIL][55] ([i915#12061]) -> [PASS][56] +1 other test pass [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8904/bat-dg2-8/igt@i915_selftest@live.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/bat-dg2-8/igt@i915_selftest@live.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8904 -> IGTPW_15160 CI-20190529: 20190529 CI_DRM_18473: b83102e9c06357b09f2cfbe944269786cb6985c4 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15160: 4f8d846588a3793f6023b534778ff6d300a90c85 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8904: 07cadbb0bf25b18ac37467c4505f87eb50d4e435 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15160/index.html [-- Attachment #2: Type: text/html, Size: 12663 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Xe.CI.BAT: failure for RFC: Add preferred FB modifier helper (rev2) 2026-05-12 6:20 [PATCH i-g-t v2 0/2] RFC: Add preferred FB modifier helper Jeevan B ` (2 preceding siblings ...) 2026-05-12 12:59 ` ✗ i915.CI.BAT: failure for RFC: Add preferred FB modifier helper (rev2) Patchwork @ 2026-05-12 13:28 ` Patchwork 2026-05-13 0:05 ` ✗ Xe.CI.FULL: " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-05-12 13:28 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3271 bytes --] == Series Details == Series: RFC: Add preferred FB modifier helper (rev2) URL : https://patchwork.freedesktop.org/series/164817/ State : failure == Summary == CI Bug Log - changes from XEIGT_8904_BAT -> XEIGTPW_15160_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15160_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15160_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 (13 -> 13) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15160_BAT: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-ptl-2: [PASS][1] -> [FAIL][2] +5 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/bat-ptl-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/bat-ptl-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html - bat-wcl-1: [PASS][3] -> [FAIL][4] +5 other tests fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/bat-wcl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/bat-wcl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-adlp-7: [PASS][5] -> [FAIL][6] +5 other tests fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html - bat-bmg-1: [PASS][7] -> [FAIL][8] +5 other tests fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/bat-bmg-1/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/bat-bmg-1/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - bat-lnl-1: [PASS][9] -> [FAIL][10] +5 other tests fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html Build changes ------------- * IGT: IGT_8904 -> IGTPW_15160 IGTPW_15160: 4f8d846588a3793f6023b534778ff6d300a90c85 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8904: 07cadbb0bf25b18ac37467c4505f87eb50d4e435 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4: b83102e9c06357b09f2cfbe944269786cb6985c4 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/index.html [-- Attachment #2: Type: text/html, Size: 3940 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Xe.CI.FULL: failure for RFC: Add preferred FB modifier helper (rev2) 2026-05-12 6:20 [PATCH i-g-t v2 0/2] RFC: Add preferred FB modifier helper Jeevan B ` (3 preceding siblings ...) 2026-05-12 13:28 ` ✗ Xe.CI.BAT: " Patchwork @ 2026-05-13 0:05 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-05-13 0:05 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 34110 bytes --] == Series Details == Series: RFC: Add preferred FB modifier helper (rev2) URL : https://patchwork.freedesktop.org/series/164817/ State : failure == Summary == CI Bug Log - changes from XEIGT_8904_FULL -> XEIGTPW_15160_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15160_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15160_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_15160_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size: - shard-bmg: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-lnl: [PASS][2] -> [FAIL][3] +34 other tests fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-bmg: [PASS][4] -> [FAIL][5] +53 other tests fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html #### Warnings #### * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-bmg: [SKIP][6] ([Intel XE#6703] / [Intel XE#7935]) -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-9/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html Known issues ------------ Here are the changes found in XEIGTPW_15160_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2327]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_bw@linear-tiling-1-displays-target-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#367]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-5/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-a-hdmi-a-3: - shard-bmg: [PASS][12] -> [ABORT][13] ([Intel XE#1727]) +1 other test abort [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-a-hdmi-a-3.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-dp-2: - shard-bmg: [PASS][14] -> [INCOMPLETE][15] ([Intel XE#1727]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-dp-2.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-dp-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#3432]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2325] / [Intel XE#7358]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-9/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2320]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: - shard-bmg: [PASS][19] -> [FAIL][20] ([Intel XE#7935]) +1 other test fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-5/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-10/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size: - shard-lnl: [PASS][21] -> [FAIL][22] ([Intel XE#7935]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-lnl-2/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-lnl-8/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [PASS][23] -> [FAIL][24] ([Intel XE#301]) +1 other test fail [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2311]) +13 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#656] / [Intel XE#7905]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrshdr-1p-offscreen-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#6312]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-lnl-1/igt@kms_frontbuffer_tracking@drrshdr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7061]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-5/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4141]) +4 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2313]) +12 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-8/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010: - shard-bmg: [PASS][31] -> [SKIP][32] ([Intel XE#7915]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-3/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_plane_multiple@2x-tiling-none: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#4596] / [Intel XE#5854]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-lnl-7/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#1489]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-8/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-psr2-sprite-blt: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-2/igt@kms_psr@fbc-psr2-sprite-blt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-lnl: [PASS][36] -> [SKIP][37] ([Intel XE#4692] / [Intel XE#7508]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-lnl-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-lnl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7636]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_evict@evict-small-multi-queue: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7140]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-2/igt@xe_evict@evict-small-multi-queue.html * igt@xe_exec_balancer@many-execqueues-cm-virtual-basic: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#7482]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-lnl-4/igt@xe_exec_balancer@many-execqueues-cm-virtual-basic.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html * igt@xe_exec_fault_mode@twice-multi-queue-rebind-imm: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7136]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-rebind-imm.html * igt@xe_exec_multi_queue@two-queues-basic-smem: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#6874]) +5 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-9/igt@xe_exec_multi_queue@two-queues-basic-smem.html - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#6874]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-lnl-5/igt@xe_exec_multi_queue@two-queues-basic-smem.html * igt@xe_page_reclaim@binds-full-pd: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7793]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-3/igt@xe_page_reclaim@binds-full-pd.html * igt@xe_sriov_vfio@region-info: - shard-bmg: [PASS][46] -> [FAIL][47] ([Intel XE#5937]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_sriov_vfio@region-info.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-6/igt@xe_sriov_vfio@region-info.html #### Possible fixes #### * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-lnl: [FAIL][48] ([Intel XE#3718] / [Intel XE#7265]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-lnl-5/igt@kms_async_flips@alternate-sync-async-flip-atomic.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-lnl-2/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1: - shard-lnl: [FAIL][50] ([Intel XE#7265]) -> [PASS][51] [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-lnl-5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-lnl-2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][52] ([Intel XE#7084]) -> [PASS][53] +1 other test pass [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010: - shard-bmg: [SKIP][54] ([Intel XE#7915]) -> [PASS][55] +3 other tests pass [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-8/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-2/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][56] ([Intel XE#6321]) -> [PASS][57] [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_system_allocator@once-free: - shard-bmg: [SKIP][58] ([Intel XE#6703]) -> [PASS][59] +35 other tests pass [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_exec_system_allocator@once-free.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-10/igt@xe_exec_system_allocator@once-free.html * igt@xe_module_load@reload-no-display: - shard-bmg: [ABORT][60] -> [PASS][61] [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-3/igt@xe_module_load@reload-no-display.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-1/igt@xe_module_load@reload-no-display.html - shard-lnl: [ABORT][62] -> [PASS][63] [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-lnl-4/igt@xe_module_load@reload-no-display.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-lnl-3/igt@xe_module_load@reload-no-display.html #### Warnings #### * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-bmg: [SKIP][64] ([Intel XE#6703]) -> [SKIP][65] ([Intel XE#1124]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs: - shard-bmg: [SKIP][66] ([Intel XE#6703]) -> [SKIP][67] ([Intel XE#2887]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-lnl: [SKIP][68] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][69] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][70] ([Intel XE#6703]) -> [SKIP][71] ([Intel XE#2311]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-pri-shrfb-draw-render.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-blt: - shard-bmg: [SKIP][72] ([Intel XE#6703]) -> [SKIP][73] ([Intel XE#7061]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-blt.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][74] ([Intel XE#6703]) -> [SKIP][75] ([Intel XE#2313]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-9/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][76] ([Intel XE#3544] / [Intel XE#7915] / [Intel XE#7916]) -> [SKIP][77] ([Intel XE#3544] / [Intel XE#7916]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-10/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: [SKIP][78] ([Intel XE#7915]) -> [SKIP][79] ([Intel XE#7916]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-8/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-10/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][80] ([Intel XE#6703]) -> [SKIP][81] ([Intel XE#6911] / [Intel XE#7466]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_joiner@basic-force-ultra-joiner.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-10/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-bmg: [SKIP][82] ([Intel XE#6703]) -> [SKIP][83] ([Intel XE#1489]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr@psr2-no-drrs: - shard-bmg: [SKIP][84] ([Intel XE#6703]) -> [SKIP][85] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@kms_psr@psr2-no-drrs.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-6/igt@kms_psr@psr2-no-drrs.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][86] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][87] ([Intel XE#1729] / [Intel XE#7424]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][88] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][89] ([Intel XE#2509] / [Intel XE#7437]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery: - shard-bmg: [SKIP][90] ([Intel XE#6703]) -> [SKIP][91] ([Intel XE#7636]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery.html * igt@xe_exec_basic@multigpu-once-bindexecqueue: - shard-bmg: [SKIP][92] ([Intel XE#6703]) -> [SKIP][93] ([Intel XE#2322] / [Intel XE#7372]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_exec_basic@multigpu-once-bindexecqueue.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-3/igt@xe_exec_basic@multigpu-once-bindexecqueue.html * igt@xe_exec_multi_queue@max-queues-basic: - shard-bmg: [SKIP][94] ([Intel XE#6703]) -> [SKIP][95] ([Intel XE#6874]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_exec_multi_queue@max-queues-basic.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-2/igt@xe_exec_multi_queue@max-queues-basic.html * igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate-race: - shard-bmg: [SKIP][96] ([Intel XE#6703]) -> [SKIP][97] ([Intel XE#7138]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate-race.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate-race.html * igt@xe_module_load@load: - shard-bmg: ([PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [SKIP][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [SKIP][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [DMESG-FAIL][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149]) ([Intel XE#2457] / [Intel XE#5545] / [Intel XE#6652] / [Intel XE#7405]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-3/igt@xe_module_load@load.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-10/igt@xe_module_load@load.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-10/igt@xe_module_load@load.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-8/igt@xe_module_load@load.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-5/igt@xe_module_load@load.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-1/igt@xe_module_load@load.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-1/igt@xe_module_load@load.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-1/igt@xe_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-9/igt@xe_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-9/igt@xe_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-9/igt@xe_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-8/igt@xe_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-5/igt@xe_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-6/igt@xe_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-4/igt@xe_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-6/igt@xe_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-6/igt@xe_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-4/igt@xe_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-4/igt@xe_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-8/igt@xe_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-10/igt@xe_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-5/igt@xe_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-8/igt@xe_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-1/igt@xe_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-2/igt@xe_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-5/igt@xe_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-5/igt@xe_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-4/igt@xe_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-10/igt@xe_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-10/igt@xe_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-10/igt@xe_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-4/igt@xe_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-4/igt@xe_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-6/igt@xe_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-6/igt@xe_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-6/igt@xe_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-1/igt@xe_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-5/igt@xe_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-3/igt@xe_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-1/igt@xe_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-9/igt@xe_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-9/igt@xe_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-2/igt@xe_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-2/igt@xe_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-4/igt@xe_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-2/igt@xe_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-3/igt@xe_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-8/igt@xe_module_load@load.html * igt@xe_pm@d3hot-i2c: - shard-bmg: [SKIP][150] ([Intel XE#6703]) -> [SKIP][151] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8904/shard-bmg-2/igt@xe_pm@d3hot-i2c.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/shard-bmg-6/igt@xe_pm@d3hot-i2c.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [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#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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [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#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [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#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [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#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7265 [Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400 [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437 [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915 [Intel XE#7916]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7916 [Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935 Build changes ------------- * IGT: IGT_8904 -> IGTPW_15160 IGTPW_15160: 4f8d846588a3793f6023b534778ff6d300a90c85 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8904: 07cadbb0bf25b18ac37467c4505f87eb50d4e435 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4: b83102e9c06357b09f2cfbe944269786cb6985c4 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15160/index.html [-- Attachment #2: Type: text/html, Size: 39338 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH i-g-t v2 0/2] RFC: Add preferred FB modifier helper @ 2026-05-13 6:15 Jeevan B 0 siblings, 0 replies; 7+ messages in thread From: Jeevan B @ 2026-05-13 6:15 UTC (permalink / raw) To: igt-dev Cc: animesh.manna, dibin.moolakadan.subrahmanian, mohammed.thasleem, ramanaidu.naladala, Jeevan B Add an IGT‑internal modifier, IGT_FORMAT_MOD_PREFERRED, allowing tests to request the preferred tiling format without hardcoding driver‑specific modifiers. A follow‑up HAX patch updates kms_cursor_legacy to use this modifier for cursor framebuffer creation to exercise the new code paths. Jeevan B (2): lib/igt_fb: Add IGT_FORMAT_MOD_PREFERRED helper modifier HAX: kms_cursor_legacy: Use IGT_FORMAT_MOD_PREFERRED for cursor FBs lib/igt_fb.c | 71 ++++++++++++++++++++++++++++++++++++++- lib/igt_fb.h | 19 +++++++++++ tests/kms_cursor_legacy.c | 31 ++++++++--------- 3 files changed, 105 insertions(+), 16 deletions(-) -- 2.43.0 ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-05-13 6:17 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-05-12 6:20 [PATCH i-g-t v2 0/2] RFC: Add preferred FB modifier helper Jeevan B 2026-05-12 6:20 ` [PATCH i-g-t v2 1/2] lib/igt_fb: Add IGT_FORMAT_MOD_PREFERRED helper modifier Jeevan B 2026-05-12 6:20 ` [PATCH i-g-t v2 2/2] HAX: kms_cursor_legacy: Use IGT_FORMAT_MOD_PREFERRED for cursor FBs Jeevan B 2026-05-12 12:59 ` ✗ i915.CI.BAT: failure for RFC: Add preferred FB modifier helper (rev2) Patchwork 2026-05-12 13:28 ` ✗ Xe.CI.BAT: " Patchwork 2026-05-13 0:05 ` ✗ Xe.CI.FULL: " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2026-05-13 6:15 [PATCH i-g-t v2 0/2] RFC: Add preferred FB modifier helper Jeevan B
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox