* [igt-dev] [PATCH 1/3] lib/igt_fb: use the entire 32 bit for fnv1a_crc
@ 2023-08-16 20:53 Alex Hung
2023-08-16 20:53 ` [igt-dev] [PATCH 2/3] lib/igt_fb: add 10 bits (XRGB2101010) supports in fnv1a_crc Alex Hung
` (4 more replies)
0 siblings, 5 replies; 15+ messages in thread
From: Alex Hung @ 2023-08-16 20:53 UTC (permalink / raw)
To: igt-dev; +Cc: brian.starkey, maxime
The function was implemented as a 32-bit hashing function. Commit
85f4c1005150 ("lib/igt_fb: Ignore the X component when computing CRC")
broke this behavior by hashing 8-bit portions. Restore the 32-bit hasing
behavior while still ignoring the X compoment.
Signed-off-by: Alex Hung <alex.hung@amd.com>
---
lib/igt_fb.c | 9 ++-------
1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index 60b0e2669..9beb07049 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -4780,16 +4780,11 @@ int igt_fb_get_fnv1a_crc(struct igt_fb *fb, igt_crc_t *crc)
igt_memcpy_from_wc(line, ptr, fb->width * cpp);
for (x = 0; x < fb->width; x++) {
- unsigned int i;
uint32_t pixel = le32_to_cpu(line[x]);
pixel &= 0x00ffffff;
- for (i = 0; i < sizeof(pixel); i++) {
- uint8_t component = (pixel >> (i * 8)) & 0xff;
-
- hash ^= component;
- hash *= FNV1a_PRIME;
- }
+ hash ^= pixel;
+ hash *= FNV1a_PRIME;
}
}
--
2.34.1
^ permalink raw reply related [flat|nested] 15+ messages in thread* [igt-dev] [PATCH 2/3] lib/igt_fb: add 10 bits (XRGB2101010) supports in fnv1a_crc 2023-08-16 20:53 [igt-dev] [PATCH 1/3] lib/igt_fb: use the entire 32 bit for fnv1a_crc Alex Hung @ 2023-08-16 20:53 ` Alex Hung 2023-08-16 20:53 ` [igt-dev] [PATCH 3/3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback Alex Hung ` (3 subsequent siblings) 4 siblings, 0 replies; 15+ messages in thread From: Alex Hung @ 2023-08-16 20:53 UTC (permalink / raw) To: igt-dev; +Cc: brian.starkey, maxime Allow 10 bits (DRM_FORMAT_XRGB2101010) components to be hashed as well. Signed-off-by: Alex Hung <alex.hung@amd.com> --- lib/igt_fb.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/igt_fb.c b/lib/igt_fb.c index 9beb07049..a24b4f669 100644 --- a/lib/igt_fb.c +++ b/lib/igt_fb.c @@ -4755,7 +4755,7 @@ int igt_fb_get_fnv1a_crc(struct igt_fb *fb, igt_crc_t *crc) if (fb->num_planes != 1) return -EINVAL; - if (fb->drm_format != DRM_FORMAT_XRGB8888) + if (fb->drm_format != DRM_FORMAT_XRGB8888 && fb->drm_format != DRM_FORMAT_XRGB2101010) return -EINVAL; ptr = igt_fb_map_buffer(fb->fd, fb); @@ -4781,7 +4781,11 @@ int igt_fb_get_fnv1a_crc(struct igt_fb *fb, igt_crc_t *crc) for (x = 0; x < fb->width; x++) { uint32_t pixel = le32_to_cpu(line[x]); - pixel &= 0x00ffffff; + + if (fb->drm_format == DRM_FORMAT_XRGB8888) + pixel &= 0x00ffffff; + else if (fb->drm_format == DRM_FORMAT_XRGB2101010) + pixel &= 0x3fffffff; hash ^= pixel; hash *= FNV1a_PRIME; -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* [igt-dev] [PATCH 3/3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback 2023-08-16 20:53 [igt-dev] [PATCH 1/3] lib/igt_fb: use the entire 32 bit for fnv1a_crc Alex Hung 2023-08-16 20:53 ` [igt-dev] [PATCH 2/3] lib/igt_fb: add 10 bits (XRGB2101010) supports in fnv1a_crc Alex Hung @ 2023-08-16 20:53 ` Alex Hung 2023-08-17 6:32 ` Maxime Ripard 2023-08-16 23:41 ` [igt-dev] ○ CI.xeBAT: info for series starting with [1/3] lib/igt_fb: use the entire 32 bit for fnv1a_crc Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 15+ messages in thread From: Alex Hung @ 2023-08-16 20:53 UTC (permalink / raw) To: igt-dev; +Cc: brian.starkey, maxime Allow kms_writeback to run with DRM_FORMAT_XRGB8888 if supported or to try DRM_FORMAT_XRGB2101010 if DRM_FORMAT_XRGB8888 is not available. Signed-off-by: Alex Hung <alex.hung@amd.com> --- tests/kms_writeback.c | 67 ++++++++++++++++++++++++++++--------------- 1 file changed, 44 insertions(+), 23 deletions(-) diff --git a/tests/kms_writeback.c b/tests/kms_writeback.c index de1267ec9..3b83fed70 100644 --- a/tests/kms_writeback.c +++ b/tests/kms_writeback.c @@ -77,32 +77,47 @@ static bool check_writeback_config(igt_display_t *display, igt_output_t *output, { igt_fb_t input_fb, output_fb; igt_plane_t *plane; - uint32_t writeback_format = DRM_FORMAT_XRGB8888; uint64_t modifier = DRM_FORMAT_MOD_LINEAR; int width, height, ret; + uint16_t i; + + const uint32_t writeback_formats[] = { + DRM_FORMAT_XRGB8888, + DRM_FORMAT_XRGB2101010, + }; + + data.format = DRM_FORMAT_XRGB8888; igt_output_override_mode(output, &override_mode); width = override_mode.hdisplay; height = override_mode.vdisplay; - ret = igt_create_fb(display->drm_fd, width, height, - DRM_FORMAT_XRGB8888, modifier, &input_fb); - igt_assert(ret >= 0); + for (i = 0; i < sizeof(writeback_formats) / sizeof(u32); i++) { - ret = igt_create_fb(display->drm_fd, width, height, - writeback_format, modifier, &output_fb); - igt_assert(ret >= 0); + ret = igt_create_fb(display->drm_fd, width, height, + writeback_formats[i], modifier, &input_fb); + igt_assert(ret >= 0); - plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); - igt_plane_set_fb(plane, &input_fb); - igt_output_set_writeback_fb(output, &output_fb); + ret = igt_create_fb(display->drm_fd, width, height, + writeback_formats[i], modifier, &output_fb); + igt_assert(ret >= 0); - ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_TEST_ONLY | - DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); - igt_plane_set_fb(plane, NULL); - igt_remove_fb(display->drm_fd, &input_fb); - igt_remove_fb(display->drm_fd, &output_fb); + plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + igt_plane_set_fb(plane, &input_fb); + igt_output_set_writeback_fb(output, &output_fb); + + ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_TEST_ONLY | + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); + igt_plane_set_fb(plane, NULL); + igt_remove_fb(display->drm_fd, &input_fb); + igt_remove_fb(display->drm_fd, &output_fb); + + if (!data.wb_fmt && !ret) { + data.format = writeback_formats[i]; + break; + } + } return !ret; } @@ -268,7 +283,7 @@ static void fill_fb(igt_fb_t *fb, uint32_t pixel) uint32_t *ptr; int64_t pixel_count, i; - igt_assert(fb->drm_format == DRM_FORMAT_XRGB8888); + igt_assert(fb->drm_format == DRM_FORMAT_XRGB8888 || fb->drm_format == DRM_FORMAT_XRGB2101010); ptr = igt_fb_map_buffer(fb->fd, fb); igt_assert(ptr); @@ -296,11 +311,17 @@ static void writeback_sequence(igt_output_t *output, igt_plane_t *plane, igt_fb_t *in_fb, igt_fb_t *out_fbs[], int n_commits) { int i = 0; - uint32_t in_fb_colors[2] = { 0x42ff0000, 0x4200ff00 }; + uint32_t *in_fb_colors; + uint32_t in_fb_colors_8bits[2] = { 0x3ff00000, 0x000ffc00 }; + uint32_t in_fb_colors_10bits[2] = { 0x42ff0000, 0x4200ff00 }; uint32_t clear_color = 0xffffffff; - igt_crc_t cleared_crc, out_expected; + if (data.format == DRM_FORMAT_XRGB2101010) + in_fb_colors = in_fb_colors_10bits; + else + in_fb_colors = in_fb_colors_8bits; + for (i = 0; i < n_commits; i++) { /* Change the input color each time */ fill_fb(in_fb, in_fb_colors[i % 2]); @@ -366,7 +387,7 @@ static void writeback_check_output(igt_output_t *output, igt_plane_t *plane, writeback_sequence(output, plane, input_fb, out_fbs, 2); fb_id = igt_create_fb(output_fb->fd, output_fb->width, output_fb->height, - DRM_FORMAT_XRGB8888, + data.format, igt_fb_mod_to_tiling(0), &second_out_fb); igt_require(fb_id > 0); @@ -524,7 +545,7 @@ igt_main_args("b:c:f:dl", long_options, help_str, opt_handler, NULL) fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay, - DRM_FORMAT_XRGB8888, + data.format, DRM_FORMAT_MOD_LINEAR, &input_fb); igt_assert(fb_id >= 0); @@ -572,7 +593,7 @@ igt_main_args("b:c:f:dl", long_options, help_str, opt_handler, NULL) igt_skip_on(data.dump_check || data.list_modes); fb_id = igt_create_fb(display.drm_fd, mode.hdisplay / 2, mode.vdisplay / 2, - DRM_FORMAT_XRGB8888, + data.format, DRM_FORMAT_MOD_LINEAR, &invalid_output_fb); igt_require(fb_id > 0); @@ -588,7 +609,7 @@ igt_main_args("b:c:f:dl", long_options, help_str, opt_handler, NULL) igt_skip_on(data.dump_check || data.list_modes); fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay, - DRM_FORMAT_XRGB8888, + data.format, DRM_FORMAT_MOD_LINEAR, &output_fb); igt_require(fb_id > 0); @@ -604,7 +625,7 @@ igt_main_args("b:c:f:dl", long_options, help_str, opt_handler, NULL) igt_skip_on(data.dump_check || data.list_modes); fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay, - DRM_FORMAT_XRGB8888, + data.format, igt_fb_mod_to_tiling(0), &output_fb); igt_require(fb_id > 0); -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH 3/3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback 2023-08-16 20:53 ` [igt-dev] [PATCH 3/3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback Alex Hung @ 2023-08-17 6:32 ` Maxime Ripard 2023-08-17 7:09 ` Alex Hung 0 siblings, 1 reply; 15+ messages in thread From: Maxime Ripard @ 2023-08-17 6:32 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev, brian.starkey [-- Attachment #1: Type: text/plain, Size: 444 bytes --] Hi, On Wed, Aug 16, 2023 at 02:53:16PM -0600, Alex Hung wrote: > Allow kms_writeback to run with DRM_FORMAT_XRGB8888 if supported > or to try DRM_FORMAT_XRGB2101010 if DRM_FORMAT_XRGB8888 is not > available. XRGB8888 is always supposed to be available, if it's not, it's a driver issue. Which means that XRGB2101010 will never actually be tested. I think we should make a proper test for that format, instead of a (silent) fallback? Maxime [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 228 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH 3/3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback 2023-08-17 6:32 ` Maxime Ripard @ 2023-08-17 7:09 ` Alex Hung 2023-08-17 7:50 ` Maxime Ripard 0 siblings, 1 reply; 15+ messages in thread From: Alex Hung @ 2023-08-17 7:09 UTC (permalink / raw) To: Maxime Ripard; +Cc: igt-dev, brian.starkey On 2023-08-17 00:32, Maxime Ripard wrote: > Hi, > > On Wed, Aug 16, 2023 at 02:53:16PM -0600, Alex Hung wrote: >> Allow kms_writeback to run with DRM_FORMAT_XRGB8888 if supported >> or to try DRM_FORMAT_XRGB2101010 if DRM_FORMAT_XRGB8888 is not >> available. > > XRGB8888 is always supposed to be available, if it's not, it's a driver > issue. Which means that XRGB2101010 will never actually be tested. It is up to a device driver to support specific format(s), not necessary an issue. At least for now amdgpu won't support XRGB8888 but XRGB2101010. > > I think we should make a proper test for that format, instead of a > (silent) fallback? Not sure what's the proper test or the fallback you are referring to. The intention here is to test XRGB2101010 when possible without breaking the original behaviours for XRGB8888. Changing kms_writeback to tests multiple formats requires significant modifications and tests which requires a driver capable of multiple formats in the first place. Once we or anyone have such supports we can come back to rework kms_writeback. > > Maxime ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH 3/3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback 2023-08-17 7:09 ` Alex Hung @ 2023-08-17 7:50 ` Maxime Ripard 2023-08-17 14:15 ` Harry Wentland 0 siblings, 1 reply; 15+ messages in thread From: Maxime Ripard @ 2023-08-17 7:50 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev, brian.starkey [-- Attachment #1: Type: text/plain, Size: 1707 bytes --] On Thu, Aug 17, 2023 at 01:09:44AM -0600, Alex Hung wrote: > > > On 2023-08-17 00:32, Maxime Ripard wrote: > > Hi, > > > > On Wed, Aug 16, 2023 at 02:53:16PM -0600, Alex Hung wrote: > > > Allow kms_writeback to run with DRM_FORMAT_XRGB8888 if supported > > > or to try DRM_FORMAT_XRGB2101010 if DRM_FORMAT_XRGB8888 is not > > > available. > > > > XRGB8888 is always supposed to be available, if it's not, it's a driver > > issue. Which means that XRGB2101010 will never actually be tested. > > It is up to a device driver to support specific format(s), not necessary an > issue. At least for now amdgpu won't support XRGB8888 but XRGB2101010. I guess it's unrelated to that patch in particular, but it's not ok from a KMS standpoint. It was poorly documented before, but see https://elixir.bootlin.com/linux/latest/source/drivers/gpu/drm/drm_fb_helper.c#L430 https://lore.kernel.org/dri-devel/20230807140317.26146-2-jfalempe@redhat.com/ > > I think we should make a proper test for that format, instead of a > > (silent) fallback? > > Not sure what's the proper test or the fallback you are referring to. The > intention here is to test XRGB2101010 when possible without breaking the > original behaviours for XRGB8888. Right, but you're not even testing that XRGB2101010 is actually there, so if amdgpu format listing was somehow broken and you were to expose XRGB8888 instead of XRGB2101010, you wouldn't notice. That's not great. > Changing kms_writeback to tests multiple formats requires significant > modifications and tests which requires a driver capable of multiple formats > in the first place. That's fine, amdgpu will be that driver. Maxime [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 228 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH 3/3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback 2023-08-17 7:50 ` Maxime Ripard @ 2023-08-17 14:15 ` Harry Wentland 2023-08-17 16:22 ` Alex Hung 2023-08-22 13:26 ` Maxime Ripard 0 siblings, 2 replies; 15+ messages in thread From: Harry Wentland @ 2023-08-17 14:15 UTC (permalink / raw) To: Maxime Ripard, Alex Hung; +Cc: igt-dev, brian.starkey On 2023-08-17 03:50, Maxime Ripard wrote: > On Thu, Aug 17, 2023 at 01:09:44AM -0600, Alex Hung wrote: >> >> >> On 2023-08-17 00:32, Maxime Ripard wrote: >>> Hi, >>> >>> On Wed, Aug 16, 2023 at 02:53:16PM -0600, Alex Hung wrote: >>>> Allow kms_writeback to run with DRM_FORMAT_XRGB8888 if supported >>>> or to try DRM_FORMAT_XRGB2101010 if DRM_FORMAT_XRGB8888 is not >>>> available. >>> >>> XRGB8888 is always supposed to be available, if it's not, it's a driver >>> issue. Which means that XRGB2101010 will never actually be tested. >> >> It is up to a device driver to support specific format(s), not necessary an >> issue. At least for now amdgpu won't support XRGB8888 but XRGB2101010. > > I guess it's unrelated to that patch in particular, but it's not ok from > a KMS standpoint. It was poorly documented before, but see > > https://elixir.bootlin.com/linux/latest/source/drivers/gpu/drm/drm_fb_helper.c#L430 > https://lore.kernel.org/dri-devel/20230807140317.26146-2-jfalempe@redhat.com/ > Our HW writeback can't do 8888. This would be a silly reason to not be able to use it for testing purposes. I don't even understand what "SW Color Conversion" means here. Is it expected that drivers use CPU code in kernel to walk the buffer and "color convert" from XRGB8888 to whatever the HW supports (and the inverse for the writeback buffer)? That seems a bit ridiculous. Harry >>> I think we should make a proper test for that format, instead of a >>> (silent) fallback? >> >> Not sure what's the proper test or the fallback you are referring to. The >> intention here is to test XRGB2101010 when possible without breaking the >> original behaviours for XRGB8888. > > Right, but you're not even testing that XRGB2101010 is actually there, > so if amdgpu format listing was somehow broken and you were to expose > XRGB8888 instead of XRGB2101010, you wouldn't notice. That's not great. > >> Changing kms_writeback to tests multiple formats requires significant >> modifications and tests which requires a driver capable of multiple formats >> in the first place. > > That's fine, amdgpu will be that driver. > > Maxime ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH 3/3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback 2023-08-17 14:15 ` Harry Wentland @ 2023-08-17 16:22 ` Alex Hung 2023-08-22 14:14 ` Maxime Ripard 2023-08-22 13:26 ` Maxime Ripard 1 sibling, 1 reply; 15+ messages in thread From: Alex Hung @ 2023-08-17 16:22 UTC (permalink / raw) To: Harry Wentland, Maxime Ripard; +Cc: igt-dev, brian.starkey On 2023-08-17 08:15, Harry Wentland wrote: > > > On 2023-08-17 03:50, Maxime Ripard wrote: >> On Thu, Aug 17, 2023 at 01:09:44AM -0600, Alex Hung wrote: >>> >>> >>> On 2023-08-17 00:32, Maxime Ripard wrote: >>>> Hi, >>>> >>>> On Wed, Aug 16, 2023 at 02:53:16PM -0600, Alex Hung wrote: >>>>> Allow kms_writeback to run with DRM_FORMAT_XRGB8888 if supported >>>>> or to try DRM_FORMAT_XRGB2101010 if DRM_FORMAT_XRGB8888 is not >>>>> available. >>>> >>>> XRGB8888 is always supposed to be available, if it's not, it's a driver >>>> issue. Which means that XRGB2101010 will never actually be tested. >>> >>> It is up to a device driver to support specific format(s), not necessary an >>> issue. At least for now amdgpu won't support XRGB8888 but XRGB2101010. >> >> I guess it's unrelated to that patch in particular, but it's not ok from >> a KMS standpoint. It was poorly documented before, but see >> >> https://elixir.bootlin.com/linux/latest/source/drivers/gpu/drm/drm_fb_helper.c#L430 >> https://lore.kernel.org/dri-devel/20230807140317.26146-2-jfalempe@redhat.com/ We are not supporting any userspace applications other than testing. I also don't read this as "you MUST do color conversion to 8888" but as "color conversion to 8888 is one of two cases you are allowed to do". >> > > Our HW writeback can't do 8888. This would be a silly reason to not be > able to use it for testing purposes. > > I don't even understand what "SW Color Conversion" means here. Is it > expected that drivers use CPU code in kernel to walk the buffer and > "color convert" from XRGB8888 to whatever the HW supports (and the > inverse for the writeback buffer)? That seems a bit ridiculous. > > Harry > > >>>> I think we should make a proper test for that format, instead of a >>>> (silent) fallback? >>> >>> Not sure what's the proper test or the fallback you are referring to. The >>> intention here is to test XRGB2101010 when possible without breaking the >>> original behaviours for XRGB8888. >> >> Right, but you're not even testing that XRGB2101010 is actually there, >> so if amdgpu format listing was somehow broken and you were to expose >> XRGB8888 instead of XRGB2101010, you wouldn't notice. That's not great. Only XRGB2101010 is supported. >> >>> Changing kms_writeback to tests multiple formats requires significant >>> modifications and tests which requires a driver capable of multiple formats >>> in the first place. >> >> That's fine, amdgpu will be that driver. The purpose of this patch is to improve kms_writeback coverage: - check XRGB8888, and test if supported or skip otherwise to - no XRGB8888? also check XRGB2101010, and test if supported or skip otherwise For amdgpu, no writeback -> support XRGB2101010 in writeback. XRGB2101010 will be used for testing. XRGB8888 may or may not be added later depending on whether there will be consumers of the feature but that is out of scope of this IGT patch. Alex >> >> Maxime > ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH 3/3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback 2023-08-17 16:22 ` Alex Hung @ 2023-08-22 14:14 ` Maxime Ripard 2023-08-22 14:34 ` Harry Wentland 0 siblings, 1 reply; 15+ messages in thread From: Maxime Ripard @ 2023-08-22 14:14 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev, brian.starkey [-- Attachment #1: Type: text/plain, Size: 1953 bytes --] On Thu, Aug 17, 2023 at 10:22:56AM -0600, Alex Hung wrote: > > > > > I think we should make a proper test for that format, instead of a > > > > > (silent) fallback? > > > > > > > > Not sure what's the proper test or the fallback you are referring to. The > > > > intention here is to test XRGB2101010 when possible without breaking the > > > > original behaviours for XRGB8888. > > > > > > Right, but you're not even testing that XRGB2101010 is actually there, > > > so if amdgpu format listing was somehow broken and you were to expose > > > XRGB8888 instead of XRGB2101010, you wouldn't notice. That's not great. > > Only XRGB2101010 is supported. > > > > > Changing kms_writeback to tests multiple formats requires significant > > > > modifications and tests which requires a driver capable of multiple formats > > > > in the first place. > > > > > > That's fine, amdgpu will be that driver. > > The purpose of this patch is to improve kms_writeback coverage: > > - check XRGB8888, and test if supported or skip otherwise > to > - no XRGB8888? also check XRGB2101010, and test if supported or skip > otherwise > > For amdgpu, no writeback -> support XRGB2101010 in writeback. > > XRGB2101010 will be used for testing. XRGB8888 may or may not be added later > depending on whether there will be consumers of the feature but that is out > of scope of this IGT patch. My point is the fallback doesn't provide anything, and is harmful to some extent. So far, we have some hardware that support XRGB8888 only, and some that support XRGB2101010 only. There's no point in falling back from one to the other, and if we ever have hardware that would support both it prevents from checking both. And sure, we could address it then, or we could address it now. It's just adding an extra parameter to a couple of functions and a few new subtests, it's not like we need to rewrite the whole thing. Maxime [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 228 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH 3/3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback 2023-08-22 14:14 ` Maxime Ripard @ 2023-08-22 14:34 ` Harry Wentland 0 siblings, 0 replies; 15+ messages in thread From: Harry Wentland @ 2023-08-22 14:34 UTC (permalink / raw) To: Maxime Ripard, Alex Hung; +Cc: igt-dev, brian.starkey On 2023-08-22 10:14, Maxime Ripard wrote: > On Thu, Aug 17, 2023 at 10:22:56AM -0600, Alex Hung wrote: >>>>>> I think we should make a proper test for that format, instead of a >>>>>> (silent) fallback? >>>>> >>>>> Not sure what's the proper test or the fallback you are referring to. The >>>>> intention here is to test XRGB2101010 when possible without breaking the >>>>> original behaviours for XRGB8888. >>>> >>>> Right, but you're not even testing that XRGB2101010 is actually there, >>>> so if amdgpu format listing was somehow broken and you were to expose >>>> XRGB8888 instead of XRGB2101010, you wouldn't notice. That's not great. >> >> Only XRGB2101010 is supported. >> >>>>> Changing kms_writeback to tests multiple formats requires significant >>>>> modifications and tests which requires a driver capable of multiple formats >>>>> in the first place. >>>> >>>> That's fine, amdgpu will be that driver. >> >> The purpose of this patch is to improve kms_writeback coverage: >> >> - check XRGB8888, and test if supported or skip otherwise >> to >> - no XRGB8888? also check XRGB2101010, and test if supported or skip >> otherwise >> >> For amdgpu, no writeback -> support XRGB2101010 in writeback. >> >> XRGB2101010 will be used for testing. XRGB8888 may or may not be added later >> depending on whether there will be consumers of the feature but that is out >> of scope of this IGT patch. > > My point is the fallback doesn't provide anything, and is harmful to > some extent. So far, we have some hardware that support XRGB8888 only, > and some that support XRGB2101010 only. > > There's no point in falling back from one to the other, and if we ever > have hardware that would support both it prevents from checking both. > > And sure, we could address it then, or we could address it now. It's > just adding an extra parameter to a couple of functions and a few new > subtests, it's not like we need to rewrite the whole thing. > I tend to agree. My preference would be to have a subtest for each supported format, i.e. a -xrgb8888 and an -xrgb2101010 test. I think there was some concern about not changing existing test names. In that case we can keep the original test names for the -xrgb8888 tests and append the format to the new tests. Harry > Maxime ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH 3/3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback 2023-08-17 14:15 ` Harry Wentland 2023-08-17 16:22 ` Alex Hung @ 2023-08-22 13:26 ` Maxime Ripard 2023-08-22 14:51 ` Harry Wentland 1 sibling, 1 reply; 15+ messages in thread From: Maxime Ripard @ 2023-08-22 13:26 UTC (permalink / raw) To: Harry Wentland; +Cc: igt-dev, brian.starkey [-- Attachment #1: Type: text/plain, Size: 1841 bytes --] On Thu, Aug 17, 2023 at 10:15:04AM -0400, Harry Wentland wrote: > > > On 2023-08-17 03:50, Maxime Ripard wrote: > > On Thu, Aug 17, 2023 at 01:09:44AM -0600, Alex Hung wrote: > >> > >> > >> On 2023-08-17 00:32, Maxime Ripard wrote: > >>> Hi, > >>> > >>> On Wed, Aug 16, 2023 at 02:53:16PM -0600, Alex Hung wrote: > >>>> Allow kms_writeback to run with DRM_FORMAT_XRGB8888 if supported > >>>> or to try DRM_FORMAT_XRGB2101010 if DRM_FORMAT_XRGB8888 is not > >>>> available. > >>> > >>> XRGB8888 is always supposed to be available, if it's not, it's a driver > >>> issue. Which means that XRGB2101010 will never actually be tested. > >> > >> It is up to a device driver to support specific format(s), not necessary an > >> issue. At least for now amdgpu won't support XRGB8888 but XRGB2101010. > > > > I guess it's unrelated to that patch in particular, but it's not ok from > > a KMS standpoint. It was poorly documented before, but see > > > > https://elixir.bootlin.com/linux/latest/source/drivers/gpu/drm/drm_fb_helper.c#L430 > > https://lore.kernel.org/dri-devel/20230807140317.26146-2-jfalempe@redhat.com/ > > > > Our HW writeback can't do 8888. This would be a silly reason to not be > able to use it for testing purposes. Ah, right, sorry for the brainfart. > I don't even understand what "SW Color Conversion" means here. Is it > expected that drivers use CPU code in kernel to walk the buffer and > "color convert" from XRGB8888 to whatever the HW supports (and the > inverse for the writeback buffer)? That seems a bit ridiculous. That's exactly what that means. We have a bunch of helpers to do that already, used for example by simpledrm if it's backed by a different format. See: https://elixir.bootlin.com/linux/latest/source/drivers/gpu/drm/drm_format_helper.c#L914 Maxime [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 228 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH 3/3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback 2023-08-22 13:26 ` Maxime Ripard @ 2023-08-22 14:51 ` Harry Wentland 0 siblings, 0 replies; 15+ messages in thread From: Harry Wentland @ 2023-08-22 14:51 UTC (permalink / raw) To: Maxime Ripard; +Cc: igt-dev, brian.starkey On 2023-08-22 09:26, Maxime Ripard wrote: > On Thu, Aug 17, 2023 at 10:15:04AM -0400, Harry Wentland wrote: >> >> >> On 2023-08-17 03:50, Maxime Ripard wrote: >>> On Thu, Aug 17, 2023 at 01:09:44AM -0600, Alex Hung wrote: >>>> >>>> >>>> On 2023-08-17 00:32, Maxime Ripard wrote: >>>>> Hi, >>>>> >>>>> On Wed, Aug 16, 2023 at 02:53:16PM -0600, Alex Hung wrote: >>>>>> Allow kms_writeback to run with DRM_FORMAT_XRGB8888 if supported >>>>>> or to try DRM_FORMAT_XRGB2101010 if DRM_FORMAT_XRGB8888 is not >>>>>> available. >>>>> >>>>> XRGB8888 is always supposed to be available, if it's not, it's a driver >>>>> issue. Which means that XRGB2101010 will never actually be tested. >>>> >>>> It is up to a device driver to support specific format(s), not necessary an >>>> issue. At least for now amdgpu won't support XRGB8888 but XRGB2101010. >>> >>> I guess it's unrelated to that patch in particular, but it's not ok from >>> a KMS standpoint. It was poorly documented before, but see >>> >>> https://elixir.bootlin.com/linux/latest/source/drivers/gpu/drm/drm_fb_helper.c#L430 >>> https://lore.kernel.org/dri-devel/20230807140317.26146-2-jfalempe@redhat.com/ >>> >> >> Our HW writeback can't do 8888. This would be a silly reason to not be >> able to use it for testing purposes. > > Ah, right, sorry for the brainfart. > >> I don't even understand what "SW Color Conversion" means here. Is it >> expected that drivers use CPU code in kernel to walk the buffer and >> "color convert" from XRGB8888 to whatever the HW supports (and the >> inverse for the writeback buffer)? That seems a bit ridiculous. > > That's exactly what that means. We have a bunch of helpers to do that > already, used for example by simpledrm if it's backed by a different > format. See: > https://elixir.bootlin.com/linux/latest/source/drivers/gpu/drm/drm_format_helper.c#L914 > Huh, I wasn't aware of that. Thanks for pointing that out. In our case the driver supports XRGB8888 on a plane's framebuffer. The only limitation is on the writeback connector's fb. But I guess the way the kernel doc talks about this it would apply to either. What do you think would the right approach? Implement a drm_fb_xrgb2101010_to_xrgb8888 variant in drm_fb_blit and call that on the output buffer? I got to say I'm not at all a fan of forcing compatibility with XRGB8888 if this means a CPU blit. I feel this is misleading DRM clients, giving them the impression XRGB8888 is supported by HW even though it requires a (terribly slow and costly) CPU blit. Harry > Maxime ^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for series starting with [1/3] lib/igt_fb: use the entire 32 bit for fnv1a_crc 2023-08-16 20:53 [igt-dev] [PATCH 1/3] lib/igt_fb: use the entire 32 bit for fnv1a_crc Alex Hung 2023-08-16 20:53 ` [igt-dev] [PATCH 2/3] lib/igt_fb: add 10 bits (XRGB2101010) supports in fnv1a_crc Alex Hung 2023-08-16 20:53 ` [igt-dev] [PATCH 3/3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback Alex Hung @ 2023-08-16 23:41 ` Patchwork 2023-08-16 23:47 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-08-17 11:13 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2023-08-16 23:41 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 362 bytes --] == Series Details == Series: series starting with [1/3] lib/igt_fb: use the entire 32 bit for fnv1a_crc URL : https://patchwork.freedesktop.org/series/122536/ State : info == Summary == Participating hosts: bat-atsm-2 bat-dg2-oem2 bat-adlp-7 Missing hosts results[0]: Results: [IGTPW_9604](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9604/index.html) [-- Attachment #2: Type: text/html, Size: 872 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [1/3] lib/igt_fb: use the entire 32 bit for fnv1a_crc 2023-08-16 20:53 [igt-dev] [PATCH 1/3] lib/igt_fb: use the entire 32 bit for fnv1a_crc Alex Hung ` (2 preceding siblings ...) 2023-08-16 23:41 ` [igt-dev] ○ CI.xeBAT: info for series starting with [1/3] lib/igt_fb: use the entire 32 bit for fnv1a_crc Patchwork @ 2023-08-16 23:47 ` Patchwork 2023-08-17 11:13 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2023-08-16 23:47 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4393 bytes --] == Series Details == Series: series starting with [1/3] lib/igt_fb: use the entire 32 bit for fnv1a_crc URL : https://patchwork.freedesktop.org/series/122536/ State : success == Summary == CI Bug Log - changes from CI_DRM_13528 -> IGTPW_9604 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/index.html Participating hosts (41 -> 40) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9604 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@smem: - fi-rkl-11600: [PASS][1] -> [FAIL][2] ([fdo#103375] / [i915#8011]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/fi-rkl-11600/igt@gem_exec_suspend@basic-s0@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/fi-rkl-11600/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_pm_backlight@basic-brightness@edp-1: - bat-rplp-1: NOTRUN -> [ABORT][3] ([i915#7077] / [i915#8668]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/bat-rplp-1/igt@i915_pm_backlight@basic-brightness@edp-1.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: [PASS][4] -> [DMESG-FAIL][5] ([i915#5334] / [i915#7872]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [ABORT][6] ([i915#7913]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@workarounds: - bat-dg2-8: [DMESG-FAIL][8] ([i915#7913]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/bat-dg2-8/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/bat-dg2-8/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: [ABORT][10] ([i915#8260] / [i915#8668]) -> [SKIP][11] ([i915#3555]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7441 -> IGTPW_9604 CI-20190529: 20190529 CI_DRM_13528: a7c0be10a6b6a23017681cc609c1353711dc70e7 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9604: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/index.html IGT_7441: 152bb04fd1297075b5d0b1c4487dac8e9a70d070 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- -igt@msm_submitoverhead@submitbench-10-bos -igt@msm_submitoverhead@submitbench-10-bos-no-implicit-sync -igt@msm_submitoverhead@submitbench-100-bos -igt@msm_submitoverhead@submitbench-100-bos-no-implicit-sync -igt@msm_submitoverhead@submitbench-250-bos -igt@msm_submitoverhead@submitbench-250-bos-no-implicit-sync -igt@msm_submitoverhead@submitbench-500-bos -igt@msm_submitoverhead@submitbench-500-bos-no-implicit-sync -igt@msm_submitoverhead@submitbench-1000-bos -igt@msm_submitoverhead@submitbench-1000-bos-no-implicit-sync == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/index.html [-- Attachment #2: Type: text/html, Size: 5301 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [1/3] lib/igt_fb: use the entire 32 bit for fnv1a_crc 2023-08-16 20:53 [igt-dev] [PATCH 1/3] lib/igt_fb: use the entire 32 bit for fnv1a_crc Alex Hung ` (3 preceding siblings ...) 2023-08-16 23:47 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-08-17 11:13 ` Patchwork 4 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2023-08-17 11:13 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 81611 bytes --] == Series Details == Series: series starting with [1/3] lib/igt_fb: use the entire 32 bit for fnv1a_crc URL : https://patchwork.freedesktop.org/series/122536/ State : success == Summary == CI Bug Log - changes from CI_DRM_13528_full -> IGTPW_9604_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_9604_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][1] ([i915#8411]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@api_intel_bb@object-reloc-keep-cache.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8414]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-6/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8414]) +4 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-19/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@busy@ccs0: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8414]) +20 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-12/igt@drm_fdinfo@busy@ccs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][5] -> [FAIL][6] ([i915#7742]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#658]) +4 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@feature_discovery@psr1.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#4098] / [i915#5325]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#5325]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-7/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8562]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: NOTRUN -> [FAIL][12] ([i915#6268]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@legacy-engines-hang@bsd1: - shard-mtlp: [PASS][14] -> [FAIL][15] ([i915#2410]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-4/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-1/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html * igt@gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#1099]) +3 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-snb4/igt@gem_ctx_persistence@processes.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#5882]) +5 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html * igt@gem_ctx_sseu@invalid-sseu: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-8/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-tglu: [PASS][19] -> [ABORT][20] ([i915#7975] / [i915#8213] / [i915#8398]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-tglu-4/igt@gem_eio@hibernate.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-10/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-contexts-immediate: - shard-mtlp: [PASS][21] -> [ABORT][22] ([i915#8503]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-5/igt@gem_eio@in-flight-contexts-immediate.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-5/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_eio@kms: - shard-apl: [PASS][23] -> [FAIL][24] ([i915#8764]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-apl1/igt@gem_eio@kms.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-apl3/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][25] -> [FAIL][26] ([i915#5784]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-dg1-18/igt@gem_eio@unwedge-stress.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#6334]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-18/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_fair@basic-none-solo: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-19/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][29] -> [FAIL][30] ([i915#2842]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4473] / [i915#4771]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-8/igt@gem_exec_fair@basic-pace-share.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][32] -> [FAIL][33] ([i915#2842]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539]) +2 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fence@parallel@bcs0: - shard-mtlp: [PASS][35] -> [DMESG-FAIL][36] ([i915#8962] / [i915#9121]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-2/igt@gem_exec_fence@parallel@bcs0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-4/igt@gem_exec_fence@parallel@bcs0.html * igt@gem_exec_fence@parallel@vcs0: - shard-mtlp: [PASS][37] -> [DMESG-FAIL][38] ([i915#9121]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-2/igt@gem_exec_fence@parallel@vcs0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-4/igt@gem_exec_fence@parallel@vcs0.html * igt@gem_exec_fence@parallel@vecs0: - shard-mtlp: [PASS][39] -> [FAIL][40] ([i915#8957]) +2 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-2/igt@gem_exec_fence@parallel@vecs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-4/igt@gem_exec_fence@parallel@vecs0.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812]) +4 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +4 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-12/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-active: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-16/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +13 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-12/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-wc-cpu-active: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-4/igt@gem_exec_reloc@basic-wc-cpu-active.html - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-cpu-active.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@gem_fenced_exec_thrash@2-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4860]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-5/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4565]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#4613]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-2/igt@gem_lmem_swapping@random-engines.html - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-5/igt@gem_lmem_swapping@random-engines.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4613]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-2/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][53] -> [TIMEOUT][54] ([i915#5493]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_gtt@basic-wc: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) +6 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-18/igt@gem_mmap_gtt@basic-wc.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +10 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-12/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_gtt@cpuset-big-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) +3 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-big-copy-xy.html * igt@gem_mmap_wc@set-cache-level: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4083]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-17/igt@gem_mmap_wc@set-cache-level.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4083]) +5 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@gem_mmap_wc@write-wc-read-gtt.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-5/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_pxp@display-protected-crc: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4270]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-18/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270]) +5 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4270]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3282]) +4 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-2/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@write-bad-handle: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#3282]) +2 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-18/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8428]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-7/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4079]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_tiled_partial_pwrite_pread@reads: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-4/igt@gem_tiled_partial_pwrite_pread@reads.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3297]) +2 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-6/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3297] / [i915#4880]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3297]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][72] ([fdo#109289]) +6 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@basic-rejected: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#2527]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-2/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#2856]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-1/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#2856]) +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-2/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@valid-registers: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#2527]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-17/igt@gen9_exec_parse@valid-registers.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: [PASS][77] -> [FAIL][78] ([i915#8456]) +2 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-8/igt@i915_hangman@detector@vcs0.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-7/igt@i915_hangman@detector@vcs0.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: NOTRUN -> [FAIL][79] ([i915#7069]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-6/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [PASS][80] -> [ABORT][81] ([i915#8489] / [i915#8668]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#6412]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-2/igt@i915_module_load@resize-bar.html * igt@i915_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#7561]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-17/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][84] -> [SKIP][85] ([fdo#109271]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-apl1/igt@i915_pm_dc@dc9-dpms.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-apl2/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [PASS][86] -> [FAIL][87] ([i915#3591]) +1 similar issue [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#1397]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-2/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [PASS][89] -> [SKIP][90] ([i915#1397]) +2 similar issues [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-dg1: [PASS][91] -> [SKIP][92] ([i915#1397]) +1 similar issue [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-dg1-18/igt@i915_pm_rpm@modeset-non-lpsp.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][93] -> [SKIP][94] ([i915#1397]) +1 similar issue [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-rkl-4/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][95] ([fdo#109506]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][96] -> [INCOMPLETE][97] ([i915#7790]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-snb5/igt@i915_pm_rps@reset.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-snb1/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#8925]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_query@query-topology-known-pci-ids: - shard-tglu: NOTRUN -> [SKIP][99] ([fdo#109303]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-2/igt@i915_query@query-topology-known-pci-ids.html - shard-mtlp: NOTRUN -> [SKIP][100] ([fdo#109303]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-2/igt@i915_query@query-topology-known-pci-ids.html - shard-dg2: NOTRUN -> [SKIP][101] ([fdo#109303]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@i915_query@query-topology-known-pci-ids.html - shard-rkl: NOTRUN -> [SKIP][102] ([fdo#109303]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-1/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][103] ([fdo#109302]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [PASS][104] -> [DMESG-FAIL][105] ([i915#5334]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-apl4/igt@i915_selftest@live@gt_heartbeat.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_suspend@basic-s3-without-i915: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6645]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-1/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@forcewake: - shard-snb: NOTRUN -> [DMESG-WARN][107] ([i915#8841]) +2 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-snb6/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#4212]) +1 similar issue [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [FAIL][109] ([i915#8247]) +3 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#404]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-17/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#5286]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#5286]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][113] ([fdo#111614]) +6 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][114] ([fdo#111614] / [i915#3638]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-mtlp: [PASS][115] -> [FAIL][116] ([i915#3743]) +2 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#5190]) +13 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-rkl: [PASS][118] -> [FAIL][119] ([i915#3743]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-rkl-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][120] ([fdo#110723]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-mtlp: NOTRUN -> [SKIP][121] ([fdo#111615]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-1/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-dg2: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5190]) +7 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538]) +1 similar issue [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-18/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3734] / [i915#5354] / [i915#6095]) +2 similar issues [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-2/igt@kms_ccs@pipe-a-ccs-on-another-bo-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#5354] / [i915#6095]) +2 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-2/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_mc_ccs.html - shard-tglu: NOTRUN -> [SKIP][127] ([i915#5354] / [i915#6095]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-6/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#5354] / [i915#6095]) +1 similar issue [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-19/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6095]) +6 similar issues [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-5/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#3886] / [i915#5354] / [i915#6095]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#3886] / [i915#6095]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-5/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#5354]) +8 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-4/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#3689] / [i915#3886] / [i915#5354]) +7 similar issues [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-2/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-19/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#3689] / [i915#5354]) +23 similar issues [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-12/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#4087] / [i915#7213]) +3 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#4087]) +3 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@kms_chamelium_color@ctm-0-75: - shard-dg1: NOTRUN -> [SKIP][138] ([fdo#111827]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-16/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][139] ([fdo#111827]) +2 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#7828]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-5/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#7828]) +9 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-12/igt@kms_chamelium_hpd@dp-hpd-storm.html - shard-rkl: NOTRUN -> [SKIP][142] ([i915#7828]) +3 similar issues [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#7828]) +1 similar issue [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-14/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#3555]) +1 similar issue [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-7/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#7118]) +1 similar issue [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-10/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@lic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][146] ([i915#7173]) +1 similar issue [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html * igt@kms_content_protection@mei_interface: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7118] / [i915#7162]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#3359]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-12/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#3555]) +9 similar issues [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#3359]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3359]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][152] ([fdo#109274] / [i915#5354]) +5 similar issues [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html - shard-rkl: NOTRUN -> [SKIP][153] ([fdo#111825]) +2 similar issues [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][154] -> [FAIL][155] ([i915#2346]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#4213]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#4103] / [i915#4213]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-14/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#8588]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3804]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#8812]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#3840]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#3469]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@kms_fbcon_fbt@psr.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#4881]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-6/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-snb: NOTRUN -> [SKIP][164] ([fdo#109271] / [fdo#111767]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-snb6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#8381]) +1 similar issue [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-12/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-dg2: NOTRUN -> [SKIP][166] ([fdo#109274] / [fdo#111767]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][167] ([fdo#109274]) +8 similar issues [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][168] ([fdo#109274] / [i915#3637]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3637]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1: - shard-apl: [PASS][170] -> [FAIL][171] ([i915#79]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#8810]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#2672]) +4 similar issues [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-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][174] ([i915#2672]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#2672]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][176] ([i915#2587] / [i915#2672]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#2587] / [i915#2672]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [FAIL][178] ([i915#6880]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#8708]) +4 similar issues [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-dg2: [PASS][180] -> [FAIL][181] ([i915#6880]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#5354]) +66 similar issues [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#8708]) +19 similar issues [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#5439]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#3023]) +5 similar issues [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html - shard-tglu: NOTRUN -> [SKIP][186] ([fdo#110189]) +2 similar issues [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][187] ([fdo#111825]) +3 similar issues [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#1825]) +5 similar issues [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render: - shard-apl: NOTRUN -> [SKIP][189] ([fdo#109271]) +7 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-apl3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3458]) +24 similar issues [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#8708]) +1 similar issue [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][192] ([fdo#109280]) +4 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][193] ([fdo#111825] / [i915#1825]) +16 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#3458]) +4 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-2/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8228]) +1 similar issue [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@kms_hdr@static-toggle.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#6301]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-12/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][198] ([i915#6301]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-2/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-dg1: NOTRUN -> [SKIP][199] ([fdo#109289]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-19/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: - shard-apl: [PASS][200] -> [ABORT][201] ([i915#180]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#3555]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-18/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][203] ([i915#8292]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][204] ([i915#8292]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#5176]) +11 similar issues [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#5176]) +7 similar issues [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#5176]) +3 similar issues [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-16/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-unity-scaling@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#5235]) +15 similar issues [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#5235]) +7 similar issues [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#5235]) +7 similar issues [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#5235]) +3 similar issues [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#6524] / [i915#6805]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][213] ([fdo#111068] / [i915#658]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][214] ([fdo#111068] / [i915#658]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-14/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#1072]) +2 similar issues [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-2/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_psr@psr2_primary_blt: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#1072]) +8 similar issues [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-2/igt@kms_psr@psr2_primary_blt.html * igt@kms_rotation_crc@bad-pixel-format: - shard-snb: NOTRUN -> [SKIP][217] ([fdo#109271]) +216 similar issues [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-snb6/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#4235]) +1 similar issue [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][219] ([fdo#111615] / [i915#5289]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_selftest@drm_damage: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#8661]) +1 similar issue [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@kms_selftest@drm_damage.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#8809]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#8623]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@pipe-c-ts-continuation-modeset: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#4070] / [i915#6768]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-2/igt@kms_vblank@pipe-c-ts-continuation-modeset.html * igt@kms_vblank@pipe-c-wait-idle-hang: - shard-mtlp: [PASS][224] -> [DMESG-WARN][225] ([i915#2017]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-8/igt@kms_vblank@pipe-c-wait-idle-hang.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-7/igt@kms_vblank@pipe-c-wait-idle-hang.html * igt@kms_vblank@pipe-d-ts-continuation-idle-hang: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#4070] / [i915#533] / [i915#6768]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-2/igt@kms_vblank@pipe-d-ts-continuation-idle-hang.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#2437]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@kms_writeback@writeback-check-output.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#2436]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-6/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@all-busy-idle-check-all: - shard-mtlp: [PASS][229] -> [FAIL][230] ([i915#5234]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-1/igt@perf_pmu@all-busy-idle-check-all.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-4/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-double-start@vcs1: - shard-dg1: [PASS][231] -> [FAIL][232] ([i915#4349]) +1 similar issue [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-dg1-19/igt@perf_pmu@busy-double-start@vcs1.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-17/igt@perf_pmu@busy-double-start@vcs1.html * igt@prime_udl: - shard-dg2: NOTRUN -> [SKIP][233] ([fdo#109291]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@prime_udl.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#3708]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-2/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#3291] / [i915#3708]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-2/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-blt: - shard-mtlp: NOTRUN -> [FAIL][236] ([i915#8445]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-4/igt@prime_vgem@coherency-blt.html * igt@prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#3708] / [i915#4077]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-18/igt@prime_vgem@coherency-gtt.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#4818]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-2/igt@tools_test@sysfs_l3_parity.html - shard-rkl: NOTRUN -> [SKIP][239] ([fdo#109307]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-7/igt@tools_test@sysfs_l3_parity.html - shard-tglu: NOTRUN -> [SKIP][240] ([fdo#109307]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-2/igt@tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#4818]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-8/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_create_bo@create-bo-4096: - shard-tglu: NOTRUN -> [SKIP][242] ([fdo#109315] / [i915#2575]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-3/igt@v3d/v3d_create_bo@create-bo-4096.html - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#2575]) +1 similar issue [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-8/igt@v3d/v3d_create_bo@create-bo-4096.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#2575]) +17 similar issues [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@v3d/v3d_job_submission@array-job-submission.html - shard-rkl: NOTRUN -> [SKIP][245] ([fdo#109315]) +3 similar issues [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-1/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#2575]) +1 similar issue [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-18/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@vc4/vc4_create_bo@create-bo-zeroed: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#7711]) +1 similar issue [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-7/igt@vc4/vc4_create_bo@create-bo-zeroed.html - shard-tglu: NOTRUN -> [SKIP][248] ([i915#2575]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-4/igt@vc4/vc4_create_bo@create-bo-zeroed.html * igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#7711]) +6 similar issues [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-6/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html * igt@vc4/vc4_perfmon@destroy-invalid-perfmon: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#7711]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-14/igt@vc4/vc4_perfmon@destroy-invalid-perfmon.html * igt@vc4/vc4_purgeable_bo@mark-willneed: - shard-glk: NOTRUN -> [SKIP][251] ([fdo#109271]) +2 similar issues [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-glk5/igt@vc4/vc4_purgeable_bo@mark-willneed.html - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#7711]) +1 similar issue [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-1/igt@vc4/vc4_purgeable_bo@mark-willneed.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][253] ([i915#6268]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: [FAIL][255] ([i915#2410]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-6/igt@gem_ctx_persistence@engines-hang@vcs0.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-1/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-rkl: [FAIL][257] ([i915#2842]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-rkl-1/igt@gem_exec_fair@basic-pace@vcs0.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-7/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_spin_batch@user-each: - shard-mtlp: [DMESG-FAIL][259] ([i915#8962] / [i915#9121]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-4/igt@gem_spin_batch@user-each.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-5/igt@gem_spin_batch@user-each.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [FAIL][261] ([i915#6268]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-5/igt@gem_userptr_blits@nohangcheck.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-4/igt@gem_userptr_blits@nohangcheck.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [SKIP][263] ([i915#4281]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-tglu-6/igt@i915_pm_dc@dc9-dpms.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_freq_api@freq-basic-api@gt0: - shard-mtlp: [FAIL][265] ([i915#8670]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-8/igt@i915_pm_freq_api@freq-basic-api@gt0.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-2/igt@i915_pm_freq_api@freq-basic-api@gt0.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-dg1: [SKIP][267] ([i915#1937]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-dg1-17/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: [SKIP][269] ([i915#8403]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-6/igt@i915_pm_rc6_residency@rc6-accuracy.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-1/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: [WARN][271] ([i915#2681]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-fence.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [FAIL][273] ([i915#3591]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][275] ([i915#1397]) -> [PASS][276] +1 similar issue [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-rkl-4/igt@i915_pm_rpm@dpms-lpsp.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-dg2: [SKIP][277] ([i915#1397]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-dg2-10/igt@i915_pm_rpm@dpms-non-lpsp.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-1/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [SKIP][279] ([i915#1397]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-17/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1: - shard-mtlp: [FAIL][281] ([i915#2521]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: [FAIL][283] ([i915#3743]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_flip_event_leak@basic@pipe-a-edp-1: - shard-mtlp: [DMESG-WARN][285] ([i915#2017]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-6/igt@kms_flip_event_leak@basic@pipe-a-edp-1.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-1/igt@kms_flip_event_leak@basic@pipe-a-edp-1.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: - shard-mtlp: [FAIL][287] ([i915#1623]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-4/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-4/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][289] ([i915#8292]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@perf_pmu@semaphore-busy@bcs0: - shard-mtlp: [FAIL][291] ([i915#4349]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-8/igt@perf_pmu@semaphore-busy@bcs0.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-7/igt@perf_pmu@semaphore-busy@bcs0.html * igt@sysfs_heartbeat_interval@nopreempt@bcs0: - shard-mtlp: [FAIL][293] ([i915#6015]) -> [PASS][294] +1 similar issue [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-3/igt@sysfs_heartbeat_interval@nopreempt@bcs0.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-5/igt@sysfs_heartbeat_interval@nopreempt@bcs0.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-tglu: [FAIL][295] ([i915#2681] / [i915#3591]) -> [WARN][296] ([i915#2681]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@kms_async_flips@crc@pipe-a-edp-1: - shard-mtlp: [DMESG-FAIL][297] ([i915#8561]) -> [DMESG-FAIL][298] ([i915#1982] / [i915#8561]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-mtlp-1/igt@kms_async_flips@crc@pipe-a-edp-1.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-mtlp-7/igt@kms_async_flips@crc@pipe-a-edp-1.html * igt@kms_content_protection@content_type_change: - shard-dg2: [SKIP][299] ([i915#7118]) -> [SKIP][300] ([i915#7118] / [i915#7162]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-dg2-6/igt@kms_content_protection@content_type_change.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg2-11/igt@kms_content_protection@content_type_change.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][301] ([i915#7116]) -> [SKIP][302] ([fdo#109300]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-dg1-14/igt@kms_content_protection@mei_interface.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-17/igt@kms_content_protection@mei_interface.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-snb: [INCOMPLETE][303] -> [DMESG-WARN][304] ([i915#8841]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-snb7/igt@kms_fbcon_fbt@fbc-suspend.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-snb4/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][305] ([fdo#109285]) -> [SKIP][306] ([fdo#109285] / [i915#4098]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][307] ([i915#4816]) -> [SKIP][308] ([i915#4070] / [i915#4816]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1: - shard-apl: [ABORT][309] ([i915#180]) -> [DMESG-WARN][310] ([i915#180]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][311] ([i915#1072] / [i915#4078]) -> [SKIP][312] ([i915#1072]) +1 similar issue [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-dg1-18/igt@kms_psr@cursor_plane_move.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-14/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@primary_mmap_gtt: - shard-dg1: [SKIP][313] ([i915#1072]) -> [SKIP][314] ([i915#1072] / [i915#4078]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13528/shard-dg1-19/igt@kms_psr@primary_mmap_gtt.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/shard-dg1-16/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). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [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#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#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 [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#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [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#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [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#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#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [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#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#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#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [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#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [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#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [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#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [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#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398 [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#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#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8670]: https://gitlab.freedesktop.org/drm/intel/issues/8670 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8764]: https://gitlab.freedesktop.org/drm/intel/issues/8764 [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#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8957]: https://gitlab.freedesktop.org/drm/intel/issues/8957 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7441 -> IGTPW_9604 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13528: a7c0be10a6b6a23017681cc609c1353711dc70e7 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9604: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9604/index.html IGT_7441: 152bb04fd1297075b5d0b1c4487dac8e9a70d070 @ 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_9604/index.html [-- Attachment #2: Type: text/html, Size: 98710 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2023-08-22 14:51 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-16 20:53 [igt-dev] [PATCH 1/3] lib/igt_fb: use the entire 32 bit for fnv1a_crc Alex Hung 2023-08-16 20:53 ` [igt-dev] [PATCH 2/3] lib/igt_fb: add 10 bits (XRGB2101010) supports in fnv1a_crc Alex Hung 2023-08-16 20:53 ` [igt-dev] [PATCH 3/3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback Alex Hung 2023-08-17 6:32 ` Maxime Ripard 2023-08-17 7:09 ` Alex Hung 2023-08-17 7:50 ` Maxime Ripard 2023-08-17 14:15 ` Harry Wentland 2023-08-17 16:22 ` Alex Hung 2023-08-22 14:14 ` Maxime Ripard 2023-08-22 14:34 ` Harry Wentland 2023-08-22 13:26 ` Maxime Ripard 2023-08-22 14:51 ` Harry Wentland 2023-08-16 23:41 ` [igt-dev] ○ CI.xeBAT: info for series starting with [1/3] lib/igt_fb: use the entire 32 bit for fnv1a_crc Patchwork 2023-08-16 23:47 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-08-17 11:13 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox