* [igt-dev] [i-g-t V5 0/5] Add XE suppor for display tests
@ 2023-09-11 7:22 Bhanuprakash Modem
2023-09-11 7:22 ` [igt-dev] [i-g-t V5 1/5] tests/i915/kms_ccs: Add XE support Bhanuprakash Modem
` (7 more replies)
0 siblings, 8 replies; 14+ messages in thread
From: Bhanuprakash Modem @ 2023-09-11 7:22 UTC (permalink / raw)
To: igt-dev
Add IGT support to work kms tests on XE driver.
V2: - Rebase
V3: - Update testlist
V4: - Rebase
V5: - Rebase
Bhanuprakash Modem (5):
tests/i915/kms_ccs: Add XE support
tests/i915/kms_fb_coherency: Add XE support
tests/i915/kms_fbcon_fbt: Add XE support
tests/kms_prime: Add XE support
tests/intel-ci/xe: Drop Xe supported tests from blocklist
tests/intel-ci/xe.blocklist.txt | 2 -
tests/intel/kms_ccs.c | 42 +++--
tests/intel/kms_fb_coherency.c | 43 +++---
tests/intel/kms_fbcon_fbt.c | 2 +-
tests/kms_prime.c | 261 +++++++++++++++++++++++++++-----
5 files changed, 273 insertions(+), 77 deletions(-)
--
2.40.0
^ permalink raw reply [flat|nested] 14+ messages in thread* [igt-dev] [i-g-t V5 1/5] tests/i915/kms_ccs: Add XE support 2023-09-11 7:22 [igt-dev] [i-g-t V5 0/5] Add XE suppor for display tests Bhanuprakash Modem @ 2023-09-11 7:22 ` Bhanuprakash Modem 2023-09-26 12:13 ` Juha-Pekka Heikkila 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 2/5] tests/i915/kms_fb_coherency: " Bhanuprakash Modem ` (6 subsequent siblings) 7 siblings, 1 reply; 14+ messages in thread From: Bhanuprakash Modem @ 2023-09-11 7:22 UTC (permalink / raw) To: igt-dev Add XE driver support for kms tests. This patch will add a support to call the corresponding apis based on the driver (i915/xe) V2: - Update XE blocklist Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/intel/kms_ccs.c | 42 ++++++++++++++++++++++++++---------------- 1 file changed, 26 insertions(+), 16 deletions(-) diff --git a/tests/intel/kms_ccs.c b/tests/intel/kms_ccs.c index 976aedb06..4a0f024dd 100644 --- a/tests/intel/kms_ccs.c +++ b/tests/intel/kms_ccs.c @@ -32,6 +32,7 @@ #include "igt.h" #include "i915/gem_create.h" +#include "xe/xe_ioctl.h" /** * SUBTEST: %s-%s-%s @@ -313,17 +314,19 @@ static void check_ccs_plane(int drm_fd, igt_fb_t *fb, int plane) ccs_size = fb->strides[plane] * fb->plane_height[plane]; igt_assert(ccs_size); - gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, 0); - - map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_READ); - + if (is_i915_device(drm_fd)) { + gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, 0); + map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_READ); + } else { + map = xe_bo_mmap_ext(drm_fd, fb->gem_handle, fb->size, PROT_READ); + } ccs_size = fb->strides[plane] * fb->plane_height[plane]; ccs_p = map + fb->offsets[plane]; for (i = 0; i < ccs_size; i += sizeof(uint32_t)) if (*(uint32_t *)(ccs_p + i)) break; - munmap(map, fb->size); + igt_assert(gem_munmap(map, fb->size) == 0); igt_assert_f(i < ccs_size, "CCS plane %d (for main plane %d) lacks compression meta-data\n", @@ -339,9 +342,12 @@ static void check_ccs_cc_plane(int drm_fd, igt_fb_t *fb, int plane, const float void *map; uint32_t native_color; - gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, 0); - - map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_READ); + if (is_i915_device(drm_fd)) { + gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, 0); + map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_READ); + } else { + map = xe_bo_mmap_ext(drm_fd, fb->gem_handle, fb->size, PROT_READ); + } cc_p = map + fb->offsets[plane]; igt_assert(cc_color[0] == cc_p[0].f && @@ -356,7 +362,7 @@ static void check_ccs_cc_plane(int drm_fd, igt_fb_t *fb, int plane, const float igt_assert(native_color == cc_p[4].d); - munmap(map, fb->size); + igt_assert(gem_munmap(map, fb->size) == 0); }; static void check_all_ccs_planes(int drm_fd, igt_fb_t *fb, const float *cc_color, bool check_cc_plane) @@ -378,14 +384,17 @@ static void fill_fb_random(int drm_fd, igt_fb_t *fb) uint8_t *p; int i; - gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, I915_GEM_DOMAIN_CPU); - - p = map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_WRITE); + if (is_i915_device(drm_fd)) { + gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, I915_GEM_DOMAIN_CPU); + p = map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_WRITE); + } else { + p = map = xe_bo_mmap_ext(drm_fd, fb->gem_handle, fb->size, PROT_READ | PROT_WRITE); + } for (i = 0; i < fb->size; i++) p[i] = rand(); - munmap(map, fb->size); + igt_assert(gem_munmap(map, fb->size) == 0); } static void test_bad_ccs_plane(data_t *data, int width, int height, int ccs_plane, @@ -493,8 +502,9 @@ static void fast_clear_fb(int drm_fd, struct igt_fb *fb, const float *cc_color) struct buf_ops *bops = buf_ops_create(drm_fd); struct intel_buf *dst = igt_fb_create_intel_buf(drm_fd, bops, fb, "fast clear dst"); - gem_set_domain(drm_fd, fb->gem_handle, - I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT); + if (is_i915_device(drm_fd)) + gem_set_domain(drm_fd, fb->gem_handle, + I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT); fast_clear(ibb, dst, 0, 0, fb->width, fb->height, cc_color); @@ -814,7 +824,7 @@ igt_main_args("cs:", NULL, help_str, opt_handler, &data) enum pipe pipe; igt_fixture { - data.drm_fd = drm_open_driver_master(DRIVER_INTEL); + data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 9); kmstest_set_vt_graphics_mode(); -- 2.40.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [igt-dev] [i-g-t V5 1/5] tests/i915/kms_ccs: Add XE support 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 1/5] tests/i915/kms_ccs: Add XE support Bhanuprakash Modem @ 2023-09-26 12:13 ` Juha-Pekka Heikkila 0 siblings, 0 replies; 14+ messages in thread From: Juha-Pekka Heikkila @ 2023-09-26 12:13 UTC (permalink / raw) To: Bhanuprakash Modem, igt-dev On 11.9.2023 10.22, Bhanuprakash Modem wrote: > Add XE driver support for kms tests. This patch will add a support > to call the corresponding apis based on the driver (i915/xe) > > V2: - Update XE blocklist > > Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > --- > tests/intel/kms_ccs.c | 42 ++++++++++++++++++++++++++---------------- > 1 file changed, 26 insertions(+), 16 deletions(-) > > diff --git a/tests/intel/kms_ccs.c b/tests/intel/kms_ccs.c > index 976aedb06..4a0f024dd 100644 > --- a/tests/intel/kms_ccs.c > +++ b/tests/intel/kms_ccs.c > @@ -32,6 +32,7 @@ > #include "igt.h" > > #include "i915/gem_create.h" > +#include "xe/xe_ioctl.h" > > /** > * SUBTEST: %s-%s-%s > @@ -313,17 +314,19 @@ static void check_ccs_plane(int drm_fd, igt_fb_t *fb, int plane) > ccs_size = fb->strides[plane] * fb->plane_height[plane]; > igt_assert(ccs_size); > > - gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, 0); > - > - map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_READ); > - > + if (is_i915_device(drm_fd)) { > + gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, 0); > + map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_READ); > + } else { > + map = xe_bo_mmap_ext(drm_fd, fb->gem_handle, fb->size, PROT_READ); > + } > ccs_size = fb->strides[plane] * fb->plane_height[plane]; > ccs_p = map + fb->offsets[plane]; > for (i = 0; i < ccs_size; i += sizeof(uint32_t)) > if (*(uint32_t *)(ccs_p + i)) > break; > > - munmap(map, fb->size); > + igt_assert(gem_munmap(map, fb->size) == 0); > > igt_assert_f(i < ccs_size, > "CCS plane %d (for main plane %d) lacks compression meta-data\n", > @@ -339,9 +342,12 @@ static void check_ccs_cc_plane(int drm_fd, igt_fb_t *fb, int plane, const float > void *map; > uint32_t native_color; > > - gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, 0); > - > - map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_READ); > + if (is_i915_device(drm_fd)) { > + gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, 0); > + map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_READ); > + } else { > + map = xe_bo_mmap_ext(drm_fd, fb->gem_handle, fb->size, PROT_READ); > + } > cc_p = map + fb->offsets[plane]; > > igt_assert(cc_color[0] == cc_p[0].f && > @@ -356,7 +362,7 @@ static void check_ccs_cc_plane(int drm_fd, igt_fb_t *fb, int plane, const float > > igt_assert(native_color == cc_p[4].d); > > - munmap(map, fb->size); > + igt_assert(gem_munmap(map, fb->size) == 0); > }; > > static void check_all_ccs_planes(int drm_fd, igt_fb_t *fb, const float *cc_color, bool check_cc_plane) > @@ -378,14 +384,17 @@ static void fill_fb_random(int drm_fd, igt_fb_t *fb) > uint8_t *p; > int i; > > - gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, I915_GEM_DOMAIN_CPU); > - > - p = map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_WRITE); > + if (is_i915_device(drm_fd)) { > + gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, I915_GEM_DOMAIN_CPU); > + p = map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_WRITE); > + } else { > + p = map = xe_bo_mmap_ext(drm_fd, fb->gem_handle, fb->size, PROT_READ | PROT_WRITE); I kind of assume here wouldn't need PROT_READ but I don't see it changing test result. As is this show green results and as discussed earlier this test maybe not so useful overall on Xe in any case so lets go with this. Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> > + } > > for (i = 0; i < fb->size; i++) > p[i] = rand(); > > - munmap(map, fb->size); > + igt_assert(gem_munmap(map, fb->size) == 0); > } > > static void test_bad_ccs_plane(data_t *data, int width, int height, int ccs_plane, > @@ -493,8 +502,9 @@ static void fast_clear_fb(int drm_fd, struct igt_fb *fb, const float *cc_color) > struct buf_ops *bops = buf_ops_create(drm_fd); > struct intel_buf *dst = igt_fb_create_intel_buf(drm_fd, bops, fb, "fast clear dst"); > > - gem_set_domain(drm_fd, fb->gem_handle, > - I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT); > + if (is_i915_device(drm_fd)) > + gem_set_domain(drm_fd, fb->gem_handle, > + I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT); > > fast_clear(ibb, dst, 0, 0, fb->width, fb->height, cc_color); > > @@ -814,7 +824,7 @@ igt_main_args("cs:", NULL, help_str, opt_handler, &data) > enum pipe pipe; > > igt_fixture { > - data.drm_fd = drm_open_driver_master(DRIVER_INTEL); > + data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); > > igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 9); > kmstest_set_vt_graphics_mode(); ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] [i-g-t V5 2/5] tests/i915/kms_fb_coherency: Add XE support 2023-09-11 7:22 [igt-dev] [i-g-t V5 0/5] Add XE suppor for display tests Bhanuprakash Modem 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 1/5] tests/i915/kms_ccs: Add XE support Bhanuprakash Modem @ 2023-09-11 7:22 ` Bhanuprakash Modem 2023-10-23 8:41 ` Sharma, Swati2 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 3/5] tests/i915/kms_fbcon_fbt: " Bhanuprakash Modem ` (5 subsequent siblings) 7 siblings, 1 reply; 14+ messages in thread From: Bhanuprakash Modem @ 2023-09-11 7:22 UTC (permalink / raw) To: igt-dev Add XE driver support for kms tests. This patch will add a support to call the corresponding apis based on the driver (i915/xe) Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/intel/kms_fb_coherency.c | 43 ++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/tests/intel/kms_fb_coherency.c b/tests/intel/kms_fb_coherency.c index c772ddcdc..745ffcdd2 100644 --- a/tests/intel/kms_fb_coherency.c +++ b/tests/intel/kms_fb_coherency.c @@ -16,6 +16,7 @@ #include <string.h> #include "igt.h" +#include "xe/xe_ioctl.h" typedef struct { int drm_fd; @@ -91,7 +92,7 @@ static struct igt_fb *prepare_fb(data_t *data) 0, 0, fb->width, fb->height, 0, 0, fb->width << 16, fb->height << 16); - if (!gem_has_lmem(data->drm_fd)) { + if (is_i915_device(data->drm_fd) && !gem_has_lmem(data->drm_fd)) { uint32_t caching; /* make sure caching mode has become UC/WT */ @@ -160,7 +161,10 @@ static void test_mmap_offset_wc(data_t *data) fb = prepare_fb(data); - buf = gem_mmap_offset__wc(data->drm_fd, fb->gem_handle, 0, fb->size, PROT_WRITE); + if (is_i915_device(data->drm_fd)) + buf = gem_mmap_offset__wc(data->drm_fd, fb->gem_handle, 0, fb->size, PROT_WRITE); + else + buf = xe_bo_mmap_ext(data->drm_fd, fb->gem_handle, fb->size, PROT_WRITE); check_buf_crc(data, buf, fb); } @@ -226,7 +230,7 @@ igt_main data_t data; igt_fixture { - data.drm_fd = drm_open_driver_master(DRIVER_INTEL); + data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); data.devid = intel_get_drm_devid(data.drm_fd); @@ -251,39 +255,38 @@ igt_main * Test category: functionality test */ igt_subtest_with_dynamic("memset-crc") { - if (gem_has_mappable_ggtt(data.drm_fd)) { + if (igt_draw_supports_method(data.drm_fd, IGT_DRAW_MMAP_GTT)) { igt_dynamic("mmap-gtt") test_mmap_gtt(&data); cleanup_crtc(&data); } - if (gem_mmap_offset__has_wc(data.drm_fd)) { + if (igt_draw_supports_method(data.drm_fd, IGT_DRAW_MMAP_WC)) { igt_dynamic("mmap-offset-wc") test_mmap_offset_wc(&data); cleanup_crtc(&data); } - if (gem_has_lmem(data.drm_fd)) { - igt_dynamic("mmap-offset-fixed") - test_mmap_offset_fixed(&data); + if (is_i915_device(data.drm_fd)) { + if (gem_has_lmem(data.drm_fd)) { + igt_dynamic("mmap-offset-fixed") + test_mmap_offset_fixed(&data); + } else if (gem_has_mmap_offset(data.drm_fd)) { + igt_dynamic("mmap-offset-uc") + test_mmap_offset_uc(&data); + } cleanup_crtc(&data); - } else if (gem_has_mmap_offset(data.drm_fd)) { - igt_dynamic("mmap-offset-uc") - test_mmap_offset_uc(&data); + if (gem_has_legacy_mmap(data.drm_fd) && + gem_mmap__has_wc(data.drm_fd)) { + igt_dynamic("mmap-legacy-wc") + test_legacy_mmap_wc(&data); - cleanup_crtc(&data); - } - - if (gem_has_legacy_mmap(data.drm_fd) && - gem_mmap__has_wc(data.drm_fd)) { - igt_dynamic("mmap-legacy-wc") - test_legacy_mmap_wc(&data); - - cleanup_crtc(&data); + cleanup_crtc(&data); + } } } -- 2.40.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [igt-dev] [i-g-t V5 2/5] tests/i915/kms_fb_coherency: Add XE support 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 2/5] tests/i915/kms_fb_coherency: " Bhanuprakash Modem @ 2023-10-23 8:41 ` Sharma, Swati2 2023-10-25 7:43 ` Modem, Bhanuprakash 0 siblings, 1 reply; 14+ messages in thread From: Sharma, Swati2 @ 2023-10-23 8:41 UTC (permalink / raw) To: Bhanuprakash Modem, igt-dev Hi Bhanu, On 11-Sep-23 12:52 PM, Bhanuprakash Modem wrote: > Add XE driver support for kms tests. This patch will add a support > to call the corresponding apis based on the driver (i915/xe) > > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > --- > tests/intel/kms_fb_coherency.c | 43 ++++++++++++++++++---------------- > 1 file changed, 23 insertions(+), 20 deletions(-) > > diff --git a/tests/intel/kms_fb_coherency.c b/tests/intel/kms_fb_coherency.c > index c772ddcdc..745ffcdd2 100644 > --- a/tests/intel/kms_fb_coherency.c > +++ b/tests/intel/kms_fb_coherency.c > @@ -16,6 +16,7 @@ > #include <string.h> > > #include "igt.h" > +#include "xe/xe_ioctl.h" > > typedef struct { > int drm_fd; > @@ -91,7 +92,7 @@ static struct igt_fb *prepare_fb(data_t *data) > 0, 0, fb->width, fb->height, > 0, 0, fb->width << 16, fb->height << 16); > > - if (!gem_has_lmem(data->drm_fd)) { > + if (is_i915_device(data->drm_fd) && !gem_has_lmem(data->drm_fd)) { > uint32_t caching; > > /* make sure caching mode has become UC/WT */ > @@ -160,7 +161,10 @@ static void test_mmap_offset_wc(data_t *data) > > fb = prepare_fb(data); > > - buf = gem_mmap_offset__wc(data->drm_fd, fb->gem_handle, 0, fb->size, PROT_WRITE); > + if (is_i915_device(data->drm_fd)) > + buf = gem_mmap_offset__wc(data->drm_fd, fb->gem_handle, 0, fb->size, PROT_WRITE); > + else > + buf = xe_bo_mmap_ext(data->drm_fd, fb->gem_handle, fb->size, PROT_WRITE); > > check_buf_crc(data, buf, fb); > } > @@ -226,7 +230,7 @@ igt_main > data_t data; > > igt_fixture { > - data.drm_fd = drm_open_driver_master(DRIVER_INTEL); > + data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); > > data.devid = intel_get_drm_devid(data.drm_fd); > > @@ -251,39 +255,38 @@ igt_main > * Test category: functionality test > */ > igt_subtest_with_dynamic("memset-crc") { > - if (gem_has_mappable_ggtt(data.drm_fd)) { > + if (igt_draw_supports_method(data.drm_fd, IGT_DRAW_MMAP_GTT)) { > igt_dynamic("mmap-gtt") > test_mmap_gtt(&data); > > cleanup_crtc(&data); > } > > - if (gem_mmap_offset__has_wc(data.drm_fd)) { > + if (igt_draw_supports_method(data.drm_fd, IGT_DRAW_MMAP_WC)) { > igt_dynamic("mmap-offset-wc") > test_mmap_offset_wc(&data); > > cleanup_crtc(&data); > } > > - if (gem_has_lmem(data.drm_fd)) { > - igt_dynamic("mmap-offset-fixed") > - test_mmap_offset_fixed(&data); > + if (is_i915_device(data.drm_fd)) { Instead of using if (is_i915_device()), can we use igt_require_i915(data.drm_fd) instead if these subtests are executable on i915 driver only? > + if (gem_has_lmem(data.drm_fd)) { > + igt_dynamic("mmap-offset-fixed") > + test_mmap_offset_fixed(&data); > + } else if (gem_has_mmap_offset(data.drm_fd)) { > + igt_dynamic("mmap-offset-uc") > + test_mmap_offset_uc(&data); > + } > > cleanup_crtc(&data); > > - } else if (gem_has_mmap_offset(data.drm_fd)) { > - igt_dynamic("mmap-offset-uc") > - test_mmap_offset_uc(&data); > + if (gem_has_legacy_mmap(data.drm_fd) && > + gem_mmap__has_wc(data.drm_fd)) { > + igt_dynamic("mmap-legacy-wc") > + test_legacy_mmap_wc(&data); > > - cleanup_crtc(&data); > - } > - > - if (gem_has_legacy_mmap(data.drm_fd) && > - gem_mmap__has_wc(data.drm_fd)) { > - igt_dynamic("mmap-legacy-wc") > - test_legacy_mmap_wc(&data); > - > - cleanup_crtc(&data); > + cleanup_crtc(&data); > + } > } > } > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [i-g-t V5 2/5] tests/i915/kms_fb_coherency: Add XE support 2023-10-23 8:41 ` Sharma, Swati2 @ 2023-10-25 7:43 ` Modem, Bhanuprakash 2023-10-26 5:23 ` Sharma, Swati2 0 siblings, 1 reply; 14+ messages in thread From: Modem, Bhanuprakash @ 2023-10-25 7:43 UTC (permalink / raw) To: Sharma, Swati2, igt-dev Hi Swati, On Mon-23-10-2023 02:11 pm, Sharma, Swati2 wrote: > Hi Bhanu, > > On 11-Sep-23 12:52 PM, Bhanuprakash Modem wrote: >> Add XE driver support for kms tests. This patch will add a support >> to call the corresponding apis based on the driver (i915/xe) >> >> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> >> --- >> tests/intel/kms_fb_coherency.c | 43 ++++++++++++++++++---------------- >> 1 file changed, 23 insertions(+), 20 deletions(-) >> >> diff --git a/tests/intel/kms_fb_coherency.c >> b/tests/intel/kms_fb_coherency.c >> index c772ddcdc..745ffcdd2 100644 >> --- a/tests/intel/kms_fb_coherency.c >> +++ b/tests/intel/kms_fb_coherency.c >> @@ -16,6 +16,7 @@ >> #include <string.h> >> #include "igt.h" >> +#include "xe/xe_ioctl.h" >> typedef struct { >> int drm_fd; >> @@ -91,7 +92,7 @@ static struct igt_fb *prepare_fb(data_t *data) >> 0, 0, fb->width, fb->height, >> 0, 0, fb->width << 16, fb->height << 16); >> - if (!gem_has_lmem(data->drm_fd)) { >> + if (is_i915_device(data->drm_fd) && !gem_has_lmem(data->drm_fd)) { >> uint32_t caching; >> /* make sure caching mode has become UC/WT */ >> @@ -160,7 +161,10 @@ static void test_mmap_offset_wc(data_t *data) >> fb = prepare_fb(data); >> - buf = gem_mmap_offset__wc(data->drm_fd, fb->gem_handle, 0, >> fb->size, PROT_WRITE); >> + if (is_i915_device(data->drm_fd)) >> + buf = gem_mmap_offset__wc(data->drm_fd, fb->gem_handle, 0, >> fb->size, PROT_WRITE); >> + else >> + buf = xe_bo_mmap_ext(data->drm_fd, fb->gem_handle, fb->size, >> PROT_WRITE); >> check_buf_crc(data, buf, fb); >> } >> @@ -226,7 +230,7 @@ igt_main >> data_t data; >> igt_fixture { >> - data.drm_fd = drm_open_driver_master(DRIVER_INTEL); >> + data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); >> data.devid = intel_get_drm_devid(data.drm_fd); >> @@ -251,39 +255,38 @@ igt_main >> * Test category: functionality test >> */ >> igt_subtest_with_dynamic("memset-crc") { >> - if (gem_has_mappable_ggtt(data.drm_fd)) { >> + if (igt_draw_supports_method(data.drm_fd, IGT_DRAW_MMAP_GTT)) { >> igt_dynamic("mmap-gtt") >> test_mmap_gtt(&data); >> cleanup_crtc(&data); >> } >> - if (gem_mmap_offset__has_wc(data.drm_fd)) { >> + if (igt_draw_supports_method(data.drm_fd, IGT_DRAW_MMAP_WC)) { >> igt_dynamic("mmap-offset-wc") >> test_mmap_offset_wc(&data); >> cleanup_crtc(&data); >> } >> - if (gem_has_lmem(data.drm_fd)) { >> - igt_dynamic("mmap-offset-fixed") >> - test_mmap_offset_fixed(&data); >> + if (is_i915_device(data.drm_fd)) { > > Instead of using if (is_i915_device()), can we use > igt_require_i915(data.drm_fd) instead if these subtests are executable > on i915 driver only? No, we can't use igt_require_i915() here. For XE device, IGT will always throw a SKIP after the execution of "mmap-offset-wc". BTW, we can't use igt_fixture inside igt_subtest_*(). - Bhanu > >> + if (gem_has_lmem(data.drm_fd)) { >> + igt_dynamic("mmap-offset-fixed") >> + test_mmap_offset_fixed(&data); >> + } else if (gem_has_mmap_offset(data.drm_fd)) { >> + igt_dynamic("mmap-offset-uc") >> + test_mmap_offset_uc(&data); >> + } >> cleanup_crtc(&data); >> - } else if (gem_has_mmap_offset(data.drm_fd)) { >> - igt_dynamic("mmap-offset-uc") >> - test_mmap_offset_uc(&data); >> + if (gem_has_legacy_mmap(data.drm_fd) && >> + gem_mmap__has_wc(data.drm_fd)) { >> + igt_dynamic("mmap-legacy-wc") >> + test_legacy_mmap_wc(&data); >> - cleanup_crtc(&data); >> - } >> - >> - if (gem_has_legacy_mmap(data.drm_fd) && >> - gem_mmap__has_wc(data.drm_fd)) { >> - igt_dynamic("mmap-legacy-wc") >> - test_legacy_mmap_wc(&data); >> - >> - cleanup_crtc(&data); >> + cleanup_crtc(&data); >> + } >> } >> } ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [i-g-t V5 2/5] tests/i915/kms_fb_coherency: Add XE support 2023-10-25 7:43 ` Modem, Bhanuprakash @ 2023-10-26 5:23 ` Sharma, Swati2 2023-10-26 6:37 ` Sharma, Swati2 0 siblings, 1 reply; 14+ messages in thread From: Sharma, Swati2 @ 2023-10-26 5:23 UTC (permalink / raw) To: Modem, Bhanuprakash, igt-dev Hi Bhanu, On 25-Oct-23 1:13 PM, Modem, Bhanuprakash wrote: > Hi Swati, > > On Mon-23-10-2023 02:11 pm, Sharma, Swati2 wrote: >> Hi Bhanu, >> >> On 11-Sep-23 12:52 PM, Bhanuprakash Modem wrote: >>> Add XE driver support for kms tests. This patch will add a support >>> to call the corresponding apis based on the driver (i915/xe) >>> >>> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> >>> --- >>> tests/intel/kms_fb_coherency.c | 43 ++++++++++++++++++---------------- >>> 1 file changed, 23 insertions(+), 20 deletions(-) >>> >>> diff --git a/tests/intel/kms_fb_coherency.c >>> b/tests/intel/kms_fb_coherency.c >>> index c772ddcdc..745ffcdd2 100644 >>> --- a/tests/intel/kms_fb_coherency.c >>> +++ b/tests/intel/kms_fb_coherency.c >>> @@ -16,6 +16,7 @@ >>> #include <string.h> >>> #include "igt.h" >>> +#include "xe/xe_ioctl.h" >>> typedef struct { >>> int drm_fd; >>> @@ -91,7 +92,7 @@ static struct igt_fb *prepare_fb(data_t *data) >>> 0, 0, fb->width, fb->height, >>> 0, 0, fb->width << 16, fb->height << 16); >>> - if (!gem_has_lmem(data->drm_fd)) { >>> + if (is_i915_device(data->drm_fd) && !gem_has_lmem(data->drm_fd)) { >>> uint32_t caching; >>> /* make sure caching mode has become UC/WT */ >>> @@ -160,7 +161,10 @@ static void test_mmap_offset_wc(data_t *data) >>> fb = prepare_fb(data); >>> - buf = gem_mmap_offset__wc(data->drm_fd, fb->gem_handle, 0, >>> fb->size, PROT_WRITE); >>> + if (is_i915_device(data->drm_fd)) >>> + buf = gem_mmap_offset__wc(data->drm_fd, fb->gem_handle, 0, >>> fb->size, PROT_WRITE); >>> + else >>> + buf = xe_bo_mmap_ext(data->drm_fd, fb->gem_handle, fb->size, >>> PROT_WRITE); >>> check_buf_crc(data, buf, fb); >>> } >>> @@ -226,7 +230,7 @@ igt_main >>> data_t data; >>> igt_fixture { >>> - data.drm_fd = drm_open_driver_master(DRIVER_INTEL); >>> + data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); >>> data.devid = intel_get_drm_devid(data.drm_fd); >>> @@ -251,39 +255,38 @@ igt_main >>> * Test category: functionality test >>> */ >>> igt_subtest_with_dynamic("memset-crc") { >>> - if (gem_has_mappable_ggtt(data.drm_fd)) { >>> + if (igt_draw_supports_method(data.drm_fd, IGT_DRAW_MMAP_GTT)) { >>> igt_dynamic("mmap-gtt") >>> test_mmap_gtt(&data); >>> cleanup_crtc(&data); >>> } >>> - if (gem_mmap_offset__has_wc(data.drm_fd)) { >>> + if (igt_draw_supports_method(data.drm_fd, IGT_DRAW_MMAP_WC)) { >>> igt_dynamic("mmap-offset-wc") >>> test_mmap_offset_wc(&data); >>> cleanup_crtc(&data); >>> } >>> - if (gem_has_lmem(data.drm_fd)) { >>> - igt_dynamic("mmap-offset-fixed") >>> - test_mmap_offset_fixed(&data); >>> + if (is_i915_device(data.drm_fd)) { >> >> Instead of using if (is_i915_device()), can we use >> igt_require_i915(data.drm_fd) instead if these subtests are executable >> on i915 driver only? > > No, we can't use igt_require_i915() here. > > For XE device, IGT will always throw a SKIP after the execution of > "mmap-offset-wc". > > BTW, we can't use igt_fixture inside igt_subtest_*(). > > - Bhanu IMO its better to list the subtest to have mapping b/w i915 and xe which will help in validation matrix. If we need to go with above approach only, i guess we need to change other IGTs too like kms_pm_lpsp, kms_addfb_basic, kms_force_connector_basic, etc. to not list xe specific subtests. > >> >>> + if (gem_has_lmem(data.drm_fd)) { >>> + igt_dynamic("mmap-offset-fixed") >>> + test_mmap_offset_fixed(&data); >>> + } else if (gem_has_mmap_offset(data.drm_fd)) { >>> + igt_dynamic("mmap-offset-uc") >>> + test_mmap_offset_uc(&data); >>> + } >>> cleanup_crtc(&data); >>> - } else if (gem_has_mmap_offset(data.drm_fd)) { >>> - igt_dynamic("mmap-offset-uc") >>> - test_mmap_offset_uc(&data); >>> + if (gem_has_legacy_mmap(data.drm_fd) && >>> + gem_mmap__has_wc(data.drm_fd)) { >>> + igt_dynamic("mmap-legacy-wc") >>> + test_legacy_mmap_wc(&data); >>> - cleanup_crtc(&data); >>> - } >>> - >>> - if (gem_has_legacy_mmap(data.drm_fd) && >>> - gem_mmap__has_wc(data.drm_fd)) { >>> - igt_dynamic("mmap-legacy-wc") >>> - test_legacy_mmap_wc(&data); >>> - >>> - cleanup_crtc(&data); >>> + cleanup_crtc(&data); >>> + } >>> } >>> } ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [i-g-t V5 2/5] tests/i915/kms_fb_coherency: Add XE support 2023-10-26 5:23 ` Sharma, Swati2 @ 2023-10-26 6:37 ` Sharma, Swati2 0 siblings, 0 replies; 14+ messages in thread From: Sharma, Swati2 @ 2023-10-26 6:37 UTC (permalink / raw) To: Modem, Bhanuprakash, igt-dev Hi Bhanu, Sorry, ignore my comment. I thought its subtest. That comment is valid at subtest level, since it is dynamic subtest we can go with your approach. Patch LGTM Reviewed-by: Swati Sharma <swati2.sharma@intel.com> On 26-Oct-23 10:53 AM, Sharma, Swati2 wrote: > Hi Bhanu, > > On 25-Oct-23 1:13 PM, Modem, Bhanuprakash wrote: >> Hi Swati, >> >> On Mon-23-10-2023 02:11 pm, Sharma, Swati2 wrote: >>> Hi Bhanu, >>> >>> On 11-Sep-23 12:52 PM, Bhanuprakash Modem wrote: >>>> Add XE driver support for kms tests. This patch will add a support >>>> to call the corresponding apis based on the driver (i915/xe) >>>> >>>> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> >>>> --- >>>> tests/intel/kms_fb_coherency.c | 43 >>>> ++++++++++++++++++---------------- >>>> 1 file changed, 23 insertions(+), 20 deletions(-) >>>> >>>> diff --git a/tests/intel/kms_fb_coherency.c >>>> b/tests/intel/kms_fb_coherency.c >>>> index c772ddcdc..745ffcdd2 100644 >>>> --- a/tests/intel/kms_fb_coherency.c >>>> +++ b/tests/intel/kms_fb_coherency.c >>>> @@ -16,6 +16,7 @@ >>>> #include <string.h> >>>> #include "igt.h" >>>> +#include "xe/xe_ioctl.h" >>>> typedef struct { >>>> int drm_fd; >>>> @@ -91,7 +92,7 @@ static struct igt_fb *prepare_fb(data_t *data) >>>> 0, 0, fb->width, fb->height, >>>> 0, 0, fb->width << 16, fb->height << 16); >>>> - if (!gem_has_lmem(data->drm_fd)) { >>>> + if (is_i915_device(data->drm_fd) && !gem_has_lmem(data->drm_fd)) { >>>> uint32_t caching; >>>> /* make sure caching mode has become UC/WT */ >>>> @@ -160,7 +161,10 @@ static void test_mmap_offset_wc(data_t *data) >>>> fb = prepare_fb(data); >>>> - buf = gem_mmap_offset__wc(data->drm_fd, fb->gem_handle, 0, >>>> fb->size, PROT_WRITE); >>>> + if (is_i915_device(data->drm_fd)) >>>> + buf = gem_mmap_offset__wc(data->drm_fd, fb->gem_handle, 0, >>>> fb->size, PROT_WRITE); >>>> + else >>>> + buf = xe_bo_mmap_ext(data->drm_fd, fb->gem_handle, >>>> fb->size, PROT_WRITE); >>>> check_buf_crc(data, buf, fb); >>>> } >>>> @@ -226,7 +230,7 @@ igt_main >>>> data_t data; >>>> igt_fixture { >>>> - data.drm_fd = drm_open_driver_master(DRIVER_INTEL); >>>> + data.drm_fd = drm_open_driver_master(DRIVER_INTEL | >>>> DRIVER_XE); >>>> data.devid = intel_get_drm_devid(data.drm_fd); >>>> @@ -251,39 +255,38 @@ igt_main >>>> * Test category: functionality test >>>> */ >>>> igt_subtest_with_dynamic("memset-crc") { >>>> - if (gem_has_mappable_ggtt(data.drm_fd)) { >>>> + if (igt_draw_supports_method(data.drm_fd, >>>> IGT_DRAW_MMAP_GTT)) { >>>> igt_dynamic("mmap-gtt") >>>> test_mmap_gtt(&data); >>>> cleanup_crtc(&data); >>>> } >>>> - if (gem_mmap_offset__has_wc(data.drm_fd)) { >>>> + if (igt_draw_supports_method(data.drm_fd, IGT_DRAW_MMAP_WC)) { >>>> igt_dynamic("mmap-offset-wc") >>>> test_mmap_offset_wc(&data); >>>> cleanup_crtc(&data); >>>> } >>>> - if (gem_has_lmem(data.drm_fd)) { >>>> - igt_dynamic("mmap-offset-fixed") >>>> - test_mmap_offset_fixed(&data); >>>> + if (is_i915_device(data.drm_fd)) { >>> >>> Instead of using if (is_i915_device()), can we use >>> igt_require_i915(data.drm_fd) instead if these subtests are >>> executable on i915 driver only? >> >> No, we can't use igt_require_i915() here. >> >> For XE device, IGT will always throw a SKIP after the execution of >> "mmap-offset-wc". >> >> BTW, we can't use igt_fixture inside igt_subtest_*(). >> >> - Bhanu > > IMO its better to list the subtest to have mapping b/w i915 and xe which > will help in validation matrix. > If we need to go with above approach only, i guess we need to change > other IGTs too like kms_pm_lpsp, kms_addfb_basic, > kms_force_connector_basic, etc. to not list xe specific subtests. > >> >>> >>>> + if (gem_has_lmem(data.drm_fd)) { >>>> + igt_dynamic("mmap-offset-fixed") >>>> + test_mmap_offset_fixed(&data); >>>> + } else if (gem_has_mmap_offset(data.drm_fd)) { >>>> + igt_dynamic("mmap-offset-uc") >>>> + test_mmap_offset_uc(&data); >>>> + } >>>> cleanup_crtc(&data); >>>> - } else if (gem_has_mmap_offset(data.drm_fd)) { >>>> - igt_dynamic("mmap-offset-uc") >>>> - test_mmap_offset_uc(&data); >>>> + if (gem_has_legacy_mmap(data.drm_fd) && >>>> + gem_mmap__has_wc(data.drm_fd)) { >>>> + igt_dynamic("mmap-legacy-wc") >>>> + test_legacy_mmap_wc(&data); >>>> - cleanup_crtc(&data); >>>> - } >>>> - >>>> - if (gem_has_legacy_mmap(data.drm_fd) && >>>> - gem_mmap__has_wc(data.drm_fd)) { >>>> - igt_dynamic("mmap-legacy-wc") >>>> - test_legacy_mmap_wc(&data); >>>> - >>>> - cleanup_crtc(&data); >>>> + cleanup_crtc(&data); >>>> + } >>>> } >>>> } ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] [i-g-t V5 3/5] tests/i915/kms_fbcon_fbt: Add XE support 2023-09-11 7:22 [igt-dev] [i-g-t V5 0/5] Add XE suppor for display tests Bhanuprakash Modem 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 1/5] tests/i915/kms_ccs: Add XE support Bhanuprakash Modem 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 2/5] tests/i915/kms_fb_coherency: " Bhanuprakash Modem @ 2023-09-11 7:22 ` Bhanuprakash Modem 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 4/5] tests/kms_prime: " Bhanuprakash Modem ` (4 subsequent siblings) 7 siblings, 0 replies; 14+ messages in thread From: Bhanuprakash Modem @ 2023-09-11 7:22 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi Add XE driver support for kms tests. Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> --- tests/intel/kms_fbcon_fbt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/intel/kms_fbcon_fbt.c b/tests/intel/kms_fbcon_fbt.c index 2cb0ffdb4..b4c630bad 100644 --- a/tests/intel/kms_fbcon_fbt.c +++ b/tests/intel/kms_fbcon_fbt.c @@ -421,7 +421,7 @@ static void setup_environment(struct drm_info *drm) { int i; - drm->fd = drm_open_driver_master(DRIVER_INTEL); + drm->fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); igt_require(drm->fd >= 0); drm->debugfs_fd = igt_debugfs_dir(drm->fd); igt_require(drm->debugfs_fd >= 0); -- 2.40.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* [igt-dev] [i-g-t V5 4/5] tests/kms_prime: Add XE support 2023-09-11 7:22 [igt-dev] [i-g-t V5 0/5] Add XE suppor for display tests Bhanuprakash Modem ` (2 preceding siblings ...) 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 3/5] tests/i915/kms_fbcon_fbt: " Bhanuprakash Modem @ 2023-09-11 7:22 ` Bhanuprakash Modem 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 5/5] tests/intel-ci/xe: Drop Xe supported tests from blocklist Bhanuprakash Modem ` (3 subsequent siblings) 7 siblings, 0 replies; 14+ messages in thread From: Bhanuprakash Modem @ 2023-09-11 7:22 UTC (permalink / raw) To: igt-dev Add XE driver support for kms tests. V2: - Use rendercopy method for both i915 & xe - Minor cleanup V3: - New patch for cleanup & rendercopy V4: - Fallback to blitter V5: - Rebase Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/kms_prime.c | 261 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 223 insertions(+), 38 deletions(-) diff --git a/tests/kms_prime.c b/tests/kms_prime.c index a14006147..8fc1ed524 100644 --- a/tests/kms_prime.c +++ b/tests/kms_prime.c @@ -27,9 +27,15 @@ #include "igt_sysfs.h" #include <fcntl.h> +#include <limits.h> #include <sys/ioctl.h> #include <sys/poll.h> #include <time.h> +#include "lib/intel_blt.h" +#include "lib/intel_mocs.h" +#include "xe/xe_ioctl.h" +#include "xe/xe_query.h" + /** * TEST: kms prime * Category: Display @@ -147,7 +153,29 @@ static void prepare_scratch(int exporter_fd, struct dumb_bo *scratch, scratch->height = mode->vdisplay; scratch->bpp = 32; - if (!is_i915_device(exporter_fd)) { + if (is_intel_device(exporter_fd)) { + igt_calc_fb_size(exporter_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888, + DRM_FORMAT_MOD_LINEAR, &scratch->size, &scratch->pitch); + + if (is_i915_device(exporter_fd)) { + if (gem_has_lmem(exporter_fd)) + scratch->handle = gem_create_in_memory_regions(exporter_fd, scratch->size, + REGION_LMEM(0), REGION_SMEM); + else + scratch->handle = gem_create_in_memory_regions(exporter_fd, scratch->size, + REGION_SMEM); + + ptr = gem_mmap__device_coherent(exporter_fd, scratch->handle, 0, + scratch->size, PROT_WRITE | PROT_READ); + } else { + scratch->handle = xe_bo_create_flags(exporter_fd, 0, + ALIGN(scratch->size, xe_get_default_alignment(exporter_fd)), + vram_if_possible(exporter_fd, 0)); + + ptr = xe_bo_mmap_ext(exporter_fd, scratch->handle, + scratch->size, PROT_READ | PROT_WRITE); + } + } else { scratch->handle = kmstest_dumb_create(exporter_fd, ALIGN(scratch->width, 256), scratch->height, scratch->bpp, @@ -155,18 +183,6 @@ static void prepare_scratch(int exporter_fd, struct dumb_bo *scratch, ptr = kmstest_dumb_map_buffer(exporter_fd, scratch->handle, scratch->size, PROT_WRITE); - } else { - igt_calc_fb_size(exporter_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888, - DRM_FORMAT_MOD_LINEAR, &scratch->size, &scratch->pitch); - if (gem_has_lmem(exporter_fd)) - scratch->handle = gem_create_in_memory_regions(exporter_fd, scratch->size, - REGION_LMEM(0), REGION_SMEM); - else - scratch->handle = gem_create_in_memory_regions(exporter_fd, scratch->size, - REGION_SMEM); - - ptr = gem_mmap__device_coherent(exporter_fd, scratch->handle, 0, scratch->size, - PROT_WRITE | PROT_READ); } for (size_t idx = 0; idx < scratch->size / sizeof(*ptr); ++idx) @@ -185,23 +201,52 @@ static void prepare_fb(int importer_fd, struct dumb_bo *scratch, struct igt_fb * color_encoding, color_range); } +static struct blt_copy_object *blt_fb_init(const struct igt_fb *fb, + uint32_t memregion, uint32_t pitch) +{ + uint32_t name, handle; + struct blt_copy_object *blt; + + blt = malloc(sizeof(*blt)); + igt_assert(blt); + + name = gem_flink(fb->fd, fb->gem_handle); + handle = gem_open(fb->fd, name); + + blt_set_object(blt, handle, fb->size, memregion, + intel_get_uc_mocs(fb->fd), + 0, 0, 0); + + blt_set_geom(blt, pitch, 0, 0, fb->width, fb->height, 0, 0); + + blt->plane_offset = 0; + + blt->ptr = xe_bo_mmap_ext(fb->fd, handle, fb->size, + PROT_READ | PROT_WRITE); + return blt; +} + static void import_fb(int importer_fd, struct igt_fb *fb, int dmabuf_fd, uint32_t pitch) { uint32_t offsets[4] = {}, pitches[4] = {}, handles[4] = {}, temp_buf_handle; int ret; + struct igt_fb dst_fb; + + if ((is_i915_device(importer_fd) && gem_has_lmem(importer_fd)) || + (is_xe_device(importer_fd) && xe_has_vram(importer_fd))) { + uint64_t fb_size = 0; + uint64_t ahnd = 0; - if (is_i915_device(importer_fd)) { - if (gem_has_lmem(importer_fd)) { - uint64_t ahnd = get_reloc_ahnd(importer_fd, 0); - uint64_t fb_size = 0; + igt_info("Importer is dGPU\n"); + temp_buf_handle = prime_fd_to_handle(importer_fd, dmabuf_fd); + igt_assert(temp_buf_handle > 0); + fb->gem_handle = igt_create_bo_with_dimensions(importer_fd, fb->width, fb->height, + fb->drm_format, fb->modifier, pitch, &fb_size, NULL, NULL); + igt_assert(fb->gem_handle > 0); - igt_info("Importer is dGPU\n"); - temp_buf_handle = prime_fd_to_handle(importer_fd, dmabuf_fd); - igt_assert(temp_buf_handle > 0); - fb->gem_handle = igt_create_bo_with_dimensions(importer_fd, fb->width, fb->height, - fb->drm_format, fb->modifier, pitch, &fb_size, NULL, NULL); - igt_assert(fb->gem_handle > 0); + if (is_i915_device(importer_fd)) { + ahnd = get_reloc_ahnd(importer_fd, 0); igt_blitter_src_copy(importer_fd, ahnd, 0, NULL, temp_buf_handle, 0, pitch, fb->modifier, 0, 0, fb_size, fb->width, @@ -212,7 +257,62 @@ static void import_fb(int importer_fd, struct igt_fb *fb, gem_close(importer_fd, temp_buf_handle); put_ahnd(ahnd); } else { - fb->gem_handle = prime_fd_to_handle(importer_fd, dmabuf_fd); + uint32_t xe_bb; + uint64_t bb_size = 4096; + struct blt_copy_data blt = {}; + struct blt_copy_object *src, *dst; + struct blt_block_copy_data_ext ext = {}; + uint32_t mem_region; + intel_ctx_t *xe_ctx; + uint32_t vm, xe_exec; + + struct drm_xe_engine_class_instance inst = { + .engine_class = DRM_XE_ENGINE_CLASS_COPY, + }; + vm = xe_vm_create(importer_fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0); + xe_exec = xe_exec_queue_create(importer_fd, vm, &inst, 0); + xe_ctx = intel_ctx_xe(importer_fd, vm, xe_exec, 0, 0, 0); + mem_region = vram_if_possible(importer_fd, 0); + + ahnd = intel_allocator_open_full(importer_fd, xe_ctx->vm, 0, 0, + INTEL_ALLOCATOR_SIMPLE, + ALLOC_STRATEGY_LOW_TO_HIGH, 0); + + bb_size = ALIGN(bb_size + xe_cs_prefetch_size(importer_fd), + xe_get_default_alignment(importer_fd)); + xe_bb = xe_bo_create_flags(importer_fd, 0, bb_size, mem_region); + + + + igt_init_fb(&dst_fb, importer_fd, fb->width, fb->height, + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, + IGT_COLOR_YCBCR_BT709, IGT_COLOR_YCBCR_LIMITED_RANGE); + dst_fb.gem_handle = temp_buf_handle; + + src = blt_fb_init(fb, mem_region, pitch); + dst = blt_fb_init(&dst_fb, mem_region, pitch); + + blt_copy_init(importer_fd, &blt); + blt.color_depth = 32; + blt_set_copy_object(&blt.src, src); + blt_set_copy_object(&blt.dst, dst); + + blt_set_object_ext(&ext.src, 0, fb->width, fb->height, + SURFACE_TYPE_2D); + blt_set_object_ext(&ext.src, 0, fb->width, fb->height, + SURFACE_TYPE_2D); + + blt_set_batch(&blt.bb, xe_bb, bb_size, mem_region); + + blt_block_copy(importer_fd, xe_ctx, NULL, ahnd, &blt, &ext); + + blt_destroy_object(importer_fd, dst); + + put_ahnd(ahnd); + gem_close(importer_fd, xe_bb); + xe_exec_queue_destroy(importer_fd, xe_exec); + xe_vm_destroy(importer_fd, vm); + free(xe_ctx); } } else { fb->gem_handle = prime_fd_to_handle(importer_fd, dmabuf_fd); @@ -365,12 +465,6 @@ static bool has_connected_output(int drm_fd) return false; } -static void validate_d3_hot(int drm_fd) -{ - igt_assert(igt_debugfs_search(drm_fd, "i915_runtime_pm_status", "GPU idle: yes")); - igt_assert(igt_debugfs_search(drm_fd, "i915_runtime_pm_status", "PCI device power state: D3hot [3]")); -} - static void kms_poll_state_restore(void) { int sysfs_fd; @@ -392,6 +486,88 @@ static void kms_poll_disable(void) close(sysfs_fd); } +static bool runtime_usage_available(struct pci_device *pci) +{ + char name[PATH_MAX]; + snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/runtime_usage", + pci->domain, pci->bus, pci->dev, pci->func); + return access(name, F_OK) == 0; +} + +static bool in_d3_hot(struct pci_device *pci) +{ + uint16_t val; + + /* We need to wait for the autosuspend to kick in before we can check */ + if (!igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED)) + return false; + + if (runtime_usage_available(pci) && + igt_pm_get_runtime_usage(pci) != 0) + return false; + + igt_assert_eq(pci_device_cfg_read_u16(pci, &val, 0xd4), 0); + + return (val & 0x3) == 0x3; +} + +static void validate_d3_hot(int drm_fd, struct pci_device *pci) +{ + if (is_i915_device(drm_fd)) { + igt_assert(igt_debugfs_search(drm_fd, "i915_runtime_pm_status", "GPU idle: yes")); + igt_assert(igt_debugfs_search(drm_fd, "i915_runtime_pm_status", "PCI device power state: D3hot [3]")); + } else { + igt_assert(in_d3_hot(pci)); + } +} + +static int open_d3_allowed(struct pci_device *pci) +{ + char name[PATH_MAX]; + int fd; + + snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/d3cold_allowed", + pci->domain, pci->bus, pci->dev, pci->func); + + fd = open(name, O_RDWR); + igt_assert_f(fd >= 0, "Can't open %s\n", name); + + return fd; +} + +static void get_d3_allowed(struct pci_device *pci, char *d3_allowed) +{ + int fd = open_d3_allowed(pci); + + igt_assert(read(fd, d3_allowed, 2)); + close(fd); +} + +static void set_d3_allowed(struct pci_device *pci, const char *d3_allowed) +{ + int fd = open_d3_allowed(pci); + + igt_assert(write(fd, d3_allowed, 2)); + close(fd); +} + +static void setup_d3_hot(int fd, struct pci_device *pci) +{ + if (is_xe_device(fd)) { + igt_assert(igt_setup_runtime_pm(fd)); + + set_d3_allowed(pci, "0\n"); + + igt_assert(in_d3_hot(pci)); + } else { + igt_set_timeout(10, "Wait for dGPU to enter D3hot before starting the subtest"); + while (!igt_debugfs_search(fd, + "i915_runtime_pm_status", + "PCI device power state: D3hot [3]")); + igt_reset_timeout(); + } +} + igt_main { int first_fd = -1; @@ -445,21 +621,28 @@ igt_main igt_describe("Validate pci state of dGPU when dGPU is idle and scanout is on iGPU"); igt_subtest("D3hot") { - igt_require_f(is_i915_device(second_fd_hybrid), "i915 device required\n"); - igt_require_f(gem_has_lmem(second_fd_hybrid), "Second GPU is not dGPU\n"); + char d3_allowed[2]; + struct pci_device *pci; + + igt_require_f(is_intel_device(second_fd_hybrid), "intel device required\n"); + if (is_i915_device(second_fd_hybrid)) + igt_require_f(gem_has_lmem(second_fd_hybrid), "Second GPU is not dGPU\n"); + else + igt_require_f(xe_has_vram(second_fd_hybrid), "Second GPU is not dGPU\n"); igt_require_f(first_output, "No display connected to iGPU\n"); igt_require_f(!second_output, "Display connected to dGPU\n"); kms_poll_disable(); - igt_set_timeout(10, "Wait for dGPU to enter D3hot before starting the subtest"); - while (!igt_debugfs_search(second_fd_hybrid, - "i915_runtime_pm_status", - "PCI device power state: D3hot [3]")); - igt_reset_timeout(); + pci = igt_device_get_pci_device(second_fd_hybrid); + get_d3_allowed(pci, d3_allowed); + + setup_d3_hot(second_fd_hybrid, pci); test_basic_modeset(first_fd); - validate_d3_hot(second_fd_hybrid); + validate_d3_hot(second_fd_hybrid, pci); + + set_d3_allowed(pci, d3_allowed); } igt_fixture { @@ -477,6 +660,8 @@ igt_main igt_require(second_fd_vgem >= 0); if (is_i915_device(first_fd)) igt_require(!gem_has_lmem(first_fd)); + if (is_xe_device(first_fd)) + igt_require(!xe_has_vram(first_fd)); } igt_describe("Make a dumb color buffer, export to another device and" -- 2.40.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* [igt-dev] [i-g-t V5 5/5] tests/intel-ci/xe: Drop Xe supported tests from blocklist 2023-09-11 7:22 [igt-dev] [i-g-t V5 0/5] Add XE suppor for display tests Bhanuprakash Modem ` (3 preceding siblings ...) 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 4/5] tests/kms_prime: " Bhanuprakash Modem @ 2023-09-11 7:22 ` Bhanuprakash Modem 2023-09-11 8:30 ` [igt-dev] ✓ CI.xeBAT: success for Add XE suppor for display tests (rev6) Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 14+ messages in thread From: Bhanuprakash Modem @ 2023-09-11 7:22 UTC (permalink / raw) To: igt-dev Drop kms_ccs, kms_fbcon_fbt from XE blocklist. Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/intel-ci/xe.blocklist.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt index d496a3f6d..5acc828c8 100644 --- a/tests/intel-ci/xe.blocklist.txt +++ b/tests/intel-ci/xe.blocklist.txt @@ -56,9 +56,7 @@ igt@kms_bw@.*-(5|6|7|8)-displays-.* igt@kms_draw_crc@draw-method-(mmap-cpu|mmap-gtt|pwrite) igt@kms_pipe_b_c_ivb@.* igt@kms_pwrite_crc -igt@kms_ccs@.* igt@kms_frontbuffer_tracking@.*-(cpu|gtt|pwrite) -igt@kms_fbcon_fbt@(fbc|psr)(-suspend) igt@kms_fence_pin_leak igt@kms_busy@.* igt@kms_psr@.*_mmap_(cpu|gtt) -- 2.40.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Add XE suppor for display tests (rev6) 2023-09-11 7:22 [igt-dev] [i-g-t V5 0/5] Add XE suppor for display tests Bhanuprakash Modem ` (4 preceding siblings ...) 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 5/5] tests/intel-ci/xe: Drop Xe supported tests from blocklist Bhanuprakash Modem @ 2023-09-11 8:30 ` Patchwork 2023-09-11 8:35 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-11 9:43 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 7 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-09-11 8:30 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1739 bytes --] == Series Details == Series: Add XE suppor for display tests (rev6) URL : https://patchwork.freedesktop.org/series/119525/ State : success == Summary == CI Bug Log - changes from XEIGT_7478_BAT -> XEIGTPW_9761_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9761_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * {igt@xe_create@create-execqueues-noleak}: - bat-atsm-2: [FAIL][1] ([Intel XE#524]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7478/bat-atsm-2/igt@xe_create@create-execqueues-noleak.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9761/bat-atsm-2/igt@xe_create@create-execqueues-noleak.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 Build changes ------------- * IGT: IGT_7478 -> IGTPW_9761 * Linux: xe-364-e51e857ffad411e1b78821866e9f02187345a11a -> xe-365-0533b5d42b2f8ec916646c10715ac45215e87689 IGTPW_9761: 9761 IGT_7478: 605d1288086602b23d0d73fee5022dcd329d9d3e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-364-e51e857ffad411e1b78821866e9f02187345a11a: e51e857ffad411e1b78821866e9f02187345a11a xe-365-0533b5d42b2f8ec916646c10715ac45215e87689: 0533b5d42b2f8ec916646c10715ac45215e87689 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9761/index.html [-- Attachment #2: Type: text/html, Size: 2325 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add XE suppor for display tests (rev6) 2023-09-11 7:22 [igt-dev] [i-g-t V5 0/5] Add XE suppor for display tests Bhanuprakash Modem ` (5 preceding siblings ...) 2023-09-11 8:30 ` [igt-dev] ✓ CI.xeBAT: success for Add XE suppor for display tests (rev6) Patchwork @ 2023-09-11 8:35 ` Patchwork 2023-09-11 9:43 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 7 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-09-11 8:35 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3079 bytes --] == Series Details == Series: Add XE suppor for display tests (rev6) URL : https://patchwork.freedesktop.org/series/119525/ State : success == Summary == CI Bug Log - changes from CI_DRM_13617 -> IGTPW_9761 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9761 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [PASS][1] -> [DMESG-FAIL][2] ([i915#5334]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_frontbuffer_tracking@basic: - fi-bsw-nick: [PASS][3] -> [FAIL][4] ([i915#9276]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [PASS][5] -> [FAIL][6] ([IGT#3] / [i915#6121]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html #### Possible fixes #### * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][7] ([i915#8668]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#9276]: https://gitlab.freedesktop.org/drm/intel/issues/9276 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7478 -> IGTPW_9761 CI-20190529: 20190529 CI_DRM_13617: 232c052bbad9247620eb164d559c1e0a9eae0353 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9761: 9761 IGT_7478: 605d1288086602b23d0d73fee5022dcd329d9d3e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- -igt@gem_compute@compute-square == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/index.html [-- Attachment #2: Type: text/html, Size: 3765 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Add XE suppor for display tests (rev6) 2023-09-11 7:22 [igt-dev] [i-g-t V5 0/5] Add XE suppor for display tests Bhanuprakash Modem ` (6 preceding siblings ...) 2023-09-11 8:35 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-09-11 9:43 ` Patchwork 7 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-09-11 9:43 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 94193 bytes --] == Series Details == Series: Add XE suppor for display tests (rev6) URL : https://patchwork.freedesktop.org/series/119525/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13617_full -> IGTPW_9761_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9761_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9761_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9761_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ccs@block-multicopy-compressed: - shard-mtlp: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@gem_ccs@block-multicopy-compressed.html * igt@kms_plane_multiple@tiling-x@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][2] +3 other tests fail [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-12/igt@kms_plane_multiple@tiling-x@pipe-d-hdmi-a-3.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-tglu: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_universal_plane@cursor-fb-leak-pipe-c: - shard-mtlp: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html * igt@sysfs_timeslice_duration@timeout@vecs1: - shard-dg2: [PASS][7] -> [TIMEOUT][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-7/igt@sysfs_timeslice_duration@timeout@vecs1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-10/igt@sysfs_timeslice_duration@timeout@vecs1.html #### Warnings #### * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-dg1: [SKIP][9] ([i915#5325]) -> [SKIP][10] +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy-new-ctx.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-rkl: [SKIP][11] ([i915#5325]) -> [SKIP][12] +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-2/igt@gem_ccs@suspend-resume.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-1/igt@gem_ccs@suspend-resume.html - shard-tglu: [SKIP][13] ([i915#5325]) -> [SKIP][14] +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-tglu-7/igt@gem_ccs@suspend-resume.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-tglu-6/igt@gem_ccs@suspend-resume.html - shard-mtlp: [SKIP][15] ([i915#5325]) -> [SKIP][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-7/igt@gem_ccs@suspend-resume.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@gem_ccs@suspend-resume.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_pm_dc@dc6-psr}: - shard-mtlp: NOTRUN -> [FAIL][17] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-2/igt@kms_pm_dc@dc6-psr.html New tests --------- New tests have been introduced between CI_DRM_13617_full and IGTPW_9761_full: ### New IGT tests (8) ### * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_atomic_transition@plane-all-transition-fencing@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_atomic_transition@plane-all-transition-fencing@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_atomic_transition@plane-all-transition@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_atomic_transition@plane-all-transition@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9761_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8411]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-2/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#7701]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-2/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8414]) +18 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-7/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8414]) +21 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-3/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8414]) +4 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-13/igt@drm_fdinfo@most-busy-idle-check-all@bcs0.html * igt@feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#1839]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-2/igt@feature_discovery@display-2x.html * igt@feature_discovery@display-4x: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#1839]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-6/igt@feature_discovery@display-4x.html * igt@gem_busy@semaphore: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#3936]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-3/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#3555]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@gem_ccs@block-copy-compressed.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8562]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-2/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8555]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#8555]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@legacy-engines-hang@bsd1: - shard-mtlp: [PASS][30] -> [FAIL][31] ([i915#2410]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-1/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html * igt@gem_ctx_persistence@legacy-engines-persistence: - shard-snb: NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#1099]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-snb6/igt@gem_ctx_persistence@legacy-engines-persistence.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-3/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#280]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-6/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@in-flight-suspend: - shard-mtlp: NOTRUN -> [ABORT][35] ([i915#7892] / [i915#9262]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-2/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4771]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-7/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@hog: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4812]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-5/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#4525]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: [PASS][39] -> [FAIL][40] ([i915#4475]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-6/igt@gem_exec_capture@pi@vcs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_fair@basic-none: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4473] / [i915#4771]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-rkl: [PASS][42] -> [FAIL][43] ([i915#2842]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-6/igt@gem_exec_fair@basic-none-share@rcs0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-7/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fence@submit3: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4812]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-6/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#3711]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-11/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#7697]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-7/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][48] ([fdo#109283] / [i915#5107]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-19/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +9 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#3281]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_reloc@basic-write-wc: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3281]) +12 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@gem_exec_reloc@basic-write-wc.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4537]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: NOTRUN -> [FAIL][56] ([i915#9051]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-6/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4812]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-12/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-1/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4860]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][60] -> [DMESG-WARN][61] ([i915#4936] / [i915#5493]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-7/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_mmap_gtt@coherency: - shard-rkl: NOTRUN -> [SKIP][63] ([fdo#111656]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-3/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4077]) +13 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-11/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_gtt@hang-user: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) +19 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@gem_mmap_gtt@hang-user.html * igt@gem_mmap_wc@read-write: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4083]) +9 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-2/igt@gem_mmap_wc@read-write.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +5 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-6/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#3282]) +6 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-7/igt@gem_pread@snoop.html - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3282]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-4/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-buffer: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4270]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4270]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-4/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-5/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4270]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-18/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3282]) +8 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-2/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) +12 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4079]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4885]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-2/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][78] ([i915#5889]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-7/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4077]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-15/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4079]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@gem_tiled_pread_basic.html * igt@gem_unfence_active_buffers: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4879]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3297]) +5 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4880]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gen7_exec_parse@chained-batch: - shard-dg2: NOTRUN -> [SKIP][85] ([fdo#109289]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-11/igt@gen7_exec_parse@chained-batch.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][86] ([fdo#109289]) +6 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-6/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#2527]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-19/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#2856]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-11/igt@gen9_exec_parse@batch-without-end.html - shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-2/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@unaligned-jump: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#2856]) +6 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-7/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: [PASS][91] -> [FAIL][92] ([i915#8456]) +2 other tests fail [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-4/igt@i915_hangman@detector@vcs0.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-3/igt@i915_hangman@detector@vcs0.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#6227]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-7/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [DMESG-WARN][94] ([i915#7061] / [i915#8617]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: NOTRUN -> [INCOMPLETE][95] ([i915#8489]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#6412]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-2/igt@i915_module_load@resize-bar.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#8436]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#6590]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-18/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: NOTRUN -> [SKIP][99] ([fdo#109289]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: [PASS][100] -> [SKIP][101] ([i915#8403]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-accuracy.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [PASS][102] -> [FAIL][103] ([i915#3591]) +1 other test fail [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [PASS][104] -> [SKIP][105] ([i915#1397]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-15/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#1397]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#1397]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-3/igt@i915_pm_rpm@modeset-lpsp-stress.html - shard-rkl: NOTRUN -> [SKIP][108] ([i915#1397]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-3/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][109] ([fdo#109506]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-6/igt@i915_pm_rpm@pc8-residency.html - shard-mtlp: NOTRUN -> [SKIP][110] ([fdo#109293]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@i915_pm_rpm@pc8-residency.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#6621]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-2/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][112] ([i915#8346]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#8925]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-11/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_pm_rps@thresholds@gt1: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#8925]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@i915_pm_rps@thresholds@gt1.html * igt@i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4387]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-16/igt@i915_pm_sseu@full-enable.html * igt@i915_suspend@sysfs-reader: - shard-mtlp: NOTRUN -> [ABORT][116] ([i915#9262]) +6 other tests abort [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#4212]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-7/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4212]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-1/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#8502]) +7 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][120] ([i915#8247]) +3 other tests fail [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-18/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6228]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-7/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][122] ([fdo#111614]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-10/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#5286]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5286]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [FAIL][125] ([i915#5138]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][126] ([fdo#111614]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-7/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#3638]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-13/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5190]) +8 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6187]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][130] ([fdo#111615]) +18 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][131] ([fdo#110723]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_joiner@2x-modeset: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#2705]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-7/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3689] / [i915#5354]) +18 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-10/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-16/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3886] / [i915#6095]) +17 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#5354]) +60 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-7/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6095]) +53 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-3/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#5354] / [i915#6095]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-15/igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#3689] / [i915#3886] / [i915#5354]) +8 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-1/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#3734] / [i915#5354] / [i915#6095]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-1/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#5354] / [i915#6095]) +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-7/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][143] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-tglu-10/igt@kms_ccs@pipe-b-missing-ccs-buffer-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#5354]) +5 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-4/igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#5354] / [i915#6095]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-tglu-10/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#3689] / [i915#5354] / [i915#6095]) +5 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-15/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#4087]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@kms_chamelium_color@ctm-limited-range: - shard-mtlp: NOTRUN -> [SKIP][148] ([fdo#111827]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-2/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][149] ([fdo#111827]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-7/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#7828]) +9 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-10/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html - shard-rkl: NOTRUN -> [SKIP][151] ([i915#7828]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-3/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#7828]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-16/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#7828]) +18 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#7828]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-tglu-3/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][155] ([i915#7173]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#3299]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#3116] / [i915#3299]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-tglu-6/igt@kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3299]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@type1: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#6944]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#7118]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-2/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][161] ([fdo#109279] / [i915#3359]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#3359]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#3555]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3359]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3555]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-max-size.html - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8814]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#3555]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-4/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#3359]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][169] ([fdo#111825]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-1/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#4103] / [i915#4213]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-16/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#4213]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3546]) +5 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][173] ([fdo#109274] / [i915#5354]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][174] -> [FAIL][175] ([i915#2346]) +1 other test fail [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#9227]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#9226] / [i915#9261]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#8588]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][179] ([fdo#109271]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-glk4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#8812]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][181] ([i915#8812]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#3840] / [i915#9159]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#3840]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fence_pin_leak: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#4881]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][186] ([fdo#109274]) +5 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-2/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-snb: NOTRUN -> [SKIP][187] ([fdo#109271] / [fdo#111767]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-snb4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#8381]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences.html - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#8381]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][190] ([fdo#111767] / [i915#3637]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-dg1: NOTRUN -> [SKIP][191] ([fdo#111767] / [fdo#111825]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-13/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3637]) +11 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg1: NOTRUN -> [SKIP][193] ([fdo#111825]) +8 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-12/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-suspend-interruptible@a-vga1: - shard-snb: NOTRUN -> [DMESG-WARN][194] ([i915#8841]) +9 other tests dmesg-warn [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#2672]) +4 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#2672]) +5 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8810]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#2672] / [i915#3555]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-dg2: [PASS][199] -> [FAIL][200] ([i915#6880]) +2 other tests fail [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#1825]) +50 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111825] / [i915#1825]) +12 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#3458]) +28 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#8708]) +4 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#3023]) +6 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][206] ([fdo#109280]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#8708]) +19 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#8708]) +18 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#3458]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#6118]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-10/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#8228]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-6/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-4/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8228]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#4816]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][215] ([i915#4816]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#8821]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-11/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8806]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-3/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#6953]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-7/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][219] ([i915#8292]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#5176]) +11 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#5176]) +7 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#5176]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#5176]) +27 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-15/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#5235]) +7 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][225] ([fdo#109271]) +242 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-snb4/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#5235]) +19 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#5235]) +7 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#5235]) +19 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#658]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-nv12: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#4348]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#658]) +4 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_dpms: - shard-tglu: NOTRUN -> [SKIP][232] ([fdo#110189]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-tglu-2/igt@kms_psr@psr2_dpms.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#1072]) +4 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-10/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_psr@sprite_blt: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#1072]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-13/igt@kms_psr@sprite_blt.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#4235]) +2 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-6/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#5289]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#5190]) +13 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][238] ([fdo#111615] / [i915#5289]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#4235] / [i915#5190]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-rkl: NOTRUN -> [SKIP][240] ([fdo#111615] / [i915#5289]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_selftest@drm_cmdline: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#8661]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-2/igt@kms_selftest@drm_cmdline.html - shard-dg2: NOTRUN -> [SKIP][242] ([i915#8661]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-6/igt@kms_selftest@drm_cmdline.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8809]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-2/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#4098]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][245] ([IGT#2] / [i915#6493]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-19/igt@kms_sysfs_edid_timing.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-mtlp: [PASS][246] -> [ABORT][247] ([i915#9262]) +3 other tests abort [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-5/igt@kms_vblank@pipe-c-ts-continuation-suspend.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@kms_vblank@pipe-c-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-wait-busy-hang: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#4070] / [i915#533] / [i915#6768]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-4/igt@kms_vblank@pipe-d-wait-busy-hang.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8808]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#2437]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-3/igt@kms_writeback@writeback-fb-id.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#2436]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-11/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [PASS][252] -> [FAIL][253] ([i915#5234]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-1/igt@perf_pmu@all-busy-idle-check-all.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-3/igt@perf_pmu@all-busy-idle-check-all.html - shard-dg1: [PASS][254] -> [FAIL][255] ([i915#5234]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-12/igt@perf_pmu@all-busy-idle-check-all.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-13/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#8850]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-2/igt@perf_pmu@cpu-hotplug.html - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#8850]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-3/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][258] ([fdo#112283]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-11/igt@perf_pmu@event-wait@rcs0.html - shard-rkl: NOTRUN -> [SKIP][259] ([fdo#112283]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-2/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#8516]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-19/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_udl: - shard-dg2: NOTRUN -> [SKIP][261] ([fdo#109291]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-1/igt@prime_udl.html * igt@prime_vgem@basic-fence-blt: - shard-mtlp: NOTRUN -> [FAIL][262] ([i915#8445]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@prime_vgem@basic-fence-blt.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#3708]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-17/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#3708] / [i915#4077]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#3291] / [i915#3708]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3708] / [i915#4077]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-3/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#3708]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@prime_vgem@fence-write-hang.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: NOTRUN -> [FAIL][268] ([i915#1731]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@sysfs_heartbeat_interval@mixed@vecs0.html * igt@tools_test@sysfs_l3_parity: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#4818]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-6/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@create-perfmon-exceed: - shard-tglu: NOTRUN -> [SKIP][270] ([fdo#109315] / [i915#2575]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-tglu-4/igt@v3d/v3d_perfmon@create-perfmon-exceed.html * igt@v3d/v3d_submit_cl@bad-multisync-out-sync: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#2575]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-13/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-rkl: NOTRUN -> [SKIP][272] ([fdo#109315]) +4 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-7/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#2575]) +16 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-2/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@v3d/v3d_wait_bo@used-bo: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#2575]) +16 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@v3d/v3d_wait_bo@used-bo.html * igt@vc4/vc4_label_bo@set-bad-name: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#7711]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-4/igt@vc4/vc4_label_bo@set-bad-name.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#7711]) +15 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_wait_bo@bad-pad: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#7711]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-13/igt@vc4/vc4_wait_bo@bad-pad.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#7711]) +7 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-7/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@fbdev@write: - shard-tglu: [FAIL][279] ([i915#7743]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-tglu-5/igt@fbdev@write.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-tglu-10/igt@fbdev@write.html - shard-dg1: [FAIL][281] ([i915#7743]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-15/igt@fbdev@write.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-12/igt@fbdev@write.html - shard-snb: [FAIL][283] ([i915#7743]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-snb7/igt@fbdev@write.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-snb7/igt@fbdev@write.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [INCOMPLETE][285] ([i915#7297]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-11/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][287] ([i915#6268]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [FAIL][289] ([i915#6268]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [FAIL][291] ([i915#2410]) -> [PASS][292] +2 other tests pass [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-7/igt@gem_ctx_persistence@engines-hostile@vcs0.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-6/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][293] ([i915#5784]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-13/igt@gem_eio@unwedge-stress.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [FAIL][295] ([i915#2842]) -> [PASS][296] +1 other test pass [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@i915_hangman@gt-engine-error@vcs0: - shard-mtlp: [FAIL][297] ([i915#7069]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-1/igt@i915_hangman@gt-engine-error@vcs0.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@i915_hangman@gt-engine-error@vcs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][299] ([i915#1397]) -> [PASS][300] +2 other tests pass [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-6/igt@i915_pm_rpm@dpms-lpsp.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [SKIP][301] ([i915#1397]) -> [PASS][302] +1 other test pass [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-17/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@system-suspend: - shard-mtlp: [DMESG-WARN][303] ([i915#9260]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-4/igt@i915_pm_rpm@system-suspend.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-7/igt@i915_pm_rpm@system-suspend.html * igt@i915_selftest@live@gt_engines: - shard-mtlp: [FAIL][305] ([i915#9278] / [i915#9290]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-4/igt@i915_selftest@live@gt_engines.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_pm: - shard-mtlp: [DMESG-FAIL][307] ([i915#9270]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-4/igt@i915_selftest@live@gt_pm.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@migrate: - shard-mtlp: [DMESG-FAIL][309] ([i915#7699]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-4/igt@i915_selftest@live@migrate.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-8/igt@i915_selftest@live@migrate.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][311] ([i915#3743]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-rkl: [FAIL][313] ([i915#3743]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][315] ([i915#2346]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * {igt@kms_pm_backlight@fade-with-suspend@edp-1}: - shard-mtlp: [ABORT][317] ([i915#9262]) -> [PASS][318] +2 other tests pass [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-7/igt@kms_pm_backlight@fade-with-suspend@edp-1.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@kms_pm_backlight@fade-with-suspend@edp-1.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-dg2: [FAIL][319] ([fdo#103375]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html * igt@perf_pmu@all-busy-check-all: - shard-mtlp: [FAIL][321] ([i915#5234]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-1/igt@perf_pmu@all-busy-check-all.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-5/igt@perf_pmu@all-busy-check-all.html * igt@perf_pmu@busy-accuracy-50@ccs0: - shard-mtlp: [FAIL][323] ([i915#4349]) -> [PASS][324] +2 other tests pass [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-3/igt@perf_pmu@busy-accuracy-50@ccs0.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@perf_pmu@busy-accuracy-50@ccs0.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [FAIL][325] ([i915#4349]) -> [PASS][326] +2 other tests pass [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-13/igt@perf_pmu@semaphore-busy@vcs1.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-16/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [FAIL][327] ([i915#4349]) -> [PASS][328] +7 other tests pass [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-5/igt@perf_pmu@semaphore-busy@vecs0.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-6/igt@perf_pmu@semaphore-busy@vecs0.html #### Warnings #### * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: [SKIP][329] ([i915#3555] / [i915#5325]) -> [SKIP][330] ([i915#3555]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy.html - shard-dg1: [SKIP][331] ([i915#3555] / [i915#5325]) -> [SKIP][332] ([i915#3555]) +2 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-13/igt@gem_ccs@ctrl-surf-copy.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-13/igt@gem_ccs@ctrl-surf-copy.html - shard-tglu: [SKIP][333] ([i915#3555] / [i915#5325]) -> [SKIP][334] ([i915#3555]) +2 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-tglu-8/igt@gem_ccs@ctrl-surf-copy.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-tglu-8/igt@gem_ccs@ctrl-surf-copy.html - shard-mtlp: [SKIP][335] ([i915#3555] / [i915#5325]) -> [SKIP][336] ([i915#3555]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-3/igt@gem_ccs@ctrl-surf-copy.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: [SKIP][337] ([i915#4098] / [i915#5325]) -> [SKIP][338] ([i915#4098]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][339] ([i915#5493]) -> [DMESG-WARN][340] ([i915#4936] / [i915#5493]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-mtlp: [SKIP][341] ([i915#8403]) -> [SKIP][342] ([fdo#109289]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-5/igt@i915_pm_rc6_residency@media-rc6-accuracy.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-mtlp-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][343] ([fdo#109300]) -> [SKIP][344] ([i915#7116]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-18/igt@kms_content_protection@mei_interface.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-16/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][345] ([i915#7118]) -> [SKIP][346] ([i915#7118] / [i915#7162]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-6/igt@kms_content_protection@type1.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][347] ([fdo#110189] / [i915#3955]) -> [SKIP][348] ([i915#3955]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-2/igt@kms_fbcon_fbt@psr.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][349] ([i915#4070] / [i915#4816]) -> [SKIP][350] ([i915#4816]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][351] ([i915#1072] / [i915#4078]) -> [SKIP][352] ([i915#1072]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-12/igt@kms_psr@cursor_plane_move.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-15/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@primary_mmap_gtt: - shard-dg1: [SKIP][353] ([i915#1072]) -> [SKIP][354] ([i915#1072] / [i915#4078]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-15/igt@kms_psr@primary_mmap_gtt.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/shard-dg1-12/igt@kms_psr@primary_mmap_gtt.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7743]: https://gitlab.freedesktop.org/drm/intel/issues/7743 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8436]: https://gitlab.freedesktop.org/drm/intel/issues/8436 [i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051 [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9260]: https://gitlab.freedesktop.org/drm/intel/issues/9260 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9270]: https://gitlab.freedesktop.org/drm/intel/issues/9270 [i915#9278]: https://gitlab.freedesktop.org/drm/intel/issues/9278 [i915#9290]: https://gitlab.freedesktop.org/drm/intel/issues/9290 [i915#9292]: https://gitlab.freedesktop.org/drm/intel/issues/9292 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7478 -> IGTPW_9761 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13617: 232c052bbad9247620eb164d559c1e0a9eae0353 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9761: 9761 IGT_7478: 605d1288086602b23d0d73fee5022dcd329d9d3e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9761/index.html [-- Attachment #2: Type: text/html, Size: 114998 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2023-10-26 6:37 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-11 7:22 [igt-dev] [i-g-t V5 0/5] Add XE suppor for display tests Bhanuprakash Modem 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 1/5] tests/i915/kms_ccs: Add XE support Bhanuprakash Modem 2023-09-26 12:13 ` Juha-Pekka Heikkila 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 2/5] tests/i915/kms_fb_coherency: " Bhanuprakash Modem 2023-10-23 8:41 ` Sharma, Swati2 2023-10-25 7:43 ` Modem, Bhanuprakash 2023-10-26 5:23 ` Sharma, Swati2 2023-10-26 6:37 ` Sharma, Swati2 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 3/5] tests/i915/kms_fbcon_fbt: " Bhanuprakash Modem 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 4/5] tests/kms_prime: " Bhanuprakash Modem 2023-09-11 7:22 ` [igt-dev] [i-g-t V5 5/5] tests/intel-ci/xe: Drop Xe supported tests from blocklist Bhanuprakash Modem 2023-09-11 8:30 ` [igt-dev] ✓ CI.xeBAT: success for Add XE suppor for display tests (rev6) Patchwork 2023-09-11 8:35 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-11 9:43 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox