* [igt-dev] [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy
@ 2023-10-04 13:47 Juha-Pekka Heikkila
2023-10-04 16:41 ` Maarten Lankhorst
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Juha-Pekka Heikkila @ 2023-10-04 13:47 UTC (permalink / raw)
To: igt-dev
With Xe add check to not use extended block copy if it is not available.
Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
lib/igt_fb.c | 20 +++++++++++---------
1 file changed, 11 insertions(+), 9 deletions(-)
diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index f0c0681ab..54a66eb6a 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -2920,17 +2920,19 @@ static void blitcopy(const struct igt_fb *dst_fb,
blt_set_copy_object(&blt.src, src);
blt_set_copy_object(&blt.dst, dst);
- blt_set_object_ext(&ext.src,
- blt_compression_format(&blt, src_fb),
- src_fb->width, src_fb->height,
- SURFACE_TYPE_2D);
+ if (blt_uses_extended_block_copy(src_fb->fd)) {
+ blt_set_object_ext(&ext.src,
+ blt_compression_format(&blt, src_fb),
+ src_fb->width, src_fb->height,
+ SURFACE_TYPE_2D);
- blt_set_object_ext(&ext.dst,
- blt_compression_format(&blt, dst_fb),
- dst_fb->width, dst_fb->height,
- SURFACE_TYPE_2D);
+ blt_set_object_ext(&ext.dst,
+ blt_compression_format(&blt, dst_fb),
+ dst_fb->width, dst_fb->height,
+ SURFACE_TYPE_2D);
- pext = &ext;
+ pext = &ext;
+ }
blt_set_batch(&blt.bb, xe_bb, bb_size, mem_region);
--
2.34.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [igt-dev] [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy 2023-10-04 13:47 [igt-dev] [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy Juha-Pekka Heikkila @ 2023-10-04 16:41 ` Maarten Lankhorst 2023-10-05 8:39 ` Juha-Pekka Heikkila 2023-10-04 17:24 ` Zbigniew Kempczyński ` (4 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Maarten Lankhorst @ 2023-10-04 16:41 UTC (permalink / raw) To: Juha-Pekka Heikkila, igt-dev Hey, Patch looks good, but right below HAS_FLATCCS is used instead. Could you fix that too for consistency? With that amended, Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Den 2023-10-04 kl. 15:47, skrev Juha-Pekka Heikkila: > With Xe add check to not use extended block copy if it is not available. > > Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> > --- > lib/igt_fb.c | 20 +++++++++++--------- > 1 file changed, 11 insertions(+), 9 deletions(-) > > diff --git a/lib/igt_fb.c b/lib/igt_fb.c > index f0c0681ab..54a66eb6a 100644 > --- a/lib/igt_fb.c > +++ b/lib/igt_fb.c > @@ -2920,17 +2920,19 @@ static void blitcopy(const struct igt_fb *dst_fb, > blt_set_copy_object(&blt.src, src); > blt_set_copy_object(&blt.dst, dst); > > - blt_set_object_ext(&ext.src, > - blt_compression_format(&blt, src_fb), > - src_fb->width, src_fb->height, > - SURFACE_TYPE_2D); > + if (blt_uses_extended_block_copy(src_fb->fd)) { > + blt_set_object_ext(&ext.src, > + blt_compression_format(&blt, src_fb), > + src_fb->width, src_fb->height, > + SURFACE_TYPE_2D); > > - blt_set_object_ext(&ext.dst, > - blt_compression_format(&blt, dst_fb), > - dst_fb->width, dst_fb->height, > - SURFACE_TYPE_2D); > + blt_set_object_ext(&ext.dst, > + blt_compression_format(&blt, dst_fb), > + dst_fb->width, dst_fb->height, > + SURFACE_TYPE_2D); > > - pext = &ext; > + pext = &ext; > + } > > blt_set_batch(&blt.bb, xe_bb, bb_size, mem_region); > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy 2023-10-04 16:41 ` Maarten Lankhorst @ 2023-10-05 8:39 ` Juha-Pekka Heikkila 2023-10-05 11:18 ` Zbigniew Kempczyński 0 siblings, 1 reply; 11+ messages in thread From: Juha-Pekka Heikkila @ 2023-10-05 8:39 UTC (permalink / raw) To: Maarten Lankhorst, igt-dev Hei Maarten, On 4.10.2023 19.41, Maarten Lankhorst wrote: > Hey, > > Patch looks good, but right below HAS_FLATCCS is used instead. > > Could you fix that too for consistency? That is not cosmetic change, it will affect mtl behavior. Currently I don't have access to machine which would match to what ci has so I cannot test what will happen. /Juha-Pekka > > With that amended, > > Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> > > Den 2023-10-04 kl. 15:47, skrev Juha-Pekka Heikkila: >> With Xe add check to not use extended block copy if it is not available. >> >> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> >> --- >> lib/igt_fb.c | 20 +++++++++++--------- >> 1 file changed, 11 insertions(+), 9 deletions(-) >> >> diff --git a/lib/igt_fb.c b/lib/igt_fb.c >> index f0c0681ab..54a66eb6a 100644 >> --- a/lib/igt_fb.c >> +++ b/lib/igt_fb.c >> @@ -2920,17 +2920,19 @@ static void blitcopy(const struct igt_fb *dst_fb, >> blt_set_copy_object(&blt.src, src); >> blt_set_copy_object(&blt.dst, dst); >> - blt_set_object_ext(&ext.src, >> - blt_compression_format(&blt, src_fb), >> - src_fb->width, src_fb->height, >> - SURFACE_TYPE_2D); >> + if (blt_uses_extended_block_copy(src_fb->fd)) { >> + blt_set_object_ext(&ext.src, >> + blt_compression_format(&blt, src_fb), >> + src_fb->width, src_fb->height, >> + SURFACE_TYPE_2D); >> - blt_set_object_ext(&ext.dst, >> - blt_compression_format(&blt, dst_fb), >> - dst_fb->width, dst_fb->height, >> - SURFACE_TYPE_2D); >> + blt_set_object_ext(&ext.dst, >> + blt_compression_format(&blt, dst_fb), >> + dst_fb->width, dst_fb->height, >> + SURFACE_TYPE_2D); >> - pext = &ext; >> + pext = &ext; >> + } >> blt_set_batch(&blt.bb, xe_bb, bb_size, mem_region); ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy 2023-10-05 8:39 ` Juha-Pekka Heikkila @ 2023-10-05 11:18 ` Zbigniew Kempczyński 2023-10-05 12:32 ` Juha-Pekka Heikkila 0 siblings, 1 reply; 11+ messages in thread From: Zbigniew Kempczyński @ 2023-10-05 11:18 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev On Thu, Oct 05, 2023 at 11:39:54AM +0300, Juha-Pekka Heikkila wrote: > Hei Maarten, > > On 4.10.2023 19.41, Maarten Lankhorst wrote: > > Hey, > > > > Patch looks good, but right below HAS_FLATCCS is used instead. > > > > Could you fix that too for consistency? > > That is not cosmetic change, it will affect mtl behavior. Currently I don't > have access to machine which would match to what ci has so I cannot test > what will happen. Looking at the code HAS_FLATCCS is not true for mtl so now we're not using extended block-copy command. Bspec said it should and BLT_CMD_EXTENDED property is set in intel_cmds_info.c. Do we have working blitcopy() for mtl now? -- Zbigniew > > /Juha-Pekka > > > > > With that amended, > > > > Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> > > > > Den 2023-10-04 kl. 15:47, skrev Juha-Pekka Heikkila: > > > With Xe add check to not use extended block copy if it is not available. > > > > > > Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> > > > --- > > > lib/igt_fb.c | 20 +++++++++++--------- > > > 1 file changed, 11 insertions(+), 9 deletions(-) > > > > > > diff --git a/lib/igt_fb.c b/lib/igt_fb.c > > > index f0c0681ab..54a66eb6a 100644 > > > --- a/lib/igt_fb.c > > > +++ b/lib/igt_fb.c > > > @@ -2920,17 +2920,19 @@ static void blitcopy(const struct igt_fb *dst_fb, > > > blt_set_copy_object(&blt.src, src); > > > blt_set_copy_object(&blt.dst, dst); > > > - blt_set_object_ext(&ext.src, > > > - blt_compression_format(&blt, src_fb), > > > - src_fb->width, src_fb->height, > > > - SURFACE_TYPE_2D); > > > + if (blt_uses_extended_block_copy(src_fb->fd)) { > > > + blt_set_object_ext(&ext.src, > > > + blt_compression_format(&blt, src_fb), > > > + src_fb->width, src_fb->height, > > > + SURFACE_TYPE_2D); > > > - blt_set_object_ext(&ext.dst, > > > - blt_compression_format(&blt, dst_fb), > > > - dst_fb->width, dst_fb->height, > > > - SURFACE_TYPE_2D); > > > + blt_set_object_ext(&ext.dst, > > > + blt_compression_format(&blt, dst_fb), > > > + dst_fb->width, dst_fb->height, > > > + SURFACE_TYPE_2D); > > > - pext = &ext; > > > + pext = &ext; > > > + } > > > blt_set_batch(&blt.bb, xe_bb, bb_size, mem_region); > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy 2023-10-05 11:18 ` Zbigniew Kempczyński @ 2023-10-05 12:32 ` Juha-Pekka Heikkila 0 siblings, 0 replies; 11+ messages in thread From: Juha-Pekka Heikkila @ 2023-10-05 12:32 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev On 5.10.2023 14.18, Zbigniew Kempczyński wrote: > On Thu, Oct 05, 2023 at 11:39:54AM +0300, Juha-Pekka Heikkila wrote: >> Hei Maarten, >> >> On 4.10.2023 19.41, Maarten Lankhorst wrote: >>> Hey, >>> >>> Patch looks good, but right below HAS_FLATCCS is used instead. >>> >>> Could you fix that too for consistency? >> >> That is not cosmetic change, it will affect mtl behavior. Currently I don't >> have access to machine which would match to what ci has so I cannot test >> what will happen. > > Looking at the code HAS_FLATCCS is not true for mtl so now we're > not using extended block-copy command. Bspec said it should and > BLT_CMD_EXTENDED property is set in intel_cmds_info.c. Do we > have working blitcopy() for mtl now? > I cannot remember why it was set like this, on early mtl boxes there was some reason. It has worked correctly ever since but probably should check if this can be switched to use extended blt as expected. I only have access to earlier stepping mtl which doesn't match to what ci has for gt part. /Juha-Pekka >>> >>> With that amended, >>> >>> Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> >>> >>> Den 2023-10-04 kl. 15:47, skrev Juha-Pekka Heikkila: >>>> With Xe add check to not use extended block copy if it is not available. >>>> >>>> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> >>>> --- >>>> lib/igt_fb.c | 20 +++++++++++--------- >>>> 1 file changed, 11 insertions(+), 9 deletions(-) >>>> >>>> diff --git a/lib/igt_fb.c b/lib/igt_fb.c >>>> index f0c0681ab..54a66eb6a 100644 >>>> --- a/lib/igt_fb.c >>>> +++ b/lib/igt_fb.c >>>> @@ -2920,17 +2920,19 @@ static void blitcopy(const struct igt_fb *dst_fb, >>>> blt_set_copy_object(&blt.src, src); >>>> blt_set_copy_object(&blt.dst, dst); >>>> - blt_set_object_ext(&ext.src, >>>> - blt_compression_format(&blt, src_fb), >>>> - src_fb->width, src_fb->height, >>>> - SURFACE_TYPE_2D); >>>> + if (blt_uses_extended_block_copy(src_fb->fd)) { >>>> + blt_set_object_ext(&ext.src, >>>> + blt_compression_format(&blt, src_fb), >>>> + src_fb->width, src_fb->height, >>>> + SURFACE_TYPE_2D); >>>> - blt_set_object_ext(&ext.dst, >>>> - blt_compression_format(&blt, dst_fb), >>>> - dst_fb->width, dst_fb->height, >>>> - SURFACE_TYPE_2D); >>>> + blt_set_object_ext(&ext.dst, >>>> + blt_compression_format(&blt, dst_fb), >>>> + dst_fb->width, dst_fb->height, >>>> + SURFACE_TYPE_2D); >>>> - pext = &ext; >>>> + pext = &ext; >>>> + } >>>> blt_set_batch(&blt.bb, xe_bb, bb_size, mem_region); >> ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy 2023-10-04 13:47 [igt-dev] [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy Juha-Pekka Heikkila 2023-10-04 16:41 ` Maarten Lankhorst @ 2023-10-04 17:24 ` Zbigniew Kempczyński 2023-10-04 18:06 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 11+ messages in thread From: Zbigniew Kempczyński @ 2023-10-04 17:24 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev On Wed, Oct 04, 2023 at 04:47:22PM +0300, Juha-Pekka Heikkila wrote: > With Xe add check to not use extended block copy if it is not available. > > Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> > --- > lib/igt_fb.c | 20 +++++++++++--------- > 1 file changed, 11 insertions(+), 9 deletions(-) > > diff --git a/lib/igt_fb.c b/lib/igt_fb.c > index f0c0681ab..54a66eb6a 100644 > --- a/lib/igt_fb.c > +++ b/lib/igt_fb.c > @@ -2920,17 +2920,19 @@ static void blitcopy(const struct igt_fb *dst_fb, > blt_set_copy_object(&blt.src, src); > blt_set_copy_object(&blt.dst, dst); > > - blt_set_object_ext(&ext.src, > - blt_compression_format(&blt, src_fb), > - src_fb->width, src_fb->height, > - SURFACE_TYPE_2D); > + if (blt_uses_extended_block_copy(src_fb->fd)) { Makes sense for me. Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> -- Zbigniew > + blt_set_object_ext(&ext.src, > + blt_compression_format(&blt, src_fb), > + src_fb->width, src_fb->height, > + SURFACE_TYPE_2D); > > - blt_set_object_ext(&ext.dst, > - blt_compression_format(&blt, dst_fb), > - dst_fb->width, dst_fb->height, > - SURFACE_TYPE_2D); > + blt_set_object_ext(&ext.dst, > + blt_compression_format(&blt, dst_fb), > + dst_fb->width, dst_fb->height, > + SURFACE_TYPE_2D); > > - pext = &ext; > + pext = &ext; > + } > > blt_set_batch(&blt.bb, xe_bb, bb_size, mem_region); > > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for lib/igt_fb: on Xe driver take into account adlp with no extended block copy 2023-10-04 13:47 [igt-dev] [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy Juha-Pekka Heikkila 2023-10-04 16:41 ` Maarten Lankhorst 2023-10-04 17:24 ` Zbigniew Kempczyński @ 2023-10-04 18:06 ` Patchwork 2023-10-04 18:07 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-10-04 18:06 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1952 bytes --] == Series Details == Series: lib/igt_fb: on Xe driver take into account adlp with no extended block copy URL : https://patchwork.freedesktop.org/series/124611/ State : success == Summary == CI Bug Log - changes from XEIGT_7512_BAT -> XEIGTPW_9917_BAT ==================================================== Summary ------- **WARNING** Minor unknown changes coming with XEIGTPW_9917_BAT need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_9917_BAT, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_9917_BAT: ### IGT changes ### #### Warnings #### * igt@core_hotunplug@unbind-rebind: - bat-dg2-oem2: [INCOMPLETE][1] ([Intel XE#764]) -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7512/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9917/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html [Intel XE#764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/764 Build changes ------------- * IGT: IGT_7512 -> IGTPW_9917 * Linux: xe-411-090c3e92db31fbbe59a47d44f8dd7e8a1ccbcb36 -> xe-412-ad02b0f1ea8fe562083663026a9f69a3d2ae6875 IGTPW_9917: 9917 IGT_7512: 2eb58faf82d3cd5e2e74154a7319cff56eb40762 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-411-090c3e92db31fbbe59a47d44f8dd7e8a1ccbcb36: 090c3e92db31fbbe59a47d44f8dd7e8a1ccbcb36 xe-412-ad02b0f1ea8fe562083663026a9f69a3d2ae6875: ad02b0f1ea8fe562083663026a9f69a3d2ae6875 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9917/index.html [-- Attachment #2: Type: text/html, Size: 2541 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: on Xe driver take into account adlp with no extended block copy 2023-10-04 13:47 [igt-dev] [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy Juha-Pekka Heikkila ` (2 preceding siblings ...) 2023-10-04 18:06 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork @ 2023-10-04 18:07 ` Patchwork 2023-10-05 4:01 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-10-05 11:10 ` [igt-dev] [PATCH i-g-t] " Kamil Konieczny 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-10-04 18:07 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7355 bytes --] == Series Details == Series: lib/igt_fb: on Xe driver take into account adlp with no extended block copy URL : https://patchwork.freedesktop.org/series/124611/ State : success == Summary == CI Bug Log - changes from CI_DRM_13712 -> IGTPW_9917 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/index.html Participating hosts (40 -> 40) ------------------------------ Additional (1): fi-pnv-d510 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9917 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3@smem: - bat-mtlp-8: [PASS][1] -> [ABORT][2] ([i915#8213] / [i915#9262]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/bat-mtlp-8/igt@gem_exec_suspend@basic-s3@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/bat-mtlp-8/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_selftest@live@hangcheck: - bat-atsm-1: [PASS][3] -> [INCOMPLETE][4] ([i915#7913]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/bat-atsm-1/igt@i915_selftest@live@hangcheck.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/bat-atsm-1/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@hugepages: - bat-mtlp-8: [PASS][5] -> [DMESG-WARN][6] ([i915#8962]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/bat-mtlp-8/igt@i915_selftest@live@hugepages.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/bat-mtlp-8/igt@i915_selftest@live@hugepages.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-hsw-4770: NOTRUN -> [SKIP][7] ([fdo#109271]) +13 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-5: - bat-adlp-11: [PASS][8] -> [ABORT][9] ([i915#8668]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-5.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-5.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1: - fi-hsw-4770: NOTRUN -> [DMESG-WARN][10] ([i915#8841]) +6 other tests dmesg-warn [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/fi-hsw-4770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][11] ([fdo#109271]) +31 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/fi-pnv-d510/igt@kms_psr@primary_page_flip.html * igt@kms_psr@sprite_plane_onoff: - fi-hsw-4770: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#1072]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@lmem0: - bat-dg2-9: [INCOMPLETE][13] ([i915#9275]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: [DMESG-FAIL][15] ([i915#5334] / [i915#7872]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html - fi-apl-guc: [DMESG-FAIL][17] ([i915#5334]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_chamelium_edid@hdmi-edid-read: - {bat-dg2-13}: [DMESG-WARN][19] ([i915#7952]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_flip@basic-flip-vs-modeset@d-dp6: - bat-adlp-11: [DMESG-FAIL][21] ([i915#6868]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/bat-adlp-11/igt@kms_flip@basic-flip-vs-modeset@d-dp6.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/bat-adlp-11/igt@kms_flip@basic-flip-vs-modeset@d-dp6.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [FAIL][23] ([IGT#3]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5: - bat-adlp-11: [ABORT][25] ([i915#8668] / [i915#9451]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868 [i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#8981]: https://gitlab.freedesktop.org/drm/intel/issues/8981 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9451]: https://gitlab.freedesktop.org/drm/intel/issues/9451 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7512 -> IGTPW_9917 CI-20190529: 20190529 CI_DRM_13712: 454adf17aa8ce15c81bff39e381d93002000a28f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9917: 9917 IGT_7512: 2eb58faf82d3cd5e2e74154a7319cff56eb40762 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/index.html [-- Attachment #2: Type: text/html, Size: 8459 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: on Xe driver take into account adlp with no extended block copy 2023-10-04 13:47 [igt-dev] [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy Juha-Pekka Heikkila ` (3 preceding siblings ...) 2023-10-04 18:07 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-10-05 4:01 ` Patchwork 2023-10-05 11:10 ` [igt-dev] [PATCH i-g-t] " Kamil Konieczny 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-10-05 4:01 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 77139 bytes --] == Series Details == Series: lib/igt_fb: on Xe driver take into account adlp with no extended block copy URL : https://patchwork.freedesktop.org/series/124611/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13712_full -> IGTPW_9917_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9917_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9917_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/index.html Participating hosts (9 -> 10) ------------------------------ Additional (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9917_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ctx_isolation@preservation-s3@ccs2: - shard-dg2: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@gem_ctx_isolation@preservation-s3@ccs2.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-dg1: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg1-19/igt@gem_exec_whisper@basic-fds-forked-all.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-18/igt@gem_exec_whisper@basic-fds-forked-all.html * igt@prime_vgem@sync@ccs0: - shard-mtlp: [PASS][4] -> [DMESG-WARN][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-7/igt@prime_vgem@sync@ccs0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-2/igt@prime_vgem@sync@ccs0.html #### Warnings #### * igt@i915_suspend@basic-s3-without-i915: - shard-snb: [DMESG-WARN][6] ([i915#8841]) -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-snb5/igt@i915_suspend@basic-s3-without-i915.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-snb6/igt@i915_suspend@basic-s3-without-i915.html Known issues ------------ Here are the changes found in IGTPW_9917_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-11/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#9318]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-1/igt@debugfs_test@basic-hwmon.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +10 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-11/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@isolation@bcs0: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +4 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-18/igt@drm_fdinfo@isolation@bcs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][12] -> [FAIL][13] ([i915#7742]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@drm_fdinfo@most-busy-check-all@vcs0: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) +5 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-5/igt@drm_fdinfo@most-busy-check-all@vcs0.html * igt@drm_fdinfo@virtual-idle: - shard-rkl: NOTRUN -> [FAIL][15] ([i915#7742]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#3281]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-15/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-3/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_isolation@preservation-s3@ccs0: - shard-dg2: NOTRUN -> [FAIL][20] ([fdo#103375]) +3 other tests fail [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@gem_ctx_isolation@preservation-s3@ccs0.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [PASS][21] -> [FAIL][22] ([i915#2410]) +5 other tests fail [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-5/igt@gem_ctx_persistence@engines-hostile@vcs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-6/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-5/igt@gem_ctx_sseu@engines.html * igt@gem_eio@hibernate: - shard-dg2: [PASS][26] -> [ABORT][27] ([i915#7975] / [i915#8213]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg2-11/igt@gem_eio@hibernate.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-5/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4771]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@gem_exec_balancer@bonded-semaphore.html - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4812]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-5/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#4036]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-17/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: [PASS][33] -> [FAIL][34] ([i915#4475]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-6/igt@gem_exec_capture@pi@vcs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-7/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: NOTRUN -> [FAIL][35] ([i915#2842]) +1 other test fail [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-2/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace-share: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4473] / [i915#4771]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-1/igt@gem_exec_fair@basic-pace-share.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][37] -> [FAIL][38] ([i915#2842]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-18/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +5 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-11/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#7697]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_reloc@basic-concurrent16: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-2/igt@gem_exec_reloc@basic-concurrent16.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-12/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +6 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4812]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-14/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-5/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4860]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-16/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613] / [i915#7582]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-2/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@verify-ccs: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#4613]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-4/igt@gem_lmem_swapping@verify-ccs.html - shard-apl: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#4613]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-apl2/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_madvise@dontneed-before-pwrite: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3282]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-7/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#8289]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-5/igt@gem_media_fill@media-fill.html * igt@gem_mmap@short-mmap: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4083]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-6/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@bad-object: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4077]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-19/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4077]) +11 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-5/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_wc@invalid-flags: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4083]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-4/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-15/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-18/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4270]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4270]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-5/igt@gem_pxp@verify-pxp-stale-buf-execution.html - shard-rkl: NOTRUN -> [SKIP][61] ([i915#4270]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_readwrite@write-bad-handle: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#8428]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-5/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4079]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3282]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-2/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4885]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3297]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3297]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#3297]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297] / [i915#4958]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@vma-merge: - shard-apl: NOTRUN -> [FAIL][71] ([i915#3318]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-apl6/igt@gem_userptr_blits@vma-merge.html - shard-rkl: NOTRUN -> [FAIL][72] ([i915#3318]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-3/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_linear_blits: - shard-rkl: NOTRUN -> [SKIP][73] ([fdo#109289]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-4/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-dg2: NOTRUN -> [SKIP][74] ([fdo#109289]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-5/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@batch-without-end: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#2527]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-17/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#2856]) +5 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-6/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-param: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#2856]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-3/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#2527]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-4/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_freq_api@freq-basic-api: - shard-apl: NOTRUN -> [SKIP][79] ([fdo#109271]) +48 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-apl1/igt@i915_pm_freq_api@freq-basic-api.html - shard-rkl: NOTRUN -> [SKIP][80] ([i915#8399]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#6590]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-5/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#1397]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#1397]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-4/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][84] -> [SKIP][85] ([i915#1397]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg2: [PASS][86] -> [FAIL][87] ([fdo#103375]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg2-11/igt@i915_pm_rpm@system-suspend-execbuf.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-5/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#6621]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-5/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][89] -> [INCOMPLETE][90] ([i915#7790]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-snb5/igt@i915_pm_rps@reset.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-snb6/igt@i915_pm_rps@reset.html - shard-mtlp: NOTRUN -> [FAIL][91] ([i915#8346]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-4/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#8925]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4387]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-17/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@live@requests: - shard-mtlp: [PASS][94] -> [ABORT][95] ([i915#9414]) +2 other tests abort [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-3/igt@i915_selftest@live@requests.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-4/igt@i915_selftest@live@requests.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4212]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#8502]) +11 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#8502]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][99] ([i915#8247]) +3 other tests fail [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-17/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#5286]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][101] ([fdo#111614]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-4/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5286]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][103] ([fdo#111614] / [i915#3638]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][104] ([fdo#111614]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#3638]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-17/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#5190]) +12 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][107] ([fdo#110723]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4538]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#4538] / [i915#5190]) +5 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-6/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-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][110] ([fdo#111615]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#3689] / [i915#5354]) +20 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-4/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#3689] / [i915#5354] / [i915#6095]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-tglu-10/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#5354] / [i915#6095]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#5354] / [i915#6095]) +6 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-15/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-5/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#3689] / [i915#5354] / [i915#6095]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-12/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-18/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#3734] / [i915#5354] / [i915#6095]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-4/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#3886]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-apl2/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#3689] / [i915#3886] / [i915#5354]) +9 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-11/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#5354] / [i915#6095]) +5 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-5/igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#5354]) +11 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-2/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4087] / [i915#7213]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4087]) +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg1: NOTRUN -> [SKIP][126] ([fdo#111827]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-19/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][127] ([fdo#111827]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-6/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#7828]) +8 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#7828]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-12/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#7828]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#7828]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#3299]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#7116]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-15/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#7118]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6944]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-1/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][136] ([i915#1339]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][137] ([fdo#109279] / [i915#3359]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#3359]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#3555] / [i915#8814]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#3359]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#3555]) +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3555]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][143] ([fdo#109274] / [i915#5354]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][144] ([fdo#109274] / [fdo#111767] / [i915#5354]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#4103] / [i915#4213]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#9226] / [i915#9261]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-3/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#9227]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-3/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#8588]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3804]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#8812]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#3840]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-1/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#3840]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][153] ([fdo#109274]) +6 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@kms_flip@2x-blocking-wf_vblank.html - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#3637]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-5/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#8381]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-tglu: NOTRUN -> [SKIP][156] ([fdo#109274] / [i915#3637]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-tglu-3/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [DMESG-WARN][157] ([i915#8841]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][158] ([fdo#111825]) +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-3/igt@kms_flip@2x-plain-flip.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#2587] / [i915#2672]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#2672]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-3/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-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#8810]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#2672]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#5274]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-dg2: [PASS][164] -> [FAIL][165] ([i915#6880]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#5354]) +50 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#8708]) +18 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][168] ([fdo#111825]) +5 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][169] ([fdo#111825] / [i915#1825]) +9 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#8708]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#3023]) +6 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#5439]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#1825]) +4 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#8708]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][175] ([fdo#110189]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#3458]) +15 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#3458]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8228]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#8228]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#4816]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#6301]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-11/igt@kms_panel_fitting@legacy.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8806]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-11/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#6953]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][184] ([i915#8292]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#5176]) +3 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-12/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#5235]) +15 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#5235]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#5235]) +11 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#5235]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][190] ([fdo#109271]) +24 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-snb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#658]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-11/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#4348]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@cursor_plane_move: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#1072] / [i915#4078]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-18/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#1072]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-2/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#1072]) +6 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-11/igt@kms_psr@psr2_sprite_mmap_gtt.html - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#4077]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-1/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#5461] / [i915#658]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-11/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#4235] / [i915#5190]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][199] ([fdo#111615] / [i915#5289]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: NOTRUN -> [SKIP][200] ([fdo#111615] / [i915#5289]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#4235]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][202] ([i915#5465]) +1 other test fail [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][203] ([fdo#109309]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-6/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#4070] / [i915#6768]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-7/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html * igt@kms_vblank@pipe-d-ts-continuation-idle-hang: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#4070] / [i915#533] / [i915#6768]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-4/igt@kms_vblank@pipe-d-ts-continuation-idle-hang.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#7387]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-11/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg1: [PASS][207] -> [FAIL][208] ([i915#5234]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg1-16/igt@perf_pmu@all-busy-idle-check-all.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-18/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [PASS][209] -> [FAIL][210] ([i915#4349]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-2/igt@perf_pmu@busy-double-start@ccs0.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-1/igt@perf_pmu@busy-double-start@ccs0.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][211] ([i915#6806]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-2/igt@perf_pmu@frequency@gt0.html * igt@prime_vgem@basic-write: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3708]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-2/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3708]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@sync@vecs0: - shard-mtlp: [PASS][214] -> [ABORT][215] ([i915#8875]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-7/igt@prime_vgem@sync@vecs0.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-2/igt@prime_vgem@sync@vecs0.html * igt@syncobj_wait@wait-for-submit-delayed-submit: - shard-dg1: [PASS][216] -> [DMESG-WARN][217] ([i915#1982]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg1-14/igt@syncobj_wait@wait-for-submit-delayed-submit.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-12/igt@syncobj_wait@wait-for-submit-delayed-submit.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: [PASS][218] -> [ABORT][219] ([i915#8521] / [i915#8865]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-2/igt@sysfs_timeslice_duration@timeout@vecs0.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-8/igt@sysfs_timeslice_duration@timeout@vecs0.html * igt@tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][220] ([fdo#109307] / [i915#4818]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-18/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@create-perfmon-invalid-counters: - shard-rkl: NOTRUN -> [SKIP][221] ([fdo#109315]) +4 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-6/igt@v3d/v3d_perfmon@create-perfmon-invalid-counters.html * igt@v3d/v3d_submit_cl@bad-flag: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#2575]) +3 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-4/igt@v3d/v3d_submit_cl@bad-flag.html * igt@v3d/v3d_submit_csd@bad-multisync-in-sync: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#2575]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-14/igt@v3d/v3d_submit_csd@bad-multisync-in-sync.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#2575]) +12 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-5/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_perfmon@destroy-valid-perfmon: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#7711]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-6/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#7711]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-7/igt@vc4/vc4_tiling@get-bad-handle.html * igt@vc4/vc4_tiling@set-get: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#7711]) +8 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-11/igt@vc4/vc4_tiling@set-get.html * igt@vc4/vc4_wait_bo@unused-bo-0ns: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#7711]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-12/igt@vc4/vc4_wait_bo@unused-bo-0ns.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][229] ([i915#6268]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [FAIL][231] ([i915#6268]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-tglu-6/igt@gem_ctx_exec@basic-nohangcheck.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hang@ccs0: - shard-mtlp: [ABORT][233] ([i915#9414]) -> [PASS][234] +1 other test pass [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@ccs0.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-2/igt@gem_ctx_persistence@engines-hang@ccs0.html * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: [FAIL][235] ([i915#2410]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@vcs0.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-2/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][237] ([i915#2842]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-rkl: [FAIL][239] ([i915#2842]) -> [PASS][240] +1 other test pass [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [FAIL][241] ([i915#7069]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-1/igt@i915_hangman@gt-engine-hang@vcs0.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-7/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-dg1: [SKIP][243] ([i915#1397]) -> [PASS][244] +1 other test pass [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-12/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][245] ([i915#1397]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_suspend@forcewake: - shard-dg2: [INCOMPLETE][247] ([i915#4817]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg2-5/igt@i915_suspend@forcewake.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@i915_suspend@forcewake.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][249] ([i915#5138]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [FAIL][251] ([i915#3743]) -> [PASS][252] +1 other test pass [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][253] ([i915#2346]) -> [PASS][254] +1 other test pass [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][255] ([i915#2346]) -> [PASS][256] +1 other test pass [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [FAIL][257] ([fdo#103375]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg2-5/igt@kms_fbcon_fbt@fbc-suspend.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@kms_fbcon_fbt@fbc-suspend.html * {igt@kms_pm_dc@dc9-dpms}: - shard-apl: [SKIP][259] ([fdo#109271]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-apl2/igt@kms_pm_dc@dc9-dpms.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-apl6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-dg1: [FAIL][261] ([i915#9196]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html - shard-mtlp: [FAIL][263] ([i915#9196]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-d: - shard-tglu: [FAIL][265] ([i915#9196]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-apl: [INCOMPLETE][267] ([i915#180] / [i915#9392]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-apl6/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - shard-apl: [INCOMPLETE][269] ([i915#9392]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-apl6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-apl3/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: [FAIL][271] ([i915#8724]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-5/igt@perf@enable-disable@0-rcs0.html * igt@perf_pmu@most-busy-check-all@rcs0: - shard-rkl: [FAIL][273] ([i915#4349]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-1/igt@perf_pmu@most-busy-check-all@rcs0.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-6/igt@perf_pmu@most-busy-check-all@rcs0.html #### Warnings #### * igt@kms_content_protection@type1: - shard-dg2: [SKIP][275] ([i915#7118]) -> [SKIP][276] ([i915#7118] / [i915#7162]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg2-2/igt@kms_content_protection@type1.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][277] ([fdo#110189] / [i915#3955]) -> [SKIP][278] ([i915#3955]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-1/igt@kms_fbcon_fbt@psr.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-3/igt@kms_fbcon_fbt@psr.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][279] ([fdo#109285] / [i915#4098]) -> [SKIP][280] ([fdo#109285]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][281] ([i915#4816]) -> [SKIP][282] ([i915#4070] / [i915#4816]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][283] ([i915#9351]) -> [INCOMPLETE][284] ([i915#5493]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9917/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#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#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [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#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [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#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [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#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [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#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#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#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [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#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#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [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#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7512 -> IGTPW_9917 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13712: 454adf17aa8ce15c81bff39e381d93002000a28f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9917: 9917 IGT_7512: 2eb58faf82d3cd5e2e74154a7319cff56eb40762 @ 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_9917/index.html [-- Attachment #2: Type: text/html, Size: 92565 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy 2023-10-04 13:47 [igt-dev] [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy Juha-Pekka Heikkila ` (4 preceding siblings ...) 2023-10-05 4:01 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-10-05 11:10 ` Kamil Konieczny 2023-10-05 12:35 ` Juha-Pekka Heikkila 5 siblings, 1 reply; 11+ messages in thread From: Kamil Konieczny @ 2023-10-05 11:10 UTC (permalink / raw) To: igt-dev Hi Juha-Pekka, On 2023-10-04 at 16:47:22 +0300, Juha-Pekka Heikkila wrote: Could you make your patch title a little shorter? [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy imho better: [PATCH i-g-t] lib/igt_fb: fix for platforms with no extended block copy > With Xe add check to not use extended block copy if it is not available. ------ ^^ Is it limited to Xe only? Regards, Kamil > > Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> > --- > lib/igt_fb.c | 20 +++++++++++--------- > 1 file changed, 11 insertions(+), 9 deletions(-) > > diff --git a/lib/igt_fb.c b/lib/igt_fb.c > index f0c0681ab..54a66eb6a 100644 > --- a/lib/igt_fb.c > +++ b/lib/igt_fb.c > @@ -2920,17 +2920,19 @@ static void blitcopy(const struct igt_fb *dst_fb, > blt_set_copy_object(&blt.src, src); > blt_set_copy_object(&blt.dst, dst); > > - blt_set_object_ext(&ext.src, > - blt_compression_format(&blt, src_fb), > - src_fb->width, src_fb->height, > - SURFACE_TYPE_2D); > + if (blt_uses_extended_block_copy(src_fb->fd)) { > + blt_set_object_ext(&ext.src, > + blt_compression_format(&blt, src_fb), > + src_fb->width, src_fb->height, > + SURFACE_TYPE_2D); > > - blt_set_object_ext(&ext.dst, > - blt_compression_format(&blt, dst_fb), > - dst_fb->width, dst_fb->height, > - SURFACE_TYPE_2D); > + blt_set_object_ext(&ext.dst, > + blt_compression_format(&blt, dst_fb), > + dst_fb->width, dst_fb->height, > + SURFACE_TYPE_2D); > > - pext = &ext; > + pext = &ext; > + } > > blt_set_batch(&blt.bb, xe_bb, bb_size, mem_region); > > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy 2023-10-05 11:10 ` [igt-dev] [PATCH i-g-t] " Kamil Konieczny @ 2023-10-05 12:35 ` Juha-Pekka Heikkila 0 siblings, 0 replies; 11+ messages in thread From: Juha-Pekka Heikkila @ 2023-10-05 12:35 UTC (permalink / raw) To: Kamil Konieczny, igt-dev Hi Kamil, On 5.10.2023 14.10, Kamil Konieczny wrote: > Hi Juha-Pekka, > On 2023-10-04 at 16:47:22 +0300, Juha-Pekka Heikkila wrote: > > Could you make your patch title a little shorter? > > [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy > > imho better: > > [PATCH i-g-t] lib/igt_fb: fix for platforms with no extended block copy > Alas I had already merged this because there were people asking to get it in. >> With Xe add check to not use extended block copy if it is not available. > ------ ^^ > Is it limited to Xe only? This patch is only about Xe. /Juha-Pekka > > Regards, > Kamil > >> >> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> >> --- >> lib/igt_fb.c | 20 +++++++++++--------- >> 1 file changed, 11 insertions(+), 9 deletions(-) >> >> diff --git a/lib/igt_fb.c b/lib/igt_fb.c >> index f0c0681ab..54a66eb6a 100644 >> --- a/lib/igt_fb.c >> +++ b/lib/igt_fb.c >> @@ -2920,17 +2920,19 @@ static void blitcopy(const struct igt_fb *dst_fb, >> blt_set_copy_object(&blt.src, src); >> blt_set_copy_object(&blt.dst, dst); >> >> - blt_set_object_ext(&ext.src, >> - blt_compression_format(&blt, src_fb), >> - src_fb->width, src_fb->height, >> - SURFACE_TYPE_2D); >> + if (blt_uses_extended_block_copy(src_fb->fd)) { >> + blt_set_object_ext(&ext.src, >> + blt_compression_format(&blt, src_fb), >> + src_fb->width, src_fb->height, >> + SURFACE_TYPE_2D); >> >> - blt_set_object_ext(&ext.dst, >> - blt_compression_format(&blt, dst_fb), >> - dst_fb->width, dst_fb->height, >> - SURFACE_TYPE_2D); >> + blt_set_object_ext(&ext.dst, >> + blt_compression_format(&blt, dst_fb), >> + dst_fb->width, dst_fb->height, >> + SURFACE_TYPE_2D); >> >> - pext = &ext; >> + pext = &ext; >> + } >> >> blt_set_batch(&blt.bb, xe_bb, bb_size, mem_region); >> >> -- >> 2.34.1 >> ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-10-05 12:35 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-10-04 13:47 [igt-dev] [PATCH i-g-t] lib/igt_fb: on Xe driver take into account adlp with no extended block copy Juha-Pekka Heikkila 2023-10-04 16:41 ` Maarten Lankhorst 2023-10-05 8:39 ` Juha-Pekka Heikkila 2023-10-05 11:18 ` Zbigniew Kempczyński 2023-10-05 12:32 ` Juha-Pekka Heikkila 2023-10-04 17:24 ` Zbigniew Kempczyński 2023-10-04 18:06 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork 2023-10-04 18:07 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-10-05 4:01 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-10-05 11:10 ` [igt-dev] [PATCH i-g-t] " Kamil Konieczny 2023-10-05 12:35 ` Juha-Pekka Heikkila
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox