* [PATCH i-g-t v5 0/2] Support for IN_FORMATS_ASYNC plane property
@ 2025-03-11 8:54 Santhosh Reddy Guddati
2025-03-11 8:54 ` [PATCH i-g-t v5 1/2] lib/igt_kms: Add support to retrieve async modifiers and formats Santhosh Reddy Guddati
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Santhosh Reddy Guddati @ 2025-03-11 8:54 UTC (permalink / raw)
To: igt-dev
Cc: arun.r.murthy, karthik.b.s, chaitanya.kumar.borah,
Santhosh Reddy Guddati
Use IN_FORMATS_ASYNC property to get list of async modifiers
and improve async flips test to add coverage for the supported modifiers
and formats.
Santhosh Reddy Guddati (2):
lib/igt_kms: Add support to retrieve async modifiers and formats
tests/kms_async_flips: use in_formats_async for async modifiers
lib/igt_kms.c | 46 ++++++++++++++++++++++++-
lib/igt_kms.h | 7 +++-
tests/kms_async_flips.c | 76 +++++++++++++++++++++++++++++++++++++----
3 files changed, 121 insertions(+), 8 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 11+ messages in thread* [PATCH i-g-t v5 1/2] lib/igt_kms: Add support to retrieve async modifiers and formats 2025-03-11 8:54 [PATCH i-g-t v5 0/2] Support for IN_FORMATS_ASYNC plane property Santhosh Reddy Guddati @ 2025-03-11 8:54 ` Santhosh Reddy Guddati 2025-03-17 8:56 ` Borah, Chaitanya Kumar 2025-03-11 8:54 ` [PATCH i-g-t v5 2/2] tests/kms_async_flips: use in_formats_async for async modifiers Santhosh Reddy Guddati ` (4 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Santhosh Reddy Guddati @ 2025-03-11 8:54 UTC (permalink / raw) To: igt-dev Cc: arun.r.murthy, karthik.b.s, chaitanya.kumar.borah, Santhosh Reddy Guddati Parse "IN_FORMATS_ASYNC" plane property to identify supported format modifier pairs for async flips V2: Add new fields async_formats and reset idx. V3: Improve commit message , remove unused declaration (Chaitanya) Introduce structure to hold a format modifier and its associated format list. V4: Implement format+modifier tuples for async similar to IN_FORMATS (Chaitanya). Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> --- lib/igt_kms.c | 46 +++++++++++++++++++++++++++++++++++++++++++++- lib/igt_kms.h | 7 ++++++- 2 files changed, 51 insertions(+), 2 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index cc3bb3ae7..dfb23c45e 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -701,6 +701,7 @@ const char * const igt_plane_prop_names[IGT_NUM_PLANE_PROPS] = { [IGT_PLANE_FB_DAMAGE_CLIPS] = "FB_DAMAGE_CLIPS", [IGT_PLANE_SCALING_FILTER] = "SCALING_FILTER", [IGT_PLANE_SIZE_HINTS] = "SIZE_HINTS", + [IGT_PLANE_IN_FORMATS_ASYNC] = "IN_FORMATS_ASYNC", }; const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { @@ -5758,11 +5759,14 @@ static int igt_count_plane_format_mod(const struct drm_format_modifier_blob *blo static void igt_fill_plane_format_mod(igt_display_t *display, igt_plane_t *plane) { - const struct drm_format_modifier_blob *blob_data; + const struct drm_format_modifier_blob *blob_data, *async_blob_data; + const struct drm_format_modifier *async_modifiers; drmModePropertyBlobPtr blob; uint64_t blob_id; int idx = 0; int count; + int async_count; + const uint32_t *async_formats; if (!igt_plane_has_prop(plane, IGT_PLANE_IN_FORMATS)) { drmModePlanePtr p = plane->drm_plane; @@ -5822,6 +5826,46 @@ static void igt_fill_plane_format_mod(igt_display_t *display, igt_plane_t *plane } igt_assert_eq(idx, plane->format_mod_count); + + if (!igt_plane_has_prop(plane, IGT_PLANE_IN_FORMATS_ASYNC)) + return; + + blob_id = igt_plane_get_prop(plane, IGT_PLANE_IN_FORMATS_ASYNC); + blob = drmModeGetPropertyBlob(display->drm_fd, blob_id); + + if (!blob) + return; + + async_blob_data = (const struct drm_format_modifier_blob *)blob->data; + async_count = igt_count_plane_format_mod(async_blob_data); + + if (!async_count) + return; + + plane->async_format_mod_count = async_count; + plane->async_modifiers = calloc(async_count, sizeof(plane->async_modifiers[0])); + igt_assert(plane->async_modifiers); + + plane->async_formats = calloc(async_count, sizeof(plane->async_formats[0])); + igt_assert(plane->async_formats); + + idx = 0; + for (int i = 0; i < async_blob_data->count_modifiers; i++) { + for (int j = 0; j < 64; j++) { + async_modifiers = modifiers_ptr(async_blob_data); + async_formats = formats_ptr(async_blob_data); + + if (!(async_modifiers[i].formats & (1ULL << j))) + continue; + + plane->async_formats[idx] = async_formats[async_modifiers[i].offset + j]; + plane->async_modifiers[idx] = async_modifiers[i].modifier; + idx++; + igt_assert_lte(idx, plane->async_format_mod_count); + } + } + + igt_assert_eq(idx, plane->async_format_mod_count); } /** diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 27b545f52..78d6a7ee4 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -365,7 +365,8 @@ enum igt_atomic_plane_properties { IGT_PLANE_HOTSPOT_X, IGT_PLANE_HOTSPOT_Y, IGT_PLANE_SIZE_HINTS, - IGT_NUM_PLANE_PROPS + IGT_PLANE_IN_FORMATS_ASYNC, + IGT_NUM_PLANE_PROPS, }; /** @@ -438,6 +439,10 @@ typedef struct igt_plane { uint64_t *modifiers; uint32_t *formats; int format_mod_count; + + uint64_t *async_modifiers; + uint32_t *async_formats; + int async_format_mod_count; } igt_plane_t; /* -- 2.34.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* RE: [PATCH i-g-t v5 1/2] lib/igt_kms: Add support to retrieve async modifiers and formats 2025-03-11 8:54 ` [PATCH i-g-t v5 1/2] lib/igt_kms: Add support to retrieve async modifiers and formats Santhosh Reddy Guddati @ 2025-03-17 8:56 ` Borah, Chaitanya Kumar 2025-03-18 5:51 ` Reddy Guddati, Santhosh 0 siblings, 1 reply; 11+ messages in thread From: Borah, Chaitanya Kumar @ 2025-03-17 8:56 UTC (permalink / raw) To: Reddy Guddati, Santhosh, igt-dev@lists.freedesktop.org Cc: Murthy, Arun R, B S, Karthik > -----Original Message----- > From: Reddy Guddati, Santhosh <santhosh.reddy.guddati@intel.com> > Sent: Tuesday, March 11, 2025 2:24 PM > To: igt-dev@lists.freedesktop.org > Cc: Murthy, Arun R <arun.r.murthy@intel.com>; B S, Karthik > <karthik.b.s@intel.com>; Borah, Chaitanya Kumar > <chaitanya.kumar.borah@intel.com>; Reddy Guddati, Santhosh > <santhosh.reddy.guddati@intel.com> > Subject: [PATCH i-g-t v5 1/2] lib/igt_kms: Add support to retrieve async > modifiers and formats > > Parse "IN_FORMATS_ASYNC" plane property to identify supported format > modifier pairs for async flips > > V2: Add new fields async_formats and reset idx. > > V3: Improve commit message , remove unused declaration (Chaitanya) > Introduce structure to hold a format modifier and its > associated format list. > > V4: Implement format+modifier tuples for async similar to IN_FORMATS > (Chaitanya). > > Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > --- > lib/igt_kms.c | 46 +++++++++++++++++++++++++++++++++++++++++++++- > lib/igt_kms.h | 7 ++++++- > 2 files changed, 51 insertions(+), 2 deletions(-) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c index cc3bb3ae7..dfb23c45e 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -701,6 +701,7 @@ const char * const > igt_plane_prop_names[IGT_NUM_PLANE_PROPS] = { > [IGT_PLANE_FB_DAMAGE_CLIPS] = "FB_DAMAGE_CLIPS", > [IGT_PLANE_SCALING_FILTER] = "SCALING_FILTER", > [IGT_PLANE_SIZE_HINTS] = "SIZE_HINTS", > + [IGT_PLANE_IN_FORMATS_ASYNC] = "IN_FORMATS_ASYNC", > }; > > const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { @@ - > 5758,11 +5759,14 @@ static int igt_count_plane_format_mod(const struct > drm_format_modifier_blob *blo > > static void igt_fill_plane_format_mod(igt_display_t *display, igt_plane_t > *plane) { > - const struct drm_format_modifier_blob *blob_data; > + const struct drm_format_modifier_blob *blob_data, > *async_blob_data; > + const struct drm_format_modifier *async_modifiers; > drmModePropertyBlobPtr blob; > uint64_t blob_id; > int idx = 0; > int count; > + int async_count; > + const uint32_t *async_formats; > I don't see a reason why we can't re-use the blob_data and count local variables. But that got me thinking. Are we leaking the blob? I don't see a drmModeFreePropertyBlob() call made after drmModeGetPropertyBlob() for both sync and async. Otherwise the change looks good. Regards Chaitanya > if (!igt_plane_has_prop(plane, IGT_PLANE_IN_FORMATS)) { > drmModePlanePtr p = plane->drm_plane; @@ -5822,6 > +5826,46 @@ static void igt_fill_plane_format_mod(igt_display_t *display, > igt_plane_t *plane > } > > igt_assert_eq(idx, plane->format_mod_count); > + > + if (!igt_plane_has_prop(plane, IGT_PLANE_IN_FORMATS_ASYNC)) > + return; > + > + blob_id = igt_plane_get_prop(plane, > IGT_PLANE_IN_FORMATS_ASYNC); > + blob = drmModeGetPropertyBlob(display->drm_fd, blob_id); > + > + if (!blob) > + return; > + > + async_blob_data = (const struct drm_format_modifier_blob *)blob- > >data; > + async_count = igt_count_plane_format_mod(async_blob_data); > + > + if (!async_count) > + return; > + > + plane->async_format_mod_count = async_count; > + plane->async_modifiers = calloc(async_count, sizeof(plane- > >async_modifiers[0])); > + igt_assert(plane->async_modifiers); > + > + plane->async_formats = calloc(async_count, sizeof(plane- > >async_formats[0])); > + igt_assert(plane->async_formats); > + > + idx = 0; > + for (int i = 0; i < async_blob_data->count_modifiers; i++) { > + for (int j = 0; j < 64; j++) { > + async_modifiers = modifiers_ptr(async_blob_data); > + async_formats = formats_ptr(async_blob_data); > + > + if (!(async_modifiers[i].formats & (1ULL << j))) > + continue; > + > + plane->async_formats[idx] = > async_formats[async_modifiers[i].offset + j]; > + plane->async_modifiers[idx] = > async_modifiers[i].modifier; > + idx++; > + igt_assert_lte(idx, plane->async_format_mod_count); > + } > + } > + > + igt_assert_eq(idx, plane->async_format_mod_count); > } > > /** > diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 27b545f52..78d6a7ee4 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -365,7 +365,8 @@ enum igt_atomic_plane_properties { > IGT_PLANE_HOTSPOT_X, > IGT_PLANE_HOTSPOT_Y, > IGT_PLANE_SIZE_HINTS, > - IGT_NUM_PLANE_PROPS > + IGT_PLANE_IN_FORMATS_ASYNC, > + IGT_NUM_PLANE_PROPS, > }; > > /** > @@ -438,6 +439,10 @@ typedef struct igt_plane { > uint64_t *modifiers; > uint32_t *formats; > int format_mod_count; > + > + uint64_t *async_modifiers; > + uint32_t *async_formats; > + int async_format_mod_count; > } igt_plane_t; > > /* > -- > 2.34.1 ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v5 1/2] lib/igt_kms: Add support to retrieve async modifiers and formats 2025-03-17 8:56 ` Borah, Chaitanya Kumar @ 2025-03-18 5:51 ` Reddy Guddati, Santhosh 0 siblings, 0 replies; 11+ messages in thread From: Reddy Guddati, Santhosh @ 2025-03-18 5:51 UTC (permalink / raw) To: Borah, Chaitanya Kumar, igt-dev@lists.freedesktop.org Cc: Murthy, Arun R, B S, Karthik On 17-03-2025 14:26, Borah, Chaitanya Kumar wrote: > > >> -----Original Message----- >> From: Reddy Guddati, Santhosh <santhosh.reddy.guddati@intel.com> >> Sent: Tuesday, March 11, 2025 2:24 PM >> To: igt-dev@lists.freedesktop.org >> Cc: Murthy, Arun R <arun.r.murthy@intel.com>; B S, Karthik >> <karthik.b.s@intel.com>; Borah, Chaitanya Kumar >> <chaitanya.kumar.borah@intel.com>; Reddy Guddati, Santhosh >> <santhosh.reddy.guddati@intel.com> >> Subject: [PATCH i-g-t v5 1/2] lib/igt_kms: Add support to retrieve async >> modifiers and formats >> >> Parse "IN_FORMATS_ASYNC" plane property to identify supported format >> modifier pairs for async flips >> >> V2: Add new fields async_formats and reset idx. >> >> V3: Improve commit message , remove unused declaration (Chaitanya) >> Introduce structure to hold a format modifier and its >> associated format list. >> >> V4: Implement format+modifier tuples for async similar to IN_FORMATS >> (Chaitanya). >> >> Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> >> --- >> lib/igt_kms.c | 46 +++++++++++++++++++++++++++++++++++++++++++++- >> lib/igt_kms.h | 7 ++++++- >> 2 files changed, 51 insertions(+), 2 deletions(-) >> >> diff --git a/lib/igt_kms.c b/lib/igt_kms.c index cc3bb3ae7..dfb23c45e 100644 >> --- a/lib/igt_kms.c >> +++ b/lib/igt_kms.c >> @@ -701,6 +701,7 @@ const char * const >> igt_plane_prop_names[IGT_NUM_PLANE_PROPS] = { >> [IGT_PLANE_FB_DAMAGE_CLIPS] = "FB_DAMAGE_CLIPS", >> [IGT_PLANE_SCALING_FILTER] = "SCALING_FILTER", >> [IGT_PLANE_SIZE_HINTS] = "SIZE_HINTS", >> + [IGT_PLANE_IN_FORMATS_ASYNC] = "IN_FORMATS_ASYNC", >> }; >> >> const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { @@ - >> 5758,11 +5759,14 @@ static int igt_count_plane_format_mod(const struct >> drm_format_modifier_blob *blo >> >> static void igt_fill_plane_format_mod(igt_display_t *display, igt_plane_t >> *plane) { >> - const struct drm_format_modifier_blob *blob_data; >> + const struct drm_format_modifier_blob *blob_data, >> *async_blob_data; >> + const struct drm_format_modifier *async_modifiers; >> drmModePropertyBlobPtr blob; >> uint64_t blob_id; >> int idx = 0; >> int count; >> + int async_count; >> + const uint32_t *async_formats; >> > > I don't see a reason why we can't re-use the blob_data and count local variables. > > But that got me thinking. Are we leaking the blob? > > I don't see a drmModeFreePropertyBlob() call made after drmModeGetPropertyBlob() for both sync and async. > > Otherwise the change looks good. Re used the local variables for the async formats and yes, there was no drmModeFreePropertyBlob() for sync formats as well. Added this for both sync and async cases. Thanks, Santhosh> > Regards > > Chaitanya > >> if (!igt_plane_has_prop(plane, IGT_PLANE_IN_FORMATS)) { >> drmModePlanePtr p = plane->drm_plane; @@ -5822,6 >> +5826,46 @@ static void igt_fill_plane_format_mod(igt_display_t *display, >> igt_plane_t *plane >> } >> >> igt_assert_eq(idx, plane->format_mod_count); >> + >> + if (!igt_plane_has_prop(plane, IGT_PLANE_IN_FORMATS_ASYNC)) >> + return; >> + >> + blob_id = igt_plane_get_prop(plane, >> IGT_PLANE_IN_FORMATS_ASYNC); >> + blob = drmModeGetPropertyBlob(display->drm_fd, blob_id); >> + >> + if (!blob) >> + return; >> + >> + async_blob_data = (const struct drm_format_modifier_blob *)blob- >>> data; >> + async_count = igt_count_plane_format_mod(async_blob_data); >> + >> + if (!async_count) >> + return; >> + >> + plane->async_format_mod_count = async_count; >> + plane->async_modifiers = calloc(async_count, sizeof(plane- >>> async_modifiers[0])); >> + igt_assert(plane->async_modifiers); >> + >> + plane->async_formats = calloc(async_count, sizeof(plane- >>> async_formats[0])); >> + igt_assert(plane->async_formats); >> + >> + idx = 0; >> + for (int i = 0; i < async_blob_data->count_modifiers; i++) { >> + for (int j = 0; j < 64; j++) { >> + async_modifiers = modifiers_ptr(async_blob_data); >> + async_formats = formats_ptr(async_blob_data); >> + >> + if (!(async_modifiers[i].formats & (1ULL << j))) >> + continue; >> + >> + plane->async_formats[idx] = >> async_formats[async_modifiers[i].offset + j]; >> + plane->async_modifiers[idx] = >> async_modifiers[i].modifier; >> + idx++; >> + igt_assert_lte(idx, plane->async_format_mod_count); >> + } >> + } >> + >> + igt_assert_eq(idx, plane->async_format_mod_count); >> } >> >> /** >> diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 27b545f52..78d6a7ee4 100644 >> --- a/lib/igt_kms.h >> +++ b/lib/igt_kms.h >> @@ -365,7 +365,8 @@ enum igt_atomic_plane_properties { >> IGT_PLANE_HOTSPOT_X, >> IGT_PLANE_HOTSPOT_Y, >> IGT_PLANE_SIZE_HINTS, >> - IGT_NUM_PLANE_PROPS >> + IGT_PLANE_IN_FORMATS_ASYNC, >> + IGT_NUM_PLANE_PROPS, >> }; >> >> /** >> @@ -438,6 +439,10 @@ typedef struct igt_plane { >> uint64_t *modifiers; >> uint32_t *formats; >> int format_mod_count; >> + >> + uint64_t *async_modifiers; >> + uint32_t *async_formats; >> + int async_format_mod_count; >> } igt_plane_t; >> >> /* >> -- >> 2.34.1 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH i-g-t v5 2/2] tests/kms_async_flips: use in_formats_async for async modifiers 2025-03-11 8:54 [PATCH i-g-t v5 0/2] Support for IN_FORMATS_ASYNC plane property Santhosh Reddy Guddati 2025-03-11 8:54 ` [PATCH i-g-t v5 1/2] lib/igt_kms: Add support to retrieve async modifiers and formats Santhosh Reddy Guddati @ 2025-03-11 8:54 ` Santhosh Reddy Guddati 2025-03-17 10:56 ` Borah, Chaitanya Kumar 2025-03-12 0:47 ` ✓ Xe.CI.BAT: success for Support for IN_FORMATS_ASYNC plane property (rev5) Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Santhosh Reddy Guddati @ 2025-03-11 8:54 UTC (permalink / raw) To: igt-dev Cc: arun.r.murthy, karthik.b.s, chaitanya.kumar.borah, Santhosh Reddy Guddati Utilise IN_FORMATS_ASYNC property exposed to get the list of async supported modifier/format pair and improve the test coverage by iterating through all the supported modifier format pairs. V2: Improve run_test_with_modifiers to set data formats based on async formats. Update make_fb to use data formats instead of hard coded format V3: Update commit message, remove complicated iterations (Chaitanya) V4: Reduce the format+modifier combinations to reduce time needed to execute the tests. (Chaitanya) Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> --- tests/kms_async_flips.c | 76 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 70 insertions(+), 6 deletions(-) diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c index da426f753..0e2b0afec 100644 --- a/tests/kms_async_flips.c +++ b/tests/kms_async_flips.c @@ -36,6 +36,7 @@ #include "igt.h" #include "igt_aux.h" #include "igt_psr.h" +#include "igt_vec.h" #include <sys/ioctl.h> #include <sys/time.h> #include <poll.h> @@ -122,8 +123,14 @@ typedef struct { bool allow_fail; struct buf_ops *bops; bool atomic_path; + unsigned int plane_format; } data_t; +struct format_mod { + uint64_t modifier; + uint32_t format; +}; + static void flip_handler(int fd_, unsigned int sequence, unsigned int tv_sec, unsigned int tv_usec, void *_data) { @@ -193,7 +200,7 @@ static void make_fb(data_t *data, struct igt_fb *fb, rec_width = width / (NUM_FBS * 2); - igt_create_color_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, + igt_create_color_fb(data->drm_fd, width, height, data->plane_format, data->modifier, 0.0, 0.0, 0.5, fb); cr = igt_get_cairo_ctx(data->drm_fd, fb); @@ -710,21 +717,75 @@ static void run_test(data_t *data, void (*test)(data_t *)) } } +static bool skip_async_format_mod(data_t *data, + uint32_t format, uint64_t modifier, + struct igt_vec *tested_formats) +{ + /* igt doesn't know how to sw generate UBWC: */ + if (is_msm_device(data->drm_fd) && + modifier == DRM_FORMAT_MOD_QCOM_COMPRESSED) + return true; + + /* VEBOX just hangs with an actual 10bpc format */ + if (igt_fb_is_gen12_mc_ccs_modifier(modifier) && + igt_reduce_format(format) == DRM_FORMAT_XRGB2101010) + return true; + + /* test each format "class" only once in non-extended tests */ + if (modifier != DRM_FORMAT_MOD_LINEAR) { + struct format_mod rf = { + .format = igt_reduce_format(format), + .modifier = modifier, + }; + + if (igt_vec_index(tested_formats, &rf) >= 0) + return true; + + igt_vec_push(tested_formats, &rf); + } + + return false; +} + static void run_test_with_modifiers(data_t *data, void (*test)(data_t *)) { + struct format_mod ref = {}; + struct igt_vec tested_formats; + + ref.format = DRM_FORMAT_ARGB8888; + ref.modifier = DRM_FORMAT_MOD_LINEAR; + + igt_vec_init(&tested_formats, sizeof(struct format_mod)); + for_each_pipe_with_valid_output(&data->display, data->pipe, data->output) { test_init(data); + for (int i = 0; i < data->plane->async_format_mod_count; i++) { + struct format_mod f = { + .format = data->plane->async_formats[i], + .modifier = data->plane->async_modifiers[i], + }; - for (int i = 0; i < data->plane->format_mod_count; i++) { - if (data->plane->formats[i] != DRM_FORMAT_XRGB8888) + if (ref.format == f.format && ref.modifier == f.modifier) continue; + if (skip_async_format_mod(data, f.format, f.modifier, &tested_formats)) { + igt_debug("Skipping format " IGT_FORMAT_FMT " / modifier " + IGT_MODIFIER_FMT " on %s.%u\n", + IGT_FORMAT_ARGS(f.format), + IGT_MODIFIER_ARGS(f.modifier), + kmstest_pipe_name(data->pipe), + data->plane->index); + continue; + } + data->allow_fail = true; - data->modifier = data->plane->modifiers[i]; + data->modifier = data->plane->async_modifiers[i]; + data->plane_format = data->plane->async_formats[i]; - igt_dynamic_f("pipe-%s-%s-%s", kmstest_pipe_name(data->pipe), + igt_dynamic_f("pipe-%s-%s-%s-%s", kmstest_pipe_name(data->pipe), data->output->name, - igt_fb_modifier_name(data->modifier)) { + igt_fb_modifier_name(data->modifier), + igt_format_str(data->plane_format)) { /* * FIXME: joiner+async flip is busted currently in KMD. * Remove this check once the issues are fixed in KMD. @@ -738,6 +799,8 @@ static void run_test_with_modifiers(data_t *data, void (*test)(data_t *)) } } } + + igt_vec_fini(&tested_formats); } static data_t data; @@ -757,6 +820,7 @@ igt_main if (is_intel_device(data.drm_fd)) data.bops = buf_ops_create(data.drm_fd); + data.plane_format = DRM_FORMAT_XRGB8888; } igt_describe("Verify the async flip functionality and the fps during async flips"); -- 2.34.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* RE: [PATCH i-g-t v5 2/2] tests/kms_async_flips: use in_formats_async for async modifiers 2025-03-11 8:54 ` [PATCH i-g-t v5 2/2] tests/kms_async_flips: use in_formats_async for async modifiers Santhosh Reddy Guddati @ 2025-03-17 10:56 ` Borah, Chaitanya Kumar 2025-03-18 5:48 ` Reddy Guddati, Santhosh 0 siblings, 1 reply; 11+ messages in thread From: Borah, Chaitanya Kumar @ 2025-03-17 10:56 UTC (permalink / raw) To: Reddy Guddati, Santhosh, igt-dev@lists.freedesktop.org Cc: Murthy, Arun R, B S, Karthik > -----Original Message----- > From: Reddy Guddati, Santhosh <santhosh.reddy.guddati@intel.com> > Sent: Tuesday, March 11, 2025 2:24 PM > To: igt-dev@lists.freedesktop.org > Cc: Murthy, Arun R <arun.r.murthy@intel.com>; B S, Karthik > <karthik.b.s@intel.com>; Borah, Chaitanya Kumar > <chaitanya.kumar.borah@intel.com>; Reddy Guddati, Santhosh > <santhosh.reddy.guddati@intel.com> > Subject: [PATCH i-g-t v5 2/2] tests/kms_async_flips: use in_formats_async for > async modifiers > > Utilise IN_FORMATS_ASYNC property exposed to get the list of async > supported modifier/format pair and improve the test coverage by iterating > through all the supported modifier format pairs. > > V2: Improve run_test_with_modifiers to set data formats based on async > formats. > Update make_fb to use data formats instead of hard coded format > > V3: Update commit message, remove complicated iterations (Chaitanya) > > V4: Reduce the format+modifier combinations to reduce time needed to > execute the tests. (Chaitanya) > > Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > --- > tests/kms_async_flips.c | 76 +++++++++++++++++++++++++++++++++++++---- > 1 file changed, 70 insertions(+), 6 deletions(-) > > diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c index > da426f753..0e2b0afec 100644 > --- a/tests/kms_async_flips.c > +++ b/tests/kms_async_flips.c > @@ -36,6 +36,7 @@ > #include "igt.h" > #include "igt_aux.h" > #include "igt_psr.h" > +#include "igt_vec.h" > #include <sys/ioctl.h> > #include <sys/time.h> > #include <poll.h> > @@ -122,8 +123,14 @@ typedef struct { > bool allow_fail; > struct buf_ops *bops; > bool atomic_path; > + unsigned int plane_format; > } data_t; > > +struct format_mod { > + uint64_t modifier; > + uint32_t format; > +}; > + > static void flip_handler(int fd_, unsigned int sequence, unsigned int tv_sec, > unsigned int tv_usec, void *_data) > { > @@ -193,7 +200,7 @@ static void make_fb(data_t *data, struct igt_fb *fb, > > rec_width = width / (NUM_FBS * 2); > > - igt_create_color_fb(data->drm_fd, width, height, > DRM_FORMAT_XRGB8888, > + igt_create_color_fb(data->drm_fd, width, height, data->plane_format, > data->modifier, 0.0, 0.0, 0.5, fb); > > cr = igt_get_cairo_ctx(data->drm_fd, fb); @@ -710,21 +717,75 @@ > static void run_test(data_t *data, void (*test)(data_t *)) > } > } > > +static bool skip_async_format_mod(data_t *data, > + uint32_t format, uint64_t modifier, > + struct igt_vec *tested_formats) > +{ > + /* igt doesn't know how to sw generate UBWC: */ > + if (is_msm_device(data->drm_fd) && > + modifier == DRM_FORMAT_MOD_QCOM_COMPRESSED) > + return true; > + > + /* VEBOX just hangs with an actual 10bpc format */ > + if (igt_fb_is_gen12_mc_ccs_modifier(modifier) && > + igt_reduce_format(format) == DRM_FORMAT_XRGB2101010) > + return true; > + > + /* test each format "class" only once in non-extended tests */ > + if (modifier != DRM_FORMAT_MOD_LINEAR) { > + struct format_mod rf = { > + .format = igt_reduce_format(format), > + .modifier = modifier, > + }; > + > + if (igt_vec_index(tested_formats, &rf) >= 0) > + return true; > + > + igt_vec_push(tested_formats, &rf); > + } > + > + return false; > +} > + > static void run_test_with_modifiers(data_t *data, void (*test)(data_t *)) { > + struct format_mod ref = {}; > + struct igt_vec tested_formats; > + > + ref.format = DRM_FORMAT_ARGB8888; > + ref.modifier = DRM_FORMAT_MOD_LINEAR; > + > + igt_vec_init(&tested_formats, sizeof(struct format_mod)); > + > for_each_pipe_with_valid_output(&data->display, data->pipe, data- > >output) { > test_init(data); > + for (int i = 0; i < data->plane->async_format_mod_count; i++) { > + struct format_mod f = { > + .format = data->plane->async_formats[i], > + .modifier = data->plane->async_modifiers[i], > + }; > > - for (int i = 0; i < data->plane->format_mod_count; i++) { > - if (data->plane->formats[i] != > DRM_FORMAT_XRGB8888) > + if (ref.format == f.format && ref.modifier == > f.modifier) > continue; What is this check for? The rest of the test looks logical. Regards Chaitanya > > + if (skip_async_format_mod(data, f.format, f.modifier, > &tested_formats)) { > + igt_debug("Skipping format " > IGT_FORMAT_FMT " / modifier " > + IGT_MODIFIER_FMT " on %s.%u\n", > + IGT_FORMAT_ARGS(f.format), > + IGT_MODIFIER_ARGS(f.modifier), > + kmstest_pipe_name(data->pipe), > + data->plane->index); > + continue; > + } > + > data->allow_fail = true; > - data->modifier = data->plane->modifiers[i]; > + data->modifier = data->plane->async_modifiers[i]; > + data->plane_format = data->plane->async_formats[i]; > > - igt_dynamic_f("pipe-%s-%s-%s", > kmstest_pipe_name(data->pipe), > + igt_dynamic_f("pipe-%s-%s-%s-%s", > kmstest_pipe_name(data->pipe), > data->output->name, > - igt_fb_modifier_name(data->modifier)) { > + igt_fb_modifier_name(data->modifier), > + igt_format_str(data->plane_format)) { > /* > * FIXME: joiner+async flip is busted > currently in KMD. > * Remove this check once the issues are > fixed in KMD. > @@ -738,6 +799,8 @@ static void run_test_with_modifiers(data_t *data, void > (*test)(data_t *)) > } > } > } > + > + igt_vec_fini(&tested_formats); > } > > static data_t data; > @@ -757,6 +820,7 @@ igt_main > > if (is_intel_device(data.drm_fd)) > data.bops = buf_ops_create(data.drm_fd); > + data.plane_format = DRM_FORMAT_XRGB8888; > } > > igt_describe("Verify the async flip functionality and the fps during > async flips"); > -- > 2.34.1 ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v5 2/2] tests/kms_async_flips: use in_formats_async for async modifiers 2025-03-17 10:56 ` Borah, Chaitanya Kumar @ 2025-03-18 5:48 ` Reddy Guddati, Santhosh 0 siblings, 0 replies; 11+ messages in thread From: Reddy Guddati, Santhosh @ 2025-03-18 5:48 UTC (permalink / raw) To: Borah, Chaitanya Kumar, igt-dev@lists.freedesktop.org Cc: Murthy, Arun R, B S, Karthik Hi Chaitanya, Thanks for reviewing the changes. Please find the comments inline. On 17-03-2025 16:26, Borah, Chaitanya Kumar wrote: > > >> -----Original Message----- >> From: Reddy Guddati, Santhosh <santhosh.reddy.guddati@intel.com> >> Sent: Tuesday, March 11, 2025 2:24 PM >> To: igt-dev@lists.freedesktop.org >> Cc: Murthy, Arun R <arun.r.murthy@intel.com>; B S, Karthik >> <karthik.b.s@intel.com>; Borah, Chaitanya Kumar >> <chaitanya.kumar.borah@intel.com>; Reddy Guddati, Santhosh >> <santhosh.reddy.guddati@intel.com> >> Subject: [PATCH i-g-t v5 2/2] tests/kms_async_flips: use in_formats_async for >> async modifiers >> >> Utilise IN_FORMATS_ASYNC property exposed to get the list of async >> supported modifier/format pair and improve the test coverage by iterating >> through all the supported modifier format pairs. >> >> V2: Improve run_test_with_modifiers to set data formats based on async >> formats. >> Update make_fb to use data formats instead of hard coded format >> >> V3: Update commit message, remove complicated iterations (Chaitanya) >> >> V4: Reduce the format+modifier combinations to reduce time needed to >> execute the tests. (Chaitanya) >> >> Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> >> --- >> tests/kms_async_flips.c | 76 +++++++++++++++++++++++++++++++++++++---- >> 1 file changed, 70 insertions(+), 6 deletions(-) >> >> diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c index >> da426f753..0e2b0afec 100644 >> --- a/tests/kms_async_flips.c >> +++ b/tests/kms_async_flips.c >> @@ -36,6 +36,7 @@ >> #include "igt.h" >> #include "igt_aux.h" >> #include "igt_psr.h" >> +#include "igt_vec.h" >> #include <sys/ioctl.h> >> #include <sys/time.h> >> #include <poll.h> >> @@ -122,8 +123,14 @@ typedef struct { >> bool allow_fail; >> struct buf_ops *bops; >> bool atomic_path; >> + unsigned int plane_format; >> } data_t; >> >> +struct format_mod { >> + uint64_t modifier; >> + uint32_t format; >> +}; >> + >> static void flip_handler(int fd_, unsigned int sequence, unsigned int tv_sec, >> unsigned int tv_usec, void *_data) >> { >> @@ -193,7 +200,7 @@ static void make_fb(data_t *data, struct igt_fb *fb, >> >> rec_width = width / (NUM_FBS * 2); >> >> - igt_create_color_fb(data->drm_fd, width, height, >> DRM_FORMAT_XRGB8888, >> + igt_create_color_fb(data->drm_fd, width, height, data->plane_format, >> data->modifier, 0.0, 0.0, 0.5, fb); >> >> cr = igt_get_cairo_ctx(data->drm_fd, fb); @@ -710,21 +717,75 @@ >> static void run_test(data_t *data, void (*test)(data_t *)) >> } >> } >> >> +static bool skip_async_format_mod(data_t *data, >> + uint32_t format, uint64_t modifier, >> + struct igt_vec *tested_formats) >> +{ >> + /* igt doesn't know how to sw generate UBWC: */ >> + if (is_msm_device(data->drm_fd) && >> + modifier == DRM_FORMAT_MOD_QCOM_COMPRESSED) >> + return true; >> + >> + /* VEBOX just hangs with an actual 10bpc format */ >> + if (igt_fb_is_gen12_mc_ccs_modifier(modifier) && >> + igt_reduce_format(format) == DRM_FORMAT_XRGB2101010) >> + return true; >> + >> + /* test each format "class" only once in non-extended tests */ >> + if (modifier != DRM_FORMAT_MOD_LINEAR) { >> + struct format_mod rf = { >> + .format = igt_reduce_format(format), >> + .modifier = modifier, >> + }; >> + >> + if (igt_vec_index(tested_formats, &rf) >= 0) >> + return true; >> + >> + igt_vec_push(tested_formats, &rf); >> + } >> + >> + return false; >> +} >> + >> static void run_test_with_modifiers(data_t *data, void (*test)(data_t *)) { >> + struct format_mod ref = {}; >> + struct igt_vec tested_formats; >> + >> + ref.format = DRM_FORMAT_ARGB8888; >> + ref.modifier = DRM_FORMAT_MOD_LINEAR; >> + >> + igt_vec_init(&tested_formats, sizeof(struct format_mod)); >> + >> for_each_pipe_with_valid_output(&data->display, data->pipe, data- >>> output) { >> test_init(data); >> + for (int i = 0; i < data->plane->async_format_mod_count; i++) { >> + struct format_mod f = { >> + .format = data->plane->async_formats[i], >> + .modifier = data->plane->async_modifiers[i], >> + }; >> >> - for (int i = 0; i < data->plane->format_mod_count; i++) { >> - if (data->plane->formats[i] != >> DRM_FORMAT_XRGB8888) >> + if (ref.format == f.format && ref.modifier == >> f.modifier) >> continue; > > What is this check for? > > The rest of the test looks logical. > Removed these extra checks in rev v6 as the checks are redundant.> Regards > > Chaitanya > >> >> + if (skip_async_format_mod(data, f.format, f.modifier, >> &tested_formats)) { >> + igt_debug("Skipping format " >> IGT_FORMAT_FMT " / modifier " >> + IGT_MODIFIER_FMT " on %s.%u\n", >> + IGT_FORMAT_ARGS(f.format), >> + IGT_MODIFIER_ARGS(f.modifier), >> + kmstest_pipe_name(data->pipe), >> + data->plane->index); >> + continue; >> + } >> + >> data->allow_fail = true; >> - data->modifier = data->plane->modifiers[i]; >> + data->modifier = data->plane->async_modifiers[i]; >> + data->plane_format = data->plane->async_formats[i]; >> >> - igt_dynamic_f("pipe-%s-%s-%s", >> kmstest_pipe_name(data->pipe), >> + igt_dynamic_f("pipe-%s-%s-%s-%s", >> kmstest_pipe_name(data->pipe), >> data->output->name, >> - igt_fb_modifier_name(data->modifier)) { >> + igt_fb_modifier_name(data->modifier), >> + igt_format_str(data->plane_format)) { >> /* >> * FIXME: joiner+async flip is busted >> currently in KMD. >> * Remove this check once the issues are >> fixed in KMD. >> @@ -738,6 +799,8 @@ static void run_test_with_modifiers(data_t *data, void >> (*test)(data_t *)) >> } >> } >> } >> + >> + igt_vec_fini(&tested_formats); >> } >> >> static data_t data; >> @@ -757,6 +820,7 @@ igt_main >> >> if (is_intel_device(data.drm_fd)) >> data.bops = buf_ops_create(data.drm_fd); >> + data.plane_format = DRM_FORMAT_XRGB8888; >> } >> >> igt_describe("Verify the async flip functionality and the fps during >> async flips"); >> -- >> 2.34.1 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for Support for IN_FORMATS_ASYNC plane property (rev5) 2025-03-11 8:54 [PATCH i-g-t v5 0/2] Support for IN_FORMATS_ASYNC plane property Santhosh Reddy Guddati 2025-03-11 8:54 ` [PATCH i-g-t v5 1/2] lib/igt_kms: Add support to retrieve async modifiers and formats Santhosh Reddy Guddati 2025-03-11 8:54 ` [PATCH i-g-t v5 2/2] tests/kms_async_flips: use in_formats_async for async modifiers Santhosh Reddy Guddati @ 2025-03-12 0:47 ` Patchwork 2025-03-12 1:13 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-03-12 0:47 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 778 bytes --] == Series Details == Series: Support for IN_FORMATS_ASYNC plane property (rev5) URL : https://patchwork.freedesktop.org/series/143374/ State : success == Summary == CI Bug Log - changes from XEIGT_8271_BAT -> XEIGTPW_12745_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8271 -> IGTPW_12745 IGTPW_12745: 12745 IGT_8271: 8271 xe-2797-eb17816e52395a403aa0b447aa0befa9d2f86dd5: eb17816e52395a403aa0b447aa0befa9d2f86dd5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/index.html [-- Attachment #2: Type: text/html, Size: 1323 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for Support for IN_FORMATS_ASYNC plane property (rev5) 2025-03-11 8:54 [PATCH i-g-t v5 0/2] Support for IN_FORMATS_ASYNC plane property Santhosh Reddy Guddati ` (2 preceding siblings ...) 2025-03-12 0:47 ` ✓ Xe.CI.BAT: success for Support for IN_FORMATS_ASYNC plane property (rev5) Patchwork @ 2025-03-12 1:13 ` Patchwork 2025-03-12 13:38 ` ✓ i915.CI.Full: " Patchwork 2025-03-12 15:52 ` ✗ Xe.CI.Full: failure " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-03-12 1:13 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3312 bytes --] == Series Details == Series: Support for IN_FORMATS_ASYNC plane property (rev5) URL : https://patchwork.freedesktop.org/series/143374/ State : success == Summary == CI Bug Log - changes from IGT_8271 -> IGTPW_12745 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12745/index.html Participating hosts (44 -> 43) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12745 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@reload: - bat-twl-1: [PASS][1] -> [DMESG-WARN][2] ([i915#13736]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8271/bat-twl-1/igt@i915_module_load@reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12745/bat-twl-1/igt@i915_module_load@reload.html * igt@i915_selftest@live@workarounds: - 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_8271/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12745/bat-mtlp-9/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@core_auth@basic-auth: - fi-bsw-nick: [DMESG-WARN][5] ([i915#13736]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8271/fi-bsw-nick/igt@core_auth@basic-auth.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12745/fi-bsw-nick/igt@core_auth@basic-auth.html * igt@i915_selftest@live: - bat-jsl-3: [INCOMPLETE][7] ([i915#12445] / [i915#13241]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8271/bat-jsl-3/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12745/bat-jsl-3/igt@i915_selftest@live.html * igt@i915_selftest@live@hugepages: - bat-jsl-3: [INCOMPLETE][9] ([i915#12445]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8271/bat-jsl-3/igt@i915_selftest@live@hugepages.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12745/bat-jsl-3/igt@i915_selftest@live@hugepages.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8271/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12745/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#13241]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13241 [i915#13736]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13736 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8271 -> IGTPW_12745 CI-20190529: 20190529 CI_DRM_16265: eb17816e52395a403aa0b447aa0befa9d2f86dd5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12745: 12745 IGT_8271: 8271 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12745/index.html [-- Attachment #2: Type: text/html, Size: 4277 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.Full: success for Support for IN_FORMATS_ASYNC plane property (rev5) 2025-03-11 8:54 [PATCH i-g-t v5 0/2] Support for IN_FORMATS_ASYNC plane property Santhosh Reddy Guddati ` (3 preceding siblings ...) 2025-03-12 1:13 ` ✓ i915.CI.BAT: " Patchwork @ 2025-03-12 13:38 ` Patchwork 2025-03-12 15:52 ` ✗ Xe.CI.Full: failure " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-03-12 13:38 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 863 bytes --] == Series Details == Series: Support for IN_FORMATS_ASYNC plane property (rev5) URL : https://patchwork.freedesktop.org/series/143374/ State : success == Summary == CI Bug Log - changes from IGT_8271_full -> IGTPW_12745_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12745/index.html Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8271 -> IGTPW_12745 CI_DRM_16265: eb17816e52395a403aa0b447aa0befa9d2f86dd5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12745: 12745 IGT_8271: 8271 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12745/index.html [-- Attachment #2: Type: text/html, Size: 1415 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for Support for IN_FORMATS_ASYNC plane property (rev5) 2025-03-11 8:54 [PATCH i-g-t v5 0/2] Support for IN_FORMATS_ASYNC plane property Santhosh Reddy Guddati ` (4 preceding siblings ...) 2025-03-12 13:38 ` ✓ i915.CI.Full: " Patchwork @ 2025-03-12 15:52 ` Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-03-12 15:52 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 86316 bytes --] == Series Details == Series: Support for IN_FORMATS_ASYNC plane property (rev5) URL : https://patchwork.freedesktop.org/series/143374/ State : failure == Summary == CI Bug Log - changes from XEIGT_8271_full -> XEIGTPW_12745_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with XEIGTPW_12745_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12745_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12745_full: ### IGT changes ### #### Warnings #### * igt@kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][1] ([Intel XE#3719] / [Intel XE#911]) -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html New tests --------- New tests have been introduced between XEIGT_8271_full and XEIGTPW_12745_full: ### New IGT tests (1) ### * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [4.37] s Known issues ------------ Here are the changes found in XEIGTPW_12745_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotreplug: - shard-lnl: NOTRUN -> [ABORT][3] ([Intel XE#3914]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-5/igt@core_hotunplug@hotreplug.html * igt@kms_3d: - shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#1465]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-5/igt@kms_3d.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][5] -> [FAIL][6] ([Intel XE#827]) +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-dg2-set2: [PASS][7] -> [SKIP][8] ([Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-463/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt@kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#873]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_async_flips@invalid-async-flip.html - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#873]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-433/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#3279]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2385]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2327]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#316]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +16 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#610]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1428]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +18 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +14 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2191]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2191]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1512]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#367]) +4 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#367]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#367]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-1/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +17 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-3/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +16 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#787]) +192 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#3432]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#3432]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][33] ([Intel XE#3862]) +1 other test incomplete [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2907]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +50 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][36] ([Intel XE#2705] / [Intel XE#4345]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][37] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4522]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][38] ([Intel XE#2705]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2724]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-2/igt@kms_cdclk@mode-transition-all-outputs.html - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#4440]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_cdclk@mode-transition-all-outputs.html - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#4418]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-5/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#4417]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-433/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2252]) +14 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@degamma: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2325]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#373]) +15 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#373]) +15 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-2/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][48] ([Intel XE#1178]) +2 other tests fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-434/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@content-type-change: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2341]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2390]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#307]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_content_protection@dp-mst-type-1.html - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#307]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-8/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#3278]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-8/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#308]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1424]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2320]) +5 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#2321]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2321]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#309]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2286]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#323]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#309]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#2291]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2291]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html - shard-dg2-set2: [PASS][66] -> [SKIP][67] ([Intel XE#309]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-463/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#4210]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][69] -> [SKIP][70] ([Intel XE#4302]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#3009]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_dp_aux_dev.html - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#3009]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@uhbr-sst: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#4354]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-7/igt@kms_dp_link_training@uhbr-sst.html - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#4356]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-436/igt@kms_dp_link_training@uhbr-sst.html - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#4354]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-8/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#4294]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-2/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#4422]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#4422]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#4422]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#776]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#776]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2374]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#310]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2-set2: [PASS][84] -> [SKIP][85] ([Intel XE#310]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-432/igt@kms_flip@2x-dpms-vs-vblank-race.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-dpms: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2316]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-suspend: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1421]) +8 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-3/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: [PASS][88] -> [SKIP][89] ([Intel XE#2316]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-8/igt@kms_flip@2x-modeset-vs-vblank-race.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@bo-too-big-interruptible@a-edp1: - shard-lnl: NOTRUN -> [TIMEOUT][90] ([Intel XE#1504]) +1 other test timeout [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-5/igt@kms_flip@bo-too-big-interruptible@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][91] -> [FAIL][92] ([Intel XE#3321]) +3 other tests fail [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6: - shard-dg2-set2: [PASS][93] -> [FAIL][94] ([Intel XE#301]) +3 other tests fail [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [PASS][95] -> [INCOMPLETE][96] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-2/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [PASS][97] -> [INCOMPLETE][98] ([Intel XE#2049] / [Intel XE#2597]) +2 other tests incomplete [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-lnl: [PASS][99] -> [DMESG-WARN][100] ([Intel XE#2932]) +3 other tests dmesg-warn [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-lnl-2/igt@kms_flip@flip-vs-suspend-interruptible.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-4/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][101] ([Intel XE#2049] / [Intel XE#2597]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2: - shard-bmg: [PASS][102] -> [FAIL][103] ([Intel XE#2882]) +1 other test fail [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2293]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1397] / [Intel XE#1745]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1397]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2380]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1401] / [Intel XE#1745]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1401]) +4 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-edid: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#352]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-5/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2312]) +15 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#651]) +42 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#651]) +16 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2311]) +32 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#656]) +37 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [PASS][117] -> [SKIP][118] ([Intel XE#656]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#4141]) +17 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#658]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#653]) +39 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2352]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2313]) +37 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#656]) +8 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_joiner@basic-max-non-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#4298]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-466/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][126] -> [SKIP][127] ([Intel XE#3012]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-dg2-set2: [PASS][128] -> [SKIP][129] ([Intel XE#4328]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-big-joiner.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2934]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2925]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-432/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#2934]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2927]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-432/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#2927]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2927]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane@plane-position-hole: - shard-lnl: NOTRUN -> [DMESG-FAIL][136] ([Intel XE#324]) +2 other tests dmesg-fail [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-2/igt@kms_plane@plane-position-hole.html * igt@kms_plane@plane-position-hole@pipe-b-plane-1: - shard-lnl: NOTRUN -> [DMESG-WARN][137] ([Intel XE#324]) +3 other tests dmesg-warn [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-2/igt@kms_plane@plane-position-hole@pipe-b-plane-1.html * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#599]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-6/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html * igt@kms_plane_multiple@tiling-y: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2493]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2763]) +8 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#2763]) +11 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2763]) +9 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#870]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_pm_backlight@fade.html - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#870]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-432/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#3309]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#3309]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-1/igt@kms_pm_dc@dc5-retention-flops.html - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#3309]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-7/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#908]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-432/igt@kms_pm_dc@dc6-dpms.html - shard-bmg: NOTRUN -> [FAIL][150] ([Intel XE#1430]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#836]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1439] / [Intel XE#3141]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-8/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#1489]) +12 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#2893]) +4 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-8/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#1489]) +13 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-463/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2387]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#1122]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#1128]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2234] / [Intel XE#2850]) +16 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-2/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@fbc-pr-sprite-render: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#1406]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-5/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr2-primary-render: - shard-lnl: [PASS][161] -> [FAIL][162] ([Intel XE#3924]) +1 other test fail [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-lnl-1/igt@kms_psr@fbc-psr2-primary-render.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-6/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#2850] / [Intel XE#929]) +20 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-433/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2234]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_psr@psr2-primary-render.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#3414]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-436/igt@kms_rotation_crc@bad-tiling.html - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-3/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-rotation-90: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2330]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#1127]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-none: - shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2413]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#1435]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#1435]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_universal_plane@universal-plane-functional@pipe-a-edp-1: - shard-lnl: [PASS][173] -> [DMESG-WARN][174] ([Intel XE#324]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-lnl-8/igt@kms_universal_plane@universal-plane-functional@pipe-a-edp-1.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-8/igt@kms_universal_plane@universal-plane-functional@pipe-a-edp-1.html * igt@kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#455]) +23 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-432/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#2168]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@kms_vrr@lobf.html - shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#2168]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#1499]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-7/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#1499]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-2/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#756]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg2-set2: NOTRUN -> [SKIP][181] ([Intel XE#756]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-436/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#756]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@xe_compute@ccs-mode-basic: - shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#1447]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-8/igt@xe_compute@ccs-mode-basic.html * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#1123]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_eu_stall@blocking-read: - shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#4497]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-466/igt@xe_eu_stall@blocking-read.html * igt@xe_eudebug@basic-read-event: - shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#2905]) +12 other tests skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-2/igt@xe_eudebug@basic-read-event.html * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#2905] / [Intel XE#3889]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html - shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#2905] / [Intel XE#3889]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-8/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt@xe_eudebug@multiple-sessions: - shard-lnl: NOTRUN -> [SKIP][190] ([Intel XE#2905]) +12 other tests skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-8/igt@xe_eudebug@multiple-sessions.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#2905]) +15 other tests skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_eudebug_sriov@deny-eudebug: - shard-dg2-set2: NOTRUN -> [SKIP][192] ([Intel XE#4518]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-436/igt@xe_eudebug_sriov@deny-eudebug.html - shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#4518]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-1/igt@xe_eudebug_sriov@deny-eudebug.html - shard-bmg: NOTRUN -> [SKIP][194] ([Intel XE#4518]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@xe_eudebug_sriov@deny-eudebug.html * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd: - shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#688]) +4 other tests skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-1/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-dg2-set2: NOTRUN -> [SKIP][196] ([Intel XE#1392]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-bmg: NOTRUN -> [SKIP][197] ([Intel XE#2322]) +9 other tests skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [PASS][198] -> [SKIP][199] ([Intel XE#1392]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-435/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#1392]) +9 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][201] ([Intel XE#288]) +35 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-466/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_exec_threads@threads-hang-fd-rebind: - shard-lnl: [PASS][202] -> [DMESG-WARN][203] ([Intel XE#3876]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-lnl-6/igt@xe_exec_threads@threads-hang-fd-rebind.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-4/igt@xe_exec_threads@threads-hang-fd-rebind.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-lnl: NOTRUN -> [SKIP][204] ([Intel XE#2229]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-4/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][205] ([Intel XE#4045]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-1/igt@xe_mmap@pci-membarrier-parallel.html * igt@xe_noexec_ping_pong: - shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#379]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-8/igt@xe_noexec_ping_pong.html * igt@xe_oa@buffer-size: - shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#4501]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-432/igt@xe_oa@buffer-size.html * igt@xe_oa@polling-small-buf: - shard-dg2-set2: NOTRUN -> [SKIP][208] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-463/igt@xe_oa@polling-small-buf.html * igt@xe_oa@syncs-ufence-wait-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][209] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +3 other tests skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-466/igt@xe_oa@syncs-ufence-wait-cfg.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][210] ([Intel XE#1420]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@xe_pat@pat-index-xehpc.html - shard-lnl: NOTRUN -> [SKIP][211] ([Intel XE#1420] / [Intel XE#2838]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-4/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][212] ([Intel XE#2284] / [Intel XE#366]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-466/igt@xe_pm@d3cold-basic-exec.html - shard-lnl: NOTRUN -> [SKIP][213] ([Intel XE#2284] / [Intel XE#366]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-7/igt@xe_pm@d3cold-basic-exec.html - shard-bmg: NOTRUN -> [SKIP][214] ([Intel XE#2284]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@s3-exec-after: - shard-lnl: NOTRUN -> [SKIP][215] ([Intel XE#584]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-7/igt@xe_pm@s3-exec-after.html * igt@xe_pm@s4-basic-exec: - shard-dg2-set2: NOTRUN -> [ABORT][216] ([Intel XE#4268]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-433/igt@xe_pm@s4-basic-exec.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-bmg: NOTRUN -> [ABORT][217] ([Intel XE#4268]) +2 other tests abort [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: NOTRUN -> [SKIP][218] ([Intel XE#944]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-466/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-oa-units: - shard-lnl: NOTRUN -> [SKIP][219] ([Intel XE#944]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-2/igt@xe_query@multigpu-query-oa-units.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: NOTRUN -> [SKIP][220] ([Intel XE#944]) +2 other tests skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_sriov_auto_provisioning@exclusive-ranges: - shard-bmg: NOTRUN -> [SKIP][221] ([Intel XE#4130]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@xe_sriov_auto_provisioning@exclusive-ranges.html * igt@xe_sriov_auto_provisioning@selfconfig-basic: - shard-dg2-set2: NOTRUN -> [SKIP][222] ([Intel XE#4130]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-436/igt@xe_sriov_auto_provisioning@selfconfig-basic.html * igt@xe_sriov_scheduling@equal-throughput: - shard-bmg: NOTRUN -> [SKIP][223] ([Intel XE#4351]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-7/igt@xe_sriov_scheduling@equal-throughput.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets: - shard-dg2-set2: NOTRUN -> [SKIP][224] ([Intel XE#4351]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-433/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html - shard-lnl: NOTRUN -> [SKIP][225] ([Intel XE#4351]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html #### Possible fixes #### * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-dg2-set2: [SKIP][226] ([Intel XE#2191]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-435/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][228] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4502] / [Intel XE#4522]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-dg2-set2: [SKIP][230] ([Intel XE#309]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-434/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][232] ([Intel XE#2291]) -> [PASS][233] +2 other tests pass [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-dg2-set2: [INCOMPLETE][234] ([Intel XE#3226]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-433/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-463/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-dg2-set2: [SKIP][236] ([Intel XE#4354]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-464/igt@kms_dp_link_training@non-uhbr-sst.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-433/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [FAIL][238] ([Intel XE#3321]) -> [PASS][239] +1 other test pass [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-nonexisting-fb: - shard-dg2-set2: [SKIP][240] ([Intel XE#310]) -> [PASS][241] +4 other tests pass [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-464/igt@kms_flip@2x-nonexisting-fb.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-432/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][242] ([Intel XE#2316]) -> [PASS][243] +3 other tests pass [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [FAIL][244] ([Intel XE#301]) -> [PASS][245] +1 other test pass [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6: - shard-dg2-set2: [FAIL][246] ([Intel XE#301]) -> [PASS][247] +1 other test pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][248] ([Intel XE#656]) -> [PASS][249] +1 other test pass [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][250] ([Intel XE#718]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html * igt@xe_exec_basic@multigpu-once-bindexecqueue: - shard-dg2-set2: [SKIP][252] ([Intel XE#1392]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-436/igt@xe_exec_basic@multigpu-once-bindexecqueue.html * igt@xe_module_load@load: - shard-dg2-set2: ([SKIP][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279]) ([Intel XE#378]) -> ([PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-436/igt@xe_module_load@load.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-435/igt@xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-434/igt@xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-435/igt@xe_module_load@load.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-434/igt@xe_module_load@load.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-432/igt@xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-432/igt@xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-466/igt@xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-466/igt@xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-466/igt@xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-466/igt@xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-463/igt@xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-464/igt@xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-435/igt@xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-433/igt@xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-433/igt@xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-436/igt@xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-436/igt@xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-436/igt@xe_module_load@load.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-463/igt@xe_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-434/igt@xe_module_load@load.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-432/igt@xe_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-463/igt@xe_module_load@load.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-464/igt@xe_module_load@load.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-464/igt@xe_module_load@load.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-464/igt@xe_module_load@load.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-466/igt@xe_module_load@load.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-436/igt@xe_module_load@load.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-436/igt@xe_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@xe_module_load@load.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-432/igt@xe_module_load@load.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@xe_module_load@load.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-436/igt@xe_module_load@load.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-463/igt@xe_module_load@load.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-463/igt@xe_module_load@load.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-463/igt@xe_module_load@load.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-433/igt@xe_module_load@load.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-433/igt@xe_module_load@load.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-466/igt@xe_module_load@load.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@xe_module_load@load.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-466/igt@xe_module_load@load.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-433/igt@xe_module_load@load.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-432/igt@xe_module_load@load.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-432/igt@xe_module_load@load.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-435/igt@xe_module_load@load.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-435/igt@xe_module_load@load.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-434/igt@xe_module_load@load.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-434/igt@xe_module_load@load.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@xe_module_load@load.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@xe_module_load@load.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-434/igt@xe_module_load@load.html #### Warnings #### * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][305] ([Intel XE#787]) -> [SKIP][306] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][307] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][308] ([Intel XE#787]) +2 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][309] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4522]) -> [INCOMPLETE][310] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4522]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_content_protection@legacy: - shard-dg2-set2: [SKIP][311] ([Intel XE#455]) -> [FAIL][312] ([Intel XE#1178]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-464/igt@kms_content_protection@legacy.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-436/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-bmg: [FAIL][313] ([Intel XE#1178]) -> [SKIP][314] ([Intel XE#2341]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-8/igt@kms_content_protection@srm.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_content_protection@srm.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][315] ([Intel XE#656]) -> [SKIP][316] ([Intel XE#651]) +4 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][317] ([Intel XE#2311]) -> [SKIP][318] ([Intel XE#2312]) +9 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][319] ([Intel XE#2312]) -> [SKIP][320] ([Intel XE#2311]) +10 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][321] ([Intel XE#4141]) -> [SKIP][322] ([Intel XE#2312]) +6 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][323] ([Intel XE#2312]) -> [SKIP][324] ([Intel XE#4141]) +4 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][325] ([Intel XE#651]) -> [SKIP][326] ([Intel XE#656]) +10 other tests skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][327] ([Intel XE#2312]) -> [SKIP][328] ([Intel XE#2313]) +9 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][329] ([Intel XE#656]) -> [SKIP][330] ([Intel XE#653]) +4 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][331] ([Intel XE#653]) -> [SKIP][332] ([Intel XE#656]) +11 other tests skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-bmg: [SKIP][333] ([Intel XE#2313]) -> [SKIP][334] ([Intel XE#2312]) +6 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][335] ([Intel XE#3544]) -> [SKIP][336] ([Intel XE#3374] / [Intel XE#3544]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][337] ([Intel XE#1729]) -> [SKIP][338] ([Intel XE#362]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_pm@s4-basic: - shard-dg2-set2: [ABORT][339] -> [ABORT][340] ([Intel XE#4268]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8271/shard-dg2-434/igt@xe_pm@s4-basic.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/shard-dg2-436/igt@xe_pm@s4-basic.html [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [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#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [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#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [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#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465 [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#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [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#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [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#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914 [Intel XE#3924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3924 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210 [Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4328 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356 [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417 [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4440 [Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497 [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501 [Intel XE#4502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4502 [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8271 -> IGTPW_12745 IGTPW_12745: 12745 IGT_8271: 8271 xe-2797-eb17816e52395a403aa0b447aa0befa9d2f86dd5: eb17816e52395a403aa0b447aa0befa9d2f86dd5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12745/index.html [-- Attachment #2: Type: text/html, Size: 101758 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-03-18 5:53 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-03-11 8:54 [PATCH i-g-t v5 0/2] Support for IN_FORMATS_ASYNC plane property Santhosh Reddy Guddati 2025-03-11 8:54 ` [PATCH i-g-t v5 1/2] lib/igt_kms: Add support to retrieve async modifiers and formats Santhosh Reddy Guddati 2025-03-17 8:56 ` Borah, Chaitanya Kumar 2025-03-18 5:51 ` Reddy Guddati, Santhosh 2025-03-11 8:54 ` [PATCH i-g-t v5 2/2] tests/kms_async_flips: use in_formats_async for async modifiers Santhosh Reddy Guddati 2025-03-17 10:56 ` Borah, Chaitanya Kumar 2025-03-18 5:48 ` Reddy Guddati, Santhosh 2025-03-12 0:47 ` ✓ Xe.CI.BAT: success for Support for IN_FORMATS_ASYNC plane property (rev5) Patchwork 2025-03-12 1:13 ` ✓ i915.CI.BAT: " Patchwork 2025-03-12 13:38 ` ✓ i915.CI.Full: " Patchwork 2025-03-12 15:52 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox