* [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation.
@ 2023-08-23 21:39 Rodrigo Vivi
2023-08-23 22:22 ` Matt Roper
` (7 more replies)
0 siblings, 8 replies; 14+ messages in thread
From: Rodrigo Vivi @ 2023-08-23 21:39 UTC (permalink / raw)
To: intel-gfx; +Cc: Matt Roper, Sushma Venkatesh Reddy, Rodrigo Vivi
Let's introduce the basic documentation about CCS.
While doing that, also removed the legacy execution flag name. That flag
simply doesn't exist for CCS and it is not needed on current context
submission. Those flag names are only needed on legacy context,
while on new ones we only need to pass the engine ID.
It is worth mention that this documentation should probably live with
the engine definitions rather than in the i915.rst file directly and
that more updates are likely need in this section. But this should
come later.
Fixes: 944823c94639 ("drm/i915/xehp: Define compute class and engine")
Cc: Matt Roper <matthew.d.roper@intel.com>
Cc: Sushma Venkatesh Reddy <sushma.venkatesh.reddy@intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
Documentation/gpu/i915.rst | 24 +++++++++++-------------
1 file changed, 11 insertions(+), 13 deletions(-)
diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst
index 60ea21734902..87bdcd616944 100644
--- a/Documentation/gpu/i915.rst
+++ b/Documentation/gpu/i915.rst
@@ -267,19 +267,17 @@ i915 driver.
Intel GPU Basics
----------------
-An Intel GPU has multiple engines. There are several engine types.
-
-- RCS engine is for rendering 3D and performing compute, this is named
- `I915_EXEC_RENDER` in user space.
-- BCS is a blitting (copy) engine, this is named `I915_EXEC_BLT` in user
- space.
-- VCS is a video encode and decode engine, this is named `I915_EXEC_BSD`
- in user space
-- VECS is video enhancement engine, this is named `I915_EXEC_VEBOX` in user
- space.
-- The enumeration `I915_EXEC_DEFAULT` does not refer to specific engine;
- instead it is to be used by user space to specify a default rendering
- engine (for 3D) that may or may not be the same as RCS.
+An Intel GPU has multiple engines. There are several engine types:
+
+- Render Command Streamer (RCS). An engine for rendering 3D and
+ performing compute on platforms without CCS.
+- Blitting Command Streamer (BCS). An engine for performing blitting and/or
+ copying operations.
+- Video Command Streamer. An engine used for video decoding. For historical
+ reasons this engine was alsso called 'BCS'.
+- Video Enhancement Command Streamer (VECS). The engine used only by media.
+- Compute Command Streamer (CCS). An engine that has access to the media and
+ GPGPU pipelines, but not the 3D pipeline.
The Intel GPU family is a family of integrated GPU's using Unified
Memory Access. For having the GPU "do work", user space will feed the
--
2.41.0
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation. 2023-08-23 21:39 [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation Rodrigo Vivi @ 2023-08-23 22:22 ` Matt Roper 2023-08-24 22:06 ` Rodrigo Vivi 2023-08-23 23:33 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork ` (6 subsequent siblings) 7 siblings, 1 reply; 14+ messages in thread From: Matt Roper @ 2023-08-23 22:22 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: intel-gfx, Sushma Venkatesh Reddy On Wed, Aug 23, 2023 at 05:39:01PM -0400, Rodrigo Vivi wrote: > Let's introduce the basic documentation about CCS. > While doing that, also removed the legacy execution flag name. That flag > simply doesn't exist for CCS and it is not needed on current context > submission. Those flag names are only needed on legacy context, > while on new ones we only need to pass the engine ID. > > It is worth mention that this documentation should probably live with > the engine definitions rather than in the i915.rst file directly and > that more updates are likely need in this section. But this should > come later. It may be better to just delete this completely and instead provide a reference to the better engine documentation we already have in include/uapi/drm/i915_drm.h? > > Fixes: 944823c94639 ("drm/i915/xehp: Define compute class and engine") > Cc: Matt Roper <matthew.d.roper@intel.com> > Cc: Sushma Venkatesh Reddy <sushma.venkatesh.reddy@intel.com> > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> > Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > --- > Documentation/gpu/i915.rst | 24 +++++++++++------------- > 1 file changed, 11 insertions(+), 13 deletions(-) > > diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst > index 60ea21734902..87bdcd616944 100644 > --- a/Documentation/gpu/i915.rst > +++ b/Documentation/gpu/i915.rst > @@ -267,19 +267,17 @@ i915 driver. > Intel GPU Basics > ---------------- > > -An Intel GPU has multiple engines. There are several engine types. > - > -- RCS engine is for rendering 3D and performing compute, this is named > - `I915_EXEC_RENDER` in user space. > -- BCS is a blitting (copy) engine, this is named `I915_EXEC_BLT` in user > - space. > -- VCS is a video encode and decode engine, this is named `I915_EXEC_BSD` > - in user space > -- VECS is video enhancement engine, this is named `I915_EXEC_VEBOX` in user > - space. > -- The enumeration `I915_EXEC_DEFAULT` does not refer to specific engine; > - instead it is to be used by user space to specify a default rendering > - engine (for 3D) that may or may not be the same as RCS. > +An Intel GPU has multiple engines. There are several engine types: > + > +- Render Command Streamer (RCS). An engine for rendering 3D and > + performing compute on platforms without CCS. I don't think the "without CCS" here is accurate; even platforms with CCS engines can still access the GPGPU pipeline via the RCS. > +- Blitting Command Streamer (BCS). An engine for performing blitting and/or > + copying operations. > +- Video Command Streamer. An engine used for video decoding. For historical > + reasons this engine was alsso called 'BCS'. I don't think this is true? As far as I recall, BCS has always referred to the blitter/copy engines, not the VCS. Matt > +- Video Enhancement Command Streamer (VECS). The engine used only by media. > +- Compute Command Streamer (CCS). An engine that has access to the media and > + GPGPU pipelines, but not the 3D pipeline. > > The Intel GPU family is a family of integrated GPU's using Unified > Memory Access. For having the GPU "do work", user space will feed the > -- > 2.41.0 > -- Matt Roper Graphics Software Engineer Linux GPU Platform Enablement Intel Corporation ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation. 2023-08-23 22:22 ` Matt Roper @ 2023-08-24 22:06 ` Rodrigo Vivi 2023-08-24 22:16 ` Matt Roper 0 siblings, 1 reply; 14+ messages in thread From: Rodrigo Vivi @ 2023-08-24 22:06 UTC (permalink / raw) To: Matt Roper; +Cc: intel-gfx, Sushma Venkatesh Reddy, Rodrigo Vivi On Wed, Aug 23, 2023 at 03:22:07PM -0700, Matt Roper wrote: > On Wed, Aug 23, 2023 at 05:39:01PM -0400, Rodrigo Vivi wrote: > > Let's introduce the basic documentation about CCS. > > While doing that, also removed the legacy execution flag name. That flag > > simply doesn't exist for CCS and it is not needed on current context > > submission. Those flag names are only needed on legacy context, > > while on new ones we only need to pass the engine ID. > > > > It is worth mention that this documentation should probably live with > > the engine definitions rather than in the i915.rst file directly and > > that more updates are likely need in this section. But this should > > come later. > > It may be better to just delete this completely and instead provide a > reference to the better engine documentation we already have in > include/uapi/drm/i915_drm.h? I thought about that, but I believe the 2 different documentation have different reader targets, although there are some overlapping. But probably the right way is indeed to move these things to the .h where they are defined... or we are sentenced to keep forgetting to update this one way or another. > > > > > Fixes: 944823c94639 ("drm/i915/xehp: Define compute class and engine") > > Cc: Matt Roper <matthew.d.roper@intel.com> > > Cc: Sushma Venkatesh Reddy <sushma.venkatesh.reddy@intel.com> > > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> > > Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > > --- > > Documentation/gpu/i915.rst | 24 +++++++++++------------- > > 1 file changed, 11 insertions(+), 13 deletions(-) > > > > diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst > > index 60ea21734902..87bdcd616944 100644 > > --- a/Documentation/gpu/i915.rst > > +++ b/Documentation/gpu/i915.rst > > @@ -267,19 +267,17 @@ i915 driver. > > Intel GPU Basics > > ---------------- > > > > -An Intel GPU has multiple engines. There are several engine types. > > - > > -- RCS engine is for rendering 3D and performing compute, this is named > > - `I915_EXEC_RENDER` in user space. > > -- BCS is a blitting (copy) engine, this is named `I915_EXEC_BLT` in user > > - space. > > -- VCS is a video encode and decode engine, this is named `I915_EXEC_BSD` > > - in user space > > -- VECS is video enhancement engine, this is named `I915_EXEC_VEBOX` in user > > - space. > > -- The enumeration `I915_EXEC_DEFAULT` does not refer to specific engine; > > - instead it is to be used by user space to specify a default rendering > > - engine (for 3D) that may or may not be the same as RCS. > > +An Intel GPU has multiple engines. There are several engine types: > > + > > +- Render Command Streamer (RCS). An engine for rendering 3D and > > + performing compute on platforms without CCS. > > I don't think the "without CCS" here is accurate; even platforms with > CCS engines can still access the GPGPU pipeline via the RCS. indeed. > > > +- Blitting Command Streamer (BCS). An engine for performing blitting and/or > > + copying operations. > > +- Video Command Streamer. An engine used for video decoding. For historical > > + reasons this engine was alsso called 'BCS'. > > I don't think this is true? As far as I recall, BCS has always referred > to the blitter/copy engines, not the VCS. doh! I meant 'BSD' to reflect the removed I915_EXEC_BSD... I can't even recall why that ever got the BSD name to start with. > > > Matt > > > +- Video Enhancement Command Streamer (VECS). The engine used only by media. > > +- Compute Command Streamer (CCS). An engine that has access to the media and > > + GPGPU pipelines, but not the 3D pipeline. > > > > The Intel GPU family is a family of integrated GPU's using Unified > > Memory Access. For having the GPU "do work", user space will feed the > > -- > > 2.41.0 > > > > -- > Matt Roper > Graphics Software Engineer > Linux GPU Platform Enablement > Intel Corporation ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation. 2023-08-24 22:06 ` Rodrigo Vivi @ 2023-08-24 22:16 ` Matt Roper 0 siblings, 0 replies; 14+ messages in thread From: Matt Roper @ 2023-08-24 22:16 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: intel-gfx, Sushma Venkatesh Reddy, Rodrigo Vivi On Thu, Aug 24, 2023 at 06:06:10PM -0400, Rodrigo Vivi wrote: > On Wed, Aug 23, 2023 at 03:22:07PM -0700, Matt Roper wrote: > > On Wed, Aug 23, 2023 at 05:39:01PM -0400, Rodrigo Vivi wrote: > > > Let's introduce the basic documentation about CCS. > > > While doing that, also removed the legacy execution flag name. That flag > > > simply doesn't exist for CCS and it is not needed on current context > > > submission. Those flag names are only needed on legacy context, > > > while on new ones we only need to pass the engine ID. > > > > > > It is worth mention that this documentation should probably live with > > > the engine definitions rather than in the i915.rst file directly and > > > that more updates are likely need in this section. But this should > > > come later. > > > > It may be better to just delete this completely and instead provide a > > reference to the better engine documentation we already have in > > include/uapi/drm/i915_drm.h? > > I thought about that, but I believe the 2 different documentation have > different reader targets, although there are some overlapping. > > But probably the right way is indeed to move these things to the .h where > they are defined... or we are sentenced to keep forgetting to update > this one way or another. > > > > > > > > > Fixes: 944823c94639 ("drm/i915/xehp: Define compute class and engine") > > > Cc: Matt Roper <matthew.d.roper@intel.com> > > > Cc: Sushma Venkatesh Reddy <sushma.venkatesh.reddy@intel.com> > > > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> > > > Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > > > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > > > --- > > > Documentation/gpu/i915.rst | 24 +++++++++++------------- > > > 1 file changed, 11 insertions(+), 13 deletions(-) > > > > > > diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst > > > index 60ea21734902..87bdcd616944 100644 > > > --- a/Documentation/gpu/i915.rst > > > +++ b/Documentation/gpu/i915.rst > > > @@ -267,19 +267,17 @@ i915 driver. > > > Intel GPU Basics > > > ---------------- > > > > > > -An Intel GPU has multiple engines. There are several engine types. > > > - > > > -- RCS engine is for rendering 3D and performing compute, this is named > > > - `I915_EXEC_RENDER` in user space. > > > -- BCS is a blitting (copy) engine, this is named `I915_EXEC_BLT` in user > > > - space. > > > -- VCS is a video encode and decode engine, this is named `I915_EXEC_BSD` > > > - in user space > > > -- VECS is video enhancement engine, this is named `I915_EXEC_VEBOX` in user > > > - space. > > > -- The enumeration `I915_EXEC_DEFAULT` does not refer to specific engine; > > > - instead it is to be used by user space to specify a default rendering > > > - engine (for 3D) that may or may not be the same as RCS. > > > +An Intel GPU has multiple engines. There are several engine types: > > > + > > > +- Render Command Streamer (RCS). An engine for rendering 3D and > > > + performing compute on platforms without CCS. > > > > I don't think the "without CCS" here is accurate; even platforms with > > CCS engines can still access the GPGPU pipeline via the RCS. > > indeed. > > > > > > +- Blitting Command Streamer (BCS). An engine for performing blitting and/or > > > + copying operations. > > > +- Video Command Streamer. An engine used for video decoding. For historical > > > + reasons this engine was alsso called 'BCS'. > > > > I don't think this is true? As far as I recall, BCS has always referred > > to the blitter/copy engines, not the VCS. > > doh! I meant 'BSD' to reflect the removed I915_EXEC_BSD... I can't even > recall why that ever got the BSD name to start with. BSD = "Bitstream decode" Matt > > > > > > > Matt > > > > > +- Video Enhancement Command Streamer (VECS). The engine used only by media. > > > +- Compute Command Streamer (CCS). An engine that has access to the media and > > > + GPGPU pipelines, but not the 3D pipeline. > > > > > > The Intel GPU family is a family of integrated GPU's using Unified > > > Memory Access. For having the GPU "do work", user space will feed the > > > -- > > > 2.41.0 > > > > > > > -- > > Matt Roper > > Graphics Software Engineer > > Linux GPU Platform Enablement > > Intel Corporation -- Matt Roper Graphics Software Engineer Linux GPU Platform Enablement Intel Corporation ^ permalink raw reply [flat|nested] 14+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Add missing CCS documentation. 2023-08-23 21:39 [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation Rodrigo Vivi 2023-08-23 22:22 ` Matt Roper @ 2023-08-23 23:33 ` Patchwork 2023-08-23 23:33 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork ` (5 subsequent siblings) 7 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-08-23 23:33 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: intel-gfx == Series Details == Series: drm/i915: Add missing CCS documentation. URL : https://patchwork.freedesktop.org/series/122807/ State : warning == Summary == Error: dim checkpatch failed /home/kbuild2/linux/maintainer-tools/dim: line 50: /home/kbuild2/.dimrc: No such file or directory ^ permalink raw reply [flat|nested] 14+ messages in thread
* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915: Add missing CCS documentation. 2023-08-23 21:39 [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation Rodrigo Vivi 2023-08-23 22:22 ` Matt Roper 2023-08-23 23:33 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork @ 2023-08-23 23:33 ` Patchwork 2023-08-23 23:46 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork ` (4 subsequent siblings) 7 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-08-23 23:33 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: intel-gfx == Series Details == Series: drm/i915: Add missing CCS documentation. URL : https://patchwork.freedesktop.org/series/122807/ State : warning == Summary == Error: dim sparse failed /home/kbuild2/linux/maintainer-tools/dim: line 50: /home/kbuild2/.dimrc: No such file or directory ^ permalink raw reply [flat|nested] 14+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Add missing CCS documentation. 2023-08-23 21:39 [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation Rodrigo Vivi ` (2 preceding siblings ...) 2023-08-23 23:33 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork @ 2023-08-23 23:46 ` Patchwork 2023-08-24 6:51 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-08-23 23:46 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 2520 bytes --] == Series Details == Series: drm/i915: Add missing CCS documentation. URL : https://patchwork.freedesktop.org/series/122807/ State : success == Summary == CI Bug Log - changes from CI_DRM_13555 -> Patchwork_122807v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/index.html Participating hosts (41 -> 39) ------------------------------ Missing (2): fi-kbl-soraka fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_122807v1 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@lmem0: - bat-dg2-9: [INCOMPLETE][1] ([i915#6311]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@i915_selftest@live@migrate: - bat-dg2-11: [DMESG-WARN][3] ([i915#7699]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/bat-dg2-11/igt@i915_selftest@live@migrate.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/bat-dg2-11/igt@i915_selftest@live@migrate.html * igt@i915_suspend@basic-s3-without-i915: - fi-apl-guc: [DMESG-WARN][5] ([i915#1982]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/fi-apl-guc/igt@i915_suspend@basic-s3-without-i915.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/fi-apl-guc/igt@i915_suspend@basic-s3-without-i915.html [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 Build changes ------------- * Linux: CI_DRM_13555 -> Patchwork_122807v1 CI-20190529: 20190529 CI_DRM_13555: d3f73a72a15187baccea646d2346679c14b1bc10 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7451: 5d48d1fb231f449fe2f80cda14ea7a1ecfda59fa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_122807v1: d3f73a72a15187baccea646d2346679c14b1bc10 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits ab89f2250ac8 drm/i915: Add missing CCS documentation. == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/index.html [-- Attachment #2: Type: text/html, Size: 3182 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Add missing CCS documentation. 2023-08-23 21:39 [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation Rodrigo Vivi ` (3 preceding siblings ...) 2023-08-23 23:46 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2023-08-24 6:51 ` Patchwork 2023-09-21 8:29 ` [Intel-gfx] [PATCH] " Tvrtko Ursulin ` (2 subsequent siblings) 7 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-08-24 6:51 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 70006 bytes --] == Series Details == Series: drm/i915: Add missing CCS documentation. URL : https://patchwork.freedesktop.org/series/122807/ State : success == Summary == CI Bug Log - changes from CI_DRM_13555_full -> Patchwork_122807v1_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-rkl0 Known issues ------------ Here are the changes found in Patchwork_122807v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][1] ([i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-12/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-tglu: NOTRUN -> [SKIP][2] ([i915#6230]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@api_intel_bb@crc32.html * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#7456]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-5/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#7701]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][5] ([i915#7701]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +20 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-2/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][7] -> [FAIL][8] ([i915#7742]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#1839]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-12/igt@feature_discovery@display-3x.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@gem_basic@multigpu-create-close.html - shard-dg2: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#3936]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@gem_busy@semaphore.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#4873]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@gem_caching@read-writes.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][14] ([i915#6311] / [i915#7297]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-2/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8562]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@gem_create@create-ext-set-pat.html - shard-rkl: NOTRUN -> [SKIP][16] ([i915#8562]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@engines-cleanup: - shard-snb: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#1099]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-snb6/igt@gem_ctx_persistence@engines-cleanup.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#5882]) +5 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html * igt@gem_eio@kms: - shard-dg2: [PASS][19] -> [INCOMPLETE][20] ([i915#7892]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-dg2-11/igt@gem_eio@kms.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-2/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][21] -> [FAIL][22] ([i915#5784]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-dg1-15/igt@gem_eio@reset-stress.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#4771]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu: NOTRUN -> [SKIP][25] ([i915#6344]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][26] ([i915#2842]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-glk9/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [PASS][28] -> [FAIL][29] ([i915#2842]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4473] / [i915#4771]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +2 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +12 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#3281]) +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@noreorder@bcs0: - shard-mtlp: [PASS][34] -> [DMESG-WARN][35] ([i915#9121]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-mtlp-1/igt@gem_exec_schedule@noreorder@bcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-4/igt@gem_exec_schedule@noreorder@bcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][36] ([i915#7975] / [i915#8213]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4860]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-12/igt@gem_fence_thrash@bo-copy.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#4613]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][39] ([i915#4613]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#8289]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][41] ([i915#284]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-3/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-copy: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4077]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@gem_mmap_gtt@basic-copy.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4083]) +5 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@gem_mmap_wc@copy.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3282]) +4 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#3282]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][46] ([i915#2658]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-snb6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4270]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4270]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4079]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][50] ([i915#8411]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4885]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_swapping@non-threaded: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +10 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3297] / [i915#4880]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3297]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#3297]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_workarounds@suspend-resume-context: - shard-dg2: [PASS][56] -> [FAIL][57] ([fdo#103375]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-dg2-2/igt@gem_workarounds@suspend-resume-context.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-5/igt@gem_workarounds@suspend-resume-context.html * igt@gen3_render_mixed_blits: - shard-mtlp: NOTRUN -> [SKIP][58] ([fdo#109289]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@gen3_render_mixed_blits.html * igt@gen7_exec_parse@chained-batch: - shard-rkl: NOTRUN -> [SKIP][59] ([fdo#109289]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-4/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#2527]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#2527] / [i915#2856]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#2856]) +5 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_backlight@bad-brightness: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#7561]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@i915_pm_backlight@bad-brightness.html * igt@i915_pm_backlight@fade-with-suspend: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#5354] / [i915#7561]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@i915_pm_backlight@fade-with-suspend.html * igt@i915_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][65] ([i915#658]) +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-3/igt@i915_pm_dc@dc5-psr.html * igt@i915_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#5978]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@i915_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [SKIP][67] ([i915#3361]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#4281]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#1937]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-dg2: NOTRUN -> [SKIP][70] ([fdo#109289]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-12/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-dg1: [PASS][71] -> [FAIL][72] ([i915#3591]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: [PASS][73] -> [SKIP][74] ([i915#1397]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg1-13/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@i2c: - shard-dg2: [PASS][75] -> [FAIL][76] ([i915#8717]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-dg2-11/igt@i915_pm_rpm@i2c.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-2/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][77] -> [SKIP][78] ([i915#1397]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-rkl-4/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#8925]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-12/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_query@query-topology-known-pci-ids: - shard-tglu: NOTRUN -> [SKIP][80] ([fdo#109303]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@i915_query@query-topology-known-pci-ids.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4215] / [i915#5190]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-2/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4212]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1: - shard-mtlp: [PASS][83] -> [FAIL][84] ([i915#2521]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-mtlp-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#8502]) +7 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [FAIL][86] ([i915#8247]) +3 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#1769]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][88] ([fdo#111614]) +3 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][89] ([i915#5286]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][90] ([fdo#111615] / [i915#5286]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][91] ([fdo#111614]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][92] ([fdo#111614]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#5190]) +10 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][94] ([fdo#111615]) +2 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][95] ([fdo#110723]) +1 similar issue [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4538] / [i915#5190]) +3 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][97] ([fdo#111615]) +3 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#5354] / [i915#6095]) +7 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-3/igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#5354] / [i915#6095]) +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#3689] / [i915#3886] / [i915#5354]) +7 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#6095]) +3 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-4/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#3734] / [i915#5354] / [i915#6095]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][103] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@kms_ccs@pipe-c-bad-pixel-format-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#5354]) +43 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-12/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#3886] / [i915#6095]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-4/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#3689] / [i915#5354]) +17 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5354]) +8 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#3742]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4087]) +3 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@kms_chamelium_color@ctm-0-75: - shard-dg2: NOTRUN -> [SKIP][111] ([fdo#111827]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-12/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#7828]) +11 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#7828]) +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-3/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#7828]) +2 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#7828]) +1 similar issue [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#3299]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@mei_interface: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#7118]) +2 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@kms_content_protection@mei_interface.html - shard-rkl: NOTRUN -> [SKIP][118] ([i915#7118]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-dg2: NOTRUN -> [FAIL][119] ([i915#1339]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-12/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#3359]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#3555]) +4 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-suspend@pipe-b-vga-1: - shard-snb: NOTRUN -> [DMESG-WARN][122] ([i915#8841]) +1 similar issue [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-snb4/igt@kms_cursor_crc@cursor-suspend@pipe-b-vga-1.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][123] ([fdo#109274] / [i915#5354]) +3 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-12/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-snb: NOTRUN -> [SKIP][124] ([fdo#109271] / [fdo#111767]) +1 similar issue [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#4103]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#8588]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-2/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][127] ([i915#3804]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#3555] / [i915#3840]) +2 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-12/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#3555] / [i915#3840]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#3637]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-tglu: NOTRUN -> [SKIP][131] ([fdo#109274] / [i915#3637]) +2 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2: NOTRUN -> [SKIP][132] ([fdo#109274]) +4 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#2672]) +4 similar issues [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-12/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#2672]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#8810]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#2587] / [i915#2672]) +1 similar issue [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][137] ([fdo#109285]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#5274]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: [PASS][139] -> [FAIL][140] ([i915#6880]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][141] ([fdo#109280]) +12 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#8708]) +25 similar issues [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#1825]) +4 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#3023]) +3 similar issues [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#3458]) +12 similar issues [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-tglu: NOTRUN -> [SKIP][146] ([fdo#110189]) +9 similar issues [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#5460]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][148] ([fdo#111825] / [i915#1825]) +8 similar issues [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#6118]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#3555] / [i915#8228]) +1 similar issue [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-2/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#4816]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#6301]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#8821]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3555] / [i915#8806]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-12/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][155] ([i915#8292]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][156] ([i915#8292]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#5176]) +3 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#5176]) +3 similar issues [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][159] ([fdo#109271]) +110 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-snb6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#5176]) +11 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@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][161] ([i915#5235]) +7 similar issues [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/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@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#5235]) +19 similar issues [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#5235]) +3 similar issues [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#6524]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-4/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#658]) +3 similar issues [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][166] ([fdo#109271] / [i915#658]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-glk9/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][167] ([fdo#111068] / [i915#658]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr@psr2_cursor_mmap_gtt: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#1072]) +2 similar issues [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-4/igt@kms_psr@psr2_cursor_mmap_gtt.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#1072]) +8 similar issues [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-12/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#5461] / [i915#658]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#5461] / [i915#658]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#5289]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_scaling_modes@scaling-mode-none: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#3555]) +1 similar issue [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_selftest@drm_dp_mst: - shard-snb: NOTRUN -> [SKIP][174] ([fdo#109271] / [i915#8661]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-snb6/igt@kms_selftest@drm_dp_mst.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][175] ([i915#5465]) +1 similar issue [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#4098]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-4/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][177] ([IGT#2]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#8623]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#8623]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][180] ([i915#8623]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@pipe-c-wait-forked: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#4070] / [i915#6768]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@kms_vblank@pipe-c-wait-forked.html * igt@kms_vblank@pipe-d-wait-busy: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#4070] / [i915#533] / [i915#6768]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@kms_vblank@pipe-d-wait-busy.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8808]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@kms_vrr@flip-dpms.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#7387]) +1 similar issue [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-tglu: NOTRUN -> [SKIP][185] ([fdo#109289]) +1 similar issue [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-3/igt@perf@mi-rpc.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3708]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@prime_vgem@fence-write-hang.html * igt@tools_test@sysfs_l3_parity: - shard-tglu: NOTRUN -> [SKIP][187] ([fdo#109307]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@create-perfmon-exceed: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#2575]) +9 similar issues [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@v3d/v3d_perfmon@create-perfmon-exceed.html - shard-rkl: NOTRUN -> [SKIP][189] ([fdo#109315]) +1 similar issue [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@v3d/v3d_perfmon@create-perfmon-exceed.html * igt@v3d/v3d_submit_csd@bad-extension: - shard-glk: NOTRUN -> [SKIP][190] ([fdo#109271]) +13 similar issues [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-glk9/igt@v3d/v3d_submit_csd@bad-extension.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-tglu: NOTRUN -> [SKIP][191] ([fdo#109315] / [i915#2575]) +4 similar issues [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@v3d/v3d_wait_bo@unused-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#2575]) +2 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@v3d/v3d_wait_bo@unused-bo-0ns.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#7711]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-4/igt@vc4/vc4_perfmon@create-two-perfmon.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#7711]) +8 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@vc4/vc4_tiling@get-bad-modifier.html - shard-rkl: NOTRUN -> [SKIP][195] ([i915#7711]) +1 similar issue [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@vc4/vc4_tiling@get-bad-modifier.html * igt@vc4/vc4_wait_bo@used-bo: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#2575]) +2 similar issues [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@vc4/vc4_wait_bo@used-bo.html #### Possible fixes #### * igt@gem_eio@hibernate: - shard-tglu: [ABORT][197] ([i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-tglu-10/igt@gem_eio@hibernate.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-4/igt@gem_eio@hibernate.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][199] ([i915#2842]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][201] ([i915#2842]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: [FAIL][203] ([i915#2842]) -> [PASS][204] +1 similar issue [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-rkl-6/igt@gem_exec_fair@basic-throttle@rcs0.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-7/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-mtlp: [DMESG-FAIL][205] ([i915#8962] / [i915#9121]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-5/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_schedule@noreorder-corked@vcs0: - shard-mtlp: [DMESG-WARN][207] ([i915#9121]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-mtlp-4/igt@gem_exec_schedule@noreorder-corked@vcs0.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-5/igt@gem_exec_schedule@noreorder-corked@vcs0.html * igt@gem_exec_whisper@basic-fds-priority-all: - shard-tglu: [INCOMPLETE][209] ([i915#6755] / [i915#7392]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-tglu-4/igt@gem_exec_whisper@basic-fds-priority-all.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-3/igt@gem_exec_whisper@basic-fds-priority-all.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [DMESG-WARN][211] ([i915#4936] / [i915#5493]) -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][213] ([i915#7061] / [i915#8617]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][215] ([i915#8489] / [i915#8668]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [FAIL][217] ([i915#8691]) -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-mtlp-4/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-5/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-rkl: [SKIP][219] ([i915#1937]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-rkl-4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-mtlp: [FAIL][221] ([i915#8248]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-mtlp-8/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][223] ([i915#2346]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][225] ([i915#2346]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2: - shard-glk: [FAIL][227] ([i915#79]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-glk6/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html * igt@kms_plane@pixel-format@pipe-b-planes: - shard-mtlp: [FAIL][229] ([i915#1623]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-mtlp-8/igt@kms_plane@pixel-format@pipe-b-planes.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-3/igt@kms_plane@pixel-format@pipe-b-planes.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][231] ([i915#9100]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html #### Warnings #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][233] ([i915#4936] / [i915#5493]) -> [TIMEOUT][234] ([i915#5493]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-tglu: [FAIL][235] ([i915#2681] / [i915#3591]) -> [WARN][236] ([i915#2681]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][237] ([fdo#103375]) -> [INCOMPLETE][238] ([i915#4817]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_content_protection@content_type_change: - shard-dg2: [SKIP][239] ([i915#7118]) -> [SKIP][240] ([i915#7118] / [i915#7162]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-dg2-6/igt@kms_content_protection@content_type_change.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg2-11/igt@kms_content_protection@content_type_change.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][241] ([i915#1982] / [i915#2017] / [i915#5954]) -> [FAIL][242] ([i915#2346]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][243] ([fdo#110189] / [i915#3955]) -> [SKIP][244] ([i915#3955]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-rkl-2/igt@kms_fbcon_fbt@psr.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][245] ([fdo#109285] / [i915#4098]) -> [SKIP][246] ([fdo#109285]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][247] ([i915#1072]) -> [SKIP][248] ([i915#1072] / [i915#4078]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13555/shard-dg1-19/igt@kms_psr@sprite_plane_onoff.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/shard-dg1-13/igt@kms_psr@sprite_plane_onoff.html [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [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#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [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#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [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#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [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#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [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#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [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#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [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#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9100]: https://gitlab.freedesktop.org/drm/intel/issues/9100 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 Build changes ------------- * Linux: CI_DRM_13555 -> Patchwork_122807v1 CI-20190529: 20190529 CI_DRM_13555: d3f73a72a15187baccea646d2346679c14b1bc10 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7451: 5d48d1fb231f449fe2f80cda14ea7a1ecfda59fa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_122807v1: d3f73a72a15187baccea646d2346679c14b1bc10 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v1/index.html [-- Attachment #2: Type: text/html, Size: 83516 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation. 2023-08-23 21:39 [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation Rodrigo Vivi ` (4 preceding siblings ...) 2023-08-24 6:51 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork @ 2023-09-21 8:29 ` Tvrtko Ursulin 2023-09-26 2:00 ` Rodrigo Vivi 2023-09-26 5:16 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Add missing CCS documentation. (rev2) Patchwork 2023-09-26 14:20 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 7 siblings, 1 reply; 14+ messages in thread From: Tvrtko Ursulin @ 2023-09-21 8:29 UTC (permalink / raw) To: Rodrigo Vivi, intel-gfx; +Cc: Matt Roper, Sushma Venkatesh Reddy On 23/08/2023 22:39, Rodrigo Vivi wrote: > Let's introduce the basic documentation about CCS. > While doing that, also removed the legacy execution flag name. That flag > simply doesn't exist for CCS and it is not needed on current context > submission. Those flag names are only needed on legacy context, > while on new ones we only need to pass the engine ID. > > It is worth mention that this documentation should probably live with > the engine definitions rather than in the i915.rst file directly and > that more updates are likely need in this section. But this should > come later. > > Fixes: 944823c94639 ("drm/i915/xehp: Define compute class and engine") > Cc: Matt Roper <matthew.d.roper@intel.com> > Cc: Sushma Venkatesh Reddy <sushma.venkatesh.reddy@intel.com> > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> > Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > --- > Documentation/gpu/i915.rst | 24 +++++++++++------------- > 1 file changed, 11 insertions(+), 13 deletions(-) > > diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst > index 60ea21734902..87bdcd616944 100644 > --- a/Documentation/gpu/i915.rst > +++ b/Documentation/gpu/i915.rst > @@ -267,19 +267,17 @@ i915 driver. > Intel GPU Basics > ---------------- > > -An Intel GPU has multiple engines. There are several engine types. > - > -- RCS engine is for rendering 3D and performing compute, this is named > - `I915_EXEC_RENDER` in user space. > -- BCS is a blitting (copy) engine, this is named `I915_EXEC_BLT` in user > - space. > -- VCS is a video encode and decode engine, this is named `I915_EXEC_BSD` > - in user space > -- VECS is video enhancement engine, this is named `I915_EXEC_VEBOX` in user > - space. > -- The enumeration `I915_EXEC_DEFAULT` does not refer to specific engine; > - instead it is to be used by user space to specify a default rendering > - engine (for 3D) that may or may not be the same as RCS. > +An Intel GPU has multiple engines. There are several engine types: > + > +- Render Command Streamer (RCS). An engine for rendering 3D and > + performing compute on platforms without CCS. To be tweaked as already agreed in the thread. > +- Blitting Command Streamer (BCS). An engine for performing blitting and/or > + copying operations. > +- Video Command Streamer. An engine used for video decoding. For historical You deliberately dropped encoding? > + reasons this engine was alsso called 'BCS'. BSD as already pointed out in the thread. Probably replace historical reasons with "also sometimes called", in hw docs, or something. Also sometimes called VDBOX. And VEBOX for VECS to complete the confusion. :) s/alsso/also > +- Video Enhancement Command Streamer (VECS). The engine used only by media. Old explanation seems to contain marginally more information so I would keep the video enhancement as explanation. > +- Compute Command Streamer (CCS). An engine that has access to the media and > + GPGPU pipelines, but not the 3D pipeline. > > The Intel GPU family is a family of integrated GPU's using Unified > Memory Access. For having the GPU "do work", user space will feed the Overall I agree I915_EXEC_DEFAULT should be removed from this blurb since the thing seems to be explaining hw components and not uapi. Only not sure if uapi references for other engines should be removed or not. Perhaps they are useful for cross-referencing, and I don't see i915_drm.h is explaining what they are. Regards, Tvrtko ^ permalink raw reply [flat|nested] 14+ messages in thread
* [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation. 2023-09-21 8:29 ` [Intel-gfx] [PATCH] " Tvrtko Ursulin @ 2023-09-26 2:00 ` Rodrigo Vivi 2023-09-26 8:36 ` Tvrtko Ursulin 0 siblings, 1 reply; 14+ messages in thread From: Rodrigo Vivi @ 2023-09-26 2:00 UTC (permalink / raw) To: intel-gfx; +Cc: Matt Roper, Sushma Venkatesh Reddy, Rodrigo Vivi Let's introduce the basic documentation about CCS. While doing that, also removed the legacy execution flag name. That flag simply doesn't exist for CCS and it is not needed on current context submission. Those flag names are only needed on legacy context, while on new ones we only need to pass the engine ID. It is worth mention that this documentation should probably live with the engine definitions rather than in the i915.rst file directly and that more updates are likely need in this section. But this should come later. v2: Overall improvements from Matt and Tvrtko. Fixes: 944823c94639 ("drm/i915/xehp: Define compute class and engine") Cc: Matt Roper <matthew.d.roper@intel.com> Cc: Sushma Venkatesh Reddy <sushma.venkatesh.reddy@intel.com> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> --- Documentation/gpu/i915.rst | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst index 378e825754d5..13de8bcaaa29 100644 --- a/Documentation/gpu/i915.rst +++ b/Documentation/gpu/i915.rst @@ -267,19 +267,18 @@ i915 driver. Intel GPU Basics ---------------- -An Intel GPU has multiple engines. There are several engine types. - -- RCS engine is for rendering 3D and performing compute, this is named - `I915_EXEC_RENDER` in user space. -- BCS is a blitting (copy) engine, this is named `I915_EXEC_BLT` in user - space. -- VCS is a video encode and decode engine, this is named `I915_EXEC_BSD` - in user space -- VECS is video enhancement engine, this is named `I915_EXEC_VEBOX` in user - space. -- The enumeration `I915_EXEC_DEFAULT` does not refer to specific engine; - instead it is to be used by user space to specify a default rendering - engine (for 3D) that may or may not be the same as RCS. +An Intel GPU has multiple engines. There are several engine types: + +- Render Command Streamer (RCS). An engine for rendering 3D and + performing compute. +- Blitting Command Streamer (BCS). An engine for performing blitting and/or + copying operations. +- Video Command Streamer. An engine used for video encoding and decoding. Also + sometimes called 'BSD' in hardware documentation. +- Video Enhancement Command Streamer (VECS). An engine for video enhancement. + Also sometimes called 'VEBOX' in hardware documentation. +- Compute Command Streamer (CCS). An engine that has access to the media and + GPGPU pipelines, but not the 3D pipeline. The Intel GPU family is a family of integrated GPU's using Unified Memory Access. For having the GPU "do work", user space will feed the -- 2.41.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation. 2023-09-26 2:00 ` Rodrigo Vivi @ 2023-09-26 8:36 ` Tvrtko Ursulin 2023-09-26 14:40 ` Matt Roper 0 siblings, 1 reply; 14+ messages in thread From: Tvrtko Ursulin @ 2023-09-26 8:36 UTC (permalink / raw) To: Rodrigo Vivi, intel-gfx; +Cc: Matt Roper, Sushma Venkatesh Reddy On 26/09/2023 03:00, Rodrigo Vivi wrote: > Let's introduce the basic documentation about CCS. > While doing that, also removed the legacy execution flag name. That flag > simply doesn't exist for CCS and it is not needed on current context > submission. Those flag names are only needed on legacy context, > while on new ones we only need to pass the engine ID. > > It is worth mention that this documentation should probably live with > the engine definitions rather than in the i915.rst file directly and > that more updates are likely need in this section. But this should > come later. > > v2: Overall improvements from Matt and Tvrtko. > > Fixes: 944823c94639 ("drm/i915/xehp: Define compute class and engine") > Cc: Matt Roper <matthew.d.roper@intel.com> > Cc: Sushma Venkatesh Reddy <sushma.venkatesh.reddy@intel.com> > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> > Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > --- > Documentation/gpu/i915.rst | 25 ++++++++++++------------- > 1 file changed, 12 insertions(+), 13 deletions(-) > > diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst > index 378e825754d5..13de8bcaaa29 100644 > --- a/Documentation/gpu/i915.rst > +++ b/Documentation/gpu/i915.rst > @@ -267,19 +267,18 @@ i915 driver. > Intel GPU Basics > ---------------- > > -An Intel GPU has multiple engines. There are several engine types. > - > -- RCS engine is for rendering 3D and performing compute, this is named > - `I915_EXEC_RENDER` in user space. > -- BCS is a blitting (copy) engine, this is named `I915_EXEC_BLT` in user > - space. > -- VCS is a video encode and decode engine, this is named `I915_EXEC_BSD` > - in user space > -- VECS is video enhancement engine, this is named `I915_EXEC_VEBOX` in user > - space. > -- The enumeration `I915_EXEC_DEFAULT` does not refer to specific engine; > - instead it is to be used by user space to specify a default rendering > - engine (for 3D) that may or may not be the same as RCS. > +An Intel GPU has multiple engines. There are several engine types: > + > +- Render Command Streamer (RCS). An engine for rendering 3D and > + performing compute. > +- Blitting Command Streamer (BCS). An engine for performing blitting and/or > + copying operations. > +- Video Command Streamer. An engine used for video encoding and decoding. Also > + sometimes called 'BSD' in hardware documentation. > +- Video Enhancement Command Streamer (VECS). An engine for video enhancement. > + Also sometimes called 'VEBOX' in hardware documentation. > +- Compute Command Streamer (CCS). An engine that has access to the media and > + GPGPU pipelines, but not the 3D pipeline. > > The Intel GPU family is a family of integrated GPU's using Unified > Memory Access. For having the GPU "do work", user space will feed the LGTM. Acked-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Regards, Tvrtko ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation. 2023-09-26 8:36 ` Tvrtko Ursulin @ 2023-09-26 14:40 ` Matt Roper 0 siblings, 0 replies; 14+ messages in thread From: Matt Roper @ 2023-09-26 14:40 UTC (permalink / raw) To: Tvrtko Ursulin; +Cc: intel-gfx, Sushma Venkatesh Reddy, Rodrigo Vivi On Tue, Sep 26, 2023 at 09:36:53AM +0100, Tvrtko Ursulin wrote: > > On 26/09/2023 03:00, Rodrigo Vivi wrote: > > Let's introduce the basic documentation about CCS. > > While doing that, also removed the legacy execution flag name. That flag > > simply doesn't exist for CCS and it is not needed on current context > > submission. Those flag names are only needed on legacy context, > > while on new ones we only need to pass the engine ID. > > > > It is worth mention that this documentation should probably live with > > the engine definitions rather than in the i915.rst file directly and > > that more updates are likely need in this section. But this should > > come later. > > > > v2: Overall improvements from Matt and Tvrtko. > > > > Fixes: 944823c94639 ("drm/i915/xehp: Define compute class and engine") > > Cc: Matt Roper <matthew.d.roper@intel.com> > > Cc: Sushma Venkatesh Reddy <sushma.venkatesh.reddy@intel.com> > > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> > > Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > > --- > > Documentation/gpu/i915.rst | 25 ++++++++++++------------- > > 1 file changed, 12 insertions(+), 13 deletions(-) > > > > diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst > > index 378e825754d5..13de8bcaaa29 100644 > > --- a/Documentation/gpu/i915.rst > > +++ b/Documentation/gpu/i915.rst > > @@ -267,19 +267,18 @@ i915 driver. > > Intel GPU Basics > > ---------------- > > -An Intel GPU has multiple engines. There are several engine types. > > - > > -- RCS engine is for rendering 3D and performing compute, this is named > > - `I915_EXEC_RENDER` in user space. > > -- BCS is a blitting (copy) engine, this is named `I915_EXEC_BLT` in user > > - space. > > -- VCS is a video encode and decode engine, this is named `I915_EXEC_BSD` > > - in user space > > -- VECS is video enhancement engine, this is named `I915_EXEC_VEBOX` in user > > - space. > > -- The enumeration `I915_EXEC_DEFAULT` does not refer to specific engine; > > - instead it is to be used by user space to specify a default rendering > > - engine (for 3D) that may or may not be the same as RCS. > > +An Intel GPU has multiple engines. There are several engine types: > > + > > +- Render Command Streamer (RCS). An engine for rendering 3D and > > + performing compute. > > +- Blitting Command Streamer (BCS). An engine for performing blitting and/or > > + copying operations. > > +- Video Command Streamer. An engine used for video encoding and decoding. Also > > + sometimes called 'BSD' in hardware documentation. > > +- Video Enhancement Command Streamer (VECS). An engine for video enhancement. > > + Also sometimes called 'VEBOX' in hardware documentation. > > +- Compute Command Streamer (CCS). An engine that has access to the media and > > + GPGPU pipelines, but not the 3D pipeline. > > The Intel GPU family is a family of integrated GPU's using Unified > > Memory Access. For having the GPU "do work", user space will feed the If this is in the "GPU Basics" section and is focused on explaining the hardware rather than the driver/uapi, then shouldn't we add the GSCCS as well? Matt > > LGTM. > > Acked-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > > Regards, > > Tvrtko -- Matt Roper Graphics Software Engineer Linux GPU Platform Enablement Intel Corporation ^ permalink raw reply [flat|nested] 14+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Add missing CCS documentation. (rev2) 2023-08-23 21:39 [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation Rodrigo Vivi ` (5 preceding siblings ...) 2023-09-21 8:29 ` [Intel-gfx] [PATCH] " Tvrtko Ursulin @ 2023-09-26 5:16 ` Patchwork 2023-09-26 14:20 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 7 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-09-26 5:16 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4781 bytes --] == Series Details == Series: drm/i915: Add missing CCS documentation. (rev2) URL : https://patchwork.freedesktop.org/series/122807/ State : success == Summary == CI Bug Log - changes from CI_DRM_13679 -> Patchwork_122807v2 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/index.html Participating hosts (37 -> 38) ------------------------------ Additional (2): fi-kbl-soraka fi-pnv-d510 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_122807v2 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_heartbeat: - fi-cfl-guc: [PASS][3] -> [DMESG-FAIL][4] ([i915#5334]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/fi-cfl-guc/igt@i915_selftest@live@gt_heartbeat.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/fi-cfl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_lrc: - bat-dg2-11: [PASS][5] -> [INCOMPLETE][6] ([i915#7609] / [i915#7913]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/bat-dg2-11/igt@i915_selftest@live@gt_lrc.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/bat-dg2-11/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][7] ([i915#1886] / [i915#7913]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@requests: - bat-atsm-1: [PASS][8] -> [INCOMPLETE][9] ([i915#7913]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/bat-atsm-1/igt@i915_selftest@live@requests.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/bat-atsm-1/igt@i915_selftest@live@requests.html * igt@kms_dsc@dsc-basic: - fi-kbl-soraka: NOTRUN -> [SKIP][10] ([fdo#109271]) +9 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html * igt@kms_pipe_crc_basic@suspend-read-crc: - fi-kbl-x1275: NOTRUN -> [SKIP][11] ([fdo#109271]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/fi-kbl-x1275/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][12] ([fdo#109271]) +31 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/fi-pnv-d510/igt@kms_psr@primary_page_flip.html #### Possible fixes #### * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [FAIL][13] ([IGT#3]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.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#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#7609]: https://gitlab.freedesktop.org/drm/intel/issues/7609 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 Build changes ------------- * Linux: CI_DRM_13679 -> Patchwork_122807v2 CI-20190529: 20190529 CI_DRM_13679: 6dad88365b6dfbe68e8b527c421369d2c6620049 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7502: ac56ba97248b33668fbe771882360bd7b274cc9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_122807v2: 6dad88365b6dfbe68e8b527c421369d2c6620049 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 61dd2170f0ff drm/i915: Add missing CCS documentation. == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/index.html [-- Attachment #2: Type: text/html, Size: 6038 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Add missing CCS documentation. (rev2) 2023-08-23 21:39 [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation Rodrigo Vivi ` (6 preceding siblings ...) 2023-09-26 5:16 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Add missing CCS documentation. (rev2) Patchwork @ 2023-09-26 14:20 ` Patchwork 7 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-09-26 14:20 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 62813 bytes --] == Series Details == Series: drm/i915: Add missing CCS documentation. (rev2) URL : https://patchwork.freedesktop.org/series/122807/ State : success == Summary == CI Bug Log - changes from CI_DRM_13679_full -> Patchwork_122807v2_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-tglu0 Known issues ------------ Here are the changes found in Patchwork_122807v2_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][1] ([i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@drm_fdinfo@isolation@bcs0: - shard-dg2: NOTRUN -> [SKIP][2] ([i915#8414]) +11 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@drm_fdinfo@isolation@bcs0.html * igt@gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][3] ([i915#7697]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-6/igt@gem_basic@multigpu-create-close.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8555]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@hostile: - shard-snb: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-snb6/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][6] ([i915#280]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-6/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#280]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@reset-stress: - shard-snb: NOTRUN -> [FAIL][8] ([i915#8898]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-snb5/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][9] -> [FAIL][10] ([i915#5784]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg1-19/igt@gem_eio@unwedge-stress.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg1-14/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@sliced: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#4812]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-mtlp-3/igt@gem_exec_balancer@sliced.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [PASS][12] -> [FAIL][13] ([i915#2842]) +1 other test fail [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-rkl-1/igt@gem_exec_fair@basic-none@vcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-6/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][14] -> [FAIL][15] ([i915#2842]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: NOTRUN -> [FAIL][16] ([i915#2842]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#3539]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-3/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@submit: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#4812]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-11/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#3539] / [i915#4852]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-3/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#3281]) +6 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#4537] / [i915#4812]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@gem_exec_schedule@preempt-queue.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#4860]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@gem_fence_thrash@bo-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#4613] / [i915#7582]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-6/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4077]) +11 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-3/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4083]) +4 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4270]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@fail-invalid-protected-context: - shard-tglu: NOTRUN -> [SKIP][27] ([i915#4270]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-6/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3282]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-3/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#8428]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-mtlp-3/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_softpin@evict-snoop: - shard-tglu: NOTRUN -> [SKIP][30] ([fdo#109312]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-6/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4079]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-11/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3297]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-11/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3297] / [i915#4880]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#3297]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen7_exec_parse@basic-allocation: - shard-dg2: NOTRUN -> [SKIP][35] ([fdo#109289]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@gen7_exec_parse@basic-allocation.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#2856]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@gen9_exec_parse@allowed-all.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-tglu: NOTRUN -> [SKIP][37] ([fdo#109289]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][38] -> [SKIP][39] ([i915#1397]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#1397]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-dg1: [PASS][41] -> [SKIP][42] ([i915#1397]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg1-17/igt@i915_pm_rpm@modeset-non-lpsp.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#6621]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_query@query-topology-known-pci-ids: - shard-rkl: NOTRUN -> [SKIP][44] ([fdo#109303]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_selftest@live@workarounds: - shard-dg2: [PASS][45] -> [DMESG-FAIL][46] ([i915#7913]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg2-10/igt@i915_selftest@live@workarounds.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@i915_selftest@live@workarounds.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][47] ([i915#9311]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-11/igt@i915_selftest@mock@memory_region.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2: - shard-glk: [PASS][48] -> [FAIL][49] ([i915#2521]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-glk8/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#8502]) +7 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][51] ([i915#8247]) +3 other tests fail [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#1769] / [i915#3555]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][53] ([i915#5286]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][54] ([fdo#111615] / [i915#5286]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][55] ([fdo#111614] / [i915#3638]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][56] ([fdo#111614]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][57] ([fdo#111614]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#5190]) +15 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [FAIL][59] ([i915#3743]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-mtlp: NOTRUN -> [SKIP][60] ([fdo#111615]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-mtlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][61] ([fdo#111615]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][62] ([fdo#110723]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4538] / [i915#5190]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#5354] / [i915#6095]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-mtlp-3/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][65] ([i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-6/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#5354] / [i915#6095]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#3689] / [i915#3886] / [i915#5354]) +7 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][69] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_ccs@pipe-b-missing-ccs-buffer-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#5354]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-snb: NOTRUN -> [SKIP][71] ([fdo#109271]) +269 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-snb5/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3689] / [i915#5354]) +21 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][73] ([i915#5354] / [i915#6095]) +8 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#7213]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_chamelium_color@ctm-limited-range: - shard-tglu: NOTRUN -> [SKIP][75] ([fdo#111827]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][76] ([fdo#111827]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-read: - shard-tglu: NOTRUN -> [SKIP][77] ([i915#7828]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_chamelium_edid@dp-edid-read.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#7828]) +9 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#7828]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3299]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#3116] / [i915#3299]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][82] ([i915#7173]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@lic: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#7118]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3555]) +4 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#3359]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu: NOTRUN -> [SKIP][86] ([i915#3359]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-tglu: NOTRUN -> [SKIP][87] ([fdo#109274]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: NOTRUN -> [SKIP][88] ([fdo#109274] / [i915#5354]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][89] ([fdo#109274] / [fdo#111767] / [i915#5354]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4103] / [i915#4213]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#9226] / [i915#9261]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-6/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#9227]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-10/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#9227]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-6/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#9226] / [i915#9261]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-10/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#3804]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dsc@dsc-basic: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#3555] / [i915#3840]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3555] / [i915#3840]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#3637]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-mtlp-3/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][99] ([fdo#109274]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][100] ([fdo#109274] / [i915#3637]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][101] ([fdo#109274] / [fdo#111767]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-11/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-rkl: NOTRUN -> [SKIP][102] ([fdo#111825]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#2672] / [i915#3555]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#2672]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][105] ([fdo#109285]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][106] ([i915#6880]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#8708]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: [PASS][108] -> [FAIL][109] ([i915#6880]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#5354]) +50 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][111] ([fdo#111825] / [i915#1825]) +4 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#8708]) +13 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff: - shard-tglu: NOTRUN -> [SKIP][113] ([fdo#109280]) +7 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#3023]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#5460]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][116] ([fdo#110189]) +9 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#3458]) +19 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#3555] / [i915#8228]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#3555] / [i915#8228]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_hdr@static-toggle-dpms.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#6301]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#6301]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1: - shard-apl: [PASS][122] -> [INCOMPLETE][123] ([i915#180] / [i915#9392]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#3555] / [i915#8806]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-3/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#6953]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][126] ([i915#8292]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][127] ([i915#8292]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#5176]) +15 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#5176]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#5176]) +5 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#5235]) +7 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#5235]) +19 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#5235]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#5235]) +9 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#6524]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#6524] / [i915#6805]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-3/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#658]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#658]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-6/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#658]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@dpms: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#1072]) +8 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@kms_psr@dpms.html * igt@kms_psr@primary_render: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#1072]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_psr@primary_render.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#5461] / [i915#658]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#4235]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#4235] / [i915#5190]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-rkl: [PASS][145] -> [INCOMPLETE][146] ([i915#8875]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-rkl-4/igt@kms_rotation_crc@sprite-rotation-270.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-6/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-center: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#3555]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][148] ([i915#5465]) +1 other test fail [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-snb5/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_sysfs_edid_timing: - shard-dg2: [PASS][149] -> [FAIL][150] ([IGT#2]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg2-11/igt@kms_sysfs_edid_timing.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-10/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-dg2: NOTRUN -> [FAIL][151] ([i915#9196]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html - shard-tglu: [PASS][152] -> [FAIL][153] ([i915#9196]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html - shard-mtlp: [PASS][154] -> [FAIL][155] ([i915#9196]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_universal_plane@cursor-fb-leak-pipe-c: - shard-apl: [PASS][156] -> [FAIL][157] ([i915#9196]) +1 other test fail [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-apl2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-apl2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html * igt@kms_vblank@pipe-c-wait-forked-busy-hang: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#4070] / [i915#6768]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_vblank@pipe-c-wait-forked-busy-hang.html * igt@kms_vblank@pipe-d-ts-continuation-suspend: - shard-mtlp: [PASS][159] -> [ABORT][160] ([i915#9262]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-mtlp-3/igt@kms_vblank@pipe-d-ts-continuation-suspend.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-mtlp-8/igt@kms_vblank@pipe-d-ts-continuation-suspend.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3555]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-pixel-formats: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#2437]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][163] -> [FAIL][164] ([i915#7484]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][165] ([i915#4349]) +3 other tests fail [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@rc6-suspend: - shard-snb: NOTRUN -> [DMESG-WARN][166] ([i915#8841]) +5 other tests dmesg-warn [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-snb6/igt@perf_pmu@rc6-suspend.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][167] ([i915#9351]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#3708]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-3/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3291] / [i915#3708]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-1/igt@prime_vgem@basic-read.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][170] ([fdo#109307]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_create_bo@create-bo-0: - shard-rkl: NOTRUN -> [SKIP][171] ([fdo#109315]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@v3d/v3d_create_bo@create-bo-0.html * igt@v3d/v3d_submit_cl@bad-bo: - shard-tglu: NOTRUN -> [SKIP][172] ([fdo#109315] / [i915#2575]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-6/igt@v3d/v3d_submit_cl@bad-bo.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#2575]) +12 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-3/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@vc4/vc4_create_bo@create-bo-0: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#7711]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@vc4/vc4_create_bo@create-bo-0.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#2575]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-3/igt@vc4/vc4_perfmon@create-two-perfmon.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#7711]) +8 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@api_intel_bb@object-noreloc-keep-cache-simple: - shard-mtlp: [ABORT][177] ([i915#9262]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-mtlp-7/igt@api_intel_bb@object-noreloc-keep-cache-simple.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-mtlp-3/igt@api_intel_bb@object-noreloc-keep-cache-simple.html * igt@gem_ctx_isolation@preservation-s3@ccs0: - shard-mtlp: [DMESG-WARN][179] ([i915#9262]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-mtlp-1/igt@gem_ctx_isolation@preservation-s3@ccs0.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-mtlp-2/igt@gem_ctx_isolation@preservation-s3@ccs0.html * igt@gem_eio@hibernate: - shard-tglu: [ABORT][181] ([i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-tglu-10/igt@gem_eio@hibernate.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-6/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][183] ([i915#5784]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg1-17/igt@gem_eio@reset-stress.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg1-19/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][185] ([i915#2846]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [FAIL][187] ([i915#2842]) -> [PASS][188] +2 other tests pass [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_schedule@noreorder@ccs0: - shard-mtlp: [DMESG-FAIL][189] ([i915#8962] / [i915#9121]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-mtlp-4/igt@gem_exec_schedule@noreorder@ccs0.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-mtlp-4/igt@gem_exec_schedule@noreorder@ccs0.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: [ABORT][191] ([i915#7975] / [i915#8213]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_spin_batch@user-each: - shard-apl: [FAIL][193] ([i915#2898]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-apl2/igt@gem_spin_batch@user-each.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-apl4/igt@gem_spin_batch@user-each.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-dg1: [FAIL][195] ([i915#3591]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [SKIP][197] ([i915#1397]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg1-16/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [SKIP][199] ([i915#1397]) -> [PASS][200] +1 other test pass [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-2/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-rkl: [SKIP][201] ([i915#1397]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-4/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][203] ([i915#5334]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-apl3/igt@i915_selftest@live@gt_heartbeat.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [FAIL][205] ([i915#3743]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][207] ([i915#2346]) -> [PASS][208] +1 other test pass [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg2: [FAIL][209] ([i915#6880]) -> [PASS][210] +2 other tests pass [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: - shard-dg2: [INCOMPLETE][211] -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-11/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html * igt@kms_rotation_crc@multiplane-rotation: - shard-rkl: [INCOMPLETE][213] ([i915#8875]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-rkl-6/igt@kms_rotation_crc@multiplane-rotation.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-2/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_universal_plane@cursor-fb-leak-pipe-c: - shard-tglu: [FAIL][215] ([i915#9196]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html #### Warnings #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [INCOMPLETE][217] -> [ABORT][218] ([i915#7461]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][219] ([i915#7118]) -> [SKIP][220] ([i915#7118] / [i915#7162]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg2-3/igt@kms_content_protection@type1.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][221] ([i915#4070] / [i915#4816]) -> [SKIP][222] ([i915#4816]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@primary_mmap_gtt: - shard-dg1: [SKIP][223] ([i915#1072] / [i915#4078]) -> [SKIP][224] ([i915#1072]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg1-12/igt@kms_psr@primary_mmap_gtt.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg1-15/igt@kms_psr@primary_mmap_gtt.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][225] ([i915#1072]) -> [SKIP][226] ([i915#1072] / [i915#4078]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13679/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/shard-dg1-16/igt@kms_psr@sprite_plane_onoff.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [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#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [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#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [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#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2898]: https://gitlab.freedesktop.org/drm/intel/issues/2898 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#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#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#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [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#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398 [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#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [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#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392 Build changes ------------- * Linux: CI_DRM_13679 -> Patchwork_122807v2 CI-20190529: 20190529 CI_DRM_13679: 6dad88365b6dfbe68e8b527c421369d2c6620049 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7502: ac56ba97248b33668fbe771882360bd7b274cc9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_122807v2: 6dad88365b6dfbe68e8b527c421369d2c6620049 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_122807v2/index.html [-- Attachment #2: Type: text/html, Size: 75321 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2023-09-26 14:40 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-23 21:39 [Intel-gfx] [PATCH] drm/i915: Add missing CCS documentation Rodrigo Vivi 2023-08-23 22:22 ` Matt Roper 2023-08-24 22:06 ` Rodrigo Vivi 2023-08-24 22:16 ` Matt Roper 2023-08-23 23:33 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork 2023-08-23 23:33 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork 2023-08-23 23:46 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-08-24 6:51 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 2023-09-21 8:29 ` [Intel-gfx] [PATCH] " Tvrtko Ursulin 2023-09-26 2:00 ` Rodrigo Vivi 2023-09-26 8:36 ` Tvrtko Ursulin 2023-09-26 14:40 ` Matt Roper 2023-09-26 5:16 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Add missing CCS documentation. (rev2) Patchwork 2023-09-26 14:20 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox