All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t v2 0/3] Add Xe2 render-copy implementation
@ 2024-01-09 13:21 Zbigniew Kempczyński
  2024-01-09 13:21 ` [PATCH i-g-t v2 1/3] lib/rendercopy: Add render-copy xe2 implementation Zbigniew Kempczyński
                   ` (6 more replies)
  0 siblings, 7 replies; 10+ messages in thread
From: Zbigniew Kempczyński @ 2024-01-09 13:21 UTC (permalink / raw)
  To: igt-dev

Change touches render-copy only where source and destination surfaces
exists. I didn't touch fast clear as I don't know how it works for Xe2.
This may be subject for extension, but for now we need render-copy for
kms.

v2: Addressing review comments (Dominik)

Zbigniew Kempczyński (3):
  lib/rendercopy: Add render-copy xe2 implementation
  lib/intel_batchbuffer: Select xe2 rendercopy for LunarLake
  tests/xe_intel_bb: Use Tile4 instead Y on render subtest

 lib/i915/shaders/ps/gen20_render_copy.asm |  8 ++++
 lib/intel_batchbuffer.c                   | 38 ++++++++-------
 lib/rendercopy.h                          |  4 ++
 lib/rendercopy_gen9.c                     | 57 +++++++++++++++++++++--
 lib/xe2_render.h                          | 14 ++++++
 tests/intel/xe_intel_bb.c                 |  2 +-
 6 files changed, 100 insertions(+), 23 deletions(-)
 create mode 100644 lib/i915/shaders/ps/gen20_render_copy.asm
 create mode 100644 lib/xe2_render.h

-- 
2.34.1

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH i-g-t v2 1/3] lib/rendercopy: Add render-copy xe2 implementation
  2024-01-09 13:21 [PATCH i-g-t v2 0/3] Add Xe2 render-copy implementation Zbigniew Kempczyński
@ 2024-01-09 13:21 ` Zbigniew Kempczyński
  2024-01-10  8:43   ` Grzegorzek, Dominik
  2024-01-09 13:21 ` [PATCH i-g-t v2 2/3] lib/intel_batchbuffer: Select xe2 rendercopy for LunarLake Zbigniew Kempczyński
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 10+ messages in thread
From: Zbigniew Kempczyński @ 2024-01-09 13:21 UTC (permalink / raw)
  To: igt-dev

Due to small differences between xe2 and previous 3d pipeline I decided
to adopt this in gen9 render-copy function instead of introducing a new one.
Xe2 uses large GRFs (512-bit) where coordinates occupy only 2 GRF
registers (instead 4 on 256-bit GRFs). This requires shader adoption
on data preparation for sampler/render target write.

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
 lib/i915/shaders/ps/gen20_render_copy.asm |  8 ++++
 lib/rendercopy.h                          |  4 ++
 lib/rendercopy_gen9.c                     | 57 +++++++++++++++++++++--
 lib/xe2_render.h                          | 14 ++++++
 4 files changed, 79 insertions(+), 4 deletions(-)
 create mode 100644 lib/i915/shaders/ps/gen20_render_copy.asm
 create mode 100644 lib/xe2_render.h

diff --git a/lib/i915/shaders/ps/gen20_render_copy.asm b/lib/i915/shaders/ps/gen20_render_copy.asm
new file mode 100644
index 0000000000..330417966d
--- /dev/null
+++ b/lib/i915/shaders/ps/gen20_render_copy.asm
@@ -0,0 +1,8 @@
+L0:
+(W)     mad (16|M0)              acc0.0<1>:f   r6.3<0;0>:f      r1.0<1;1>:f       r6.0<0>:f
+(W)     mad (16|M0)              r113.0<1>:f   acc0.0<1;1>:f    r1.0<1;1>:f       r6.1<0>:f
+(W)     mad (16|M0)              acc0.0<1>:f   r6.7<0;0>:f      r1.0<1;1>:f       r6.4<0>:f
+(W)     mad (16|M0)              r114.0<1>:f   acc0.0<1;1>:f    r2.0<1;1>:f       r6.5<0>:f
+(W)     send.smpl (16|M0)        r12      r113  null:0  0x0            0x04420001           {F@1,$0} // wr:2+0, rd:4; simd16 sample:u+v+r+ai+mlod using sampler index 0
+(W)     send.rc (16|M0)          null     r12   null:0  0x0            0x08031400           {EOT,$0} // wr:4+0, rd:0; full-precision render target write SIMD16; last render target to surface 0
+L96:
diff --git a/lib/rendercopy.h b/lib/rendercopy.h
index 0d81d27f83..3733e8a09f 100644
--- a/lib/rendercopy.h
+++ b/lib/rendercopy.h
@@ -43,6 +43,10 @@ void gen12p71_render_copyfunc(struct intel_bb *ibb,
 			      struct intel_buf *src, uint32_t src_x, uint32_t src_y,
 			      uint32_t width, uint32_t height,
 			      struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y);
+void xe2_render_copyfunc(struct intel_bb *ibb,
+			 struct intel_buf *src, uint32_t src_x, uint32_t src_y,
+			 uint32_t width, uint32_t height,
+			 struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y);
 void gen12_render_copyfunc(struct intel_bb *ibb,
 			   struct intel_buf *src, uint32_t src_x, uint32_t src_y,
 			   uint32_t width, uint32_t height,
diff --git a/lib/rendercopy_gen9.c b/lib/rendercopy_gen9.c
index 363bc6c1b2..adf0436f35 100644
--- a/lib/rendercopy_gen9.c
+++ b/lib/rendercopy_gen9.c
@@ -22,6 +22,7 @@
 #include "intel_mocs.h"
 #include "rendercopy.h"
 #include "gen9_render.h"
+#include "xe2_render.h"
 #include "intel_reg.h"
 #include "igt_aux.h"
 #include "intel_chipset.h"
@@ -136,6 +137,15 @@ static const uint32_t gen12p71_render_copy[][4] = {
 	{ 0x80041131, 0x00000004, 0x50007144, 0x00c40000 },
 };
 
+static const uint32_t xe2_render_copy[][4] = {
+	{ 0x8010005b, 0x200002a0, 0x020a0634, 0x06040105 },
+	{ 0x8010005b, 0x710402a8, 0x020a2001, 0x06140105 },
+	{ 0x8010005b, 0x200002a0, 0x020a0674, 0x06440105 },
+	{ 0x8010005b, 0x720402a8, 0x020a2001, 0x06540205 },
+	{ 0x80122031, 0x0c240000, 0x20027114, 0x00800000 },
+	{ 0x8010c031, 0x00000004, 0x58000c24, 0x00c40000 },
+};
+
 /* Mostly copy+paste from gen6, except height, width, pitch moved */
 static uint32_t
 gen9_bind_buf(struct intel_bb *ibb, const struct intel_buf *buf, int is_dst,
@@ -545,7 +555,10 @@ gen9_emit_state_base_address(struct intel_bb *ibb) {
 	/* WaBindlessSurfaceStateModifyEnable:skl,bxt */
 	/* The length has to be one less if we dont modify
 	   bindless state */
-	intel_bb_out(ibb, GEN4_STATE_BASE_ADDRESS | (19 - 1 - 2));
+	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20))
+		intel_bb_out(ibb, GEN4_STATE_BASE_ADDRESS | 20);
+	else
+		intel_bb_out(ibb, GEN4_STATE_BASE_ADDRESS | (19 - 1 - 2));
 
 	/* general */
 	intel_bb_out(ibb, 0 | BASE_ADDRESS_MODIFY);
@@ -586,6 +599,13 @@ gen9_emit_state_base_address(struct intel_bb *ibb) {
 	intel_bb_out(ibb, 0);
 	intel_bb_out(ibb, 0);
 	intel_bb_out(ibb, 0);
+
+	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20)) {
+		/* Bindless sampler */
+		intel_bb_out(ibb, 0);
+		intel_bb_out(ibb, 0);
+		intel_bb_out(ibb, 0);
+	}
 }
 
 static void
@@ -753,7 +773,12 @@ gen9_emit_ds(struct intel_bb *ibb) {
 
 static void
 gen8_emit_wm_hz_op(struct intel_bb *ibb) {
-	intel_bb_out(ibb, GEN8_3DSTATE_WM_HZ_OP | (5-2));
+	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20)) {
+		intel_bb_out(ibb, GEN8_3DSTATE_WM_HZ_OP | (6-2));
+		intel_bb_out(ibb, 0);
+	} else {
+		intel_bb_out(ibb, GEN8_3DSTATE_WM_HZ_OP | (5-2));
+	}
 	intel_bb_out(ibb, 0);
 	intel_bb_out(ibb, 0);
 	intel_bb_out(ibb, 0);
@@ -852,7 +877,11 @@ gen8_emit_ps(struct intel_bb *ibb, uint32_t kernel, bool fast_clear) {
 	intel_bb_out(ibb, (max_threads - 1) << GEN8_3DSTATE_PS_MAX_THREADS_SHIFT |
 	             GEN6_3DSTATE_WM_16_DISPATCH_ENABLE |
 	             (fast_clear ? GEN8_3DSTATE_FAST_CLEAR_ENABLE : 0));
-	intel_bb_out(ibb, 6 << GEN6_3DSTATE_WM_DISPATCH_START_GRF_0_SHIFT);
+	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20))
+		intel_bb_out(ibb, 6 << GEN6_3DSTATE_WM_DISPATCH_START_GRF_0_SHIFT |
+			     GENXE_KERNEL0_POLY_PACK16_FIXED << GENXE_KERNEL0_PACKING_POLICY);
+	else
+		intel_bb_out(ibb, 6 << GEN6_3DSTATE_WM_DISPATCH_START_GRF_0_SHIFT);
 	intel_bb_out(ibb, 0); // kernel 1
 	intel_bb_out(ibb, 0); /* kernel 1 hi */
 	intel_bb_out(ibb, 0); // kernel 2
@@ -862,6 +891,7 @@ gen8_emit_ps(struct intel_bb *ibb, uint32_t kernel, bool fast_clear) {
 	intel_bb_out(ibb, GEN8_PS_BLEND_HAS_WRITEABLE_RT);
 
 	intel_bb_out(ibb, GEN8_3DSTATE_PS_EXTRA | (2 - 2));
+
 	intel_bb_out(ibb, GEN8_PSX_PIXEL_SHADER_VALID | GEN8_PSX_ATTRIBUTE_ENABLE);
 }
 
@@ -903,6 +933,9 @@ gen9_emit_depth(struct intel_bb *ibb)
 
 static void
 gen7_emit_clear(struct intel_bb *ibb) {
+	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20))
+		return;
+
 	intel_bb_out(ibb, GEN7_3DSTATE_CLEAR_PARAMS | (3-2));
 	intel_bb_out(ibb, 0);
 	intel_bb_out(ibb, 1); // clear valid
@@ -911,7 +944,10 @@ gen7_emit_clear(struct intel_bb *ibb) {
 static void
 gen6_emit_drawing_rectangle(struct intel_bb *ibb, const struct intel_buf *dst)
 {
-	intel_bb_out(ibb, GEN4_3DSTATE_DRAWING_RECTANGLE | (4 - 2));
+	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20))
+		intel_bb_out(ibb, GENXE2_3DSTATE_DRAWING_RECTANGLE_FAST | (4 - 2));
+	else
+		intel_bb_out(ibb, GEN4_3DSTATE_DRAWING_RECTANGLE | (4 - 2));
 	intel_bb_out(ibb, 0);
 	intel_bb_out(ibb, (intel_buf_height(dst) - 1) << 16 | (intel_buf_width(dst) - 1));
 	intel_bb_out(ibb, 0);
@@ -1220,6 +1256,19 @@ void gen12p71_render_copyfunc(struct intel_bb *ibb,
 			sizeof(gen12p71_render_copy));
 }
 
+void xe2_render_copyfunc(struct intel_bb *ibb,
+			 struct intel_buf *src, uint32_t src_x, uint32_t src_y,
+			 uint32_t width, uint32_t height,
+			 struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y)
+{
+	_gen9_render_op(ibb, src, src_x, src_y,
+			  width, height, dst, dst_x, dst_y,
+			  NULL,
+			  NULL,
+			  xe2_render_copy,
+			  sizeof(xe2_render_copy));
+}
+
 void mtl_render_copyfunc(struct intel_bb *ibb,
 			 struct intel_buf *src,
 			 unsigned int src_x, unsigned int src_y,
diff --git a/lib/xe2_render.h b/lib/xe2_render.h
new file mode 100644
index 0000000000..3db7a84894
--- /dev/null
+++ b/lib/xe2_render.h
@@ -0,0 +1,14 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+#ifndef GENXE2_RENDER_H
+#define GENXE2_RENDER_H
+
+#define GENXE2_3DSTATE_DRAWING_RECTANGLE_FAST	GEN4_3D(3, 0, 0)
+
+/* 3DSTATE_PS dword6 */
+# define GENXE_KERNEL0_PACKING_POLICY		24
+#  define GENXE_KERNEL0_POLY_PACK16_FIXED	3
+
+#endif
-- 
2.34.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH i-g-t v2 2/3] lib/intel_batchbuffer: Select xe2 rendercopy for LunarLake
  2024-01-09 13:21 [PATCH i-g-t v2 0/3] Add Xe2 render-copy implementation Zbigniew Kempczyński
  2024-01-09 13:21 ` [PATCH i-g-t v2 1/3] lib/rendercopy: Add render-copy xe2 implementation Zbigniew Kempczyński
@ 2024-01-09 13:21 ` Zbigniew Kempczyński
  2024-01-09 13:21 ` [PATCH i-g-t v2 3/3] tests/xe_intel_bb: Use Tile4 instead Y on render subtest Zbigniew Kempczyński
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Zbigniew Kempczyński @ 2024-01-09 13:21 UTC (permalink / raw)
  To: igt-dev

Along with rendercopy xe2 pipeline / shader selection for LunarLake
reorganize if/else conditionals to handle specific selection first.

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
 lib/intel_batchbuffer.c | 38 ++++++++++++++++++++------------------
 1 file changed, 20 insertions(+), 18 deletions(-)

diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
index ccab55cec7..5cd5dd9133 100644
--- a/lib/intel_batchbuffer.c
+++ b/lib/intel_batchbuffer.c
@@ -656,28 +656,30 @@ igt_render_copyfunc_t igt_get_render_copyfunc(int devid)
 {
 	igt_render_copyfunc_t copy = NULL;
 
-	if (IS_GEN2(devid))
-		copy = gen2_render_copyfunc;
-	else if (IS_GEN3(devid))
-		copy = gen3_render_copyfunc;
-	else if (IS_GEN4(devid) || IS_GEN5(devid))
-		copy = gen4_render_copyfunc;
-	else if (IS_GEN6(devid))
-		copy = gen6_render_copyfunc;
-	else if (IS_GEN7(devid))
-		copy = gen7_render_copyfunc;
-	else if (IS_GEN8(devid))
-		copy = gen8_render_copyfunc;
-	else if (IS_GEN9(devid) || IS_GEN10(devid))
-		copy = gen9_render_copyfunc;
-	else if (IS_GEN11(devid))
-		copy = gen11_render_copyfunc;
+	if (IS_METEORLAKE(devid))
+		copy = mtl_render_copyfunc;
+	else if (IS_LUNARLAKE(devid))
+		copy = xe2_render_copyfunc;
 	else if (HAS_FLATCCS(devid))
 		copy = gen12p71_render_copyfunc;
-	else if (IS_METEORLAKE(devid))
-		copy = mtl_render_copyfunc;
 	else if (IS_GEN12(devid))
 		copy = gen12_render_copyfunc;
+	else if (IS_GEN11(devid))
+		copy = gen11_render_copyfunc;
+	else if (IS_GEN9(devid) || IS_GEN10(devid))
+		copy = gen9_render_copyfunc;
+	else if (IS_GEN8(devid))
+		copy = gen8_render_copyfunc;
+	else if (IS_GEN7(devid))
+		copy = gen7_render_copyfunc;
+	else if (IS_GEN6(devid))
+		copy = gen6_render_copyfunc;
+	else if (IS_GEN4(devid) || IS_GEN5(devid))
+		copy = gen4_render_copyfunc;
+	else if (IS_GEN3(devid))
+		copy = gen3_render_copyfunc;
+	else if (IS_GEN2(devid))
+		copy = gen2_render_copyfunc;
 
 	return copy;
 }
-- 
2.34.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH i-g-t v2 3/3] tests/xe_intel_bb: Use Tile4 instead Y on render subtest
  2024-01-09 13:21 [PATCH i-g-t v2 0/3] Add Xe2 render-copy implementation Zbigniew Kempczyński
  2024-01-09 13:21 ` [PATCH i-g-t v2 1/3] lib/rendercopy: Add render-copy xe2 implementation Zbigniew Kempczyński
  2024-01-09 13:21 ` [PATCH i-g-t v2 2/3] lib/intel_batchbuffer: Select xe2 rendercopy for LunarLake Zbigniew Kempczyński
@ 2024-01-09 13:21 ` Zbigniew Kempczyński
  2024-01-09 14:52 ` ✗ GitLab.Pipeline: warning for Add Xe2 render-copy implementation (rev2) Patchwork
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Zbigniew Kempczyński @ 2024-01-09 13:21 UTC (permalink / raw)
  To: igt-dev

Discrete and beyond (Xe2) replaced Y tiling with 4Tile. Reflect
this in render subtest as it is used only on those platforms on Xe.

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Acked-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
 tests/intel/xe_intel_bb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/intel/xe_intel_bb.c b/tests/intel/xe_intel_bb.c
index d3d7a4fb69..161f766a05 100644
--- a/tests/intel/xe_intel_bb.c
+++ b/tests/intel/xe_intel_bb.c
@@ -1052,7 +1052,7 @@ igt_main_args("dpib", NULL, help_str, opt_handler, NULL)
 	} tests[] = {
 		{ I915_TILING_NONE, "none" },
 		{ I915_TILING_X, "x" },
-		{ I915_TILING_Y, "y" },
+		{ I915_TILING_4, "4" },
 	};
 
 	igt_fixture {
-- 
2.34.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* ✗ GitLab.Pipeline: warning for Add Xe2 render-copy implementation (rev2)
  2024-01-09 13:21 [PATCH i-g-t v2 0/3] Add Xe2 render-copy implementation Zbigniew Kempczyński
                   ` (2 preceding siblings ...)
  2024-01-09 13:21 ` [PATCH i-g-t v2 3/3] tests/xe_intel_bb: Use Tile4 instead Y on render subtest Zbigniew Kempczyński
@ 2024-01-09 14:52 ` Patchwork
  2024-01-09 15:15 ` ✓ Fi.CI.BAT: success " Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-01-09 14:52 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

== Series Details ==

Series: Add Xe2 render-copy implementation (rev2)
URL   : https://patchwork.freedesktop.org/series/128318/
State : warning

== Summary ==

Pipeline status: FAILED.

see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1073962 for the overview.

test:list-undocumented-tests has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/53523632):
  section_end:1704811669:get_sources
  section_start:1704811669:download_artifacts
  Downloading artifacts
  Downloading artifacts for build:tests-fedora (53523619)...
  Downloading artifacts from coordinator... ok        host=gitlab.freedesktop.org id=53523619 responseStatus=200 OK token=64_oG2Zx
  section_end:1704811675:download_artifacts
  section_start:1704811675:step_script
  Executing "step_script" stage of the job script
  Using docker image sha256:4b3054d89ef79f9be95501786fbbbe22857d02c867fff99693808cd80909939f for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-eaf0095fb068ad279f720780e8010a8732a6ba26 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora@sha256:17d64607d998df2bf29a56b88922d3a598e6f1daa3b51ece2a892c2f293daf83 ...
  $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh  | sh
  Checking if the user of the pipeline is allowed...
  Checking if the job's project is part of a well-known group...
  Thank you for contributing to freedesktop.org
  $ .gitlab-ci/list_undocumented_tests.py build/tests/test-list.txt > undocumented_tests.txt
  section_end:1704811691:step_script
  section_start:1704811691:cleanup_file_variables
  Cleaning up project directory and file based variables
  section_end:1704811693:cleanup_file_variables
  ERROR: Job failed: exit code 137

== Logs ==

For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1073962

^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✓ Fi.CI.BAT: success for Add Xe2 render-copy implementation (rev2)
  2024-01-09 13:21 [PATCH i-g-t v2 0/3] Add Xe2 render-copy implementation Zbigniew Kempczyński
                   ` (3 preceding siblings ...)
  2024-01-09 14:52 ` ✗ GitLab.Pipeline: warning for Add Xe2 render-copy implementation (rev2) Patchwork
@ 2024-01-09 15:15 ` Patchwork
  2024-01-09 16:34 ` ✓ CI.xeBAT: " Patchwork
  2024-01-09 17:11 ` ✗ Fi.CI.IGT: failure " Patchwork
  6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-01-09 15:15 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 2295 bytes --]

== Series Details ==

Series: Add Xe2 render-copy implementation (rev2)
URL   : https://patchwork.freedesktop.org/series/128318/
State : success

== Summary ==

CI Bug Log - changes from IGT_7664 -> IGTPW_10495
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/index.html

Participating hosts (36 -> 36)
------------------------------

  Additional (1): bat-kbl-2 
  Missing    (1): fi-snb-2520m 

Known issues
------------

  Here are the changes found in IGTPW_10495 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@info:
    - bat-kbl-2:          NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#1849])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/bat-kbl-2/igt@fbdev@info.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - bat-kbl-2:          NOTRUN -> [SKIP][2] ([fdo#109271]) +36 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@i915_selftest@live@hangcheck:
    - bat-dg1-7:          [PASS][3] -> [ABORT][4] ([i915#9413])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/bat-dg1-7/igt@i915_selftest@live@hangcheck.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/bat-dg1-7/igt@i915_selftest@live@hangcheck.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#9413]: https://gitlab.freedesktop.org/drm/intel/issues/9413


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_7664 -> IGTPW_10495

  CI-20190529: 20190529
  CI_DRM_14100: 88035acade648815ca1e0c27c44abd96b258c7e7 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_10495: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/index.html
  IGT_7664: 5b8a8dcca7711c73f9cfeb66b5deb27751290fb4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/index.html

[-- Attachment #2: Type: text/html, Size: 3026 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✓ CI.xeBAT: success for Add Xe2 render-copy implementation (rev2)
  2024-01-09 13:21 [PATCH i-g-t v2 0/3] Add Xe2 render-copy implementation Zbigniew Kempczyński
                   ` (4 preceding siblings ...)
  2024-01-09 15:15 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-01-09 16:34 ` Patchwork
  2024-01-09 17:11 ` ✗ Fi.CI.IGT: failure " Patchwork
  6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-01-09 16:34 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 2493 bytes --]

== Series Details ==

Series: Add Xe2 render-copy implementation (rev2)
URL   : https://patchwork.freedesktop.org/series/128318/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_7664_BAT -> XEIGTPW_10495_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

New tests
---------

  New tests have been introduced between XEIGT_7664_BAT and XEIGTPW_10495_BAT:

### New IGT tests (2) ###

  * igt@xe_intel_bb@render@render-4-1024:
    - Statuses : 3 pass(s)
    - Exec time: [0.08, 0.16] s

  * igt@xe_intel_bb@render@render-4-512:
    - Statuses : 3 pass(s)
    - Exec time: [0.03, 0.05] s

  

Known issues
------------

  Here are the changes found in XEIGTPW_10495_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@c-dp3:
    - bat-dg2-oem2:       [PASS][1] -> [FAIL][2] ([Intel XE#906])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7664/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@c-dp3.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10495/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@c-dp3.html

  
#### Warnings ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3:
    - bat-dg2-oem2:       [FAIL][3] ([Intel XE#480]) -> [FAIL][4] ([Intel XE#906]) +1 other test fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7664/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10495/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3.html

  
  [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
  [Intel XE#906]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/906


Build changes
-------------

  * IGT: IGT_7664 -> IGTPW_10495
  * Linux: xe-607-eacbcdb537a2774959d012206aba22848fdade26 -> xe-608-b87a3db992e2ed6ad93fa54a283d424ff56e12c0

  IGTPW_10495: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/index.html
  IGT_7664: 5b8a8dcca7711c73f9cfeb66b5deb27751290fb4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-607-eacbcdb537a2774959d012206aba22848fdade26: eacbcdb537a2774959d012206aba22848fdade26
  xe-608-b87a3db992e2ed6ad93fa54a283d424ff56e12c0: b87a3db992e2ed6ad93fa54a283d424ff56e12c0

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10495/index.html

[-- Attachment #2: Type: text/html, Size: 3230 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✗ Fi.CI.IGT: failure for Add Xe2 render-copy implementation (rev2)
  2024-01-09 13:21 [PATCH i-g-t v2 0/3] Add Xe2 render-copy implementation Zbigniew Kempczyński
                   ` (5 preceding siblings ...)
  2024-01-09 16:34 ` ✓ CI.xeBAT: " Patchwork
@ 2024-01-09 17:11 ` Patchwork
  6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-01-09 17:11 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 100261 bytes --]

== Series Details ==

Series: Add Xe2 render-copy implementation (rev2)
URL   : https://patchwork.freedesktop.org/series/128318/
State : failure

== Summary ==

CI Bug Log - changes from IGT_7664_full -> IGTPW_10495_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_10495_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_10495_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/index.html

Participating hosts (8 -> 8)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_10495_full:

### IGT changes ###

#### Possible regressions ####

  * igt@core_setmaster@master-drop-set-root:
    - shard-dg2:          [PASS][1] -> [FAIL][2] +2 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-5/igt@core_setmaster@master-drop-set-root.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@core_setmaster@master-drop-set-root.html

  * igt@i915_selftest@live@objects:
    - shard-dg2:          NOTRUN -> [FAIL][3] +36 other tests fail
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@i915_selftest@live@objects.html

  * igt@i915_selftest@live@reset:
    - shard-glk:          [PASS][4] -> [INCOMPLETE][5]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-glk8/igt@i915_selftest@live@reset.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-glk7/igt@i915_selftest@live@reset.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-rkl:          NOTRUN -> [SKIP][6]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@runner@aborted:
    - shard-glk:          NOTRUN -> [FAIL][7]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-glk1/igt@runner@aborted.html

  
#### Warnings ####

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2:          [SKIP][8] ([fdo#109315]) -> [SKIP][9] +1 other test skip
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  
Known issues
------------

  Here are the changes found in IGTPW_10495_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_allocator@two-level-inception:
    - shard-dg2:          [PASS][10] -> [SKIP][11] ([fdo#109315]) +28 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-2/igt@api_intel_allocator@two-level-inception.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@api_intel_allocator@two-level-inception.html

  * igt@api_intel_bb@blit-reloc-purge-cache:
    - shard-dg1:          NOTRUN -> [SKIP][12] ([i915#8411])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-12/igt@api_intel_bb@blit-reloc-purge-cache.html
    - shard-mtlp:         NOTRUN -> [SKIP][13] ([i915#8411])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-6/igt@api_intel_bb@blit-reloc-purge-cache.html

  * igt@drm_fdinfo@busy-hang@rcs0:
    - shard-mtlp:         NOTRUN -> [SKIP][14] ([i915#8414]) +12 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-7/igt@drm_fdinfo@busy-hang@rcs0.html

  * igt@drm_fdinfo@busy-idle-check-all@ccs3:
    - shard-dg2:          NOTRUN -> [SKIP][15] ([i915#8414]) +29 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-1/igt@drm_fdinfo@busy-idle-check-all@ccs3.html

  * igt@drm_fdinfo@virtual-busy-hang:
    - shard-dg1:          NOTRUN -> [SKIP][16] ([i915#8414]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-18/igt@drm_fdinfo@virtual-busy-hang.html

  * igt@fbdev@pan:
    - shard-dg2:          NOTRUN -> [SKIP][17] ([i915#2582])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@fbdev@pan.html
    - shard-snb:          [PASS][18] -> [FAIL][19] ([i915#4435])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-snb2/igt@fbdev@pan.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-snb7/igt@fbdev@pan.html

  * igt@gem_ccs@ctrl-surf-copy-new-ctx:
    - shard-mtlp:         NOTRUN -> [SKIP][20] ([i915#9323])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html

  * igt@gem_create@hog-create@smem0:
    - shard-mtlp:         NOTRUN -> [FAIL][21] ([i915#8758])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-2/igt@gem_create@hog-create@smem0.html

  * igt@gem_ctx_engines@execute-allforone:
    - shard-dg2:          [PASS][22] -> [SKIP][23] ([i915#2575]) +105 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-3/igt@gem_ctx_engines@execute-allforone.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_ctx_engines@execute-allforone.html

  * igt@gem_ctx_freq@sysfs@gt0:
    - shard-dg2:          NOTRUN -> [FAIL][24] ([i915#9561])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-10/igt@gem_ctx_freq@sysfs@gt0.html

  * igt@gem_exec_balancer@bonded-sync:
    - shard-mtlp:         NOTRUN -> [SKIP][25] ([i915#4771])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-6/igt@gem_exec_balancer@bonded-sync.html

  * igt@gem_exec_balancer@noheartbeat:
    - shard-dg1:          NOTRUN -> [SKIP][26] ([i915#8555])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-19/igt@gem_exec_balancer@noheartbeat.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-rkl:          NOTRUN -> [SKIP][27] ([i915#4525]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-4/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_capture@many-4k-zero:
    - shard-dg2:          NOTRUN -> [FAIL][28] ([i915#9606])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@gem_exec_capture@many-4k-zero.html

  * igt@gem_exec_fair@basic-none:
    - shard-mtlp:         NOTRUN -> [SKIP][29] ([i915#4473] / [i915#4771])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-3/igt@gem_exec_fair@basic-none.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-glk:          [PASS][30] -> [FAIL][31] ([i915#2842]) +1 other test fail
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-glk4/igt@gem_exec_fair@basic-none-share@rcs0.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-glk:          NOTRUN -> [FAIL][32] ([i915#2842])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-glk9/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-tglu:         [PASS][33] -> [FAIL][34] ([i915#2842])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-tglu-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-10/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fence@concurrent:
    - shard-mtlp:         NOTRUN -> [SKIP][35] ([i915#4812])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-2/igt@gem_exec_fence@concurrent.html
    - shard-dg2:          NOTRUN -> [SKIP][36] ([i915#4812]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@gem_exec_fence@concurrent.html

  * igt@gem_exec_fence@submit:
    - shard-dg1:          NOTRUN -> [SKIP][37] ([i915#4812]) +2 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-15/igt@gem_exec_fence@submit.html

  * igt@gem_exec_flush@basic-uc-prw-default:
    - shard-dg1:          NOTRUN -> [SKIP][38] ([i915#3539])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-17/igt@gem_exec_flush@basic-uc-prw-default.html
    - shard-dg2:          NOTRUN -> [SKIP][39] ([i915#3539])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@gem_exec_flush@basic-uc-prw-default.html

  * igt@gem_exec_params@no-vebox:
    - shard-dg2:          [PASS][40] -> [SKIP][41] ([fdo#109283] / [i915#2575])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-3/igt@gem_exec_params@no-vebox.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_exec_params@no-vebox.html

  * igt@gem_exec_params@secure-non-root:
    - shard-dg1:          NOTRUN -> [SKIP][42] ([fdo#112283])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-15/igt@gem_exec_params@secure-non-root.html

  * igt@gem_exec_reloc@basic-cpu-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][43] ([i915#3281]) +2 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-gtt.html

  * igt@gem_exec_reloc@basic-cpu-gtt-active:
    - shard-mtlp:         NOTRUN -> [SKIP][44] ([i915#3281]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-gtt-active.html

  * igt@gem_exec_reloc@basic-gtt-read-noreloc:
    - shard-rkl:          NOTRUN -> [SKIP][45] ([i915#3281]) +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html

  * igt@gem_exec_reloc@basic-wc-gtt-noreloc:
    - shard-dg1:          NOTRUN -> [SKIP][46] ([i915#3281]) +3 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html

  * igt@gem_exec_schedule@preempt-self:
    - shard-dg2:          NOTRUN -> [SKIP][47] ([i915#2575]) +190 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_exec_schedule@preempt-self.html

  * igt@gem_exec_suspend@basic-s0@smem:
    - shard-dg2:          NOTRUN -> [INCOMPLETE][48] ([i915#9275])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-2/igt@gem_exec_suspend@basic-s0@smem.html

  * igt@gem_fence_thrash@bo-copy:
    - shard-mtlp:         NOTRUN -> [SKIP][49] ([i915#4860]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-5/igt@gem_fence_thrash@bo-copy.html

  * igt@gem_fence_thrash@bo-write-verify-x:
    - shard-dg2:          NOTRUN -> [SKIP][50] ([i915#4860]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-x.html
    - shard-dg1:          NOTRUN -> [SKIP][51] ([i915#4860]) +1 other test skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-x.html

  * igt@gem_lmem_swapping@random:
    - shard-glk:          NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#4613]) +3 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-glk4/igt@gem_lmem_swapping@random.html
    - shard-tglu:         NOTRUN -> [SKIP][53] ([i915#4613])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-4/igt@gem_lmem_swapping@random.html

  * igt@gem_lmem_swapping@random-engines:
    - shard-mtlp:         NOTRUN -> [SKIP][54] ([i915#4613]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-2/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_lmem_swapping@verify-random:
    - shard-dg2:          NOTRUN -> [SKIP][55] ([i915#9643]) +5 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_lmem_swapping@verify-random.html

  * igt@gem_lmem_swapping@verify-random-ccs@lmem0:
    - shard-dg1:          NOTRUN -> [SKIP][56] ([i915#4565])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html

  * igt@gem_media_vme:
    - shard-dg2:          NOTRUN -> [SKIP][57] ([i915#284])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-10/igt@gem_media_vme.html
    - shard-dg1:          NOTRUN -> [SKIP][58] ([i915#284])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-13/igt@gem_media_vme.html

  * igt@gem_mmap@bad-object:
    - shard-dg1:          NOTRUN -> [SKIP][59] ([i915#4083])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-18/igt@gem_mmap@bad-object.html

  * igt@gem_mmap_gtt@big-bo:
    - shard-dg1:          NOTRUN -> [SKIP][60] ([i915#4077]) +5 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-12/igt@gem_mmap_gtt@big-bo.html

  * igt@gem_mmap_gtt@cpuset-medium-copy:
    - shard-mtlp:         NOTRUN -> [SKIP][61] ([i915#4077]) +3 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-2/igt@gem_mmap_gtt@cpuset-medium-copy.html

  * igt@gem_mmap_wc@bad-size:
    - shard-mtlp:         NOTRUN -> [SKIP][62] ([i915#4083])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-8/igt@gem_mmap_wc@bad-size.html

  * igt@gem_mmap_wc@set-cache-level:
    - shard-dg2:          NOTRUN -> [SKIP][63] ([i915#4083]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-10/igt@gem_mmap_wc@set-cache-level.html

  * igt@gem_partial_pwrite_pread@write-display:
    - shard-mtlp:         NOTRUN -> [SKIP][64] ([i915#3282]) +1 other test skip
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-4/igt@gem_partial_pwrite_pread@write-display.html

  * igt@gem_pread@bench:
    - shard-rkl:          NOTRUN -> [SKIP][65] ([i915#3282]) +2 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-4/igt@gem_pread@bench.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-tglu:         NOTRUN -> [INCOMPLETE][66] ([i915#10042])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-7/igt@gem_pwrite@basic-exhaustion.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][67] ([i915#10042])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-glk4/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@create-regular-context-2:
    - shard-dg2:          NOTRUN -> [SKIP][68] ([i915#4270]) +1 other test skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-2/igt@gem_pxp@create-regular-context-2.html

  * igt@gem_pxp@reject-modify-context-protection-off-3:
    - shard-dg1:          NOTRUN -> [SKIP][69] ([i915#4270]) +2 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-16/igt@gem_pxp@reject-modify-context-protection-off-3.html
    - shard-tglu:         NOTRUN -> [SKIP][70] ([i915#4270])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-8/igt@gem_pxp@reject-modify-context-protection-off-3.html
    - shard-mtlp:         NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-7/igt@gem_pxp@reject-modify-context-protection-off-3.html

  * igt@gem_readwrite@read-bad-handle:
    - shard-dg2:          NOTRUN -> [SKIP][72] ([i915#3282]) +4 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-1/igt@gem_readwrite@read-bad-handle.html

  * igt@gem_readwrite@write-bad-handle:
    - shard-dg1:          NOTRUN -> [SKIP][73] ([i915#3282]) +1 other test skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-19/igt@gem_readwrite@write-bad-handle.html

  * igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][74] ([i915#2575] / [i915#5190]) +4 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs.html

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][75] ([i915#8428]) +2 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html

  * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][76] ([i915#4079])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html

  * igt@gem_set_tiling_vs_pwrite:
    - shard-mtlp:         NOTRUN -> [SKIP][77] ([i915#4079])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-5/igt@gem_set_tiling_vs_pwrite.html

  * igt@gem_tiling_max_stride:
    - shard-dg2:          NOTRUN -> [SKIP][78] ([i915#4077]) +1 other test skip
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@gem_tiling_max_stride.html

  * igt@gem_unfence_active_buffers:
    - shard-dg1:          NOTRUN -> [SKIP][79] ([i915#4879])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-16/igt@gem_unfence_active_buffers.html

  * igt@gem_userptr_blits@invalid-mmap-offset-unsync:
    - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#3297])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-10/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
    - shard-dg1:          NOTRUN -> [SKIP][81] ([i915#3297])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-13/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html

  * igt@gem_userptr_blits@readonly-unsync:
    - shard-mtlp:         NOTRUN -> [SKIP][82] ([i915#3297])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-6/igt@gem_userptr_blits@readonly-unsync.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-dg2:          NOTRUN -> [SKIP][83] ([i915#2856]) +1 other test skip
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-10/igt@gen9_exec_parse@allowed-all.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-mtlp:         NOTRUN -> [SKIP][84] ([i915#2856]) +1 other test skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-8/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@bb-large:
    - shard-dg1:          NOTRUN -> [SKIP][85] ([i915#2527]) +2 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-18/igt@gen9_exec_parse@bb-large.html

  * igt@gen9_exec_parse@cmd-crossing-page:
    - shard-tglu:         NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) +1 other test skip
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-6/igt@gen9_exec_parse@cmd-crossing-page.html

  * igt@gen9_exec_parse@unaligned-jump:
    - shard-rkl:          NOTRUN -> [SKIP][87] ([i915#2527])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-1/igt@gen9_exec_parse@unaligned-jump.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-rkl:          [PASS][88] -> [ABORT][89] ([i915#9820])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html
    - shard-dg2:          NOTRUN -> [INCOMPLETE][90] ([i915#9820] / [i915#9849])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
    - shard-tglu:         NOTRUN -> [WARN][91] ([i915#2681]) +3 other tests warn
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html

  * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
    - shard-dg1:          NOTRUN -> [FAIL][92] ([i915#3591])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html

  * igt@i915_pm_rpm@gem-execbuf:
    - shard-dg2:          NOTRUN -> [SKIP][93] ([i915#9980]) +2 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@i915_pm_rpm@gem-execbuf.html

  * igt@i915_pm_rps@reset:
    - shard-snb:          [PASS][94] -> [INCOMPLETE][95] ([i915#7790])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-snb2/igt@i915_pm_rps@reset.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-snb6/igt@i915_pm_rps@reset.html
    - shard-mtlp:         NOTRUN -> [FAIL][96] ([i915#8346])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-3/igt@i915_pm_rps@reset.html

  * igt@i915_query@hwconfig_table:
    - shard-dg1:          NOTRUN -> [SKIP][97] ([i915#6245])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-18/igt@i915_query@hwconfig_table.html
    - shard-tglu:         NOTRUN -> [SKIP][98] ([i915#6245])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-8/igt@i915_query@hwconfig_table.html

  * igt@i915_selftest@mock@memory_region:
    - shard-dg2:          NOTRUN -> [DMESG-WARN][99] ([i915#9311])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@i915_selftest@mock@memory_region.html
    - shard-rkl:          NOTRUN -> [DMESG-WARN][100] ([i915#9311])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-3/igt@i915_selftest@mock@memory_region.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-snb:          [PASS][101] -> [INCOMPLETE][102] ([i915#10044])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-snb2/igt@i915_suspend@basic-s3-without-i915.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-snb4/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_addfb_basic@addfb25-y-tiled-legacy:
    - shard-dg2:          [PASS][103] -> [SKIP][104] ([i915#2575] / [i915#5190])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-2/igt@kms_addfb_basic@addfb25-y-tiled-legacy.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-legacy.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-mtlp:         NOTRUN -> [SKIP][105] ([i915#5190])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@tile-pitch-mismatch:
    - shard-mtlp:         NOTRUN -> [SKIP][106] ([i915#4212])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-6/igt@kms_addfb_basic@tile-pitch-mismatch.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][107] ([i915#8709]) +7 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][108] ([i915#8709]) +11 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-dg2:          NOTRUN -> [SKIP][109] ([i915#1769] / [i915#3555])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
    - shard-dg1:          NOTRUN -> [SKIP][110] ([i915#1769] / [i915#3555])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
    - shard-tglu:         NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
    - shard-glk:          NOTRUN -> [SKIP][112] ([fdo#109271] / [i915#1769])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
    - shard-dg1:          NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5286]) +2 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-15/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-180:
    - shard-tglu:         NOTRUN -> [SKIP][114] ([fdo#111615] / [i915#5286]) +1 other test skip
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-5/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-dg1:          NOTRUN -> [SKIP][115] ([i915#3638])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-19/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][116] ([fdo#111614]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
    - shard-tglu:         NOTRUN -> [SKIP][117] ([fdo#111614]) +1 other test skip
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-6/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-180:
    - shard-dg2:          NOTRUN -> [SKIP][118] ([fdo#109315] / [i915#5190]) +10 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-mtlp:         NOTRUN -> [SKIP][119] ([i915#6187])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-dg2:          NOTRUN -> [SKIP][120] ([i915#5190]) +5 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-tglu:         [PASS][121] -> [FAIL][122] ([i915#3743])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
    - shard-rkl:          NOTRUN -> [SKIP][123] ([fdo#110723])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-tglu:         NOTRUN -> [SKIP][124] ([fdo#111615])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
    - shard-mtlp:         NOTRUN -> [SKIP][125] ([fdo#111615]) +2 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
    - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5190]) +1 other test skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][127] ([i915#4538]) +1 other test skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
    - shard-rkl:          NOTRUN -> [SKIP][128] ([i915#5354] / [i915#6095]) +6 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-5/igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@pipe-b-bad-pixel-format-yf-tiled-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][129] ([i915#5354] / [i915#6095]) +15 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-10/igt@kms_ccs@pipe-b-bad-pixel-format-yf-tiled-ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
    - shard-dg1:          NOTRUN -> [SKIP][130] ([i915#5354] / [i915#6095]) +28 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-14/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-y-tiled-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][131] ([i915#5354] / [i915#6095]) +8 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-8/igt@kms_ccs@pipe-c-crc-primary-basic-y-tiled-ccs.html

  * igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][132] ([i915#5354]) +10 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-1/igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-ccs.html

  * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2:
    - shard-dg2:          NOTRUN -> [SKIP][133] ([i915#4087]) +3 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html

  * igt@kms_chamelium_audio@dp-audio:
    - shard-tglu:         NOTRUN -> [SKIP][134] ([i915#7828]) +1 other test skip
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-5/igt@kms_chamelium_audio@dp-audio.html
    - shard-mtlp:         NOTRUN -> [SKIP][135] ([i915#7828]) +1 other test skip
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-2/igt@kms_chamelium_audio@dp-audio.html

  * igt@kms_chamelium_color@ctm-0-75:
    - shard-tglu:         NOTRUN -> [SKIP][136] ([fdo#111827]) +1 other test skip
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-8/igt@kms_chamelium_color@ctm-0-75.html
    - shard-dg2:          NOTRUN -> [SKIP][137] ([fdo#111827])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@kms_chamelium_color@ctm-0-75.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-dg1:          NOTRUN -> [SKIP][138] ([fdo#111827]) +1 other test skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-13/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_color@gamma:
    - shard-mtlp:         NOTRUN -> [SKIP][139] ([fdo#111827]) +1 other test skip
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-2/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_edid@hdmi-mode-timings:
    - shard-dg2:          NOTRUN -> [SKIP][140] ([i915#7828])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-1/igt@kms_chamelium_edid@hdmi-mode-timings.html
    - shard-rkl:          NOTRUN -> [SKIP][141] ([i915#7828])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-5/igt@kms_chamelium_edid@hdmi-mode-timings.html

  * igt@kms_chamelium_frames@dp-crc-single:
    - shard-dg1:          NOTRUN -> [SKIP][142] ([i915#7828]) +4 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-16/igt@kms_chamelium_frames@dp-crc-single.html

  * igt@kms_content_protection@content-type-change:
    - shard-dg2:          NOTRUN -> [SKIP][143] ([i915#9424])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@kms_content_protection@content-type-change.html
    - shard-dg1:          NOTRUN -> [SKIP][144] ([i915#9424])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-16/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-mtlp:         NOTRUN -> [SKIP][145] ([i915#3299])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-8/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_cursor_crc@cursor-offscreen-32x10:
    - shard-mtlp:         NOTRUN -> [SKIP][146] ([i915#3555] / [i915#8814])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-mtlp:         NOTRUN -> [SKIP][147] ([i915#8814]) +1 other test skip
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-tglu:         NOTRUN -> [SKIP][148] ([fdo#109279] / [i915#3359])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-tglu:         NOTRUN -> [SKIP][149] ([i915#3359])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
    - shard-mtlp:         NOTRUN -> [SKIP][150] ([i915#3359])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
    - shard-dg1:          NOTRUN -> [SKIP][151] ([i915#3359])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][152] ([fdo#109274] / [i915#5354]) +2 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
    - shard-tglu:         NOTRUN -> [SKIP][153] ([fdo#109274]) +1 other test skip
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-10/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
    - shard-mtlp:         NOTRUN -> [SKIP][154] ([i915#9809]) +1 other test skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-mtlp:         NOTRUN -> [SKIP][155] ([i915#4213])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][156] ([i915#9723])
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][157] ([i915#9227])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html

  * igt@kms_dither@fb-8bpc-vs-panel-8bpc:
    - shard-dg2:          NOTRUN -> [SKIP][158] ([i915#3555]) +4 other tests skip
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html

  * igt@kms_draw_crc@draw-method-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][159] ([i915#8812])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-gtt.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-mtlp:         NOTRUN -> [SKIP][160] ([i915#3840] / [i915#9688])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-8/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-mtlp:         NOTRUN -> [SKIP][161] ([i915#3555] / [i915#3840])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats.html
    - shard-dg1:          NOTRUN -> [SKIP][162] ([i915#3555] / [i915#3840])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats.html
    - shard-tglu:         NOTRUN -> [SKIP][163] ([i915#3555] / [i915#3840])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-4/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_feature_discovery@display-3x:
    - shard-dg2:          NOTRUN -> [SKIP][164] ([i915#1839])
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@kms_feature_discovery@display-3x.html
    - shard-rkl:          NOTRUN -> [SKIP][165] ([i915#1839])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-3/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@display-4x:
    - shard-tglu:         NOTRUN -> [SKIP][166] ([i915#1839])
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-10/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@psr1:
    - shard-rkl:          NOTRUN -> [SKIP][167] ([i915#658])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-5/igt@kms_feature_discovery@psr1.html

  * igt@kms_fence_pin_leak:
    - shard-dg2:          NOTRUN -> [SKIP][168] ([i915#4881])
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-10/igt@kms_fence_pin_leak.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
    - shard-tglu:         NOTRUN -> [SKIP][169] ([fdo#109274] / [i915#3637]) +3 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
    - shard-dg2:          NOTRUN -> [SKIP][170] ([fdo#109274])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-modeset-vs-hang:
    - shard-rkl:          NOTRUN -> [SKIP][171] ([fdo#111825]) +1 other test skip
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-4/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html

  * igt@kms_flip@2x-flip-vs-panning:
    - shard-dg1:          NOTRUN -> [SKIP][172] ([fdo#111825] / [i915#9934]) +2 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-14/igt@kms_flip@2x-flip-vs-panning.html

  * igt@kms_flip@2x-flip-vs-rmfb:
    - shard-mtlp:         NOTRUN -> [SKIP][173] ([i915#3637]) +4 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-2/igt@kms_flip@2x-flip-vs-rmfb.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-dg1:          NOTRUN -> [SKIP][174] ([fdo#111767] / [fdo#111825])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-15/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@flip-vs-fences:
    - shard-dg2:          NOTRUN -> [SKIP][175] ([i915#8381])
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@kms_flip@flip-vs-fences.html

  * igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
    - shard-snb:          [PASS][176] -> [INCOMPLETE][177] ([i915#4839])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-snb2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-snb6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-dg2:          NOTRUN -> [SKIP][178] ([fdo#109315]) +56 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][179] ([i915#8810])
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> [SKIP][180] ([i915#2587] / [i915#2672])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][181] ([i915#2672])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
    - shard-dg1:          NOTRUN -> [SKIP][182] ([i915#2587] / [i915#2672]) +2 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][183] ([i915#2672]) +2 other tests skip
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_force_connector_basic@force-load-detect:
    - shard-rkl:          NOTRUN -> [SKIP][184] ([fdo#109285])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-5/igt@kms_force_connector_basic@force-load-detect.html
    - shard-dg2:          NOTRUN -> [SKIP][185] ([fdo#109285])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-1/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [FAIL][186] ([i915#6880])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
    - shard-mtlp:         NOTRUN -> [SKIP][187] ([i915#1825]) +12 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
    - shard-snb:          [PASS][188] -> [SKIP][189] ([fdo#109271]) +8 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-rte:
    - shard-dg2:          NOTRUN -> [SKIP][190] ([i915#5354]) +44 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-rte.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-dg1:          NOTRUN -> [SKIP][191] ([fdo#111825]) +21 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][192] ([i915#8708]) +9 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
    - shard-rkl:          NOTRUN -> [SKIP][193] ([i915#3023]) +3 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][194] ([i915#8708]) +2 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][195] ([i915#8708]) +8 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-dg2:          NOTRUN -> [SKIP][196] ([i915#9766])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render:
    - shard-tglu:         NOTRUN -> [SKIP][197] ([fdo#110189]) +3 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
    - shard-dg1:          NOTRUN -> [SKIP][198] ([i915#3458]) +6 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][199] ([i915#3458]) +14 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
    - shard-glk:          NOTRUN -> [SKIP][200] ([fdo#109271]) +208 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-glk8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
    - shard-tglu:         NOTRUN -> [SKIP][201] ([fdo#109280]) +11 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][202] ([fdo#111825] / [i915#1825]) +11 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-dg1:          NOTRUN -> [SKIP][203] ([i915#3555] / [i915#8228])
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-17/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
    - shard-dg2:          NOTRUN -> [SKIP][204] ([fdo#109289]) +1 other test skip
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
    - shard-dg1:          NOTRUN -> [SKIP][205] ([fdo#109289])
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-15/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html

  * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
    - shard-rkl:          NOTRUN -> [SKIP][206] ([fdo#109289])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-5/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-dg2:          NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8821])
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@kms_plane_lowres@tiling-yf.html
    - shard-rkl:          NOTRUN -> [SKIP][208] ([i915#3555])
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-4/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-dg2:          NOTRUN -> [SKIP][209] ([i915#8806])
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-2/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [FAIL][210] ([i915#8292])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][211] ([i915#9423]) +7 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][212] ([i915#9423]) +15 other tests skip
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][213] ([i915#9423]) +3 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d-hdmi-a-1.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][214] ([i915#9423]) +5 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][215] ([i915#5176] / [i915#9423]) +1 other test skip
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][216] ([i915#5235]) +1 other test skip
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-2.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][217] ([i915#5235]) +19 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75:
    - shard-dg2:          NOTRUN -> [SKIP][218] ([i915#2575] / [i915#9423]) +10 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][219] ([i915#5235]) +2 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][220] ([i915#5235]) +3 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][221] ([i915#5235] / [i915#9423]) +15 other tests skip
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][222] ([i915#3555] / [i915#5235])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-rkl:          NOTRUN -> [SKIP][223] ([i915#9685])
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-1/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_rpm@cursor-dpms:
    - shard-dg2:          [PASS][224] -> [SKIP][225] ([i915#9980]) +3 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_pm_rpm@cursor-dpms.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-dg1:          NOTRUN -> [SKIP][226] ([i915#9519])
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-16/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-tglu:         NOTRUN -> [SKIP][227] ([i915#9519])
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@pc8-residency:
    - shard-mtlp:         NOTRUN -> [SKIP][228] ([fdo#109293])
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-2/igt@kms_pm_rpm@pc8-residency.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
    - shard-dg1:          NOTRUN -> [SKIP][229] ([i915#9683])
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-12/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
    - shard-dg2:          NOTRUN -> [SKIP][230] ([i915#9683]) +1 other test skip
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-dg1:          NOTRUN -> [SKIP][231] ([fdo#111068] / [i915#9683])
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-19/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-rkl:          [PASS][232] -> [INCOMPLETE][233] ([i915#8875] / [i915#9569])
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-rkl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-tglu:         NOTRUN -> [SKIP][234] ([fdo#111615] / [i915#5289])
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-dg1:          NOTRUN -> [SKIP][235] ([i915#3555]) +2 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-15/igt@kms_scaling_modes@scaling-mode-center.html
    - shard-tglu:         NOTRUN -> [SKIP][236] ([i915#3555]) +1 other test skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-snb:          NOTRUN -> [SKIP][237] ([fdo#109271])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-snb5/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_sysfs_edid_timing:
    - shard-dg2:          [PASS][238] -> [FAIL][239] ([IGT#2])
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@kms_sysfs_edid_timing.html
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@kms_sysfs_edid_timing.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-dg1:          NOTRUN -> [SKIP][240] ([i915#8623])
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-19/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2:          NOTRUN -> [SKIP][241] ([fdo#109309])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-glk:          NOTRUN -> [SKIP][242] ([fdo#109271] / [i915#2437])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-glk4/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-dg2:          NOTRUN -> [SKIP][243] ([i915#2437])
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@kms_writeback@writeback-pixel-formats.html

  * igt@perf@global-sseu-config:
    - shard-dg2:          NOTRUN -> [SKIP][244] ([i915#7387])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-10/igt@perf@global-sseu-config.html

  * igt@perf@invalid-remove-userspace-config:
    - shard-dg2:          NOTRUN -> [SKIP][245] ([i915#5608]) +19 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@perf@invalid-remove-userspace-config.html

  * igt@perf@mi-rpc:
    - shard-tglu:         NOTRUN -> [SKIP][246] ([fdo#109289])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-8/igt@perf@mi-rpc.html

  * igt@perf@per-context-mode-unprivileged:
    - shard-mtlp:         NOTRUN -> [SKIP][247] ([fdo#109289])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-5/igt@perf@per-context-mode-unprivileged.html

  * igt@perf_pmu@busy-double-start@ccs0:
    - shard-mtlp:         [PASS][248] -> [FAIL][249] ([i915#4349])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-mtlp-6/igt@perf_pmu@busy-double-start@ccs0.html
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-3/igt@perf_pmu@busy-double-start@ccs0.html

  * igt@perf_pmu@busy-double-start@vecs1:
    - shard-dg2:          NOTRUN -> [FAIL][250] ([i915#4349]) +3 other tests fail
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html

  * igt@perf_pmu@busy-idle@vcs0:
    - shard-dg1:          [PASS][251] -> [FAIL][252] ([i915#4349]) +2 other tests fail
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg1-17/igt@perf_pmu@busy-idle@vcs0.html
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-12/igt@perf_pmu@busy-idle@vcs0.html

  * igt@perf_pmu@invalid-init:
    - shard-dg2:          [PASS][253] -> [SKIP][254] ([i915#5608]) +3 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-10/igt@perf_pmu@invalid-init.html
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@perf_pmu@invalid-init.html

  * igt@prime_vgem@basic-fence-flip:
    - shard-dg2:          NOTRUN -> [SKIP][255] ([i915#3708])
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-1/igt@prime_vgem@basic-fence-flip.html

  * igt@prime_vgem@basic-fence-read:
    - shard-rkl:          NOTRUN -> [SKIP][256] ([fdo#109295] / [i915#3291] / [i915#3708])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-1/igt@prime_vgem@basic-fence-read.html

  * igt@prime_vgem@basic-write:
    - shard-mtlp:         NOTRUN -> [SKIP][257] ([i915#3708])
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-1/igt@prime_vgem@basic-write.html

  * igt@runner@aborted:
    - shard-snb:          NOTRUN -> [FAIL][258] ([i915#7812])
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-snb4/igt@runner@aborted.html

  * igt@v3d/v3d_create_bo@create-bo-4096:
    - shard-rkl:          NOTRUN -> [SKIP][259] ([fdo#109315]) +2 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-3/igt@v3d/v3d_create_bo@create-bo-4096.html

  * igt@v3d/v3d_submit_cl@bad-extension:
    - shard-dg1:          NOTRUN -> [SKIP][260] ([i915#2575]) +4 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-18/igt@v3d/v3d_submit_cl@bad-extension.html

  * igt@v3d/v3d_submit_csd@multiple-job-submission:
    - shard-tglu:         NOTRUN -> [SKIP][261] ([fdo#109315] / [i915#2575])
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-3/igt@v3d/v3d_submit_csd@multiple-job-submission.html
    - shard-mtlp:         NOTRUN -> [SKIP][262] ([i915#2575]) +2 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-8/igt@v3d/v3d_submit_csd@multiple-job-submission.html

  * igt@vc4/vc4_create_bo@create-bo-0:
    - shard-dg2:          NOTRUN -> [SKIP][263] ([i915#7711]) +6 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@vc4/vc4_create_bo@create-bo-0.html

  * igt@vc4/vc4_label_bo@set-label:
    - shard-dg1:          NOTRUN -> [SKIP][264] ([i915#7711]) +2 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-17/igt@vc4/vc4_label_bo@set-label.html

  * igt@vc4/vc4_perfmon@destroy-valid-perfmon:
    - shard-tglu:         NOTRUN -> [SKIP][265] ([i915#2575])
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-2/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html

  * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
    - shard-mtlp:         NOTRUN -> [SKIP][266] ([i915#7711]) +2 other tests skip
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html

  
#### Possible fixes ####

  * igt@api_intel_allocator@two-level-inception-interruptible:
    - shard-dg2:          [SKIP][267] ([fdo#109315]) -> [PASS][268] +45 other tests pass
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@api_intel_allocator@two-level-inception-interruptible.html
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@api_intel_allocator@two-level-inception-interruptible.html

  * igt@core_setmaster@master-drop-set-shared-fd:
    - shard-dg2:          [SKIP][269] -> [PASS][270]
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@core_setmaster@master-drop-set-shared-fd.html
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@core_setmaster@master-drop-set-shared-fd.html

  * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
    - shard-rkl:          [FAIL][271] ([i915#7742]) -> [PASS][272]
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-rkl-7/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-7/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html

  * igt@fbdev@info:
    - shard-dg2:          [SKIP][273] ([i915#1849] / [i915#2582]) -> [PASS][274]
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@fbdev@info.html
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@fbdev@info.html

  * igt@fbdev@unaligned-write:
    - shard-dg2:          [SKIP][275] ([i915#2582]) -> [PASS][276]
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@fbdev@unaligned-write.html
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@fbdev@unaligned-write.html

  * igt@gem_ctx_exec@basic-nohangcheck:
    - shard-rkl:          [FAIL][277] ([i915#6268]) -> [PASS][278]
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html

  * igt@gem_ctx_param@invalid-param-set:
    - shard-dg2:          [SKIP][279] ([i915#2575]) -> [PASS][280] +135 other tests pass
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_ctx_param@invalid-param-set.html
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@gem_ctx_param@invalid-param-set.html

  * igt@gem_eio@in-flight-suspend:
    - shard-glk:          [CRASH][281] -> [PASS][282]
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-glk7/igt@gem_eio@in-flight-suspend.html
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-glk1/igt@gem_eio@in-flight-suspend.html

  * igt@gem_eio@reset-stress:
    - shard-dg1:          [FAIL][283] ([i915#5784]) -> [PASS][284]
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg1-17/igt@gem_eio@reset-stress.html
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-13/igt@gem_eio@reset-stress.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [FAIL][285] ([i915#2842]) -> [PASS][286]
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg1:          [TIMEOUT][287] ([i915#5493]) -> [PASS][288]
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-glk:          [INCOMPLETE][289] ([i915#9200] / [i915#9849]) -> [PASS][290]
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-glk8/igt@i915_module_load@reload-with-fault-injection.html
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-glk7/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-dg2:          [WARN][291] -> [PASS][292]
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@i915_suspend@basic-s3-without-i915.html
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_addfb_basic@addfb25-yf-tiled-legacy:
    - shard-dg2:          [SKIP][293] ([i915#2575] / [i915#5190]) -> [PASS][294]
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-1/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-mtlp:         [FAIL][295] ([i915#5138]) -> [PASS][296] +1 other test pass
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-dg1:          [DMESG-WARN][297] ([i915#4423]) -> [PASS][298]
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg1-12/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-17/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_cursor_crc@cursor-random-128x128@pipe-d-edp-1:
    - shard-mtlp:         [FAIL][299] -> [PASS][300] +2 other tests pass
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-128x128@pipe-d-edp-1.html
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-128x128@pipe-d-edp-1.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-snb:          [SKIP][301] ([fdo#109271] / [fdo#111767]) -> [PASS][302]
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [FAIL][303] ([i915#2346]) -> [PASS][304]
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
    - shard-snb:          [SKIP][305] ([fdo#109271]) -> [PASS][306] +9 other tests pass
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-dg2:          [SKIP][307] ([i915#9519]) -> [PASS][308]
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-10/igt@kms_pm_rpm@dpms-non-lpsp.html
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_pm_rpm@i2c:
    - shard-dg2:          [SKIP][309] ([i915#9980]) -> [PASS][310]
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@kms_pm_rpm@i2c.html
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@kms_pm_rpm@i2c.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-rkl:          [SKIP][311] ([i915#9519]) -> [PASS][312] +2 other tests pass
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
    - shard-mtlp:         [FAIL][313] ([i915#9196]) -> [PASS][314]
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
    - shard-tglu:         [FAIL][315] ([i915#9196]) -> [PASS][316]
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html

  * igt@perf@i915-ref-count:
    - shard-dg2:          [SKIP][317] ([i915#5608]) -> [PASS][318] +6 other tests pass
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@perf@i915-ref-count.html
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@perf@i915-ref-count.html

  * igt@perf_pmu@busy-idle-no-semaphores@vecs0:
    - shard-rkl:          [INCOMPLETE][319] ([i915#9853]) -> [PASS][320]
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-rkl-2/igt@perf_pmu@busy-idle-no-semaphores@vecs0.html
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-rkl-1/igt@perf_pmu@busy-idle-no-semaphores@vecs0.html

  
#### Warnings ####

  * igt@api_intel_bb@object-reloc-keep-cache:
    - shard-dg2:          [SKIP][321] ([i915#8411]) -> [SKIP][322] ([i915#2575])
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-2/igt@api_intel_bb@object-reloc-keep-cache.html
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@api_intel_bb@object-reloc-keep-cache.html

  * igt@api_intel_bb@object-reloc-purge-cache:
    - shard-dg2:          [SKIP][323] ([i915#2575]) -> [SKIP][324] ([i915#8411])
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@api_intel_bb@object-reloc-purge-cache.html
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@api_intel_bb@object-reloc-purge-cache.html

  * igt@drm_fdinfo@virtual-busy-all:
    - shard-dg2:          [SKIP][325] ([i915#5608]) -> [SKIP][326] ([i915#8414])
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@drm_fdinfo@virtual-busy-all.html
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@drm_fdinfo@virtual-busy-all.html

  * igt@drm_fdinfo@virtual-busy-hang:
    - shard-dg2:          [SKIP][327] ([i915#8414]) -> [SKIP][328] ([i915#5608])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-3/igt@drm_fdinfo@virtual-busy-hang.html
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@drm_fdinfo@virtual-busy-hang.html

  * igt@gem_basic@multigpu-create-close:
    - shard-dg2:          [SKIP][329] ([i915#2575]) -> [SKIP][330] ([i915#7697])
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_basic@multigpu-create-close.html
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-10/igt@gem_basic@multigpu-create-close.html

  * igt@gem_ctx_persistence@heartbeat-hostile:
    - shard-dg2:          [SKIP][331] ([i915#8555]) -> [SKIP][332] ([i915#2575]) +1 other test skip
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hostile.html
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hostile.html

  * igt@gem_ctx_sseu@invalid-args:
    - shard-dg2:          [SKIP][333] ([i915#280]) -> [SKIP][334] ([i915#2575])
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-2/igt@gem_ctx_sseu@invalid-args.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_ctx_sseu@invalid-args.html

  * igt@gem_exec_fair@basic-none-share:
    - shard-dg2:          [SKIP][335] ([i915#2575]) -> [SKIP][336] ([i915#3539] / [i915#4852]) +3 other tests skip
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_exec_fair@basic-none-share.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@gem_exec_fair@basic-none-share.html

  * igt@gem_exec_fair@basic-pace-solo:
    - shard-dg2:          [SKIP][337] ([i915#3539]) -> [SKIP][338] ([i915#2575]) +1 other test skip
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-10/igt@gem_exec_fair@basic-pace-solo.html
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_exec_fair@basic-pace-solo.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-tglu:         [FAIL][339] ([i915#2842]) -> [FAIL][340] ([i915#2876])
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-tglu-9/igt@gem_exec_fair@basic-pace@rcs0.html
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-tglu-9/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_flush@basic-uc-ro-default:
    - shard-dg2:          [SKIP][341] ([i915#3539] / [i915#4852]) -> [SKIP][342] ([i915#2575]) +3 other tests skip
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-7/igt@gem_exec_flush@basic-uc-ro-default.html
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html

  * igt@gem_exec_params@rsvd2-dirt:
    - shard-dg2:          [SKIP][343] ([fdo#109283] / [i915#2575]) -> [SKIP][344] ([fdo#109283] / [i915#5107])
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-2/igt@gem_exec_params@rsvd2-dirt.html

  * igt@gem_exec_params@secure-non-master:
    - shard-dg2:          [SKIP][345] ([fdo#112283]) -> [SKIP][346] ([i915#2575])
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-2/igt@gem_exec_params@secure-non-master.html
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_exec_params@secure-non-master.html

  * igt@gem_exec_reloc@basic-active:
    - shard-dg2:          [SKIP][347] ([i915#3281]) -> [SKIP][348] ([i915#2575]) +8 other tests skip
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-5/igt@gem_exec_reloc@basic-active.html
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_exec_reloc@basic-active.html

  * igt@gem_exec_reloc@basic-write-gtt:
    - shard-dg2:          [SKIP][349] ([i915#2575]) -> [SKIP][350] ([i915#3281]) +9 other tests skip
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_exec_reloc@basic-write-gtt.html
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@gem_exec_reloc@basic-write-gtt.html

  * igt@gem_exec_schedule@reorder-wide:
    - shard-dg2:          [SKIP][351] ([i915#4537] / [i915#4812]) -> [SKIP][352] ([i915#2575]) +1 other test skip
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-10/igt@gem_exec_schedule@reorder-wide.html
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html

  * igt@gem_exec_schedule@semaphore-power:
    - shard-dg2:          [SKIP][353] ([i915#2575]) -> [SKIP][354] ([i915#4537] / [i915#4812]) +1 other test skip
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_exec_schedule@semaphore-power.html
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@gem_exec_schedule@semaphore-power.html

  * igt@gem_fence_thrash@bo-copy:
    - shard-dg2:          [SKIP][355] ([i915#2575]) -> [SKIP][356] ([i915#4860]) +2 other tests skip
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@gem_fence_thrash@bo-copy.html

  * igt@gem_fenced_exec_thrash@no-spare-fences-busy:
    - shard-dg2:          [SKIP][357] ([i915#4860]) -> [SKIP][358] ([i915#2575])
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html

  * igt@gem_media_fill@media-fill:
    - shard-dg2:          [SKIP][359] ([i915#2575]) -> [SKIP][360] ([i915#8289])
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_media_fill@media-fill.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-1/igt@gem_media_fill@media-fill.html

  * igt@gem_mmap@basic:
    - shard-dg2:          [SKIP][361] ([i915#4083]) -> [SKIP][362] ([i915#2575]) +2 other tests skip
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-6/igt@gem_mmap@basic.html
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_mmap@basic.html

  * igt@gem_mmap_gtt@cpuset-big-copy-odd:
    - shard-dg2:          [SKIP][363] ([i915#4077]) -> [SKIP][364] ([i915#2575]) +9 other tests skip
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy-odd.html

  * igt@gem_mmap_wc@write-prefaulted:
    - shard-dg2:          [SKIP][365] ([i915#2575]) -> [SKIP][366] ([i915#4083]) +2 other tests skip
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_mmap_wc@write-prefaulted.html
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@gem_mmap_wc@write-prefaulted.html

  * igt@gem_partial_pwrite_pread@reads:
    - shard-dg2:          [SKIP][367] ([i915#3282]) -> [SKIP][368] ([i915#2575]) +4 other tests skip
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_partial_pwrite_pread@reads.html

  * igt@gem_partial_pwrite_pread@writes-after-reads-display:
    - shard-dg2:          [SKIP][369] ([i915#2575]) -> [SKIP][370] ([i915#3282]) +3 other tests skip
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-2/igt@gem_partial_pwrite_pread@writes-after-reads-display.html

  * igt@gem_pxp@display-protected-crc:
    - shard-dg2:          [SKIP][371] ([i915#4270]) -> [SKIP][372] ([i915#2575]) +2 other tests skip
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-2/igt@gem_pxp@display-protected-crc.html
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_pxp@display-protected-crc.html

  * igt@gem_pxp@verify-pxp-stale-ctx-execution:
    - shard-dg2:          [SKIP][373] ([i915#2575]) -> [SKIP][374] ([i915#4270])
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html

  * igt@gem_render_copy@y-tiled-ccs-to-linear:
    - shard-dg2:          [SKIP][375] ([i915#2575] / [i915#5190]) -> [SKIP][376] ([i915#5190]) +3 other tests skip
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-linear.html
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@gem_render_copy@y-tiled-ccs-to-linear.html

  * igt@gem_set_tiling_vs_blt@tiled-to-untiled:
    - shard-dg2:          [SKIP][377] ([i915#4079]) -> [SKIP][378] ([i915#2575]) +1 other test skip
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html

  * igt@gem_set_tiling_vs_pwrite:
    - shard-dg2:          [SKIP][379] ([i915#2575]) -> [SKIP][380] ([i915#4079])
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_set_tiling_vs_pwrite.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-1/igt@gem_set_tiling_vs_pwrite.html

  * igt@gem_softpin@evict-snoop-interruptible:
    - shard-dg2:          [SKIP][381] ([i915#2575]) -> [SKIP][382] ([i915#4885])
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@gem_softpin@evict-snoop-interruptible.html

  * igt@gem_spin_batch@spin-all-new:
    - shard-dg2:          [SKIP][383] ([i915#2575]) -> [FAIL][384] ([i915#5889])
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_spin_batch@spin-all-new.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@gem_spin_batch@spin-all-new.html

  * igt@gem_tiled_partial_pwrite_pread@writes:
    - shard-dg2:          [SKIP][385] ([i915#2575]) -> [SKIP][386] ([i915#4077]) +13 other tests skip
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_tiled_partial_pwrite_pread@writes.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@gem_tiled_partial_pwrite_pread@writes.html

  * igt@gem_userptr_blits@coherency-unsync:
    - shard-dg2:          [SKIP][387] ([i915#3297]) -> [SKIP][388] ([i915#2575]) +1 other test skip
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-2/igt@gem_userptr_blits@coherency-unsync.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_userptr_blits@coherency-unsync.html

  * igt@gem_userptr_blits@create-destroy-unsync:
    - shard-dg2:          [SKIP][389] ([i915#2575]) -> [SKIP][390] ([i915#3297]) +3 other tests skip
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-1/igt@gem_userptr_blits@create-destroy-unsync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-dg2:          [SKIP][391] ([i915#2575]) -> [SKIP][392] ([i915#3297] / [i915#4880])
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-dg2:          [SKIP][393] ([i915#3297] / [i915#4880]) -> [SKIP][394] ([i915#2575]) +2 other tests skip
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

  * igt@gen3_render_tiledx_blits:
    - shard-dg2:          [SKIP][395] ([fdo#109289]) -> [SKIP][396] ([i915#2575]) +4 other tests skip
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-10/igt@gen3_render_tiledx_blits.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gen3_render_tiledx_blits.html

  * igt@gen7_exec_parse@bitmasks:
    - shard-dg2:          [SKIP][397] ([i915#2575]) -> [SKIP][398] ([fdo#109289]) +5 other tests skip
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gen7_exec_parse@bitmasks.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@gen7_exec_parse@bitmasks.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-dg2:          [SKIP][399] ([i915#2856]) -> [SKIP][400] ([i915#2575]) +2 other tests skip
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-10/igt@gen9_exec_parse@shadow-peek.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@gen9_exec_parse@shadow-peek.html

  * igt@gen9_exec_parse@unaligned-access:
    - shard-dg2:          [SKIP][401] ([i915#2575]) -> [SKIP][402] ([i915#2856]) +3 other tests skip
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@gen9_exec_parse@unaligned-access.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@gen9_exec_parse@unaligned-access.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-dg1:          [INCOMPLETE][403] ([i915#9849]) -> [INCOMPLETE][404] ([i915#9820] / [i915#9849])
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_rpm@gem-evict-pwrite:
    - shard-dg2:          [SKIP][405] ([i915#9980]) -> [SKIP][406] ([i915#4077]) +1 other test skip
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@i915_pm_rpm@gem-evict-pwrite.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@i915_pm_rpm@gem-evict-pwrite.html

  * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
    - shard-dg2:          [SKIP][407] ([fdo#109293] / [fdo#109506]) -> [SKIP][408] ([i915#9980])
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html

  * igt@i915_pm_rps@min-max-config-loaded:
    - shard-dg2:          [SKIP][409] ([i915#2575]) -> [SKIP][410] ([i915#6621]) +1 other test skip
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@i915_pm_rps@min-max-config-loaded.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-2/igt@i915_pm_rps@min-max-config-loaded.html

  * igt@i915_query@query-topology-known-pci-ids:
    - shard-dg2:          [SKIP][411] ([i915#2575]) -> [SKIP][412] ([fdo#109303])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@i915_query@query-topology-known-pci-ids.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@i915_query@query-topology-known-pci-ids.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - shard-dg2:          [SKIP][413] ([i915#4215] / [i915#5190]) -> [SKIP][414] ([i915#2575] / [i915#5190])
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
    - shard-dg2:          [SKIP][415] ([i915#2575]) -> [SKIP][416] ([i915#4212]) +2 other tests skip
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-dg2:          [SKIP][417] ([i915#2575]) -> [SKIP][418] ([i915#9531])
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-270:
    - shard-dg2:          [SKIP][419] ([fdo#109315]) -> [SKIP][420] ([fdo#111614]) +4 other tests skip
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
    - shard-dg2:          [SKIP][421] ([fdo#111614]) -> [SKIP][422] ([fdo#109315]) +2 other tests skip
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-6/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-0:
    - shard-dg2:          [SKIP][423] ([i915#5190]) -> [SKIP][424] ([fdo#109315] / [i915#5190]) +5 other tests skip
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2:          [SKIP][425] ([fdo#109315] / [i915#5190]) -> [SKIP][426] ([i915#5190]) +4 other tests skip
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
    - shard-dg2:          [SKIP][427] ([i915#4538] / [i915#5190]) -> [SKIP][428] ([fdo#109315] / [i915#5190]) +2 other tests skip
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-dg2:          [SKIP][429] ([fdo#109315] / [i915#5190]) -> [SKIP][430] ([i915#4538] / [i915#5190]) +6 other tests skip
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_joiner@2x-modeset:
    - shard-dg2:          [SKIP][431] ([fdo#109315]) -> [SKIP][432] ([i915#2705])
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@kms_big_joiner@2x-modeset.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-2/igt@kms_big_joiner@2x-modeset.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-dg2:          [SKIP][433] ([i915#2705]) -> [SKIP][434] ([fdo#109315])
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-2/igt@kms_big_joiner@invalid-modeset.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_big_joiner@invalid-modeset.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs:
    - shard-dg2:          [SKIP][435] ([fdo#109315]) -> [SKIP][436] ([i915#5354]) +81 other tests skip
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@pipe-c-ccs-on-another-bo-4-tiled-mtl-mc-ccs:
    - shard-dg1:          [SKIP][437] ([i915#4423] / [i915#5354] / [i915#6095]) -> [SKIP][438] ([i915#5354] / [i915#6095])
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg1-12/igt@kms_ccs@pipe-c-ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg1-15/igt@kms_ccs@pipe-c-ccs-on-another-bo-4-tiled-mtl-mc-ccs.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-dg2:          [SKIP][439] ([fdo#111827]) -> [SKIP][440] ([i915#2575])
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-2/igt@kms_chamelium_color@ctm-limited-range.html
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_chamelium_color@gamma:
    - shard-dg2:          [SKIP][441] ([i915#2575]) -> [SKIP][442] ([fdo#111827])
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@kms_chamelium_color@gamma.html
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_frames@dp-crc-multiple:
    - shard-dg2:          [SKIP][443] ([i915#2575]) -> [SKIP][444] ([i915#7828]) +10 other tests skip
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-multiple.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-multiple.html

  * igt@kms_chamelium_frames@dp-frame-dump:
    - shard-dg2:          [SKIP][445] ([i915#7828]) -> [SKIP][446] ([i915#2575]) +6 other tests skip
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-7/igt@kms_chamelium_frames@dp-frame-dump.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_chamelium_frames@dp-frame-dump.html

  * igt@kms_content_protection@atomic:
    - shard-snb:          [SKIP][447] ([fdo#109271]) -> [INCOMPLETE][448] ([i915#8816])
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-snb6/igt@kms_content_protection@atomic.html
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-snb7/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2:          [SKIP][449] ([i915#3299]) -> [SKIP][450] ([i915#2575])
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-0.html
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@mei-interface:
    - shard-dg2:          [SKIP][451] ([i915#2575]) -> [SKIP][452] ([i915#9424])
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@kms_content_protection@mei-interface.html
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-3/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@uevent:
    - shard-snb:          [INCOMPLETE][453] ([i915#8816]) -> [SKIP][454] ([fdo#109271])
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-snb7/igt@kms_content_protection@uevent.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-snb4/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-dg2:          [SKIP][455] ([i915#2575]) -> [SKIP][456] ([i915#3359]) +3 other tests skip
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x170.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-dg2:          [SKIP][457] ([i915#3359]) -> [SKIP][458] ([i915#2575])
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-max-size:
    - shard-dg2:          [SKIP][459] ([i915#3555]) -> [SKIP][460] ([i915#2575]) +7 other tests skip
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2:          [SKIP][461] ([i915#4103] / [i915#4213]) -> [SKIP][462] ([i915#2575]) +1 other test skip
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
    - shard-dg2:          [SKIP][463] ([fdo#109274] / [i915#5354]) -> [SKIP][464] ([i915#2575]) +5 other tests skip
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/shard-dg2-11/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-dg2:          [SKIP][465] ([fdo#109274] / [fdo#111767] / [i915#5354]) -> [SKIP][466] ([i915#2575])
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7664/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
   [466]: https://intel-gfx-ci.01.org/tre

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10495/index.html

[-- Attachment #2: Type: text/html, Size: 109068 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH i-g-t v2 1/3] lib/rendercopy: Add render-copy xe2 implementation
  2024-01-09 13:21 ` [PATCH i-g-t v2 1/3] lib/rendercopy: Add render-copy xe2 implementation Zbigniew Kempczyński
@ 2024-01-10  8:43   ` Grzegorzek, Dominik
  2024-01-10 12:11     ` Zbigniew Kempczyński
  0 siblings, 1 reply; 10+ messages in thread
From: Grzegorzek, Dominik @ 2024-01-10  8:43 UTC (permalink / raw)
  To: Kempczynski, Zbigniew, igt-dev

Hi Zbyszek, 
On Tue, 2024-01-09 at 14:21 +0100, Zbigniew Kempczyński wrote:
> > Due to small differences between xe2 and previous 3d pipeline I decided
> > to adopt this in gen9 render-copy function instead of introducing a new one.
> > Xe2 uses large GRFs (512-bit) where coordinates occupy only 2 GRF
> > registers (instead 4 on 256-bit GRFs). This requires shader adoption
> > on data preparation for sampler/render target write.
> > 
> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> > Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> > ---
> >  lib/i915/shaders/ps/gen20_render_copy.asm |  8 ++++
> >  lib/rendercopy.h                          |  4 ++
> >  lib/rendercopy_gen9.c                     | 57 +++++++++++++++++++++--
> >  lib/xe2_render.h                          | 14 ++++++
> >  4 files changed, 79 insertions(+), 4 deletions(-)
> >  create mode 100644 lib/i915/shaders/ps/gen20_render_copy.asm
> >  create mode 100644 lib/xe2_render.h
> > 
> > diff --git a/lib/i915/shaders/ps/gen20_render_copy.asm b/lib/i915/shaders/ps/gen20_render_copy.asm
> > new file mode 100644
> > index 0000000000..330417966d
> > --- /dev/null
> > +++ b/lib/i915/shaders/ps/gen20_render_copy.asm
> > @@ -0,0 +1,8 @@
> > +L0:
> > +(W)     mad (16|M0)              acc0.0<1>:f   r6.3<0;0>:f      r1.0<1;1>:f       r6.0<0>:f
> > +(W)     mad (16|M0)              r113.0<1>:f   acc0.0<1;1>:f    r1.0<1;1>:f       r6.1<0>:f
> > +(W)     mad (16|M0)              acc0.0<1>:f   r6.7<0;0>:f      r1.0<1;1>:f       r6.4<0>:f
> > +(W)     mad (16|M0)              r114.0<1>:f   acc0.0<1;1>:f    r2.0<1;1>:f       r6.5<0>:f
> > +(W)     send.smpl (16|M0)        r12      r113  null:0  0x0            0x04420001           {F@1,$0} // wr:2+0, rd:4; simd16 sample:u+v+r+ai+mlod using sampler index 0
> > +(W)     send.rc (16|M0)          null     r12   null:0  0x0            0x08031400           {EOT,$0} // wr:4+0, rd:0; full-precision render target write SIMD16; last render target to surface 0
> > +L96:
> > diff --git a/lib/rendercopy.h b/lib/rendercopy.h
> > index 0d81d27f83..3733e8a09f 100644
> > --- a/lib/rendercopy.h
> > +++ b/lib/rendercopy.h
> > @@ -43,6 +43,10 @@ void gen12p71_render_copyfunc(struct intel_bb *ibb,
> >  			      struct intel_buf *src, uint32_t src_x, uint32_t src_y,
> >  			      uint32_t width, uint32_t height,
> >  			      struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y);
> > +void xe2_render_copyfunc(struct intel_bb *ibb,
> > +			 struct intel_buf *src, uint32_t src_x, uint32_t src_y,
> > +			 uint32_t width, uint32_t height,
> > +			 struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y);
> >  void gen12_render_copyfunc(struct intel_bb *ibb,
> >  			   struct intel_buf *src, uint32_t src_x, uint32_t src_y,
> >  			   uint32_t width, uint32_t height,
> > diff --git a/lib/rendercopy_gen9.c b/lib/rendercopy_gen9.c
> > index 363bc6c1b2..adf0436f35 100644
> > --- a/lib/rendercopy_gen9.c
> > +++ b/lib/rendercopy_gen9.c
> > @@ -22,6 +22,7 @@
> >  #include "intel_mocs.h"
> >  #include "rendercopy.h"
> >  #include "gen9_render.h"
> > +#include "xe2_render.h"
> >  #include "intel_reg.h"
> >  #include "igt_aux.h"
> >  #include "intel_chipset.h"
> > @@ -136,6 +137,15 @@ static const uint32_t gen12p71_render_copy[][4] = {
> >  	{ 0x80041131, 0x00000004, 0x50007144, 0x00c40000 },
> >  };
> >  
> > +static const uint32_t xe2_render_copy[][4] = {
> > +	{ 0x8010005b, 0x200002a0, 0x020a0634, 0x06040105 },
> > +	{ 0x8010005b, 0x710402a8, 0x020a2001, 0x06140105 },
> > +	{ 0x8010005b, 0x200002a0, 0x020a0674, 0x06440105 },
> > +	{ 0x8010005b, 0x720402a8, 0x020a2001, 0x06540205 },
> > +	{ 0x80122031, 0x0c240000, 0x20027114, 0x00800000 },
> > +	{ 0x8010c031, 0x00000004, 0x58000c24, 0x00c40000 },
> > +};
> > +
> >  /* Mostly copy+paste from gen6, except height, width, pitch moved */
> >  static uint32_t
> >  gen9_bind_buf(struct intel_bb *ibb, const struct intel_buf *buf, int is_dst,
> > @@ -545,7 +555,10 @@ gen9_emit_state_base_address(struct intel_bb *ibb) {
> >  	/* WaBindlessSurfaceStateModifyEnable:skl,bxt */
> >  	/* The length has to be one less if we dont modify
> >  	   bindless state */
> > -	intel_bb_out(ibb, GEN4_STATE_BASE_ADDRESS | (19 - 1 - 2));
> > +	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20))
> > +		intel_bb_out(ibb, GEN4_STATE_BASE_ADDRESS | 20);
> > +	else
> > +		intel_bb_out(ibb, GEN4_STATE_BASE_ADDRESS | (19 - 1 - 2));
> >  
> >  	/* general */
> >  	intel_bb_out(ibb, 0 | BASE_ADDRESS_MODIFY);
> > @@ -586,6 +599,13 @@ gen9_emit_state_base_address(struct intel_bb *ibb) {
> >  	intel_bb_out(ibb, 0);
> >  	intel_bb_out(ibb, 0);
> >  	intel_bb_out(ibb, 0);
> > +
> > +	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20)) {
> > +		/* Bindless sampler */
> > +		intel_bb_out(ibb, 0);
> > +		intel_bb_out(ibb, 0);
> > +		intel_bb_out(ibb, 0);
> > +	}
> >  }
> >  
> >  static void
> > @@ -753,7 +773,12 @@ gen9_emit_ds(struct intel_bb *ibb) {
> >  
> >  static void
> >  gen8_emit_wm_hz_op(struct intel_bb *ibb) {
> > -	intel_bb_out(ibb, GEN8_3DSTATE_WM_HZ_OP | (5-2));
> > +	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20)) {
> > +		intel_bb_out(ibb, GEN8_3DSTATE_WM_HZ_OP | (6-2));
> > +		intel_bb_out(ibb, 0);
> > +	} else {
> > +		intel_bb_out(ibb, GEN8_3DSTATE_WM_HZ_OP | (5-2));
> > +	}
> >  	intel_bb_out(ibb, 0);
> >  	intel_bb_out(ibb, 0);
> >  	intel_bb_out(ibb, 0);
> > @@ -852,7 +877,11 @@ gen8_emit_ps(struct intel_bb *ibb, uint32_t kernel, bool fast_clear) {
> >  	intel_bb_out(ibb, (max_threads - 1) << GEN8_3DSTATE_PS_MAX_THREADS_SHIFT |
> >  	             GEN6_3DSTATE_WM_16_DISPATCH_ENABLE |
> >  	             (fast_clear ? GEN8_3DSTATE_FAST_CLEAR_ENABLE : 0));
> > -	intel_bb_out(ibb, 6 << GEN6_3DSTATE_WM_DISPATCH_START_GRF_0_SHIFT);
> > +	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20))
> > +		intel_bb_out(ibb, 6 << GEN6_3DSTATE_WM_DISPATCH_START_GRF_0_SHIFT |
> > +			     GENXE_KERNEL0_POLY_PACK16_FIXED << GENXE_KERNEL0_PACKING_POLICY);
> > +	else
> > +		intel_bb_out(ibb, 6 << GEN6_3DSTATE_WM_DISPATCH_START_GRF_0_SHIFT);
> >  	intel_bb_out(ibb, 0); // kernel 1
> >  	intel_bb_out(ibb, 0); /* kernel 1 hi */
> >  	intel_bb_out(ibb, 0); // kernel 2
> > @@ -862,6 +891,7 @@ gen8_emit_ps(struct intel_bb *ibb, uint32_t kernel, bool fast_clear) {
> >  	intel_bb_out(ibb, GEN8_PS_BLEND_HAS_WRITEABLE_RT);
> >  
> >  	intel_bb_out(ibb, GEN8_3DSTATE_PS_EXTRA | (2 - 2));
> > +
extra newline?
> >  	intel_bb_out(ibb, GEN8_PSX_PIXEL_SHADER_VALID | GEN8_PSX_ATTRIBUTE_ENABLE);
> >  }
> >  
> > @@ -903,6 +933,9 @@ gen9_emit_depth(struct intel_bb *ibb)
> >  
> >  static void
> >  gen7_emit_clear(struct intel_bb *ibb) {
> > +	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20))
> > +		return;
> > +
> >  	intel_bb_out(ibb, GEN7_3DSTATE_CLEAR_PARAMS | (3-2));
> >  	intel_bb_out(ibb, 0);
> >  	intel_bb_out(ibb, 1); // clear valid
> > @@ -911,7 +944,10 @@ gen7_emit_clear(struct intel_bb *ibb) {
> >  static void
> >  gen6_emit_drawing_rectangle(struct intel_bb *ibb, const struct intel_buf *dst)
> >  {
> > -	intel_bb_out(ibb, GEN4_3DSTATE_DRAWING_RECTANGLE | (4 - 2));
> > +	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20))
> > +		intel_bb_out(ibb, GENXE2_3DSTATE_DRAWING_RECTANGLE_FAST | (4 - 2));
> > +	else
> > +		intel_bb_out(ibb, GEN4_3DSTATE_DRAWING_RECTANGLE | (4 - 2));
> >  	intel_bb_out(ibb, 0);
> >  	intel_bb_out(ibb, (intel_buf_height(dst) - 1) << 16 | (intel_buf_width(dst) - 1));
> >  	intel_bb_out(ibb, 0);
> > @@ -1220,6 +1256,19 @@ void gen12p71_render_copyfunc(struct intel_bb *ibb,
> >  			sizeof(gen12p71_render_copy));
> >  }
> >  
> > +void xe2_render_copyfunc(struct intel_bb *ibb,
> > +			 struct intel_buf *src, uint32_t src_x, uint32_t src_y,
> > +			 uint32_t width, uint32_t height,
> > +			 struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y)
> > +{
> > +	_gen9_render_op(ibb, src, src_x, src_y,
> > +			  width, height, dst, dst_x, dst_y,
> > +			  NULL,
> > +			  NULL,
> > +			  xe2_render_copy,
> > +			  sizeof(xe2_render_copy));
> > +}
> > +
> >  void mtl_render_copyfunc(struct intel_bb *ibb,
> >  			 struct intel_buf *src,
> >  			 unsigned int src_x, unsigned int src_y,
> > diff --git a/lib/xe2_render.h b/lib/xe2_render.h
> > new file mode 100644
> > index 0000000000..3db7a84894
> > --- /dev/null
> > +++ b/lib/xe2_render.h
> > @@ -0,0 +1,14 @@
> > +/* SPDX-License-Identifier: MIT */
> > +/*
> > + * Copyright © 2024 Intel Corporation
> > + */
> > +#ifndef GENXE2_RENDER_H
> > +#define GENXE2_RENDER_H
Fix this guard to match file name as well.

With that: 
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> > +
> > +#define GENXE2_3DSTATE_DRAWING_RECTANGLE_FAST	GEN4_3D(3, 0, 0)
> > +
> > +/* 3DSTATE_PS dword6 */
> > +# define GENXE_KERNEL0_PACKING_POLICY		24
> > +#  define GENXE_KERNEL0_POLY_PACK16_FIXED	3
> > +
> > +#endif


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH i-g-t v2 1/3] lib/rendercopy: Add render-copy xe2 implementation
  2024-01-10  8:43   ` Grzegorzek, Dominik
@ 2024-01-10 12:11     ` Zbigniew Kempczyński
  0 siblings, 0 replies; 10+ messages in thread
From: Zbigniew Kempczyński @ 2024-01-10 12:11 UTC (permalink / raw)
  To: Grzegorzek, Dominik; +Cc: igt-dev

On Wed, Jan 10, 2024 at 09:43:43AM +0100, Grzegorzek, Dominik wrote:
> Hi Zbyszek, 
> On Tue, 2024-01-09 at 14:21 +0100, Zbigniew Kempczyński wrote:
> > > Due to small differences between xe2 and previous 3d pipeline I decided
> > > to adopt this in gen9 render-copy function instead of introducing a new one.
> > > Xe2 uses large GRFs (512-bit) where coordinates occupy only 2 GRF
> > > registers (instead 4 on 256-bit GRFs). This requires shader adoption
> > > on data preparation for sampler/render target write.
> > > 
> > > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > > Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> > > Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> > > ---
> > >  lib/i915/shaders/ps/gen20_render_copy.asm |  8 ++++
> > >  lib/rendercopy.h                          |  4 ++
> > >  lib/rendercopy_gen9.c                     | 57 +++++++++++++++++++++--
> > >  lib/xe2_render.h                          | 14 ++++++
> > >  4 files changed, 79 insertions(+), 4 deletions(-)
> > >  create mode 100644 lib/i915/shaders/ps/gen20_render_copy.asm
> > >  create mode 100644 lib/xe2_render.h
> > > 
> > > diff --git a/lib/i915/shaders/ps/gen20_render_copy.asm b/lib/i915/shaders/ps/gen20_render_copy.asm
> > > new file mode 100644
> > > index 0000000000..330417966d
> > > --- /dev/null
> > > +++ b/lib/i915/shaders/ps/gen20_render_copy.asm
> > > @@ -0,0 +1,8 @@
> > > +L0:
> > > +(W)     mad (16|M0)              acc0.0<1>:f   r6.3<0;0>:f      r1.0<1;1>:f       r6.0<0>:f
> > > +(W)     mad (16|M0)              r113.0<1>:f   acc0.0<1;1>:f    r1.0<1;1>:f       r6.1<0>:f
> > > +(W)     mad (16|M0)              acc0.0<1>:f   r6.7<0;0>:f      r1.0<1;1>:f       r6.4<0>:f
> > > +(W)     mad (16|M0)              r114.0<1>:f   acc0.0<1;1>:f    r2.0<1;1>:f       r6.5<0>:f
> > > +(W)     send.smpl (16|M0)        r12      r113  null:0  0x0            0x04420001           {F@1,$0} // wr:2+0, rd:4; simd16 sample:u+v+r+ai+mlod using sampler index 0
> > > +(W)     send.rc (16|M0)          null     r12   null:0  0x0            0x08031400           {EOT,$0} // wr:4+0, rd:0; full-precision render target write SIMD16; last render target to surface 0
> > > +L96:
> > > diff --git a/lib/rendercopy.h b/lib/rendercopy.h
> > > index 0d81d27f83..3733e8a09f 100644
> > > --- a/lib/rendercopy.h
> > > +++ b/lib/rendercopy.h
> > > @@ -43,6 +43,10 @@ void gen12p71_render_copyfunc(struct intel_bb *ibb,
> > >  			      struct intel_buf *src, uint32_t src_x, uint32_t src_y,
> > >  			      uint32_t width, uint32_t height,
> > >  			      struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y);
> > > +void xe2_render_copyfunc(struct intel_bb *ibb,
> > > +			 struct intel_buf *src, uint32_t src_x, uint32_t src_y,
> > > +			 uint32_t width, uint32_t height,
> > > +			 struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y);
> > >  void gen12_render_copyfunc(struct intel_bb *ibb,
> > >  			   struct intel_buf *src, uint32_t src_x, uint32_t src_y,
> > >  			   uint32_t width, uint32_t height,
> > > diff --git a/lib/rendercopy_gen9.c b/lib/rendercopy_gen9.c
> > > index 363bc6c1b2..adf0436f35 100644
> > > --- a/lib/rendercopy_gen9.c
> > > +++ b/lib/rendercopy_gen9.c
> > > @@ -22,6 +22,7 @@
> > >  #include "intel_mocs.h"
> > >  #include "rendercopy.h"
> > >  #include "gen9_render.h"
> > > +#include "xe2_render.h"
> > >  #include "intel_reg.h"
> > >  #include "igt_aux.h"
> > >  #include "intel_chipset.h"
> > > @@ -136,6 +137,15 @@ static const uint32_t gen12p71_render_copy[][4] = {
> > >  	{ 0x80041131, 0x00000004, 0x50007144, 0x00c40000 },
> > >  };
> > >  
> > > +static const uint32_t xe2_render_copy[][4] = {
> > > +	{ 0x8010005b, 0x200002a0, 0x020a0634, 0x06040105 },
> > > +	{ 0x8010005b, 0x710402a8, 0x020a2001, 0x06140105 },
> > > +	{ 0x8010005b, 0x200002a0, 0x020a0674, 0x06440105 },
> > > +	{ 0x8010005b, 0x720402a8, 0x020a2001, 0x06540205 },
> > > +	{ 0x80122031, 0x0c240000, 0x20027114, 0x00800000 },
> > > +	{ 0x8010c031, 0x00000004, 0x58000c24, 0x00c40000 },
> > > +};
> > > +
> > >  /* Mostly copy+paste from gen6, except height, width, pitch moved */
> > >  static uint32_t
> > >  gen9_bind_buf(struct intel_bb *ibb, const struct intel_buf *buf, int is_dst,
> > > @@ -545,7 +555,10 @@ gen9_emit_state_base_address(struct intel_bb *ibb) {
> > >  	/* WaBindlessSurfaceStateModifyEnable:skl,bxt */
> > >  	/* The length has to be one less if we dont modify
> > >  	   bindless state */
> > > -	intel_bb_out(ibb, GEN4_STATE_BASE_ADDRESS | (19 - 1 - 2));
> > > +	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20))
> > > +		intel_bb_out(ibb, GEN4_STATE_BASE_ADDRESS | 20);
> > > +	else
> > > +		intel_bb_out(ibb, GEN4_STATE_BASE_ADDRESS | (19 - 1 - 2));
> > >  
> > >  	/* general */
> > >  	intel_bb_out(ibb, 0 | BASE_ADDRESS_MODIFY);
> > > @@ -586,6 +599,13 @@ gen9_emit_state_base_address(struct intel_bb *ibb) {
> > >  	intel_bb_out(ibb, 0);
> > >  	intel_bb_out(ibb, 0);
> > >  	intel_bb_out(ibb, 0);
> > > +
> > > +	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20)) {
> > > +		/* Bindless sampler */
> > > +		intel_bb_out(ibb, 0);
> > > +		intel_bb_out(ibb, 0);
> > > +		intel_bb_out(ibb, 0);
> > > +	}
> > >  }
> > >  
> > >  static void
> > > @@ -753,7 +773,12 @@ gen9_emit_ds(struct intel_bb *ibb) {
> > >  
> > >  static void
> > >  gen8_emit_wm_hz_op(struct intel_bb *ibb) {
> > > -	intel_bb_out(ibb, GEN8_3DSTATE_WM_HZ_OP | (5-2));
> > > +	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20)) {
> > > +		intel_bb_out(ibb, GEN8_3DSTATE_WM_HZ_OP | (6-2));
> > > +		intel_bb_out(ibb, 0);
> > > +	} else {
> > > +		intel_bb_out(ibb, GEN8_3DSTATE_WM_HZ_OP | (5-2));
> > > +	}
> > >  	intel_bb_out(ibb, 0);
> > >  	intel_bb_out(ibb, 0);
> > >  	intel_bb_out(ibb, 0);
> > > @@ -852,7 +877,11 @@ gen8_emit_ps(struct intel_bb *ibb, uint32_t kernel, bool fast_clear) {
> > >  	intel_bb_out(ibb, (max_threads - 1) << GEN8_3DSTATE_PS_MAX_THREADS_SHIFT |
> > >  	             GEN6_3DSTATE_WM_16_DISPATCH_ENABLE |
> > >  	             (fast_clear ? GEN8_3DSTATE_FAST_CLEAR_ENABLE : 0));
> > > -	intel_bb_out(ibb, 6 << GEN6_3DSTATE_WM_DISPATCH_START_GRF_0_SHIFT);
> > > +	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20))
> > > +		intel_bb_out(ibb, 6 << GEN6_3DSTATE_WM_DISPATCH_START_GRF_0_SHIFT |
> > > +			     GENXE_KERNEL0_POLY_PACK16_FIXED << GENXE_KERNEL0_PACKING_POLICY);
> > > +	else
> > > +		intel_bb_out(ibb, 6 << GEN6_3DSTATE_WM_DISPATCH_START_GRF_0_SHIFT);
> > >  	intel_bb_out(ibb, 0); // kernel 1
> > >  	intel_bb_out(ibb, 0); /* kernel 1 hi */
> > >  	intel_bb_out(ibb, 0); // kernel 2
> > > @@ -862,6 +891,7 @@ gen8_emit_ps(struct intel_bb *ibb, uint32_t kernel, bool fast_clear) {
> > >  	intel_bb_out(ibb, GEN8_PS_BLEND_HAS_WRITEABLE_RT);
> > >  
> > >  	intel_bb_out(ibb, GEN8_3DSTATE_PS_EXTRA | (2 - 2));
> > > +
> extra newline?
> > >  	intel_bb_out(ibb, GEN8_PSX_PIXEL_SHADER_VALID | GEN8_PSX_ATTRIBUTE_ENABLE);
> > >  }
> > >  
> > > @@ -903,6 +933,9 @@ gen9_emit_depth(struct intel_bb *ibb)
> > >  
> > >  static void
> > >  gen7_emit_clear(struct intel_bb *ibb) {
> > > +	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20))
> > > +		return;
> > > +
> > >  	intel_bb_out(ibb, GEN7_3DSTATE_CLEAR_PARAMS | (3-2));
> > >  	intel_bb_out(ibb, 0);
> > >  	intel_bb_out(ibb, 1); // clear valid
> > > @@ -911,7 +944,10 @@ gen7_emit_clear(struct intel_bb *ibb) {
> > >  static void
> > >  gen6_emit_drawing_rectangle(struct intel_bb *ibb, const struct intel_buf *dst)
> > >  {
> > > -	intel_bb_out(ibb, GEN4_3DSTATE_DRAWING_RECTANGLE | (4 - 2));
> > > +	if (AT_LEAST_GEN(intel_get_drm_devid(ibb->fd), 20))
> > > +		intel_bb_out(ibb, GENXE2_3DSTATE_DRAWING_RECTANGLE_FAST | (4 - 2));
> > > +	else
> > > +		intel_bb_out(ibb, GEN4_3DSTATE_DRAWING_RECTANGLE | (4 - 2));
> > >  	intel_bb_out(ibb, 0);
> > >  	intel_bb_out(ibb, (intel_buf_height(dst) - 1) << 16 | (intel_buf_width(dst) - 1));
> > >  	intel_bb_out(ibb, 0);
> > > @@ -1220,6 +1256,19 @@ void gen12p71_render_copyfunc(struct intel_bb *ibb,
> > >  			sizeof(gen12p71_render_copy));
> > >  }
> > >  
> > > +void xe2_render_copyfunc(struct intel_bb *ibb,
> > > +			 struct intel_buf *src, uint32_t src_x, uint32_t src_y,
> > > +			 uint32_t width, uint32_t height,
> > > +			 struct intel_buf *dst, uint32_t dst_x, uint32_t dst_y)
> > > +{
> > > +	_gen9_render_op(ibb, src, src_x, src_y,
> > > +			  width, height, dst, dst_x, dst_y,
> > > +			  NULL,
> > > +			  NULL,
> > > +			  xe2_render_copy,
> > > +			  sizeof(xe2_render_copy));
> > > +}
> > > +
> > >  void mtl_render_copyfunc(struct intel_bb *ibb,
> > >  			 struct intel_buf *src,
> > >  			 unsigned int src_x, unsigned int src_y,
> > > diff --git a/lib/xe2_render.h b/lib/xe2_render.h
> > > new file mode 100644
> > > index 0000000000..3db7a84894
> > > --- /dev/null
> > > +++ b/lib/xe2_render.h
> > > @@ -0,0 +1,14 @@
> > > +/* SPDX-License-Identifier: MIT */
> > > +/*
> > > + * Copyright © 2024 Intel Corporation
> > > + */
> > > +#ifndef GENXE2_RENDER_H
> > > +#define GENXE2_RENDER_H
> Fix this guard to match file name as well.
> 
> With that: 
> Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>


Thanks for the review, above nits will be addressed in v3.

--
Zbigniew

> > > +
> > > +#define GENXE2_3DSTATE_DRAWING_RECTANGLE_FAST	GEN4_3D(3, 0, 0)
> > > +
> > > +/* 3DSTATE_PS dword6 */
> > > +# define GENXE_KERNEL0_PACKING_POLICY		24
> > > +#  define GENXE_KERNEL0_POLY_PACK16_FIXED	3
> > > +
> > > +#endif
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2024-01-10 12:11 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-09 13:21 [PATCH i-g-t v2 0/3] Add Xe2 render-copy implementation Zbigniew Kempczyński
2024-01-09 13:21 ` [PATCH i-g-t v2 1/3] lib/rendercopy: Add render-copy xe2 implementation Zbigniew Kempczyński
2024-01-10  8:43   ` Grzegorzek, Dominik
2024-01-10 12:11     ` Zbigniew Kempczyński
2024-01-09 13:21 ` [PATCH i-g-t v2 2/3] lib/intel_batchbuffer: Select xe2 rendercopy for LunarLake Zbigniew Kempczyński
2024-01-09 13:21 ` [PATCH i-g-t v2 3/3] tests/xe_intel_bb: Use Tile4 instead Y on render subtest Zbigniew Kempczyński
2024-01-09 14:52 ` ✗ GitLab.Pipeline: warning for Add Xe2 render-copy implementation (rev2) Patchwork
2024-01-09 15:15 ` ✓ Fi.CI.BAT: success " Patchwork
2024-01-09 16:34 ` ✓ CI.xeBAT: " Patchwork
2024-01-09 17:11 ` ✗ Fi.CI.IGT: failure " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.