public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH] lib/intel_pat: Handle platforms without compressed PAT index
@ 2026-02-18 10:36 Sanjay Yadav
  2026-02-18 11:58 ` ✓ i915.CI.BAT: success for " Patchwork
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Sanjay Yadav @ 2026-02-18 10:36 UTC (permalink / raw)
  To: igt-dev; +Cc: matthew.auld

Previously intel_get_pat_idx_uc_comp() would silently return zero on
platforms where no compressed PAT index exists (e.g. CRI),
since uc_comp was zero-initialized by default. This could lead to
incorrect behavior when callers assume the returned index is valid.

Fix this by:
- Adding XE_PAT_IDX_INVALID sentinel to detect unsupported platforms
- Initializing uc_comp to XE_PAT_IDX_INVALID in intel_get_pat_idx();
  only platforms with CCS (graphics_ver 20/30) override it to a valid
  index
- Adding igt_assert_f() in intel_get_pat_idx_uc_comp() to fail with
  a clear error instead of returning an invalid index

Also update the bo-comp-disable-bind test to distinguish between "CCS
is disabled" and "CCS does not exist" using HAS_FLATCCS(). On platforms
without CCS, the compressed PAT bind check is skipped since there is no
valid compressed PAT index to test with.

Suggested-by: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
---
 lib/intel_pat.c      |  5 +++++
 lib/intel_pat.h      |  1 +
 tests/intel/xe_pat.c | 30 ++++++++++++++++++++++--------
 3 files changed, 28 insertions(+), 8 deletions(-)

diff --git a/lib/intel_pat.c b/lib/intel_pat.c
index 9815efc18..d30bee453 100644
--- a/lib/intel_pat.c
+++ b/lib/intel_pat.c
@@ -98,6 +98,8 @@ static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat)
 {
 	uint16_t dev_id = intel_get_drm_devid(fd);
 
+	pat->uc_comp = XE_PAT_IDX_INVALID;
+
 	if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) {
 		pat->uc = 3;
 		pat->wb = 2;
@@ -155,8 +157,11 @@ uint8_t intel_get_pat_idx_uc_comp(int fd)
 	uint16_t dev_id = intel_get_drm_devid(fd);
 
 	igt_assert(intel_gen(dev_id) >= 20);
+	igt_assert(HAS_FLATCCS(dev_id));
 
 	intel_get_pat_idx(fd, &pat);
+	igt_assert_f(pat.uc_comp != XE_PAT_IDX_INVALID,
+		     "No compressed PAT index available on this platform\n");
 	return pat.uc_comp;
 }
 
diff --git a/lib/intel_pat.h b/lib/intel_pat.h
index e9ade2e2e..e5dd8a0af 100644
--- a/lib/intel_pat.h
+++ b/lib/intel_pat.h
@@ -10,6 +10,7 @@
 #include <stdint.h>
 
 #define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way or better */
+#define XE_PAT_IDX_INVALID ((uint8_t)-2) /* no such PAT index on this platform */
 #define XE_PAT_MAX_ENTRIES 32
 
 struct xe_pat_entry {
diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c
index 21547c84e..052b7b699 100644
--- a/tests/intel/xe_pat.c
+++ b/tests/intel/xe_pat.c
@@ -844,15 +844,18 @@ static bool has_no_compression_hint(int fd)
  * Test category: functionality test
  * Description: Validates that binding a BO created with
  * the NO_COMPRESSION flag using a compressed PAT index fails
- * with -EINVAL on Xe2+ platforms.
+ * with -EINVAL on Xe2+ platforms. On platforms where CCS
+ * does not exist, the test verifies uncompressed access works.
  */
 
 static void bo_comp_disable_bind(int fd)
 {
 	size_t size = xe_get_default_alignment(fd);
-	uint8_t comp_pat_index, uncomp_pat_index;
-	bool supported;
+	uint16_t dev_id = intel_get_drm_devid(fd);
+	bool has_flatccs = HAS_FLATCCS(dev_id);
+	uint8_t uncomp_pat_index;
 	uint32_t vm, bo;
+	bool supported;
 	int ret;
 
 	supported = has_no_compression_hint(fd);
@@ -868,14 +871,25 @@ static void bo_comp_disable_bind(int fd)
 	igt_assert_eq(ret, 0);
 	vm = xe_vm_create(fd, 0, 0);
 
-	comp_pat_index = intel_get_pat_idx_uc_comp(fd);
 	uncomp_pat_index = intel_get_pat_idx_uc(fd);
 
-	igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
-				   size, 0, 0, NULL, 0,
-				   0, comp_pat_index, 0),
-		      -EINVAL);
+	/*
+	 * On platforms with CCS, binding a NO_COMPRESSION BO with a
+	 * compressed PAT index must fail. On platforms without CCS,
+	 * there is no valid compressed PAT index, so skip this check.
+	 */
+	if (has_flatccs) {
+		uint8_t comp_pat_index = intel_get_pat_idx_uc_comp(fd);
+
+		igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
+					   size, 0, 0, NULL, 0,
+					   0, comp_pat_index, 0),
+			      -EINVAL);
+	} else {
+		igt_debug("Platform has no CCS, skipping compressed PAT bind check\n");
+	}
 
+	/* Uncompressed bind must always succeed */
 	igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
 				   size, 0, 0, NULL, 0,
 				   0, uncomp_pat_index, 0),
-- 
2.52.0


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

* ✓ i915.CI.BAT: success for lib/intel_pat: Handle platforms without compressed PAT index
  2026-02-18 10:36 [PATCH] lib/intel_pat: Handle platforms without compressed PAT index Sanjay Yadav
@ 2026-02-18 11:58 ` Patchwork
  2026-02-18 12:18 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-02-18 11:58 UTC (permalink / raw)
  To: Sanjay Yadav; +Cc: igt-dev

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

== Series Details ==

Series: lib/intel_pat: Handle platforms without compressed PAT index
URL   : https://patchwork.freedesktop.org/series/161756/
State : success

== Summary ==

CI Bug Log - changes from IGT_8758 -> IGTPW_14567
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (43 -> 40)
------------------------------

  Missing    (3): bat-dg2-13 bat-jsl-1 fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@info:
    - fi-ivb-3770:        [PASS][1] -> [SKIP][2] ([i915#1849])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/fi-ivb-3770/igt@fbdev@info.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/fi-ivb-3770/igt@fbdev@info.html

  * igt@fbdev@read:
    - fi-ivb-3770:        [PASS][3] -> [SKIP][4] +3 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/fi-ivb-3770/igt@fbdev@read.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/fi-ivb-3770/igt@fbdev@read.html

  * igt@i915_selftest@live@workarounds:
    - bat-dg2-9:          [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/bat-dg2-9/igt@i915_selftest@live@workarounds.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/bat-dg2-9/igt@i915_selftest@live@workarounds.html

  
#### Possible fixes ####

  * igt@i915_selftest@live:
    - bat-mtlp-8:         [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/bat-mtlp-8/igt@i915_selftest@live.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/bat-mtlp-8/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - bat-arlh-3:         [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/bat-arlh-3/igt@i915_selftest@live@workarounds.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/bat-arlh-3/igt@i915_selftest@live@workarounds.html
    - bat-mtlp-9:         [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/bat-mtlp-9/igt@i915_selftest@live@workarounds.html

  
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8758 -> IGTPW_14567

  CI-20190529: 20190529
  CI_DRM_18003: fc9512d31fa2c190f58c85dbdf7313d2d0ad4b0d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14567: 40704d87ff91f1ce0ff2ae0d0e9e26a70ceb8b1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8758: 8758

== Logs ==

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

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

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

* ✓ Xe.CI.BAT: success for lib/intel_pat: Handle platforms without compressed PAT index
  2026-02-18 10:36 [PATCH] lib/intel_pat: Handle platforms without compressed PAT index Sanjay Yadav
  2026-02-18 11:58 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2026-02-18 12:18 ` Patchwork
  2026-02-18 12:37 ` ✗ Xe.CI.FULL: failure " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-02-18 12:18 UTC (permalink / raw)
  To: Sanjay Yadav; +Cc: igt-dev

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

== Series Details ==

Series: lib/intel_pat: Handle platforms without compressed PAT index
URL   : https://patchwork.freedesktop.org/series/161756/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8758_BAT -> XEIGTPW_14567_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (14 -> 14)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


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

  * IGT: IGT_8758 -> IGTPW_14567

  IGTPW_14567: 40704d87ff91f1ce0ff2ae0d0e9e26a70ceb8b1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8758: 8758
  xe-4572-fc9512d31fa2c190f58c85dbdf7313d2d0ad4b0d: fc9512d31fa2c190f58c85dbdf7313d2d0ad4b0d

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for lib/intel_pat: Handle platforms without compressed PAT index
  2026-02-18 10:36 [PATCH] lib/intel_pat: Handle platforms without compressed PAT index Sanjay Yadav
  2026-02-18 11:58 ` ✓ i915.CI.BAT: success for " Patchwork
  2026-02-18 12:18 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-02-18 12:37 ` Patchwork
  2026-02-18 14:14 ` ✗ i915.CI.Full: " Patchwork
  2026-03-03  9:50 ` [PATCH] " Gurram, Pravalika
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-02-18 12:37 UTC (permalink / raw)
  To: Sanjay Yadav; +Cc: igt-dev

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

== Series Details ==

Series: lib/intel_pat: Handle platforms without compressed PAT index
URL   : https://patchwork.freedesktop.org/series/161756/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8758_FULL -> XEIGTPW_14567_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_14567_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_14567_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.

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
    - shard-bmg:          NOTRUN -> [SKIP][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html

  * igt@kms_plane@pixel-format-linear-modifier@pipe-a-plane-0:
    - shard-lnl:          [PASS][2] -> [FAIL][3] +1 other test fail
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8758/shard-lnl-2/igt@kms_plane@pixel-format-linear-modifier@pipe-a-plane-0.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-5/igt@kms_plane@pixel-format-linear-modifier@pipe-a-plane-0.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-remap-ro-dontunmap-eocheck:
    - shard-bmg:          [PASS][4] -> [INCOMPLETE][5]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8758/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-remap-ro-dontunmap-eocheck.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-remap-ro-dontunmap-eocheck.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#2327]) +1 other test skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][7] ([Intel XE#1124])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-1/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-180:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#1124]) +3 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-4/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#3432])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2887]) +4 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html

  * igt@kms_cdclk@plane-scaling:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2724])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-3/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2252]) +2 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_chamelium_hpd@vga-hpd-after-suspend:
    - shard-lnl:          NOTRUN -> [SKIP][13] ([Intel XE#373])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html

  * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][14] ([Intel XE#3304]) +1 other test fail
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-10/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html

  * igt@kms_content_protection@uevent@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][15] ([Intel XE#6707])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-1/igt@kms_content_protection@uevent@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2321]) +2 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-10/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-128x42:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2320])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-bmg:          [PASS][18] -> [INCOMPLETE][19] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8758/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-9/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][20] ([Intel XE#1397] / [Intel XE#1745])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#1397])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#7178])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][23] ([Intel XE#7178])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#6312])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#4141]) +4 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#2311]) +8 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#656]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2313]) +11 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#6912])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
    - shard-lnl:          NOTRUN -> [SKIP][30] ([Intel XE#6886]) +3 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#6886]) +4 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#2391])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-6/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_psr2_sf@pr-cursor-plane-update-sf:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#1406] / [Intel XE#1489])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-2/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#1406] / [Intel XE#2387])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-7/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@psr-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-3/igt@kms_psr@psr-suspend.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-lnl:          [PASS][36] -> [SKIP][37] ([Intel XE#1406] / [Intel XE#4692])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8758/shard-lnl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_sharpness_filter@filter-formats:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#6503]) +2 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-4/igt@kms_sharpness_filter@filter-formats.html

  * igt@kms_vrr@flip-basic:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#1499])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-9/igt@kms_vrr@flip-basic.html

  * igt@xe_eudebug_online@pagefault-one-of-many:
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#6665])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-8/igt@xe_eudebug_online@pagefault-one-of-many.html
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#6665])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-7/igt@xe_eudebug_online@pagefault-one-of-many.html

  * igt@xe_eudebug_online@pagefault-write:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-1/igt@xe_eudebug_online@pagefault-write.html

  * igt@xe_evict@evict-beng-large-cm:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#688])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-3/igt@xe_evict@evict-beng-large-cm.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#2322]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-userptr-fault:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#7136]) +3 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-6/igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-userptr-fault.html

  * igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#6874]) +7 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-4/igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate.html

  * igt@xe_exec_multi_queue@priority:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#6874]) +1 other test skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-7/igt@xe_exec_multi_queue@priority.html

  * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#7138]) +3 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-bmg:          NOTRUN -> [ABORT][49] ([Intel XE#5466])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_media_fill@media-fill:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#2459] / [Intel XE#2596])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-1/igt@xe_media_fill@media-fill.html

  * igt@xe_multigpu_svm@mgpu-latency-copy-basic:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#6964])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-10/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#6964])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-1/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html

  * igt@xe_pm@d3cold-i2c:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#5694])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-4/igt@xe_pm@d3cold-i2c.html

  * igt@xe_query@multigpu-query-config:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#944])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-8/igt@xe_query@multigpu-query-config.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          [FAIL][55] ([Intel XE#6054]) -> [PASS][56] +3 other tests pass
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8758/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_bw@linear-tiling-1-displays-2560x1440p:
    - shard-bmg:          [SKIP][57] ([Intel XE#367]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8758/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html

  * igt@kms_color@ctm-0-75:
    - shard-bmg:          [ABORT][59] ([Intel XE#5545] / [Intel XE#6652]) -> [PASS][60] +1 other test pass
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8758/shard-bmg-2/igt@kms_color@ctm-0-75.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-1/igt@kms_color@ctm-0-75.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
    - shard-bmg:          [DMESG-WARN][61] ([Intel XE#5354]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8758/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [FAIL][63] ([Intel XE#4459]) -> [PASS][64] +1 other test pass
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8758/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@kms_vrr@max-min@pipe-a-edp-1:
    - shard-lnl:          [FAIL][65] ([Intel XE#4227]) -> [PASS][66] +1 other test pass
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8758/shard-lnl-3/igt@kms_vrr@max-min@pipe-a-edp-1.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-lnl-8/igt@kms_vrr@max-min@pipe-a-edp-1.html

  * igt@xe_sriov_flr@flr-each-isolation:
    - shard-bmg:          [FAIL][67] ([Intel XE#6569]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8758/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-7/igt@xe_sriov_flr@flr-each-isolation.html

  
#### Warnings ####

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][69] ([Intel XE#3544]) -> [SKIP][70] ([Intel XE#3374] / [Intel XE#3544])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8758/shard-bmg-10/igt@kms_hdr@brightness-with-hdr.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
    - shard-bmg:          [SKIP][71] -> [ABORT][72] ([Intel XE#1727])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8758/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][73] ([Intel XE#1729]) -> [SKIP][74] ([Intel XE#2426])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8758/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14567/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
  [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
  [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
  [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_8758 -> IGTPW_14567

  IGTPW_14567: 40704d87ff91f1ce0ff2ae0d0e9e26a70ceb8b1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8758: 8758
  xe-4572-fc9512d31fa2c190f58c85dbdf7313d2d0ad4b0d: fc9512d31fa2c190f58c85dbdf7313d2d0ad4b0d

== Logs ==

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

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

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

* ✗ i915.CI.Full: failure for lib/intel_pat: Handle platforms without compressed PAT index
  2026-02-18 10:36 [PATCH] lib/intel_pat: Handle platforms without compressed PAT index Sanjay Yadav
                   ` (2 preceding siblings ...)
  2026-02-18 12:37 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-02-18 14:14 ` Patchwork
  2026-03-03  9:50 ` [PATCH] " Gurram, Pravalika
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-02-18 14:14 UTC (permalink / raw)
  To: Sanjay Yadav; +Cc: igt-dev

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

== Series Details ==

Series: lib/intel_pat: Handle platforms without compressed PAT index
URL   : https://patchwork.freedesktop.org/series/161756/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8758_full -> IGTPW_14567_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_14567_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_14567_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_14567/index.html

Participating hosts (9 -> 9)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_lmem_swapping@smem-oom:
    - shard-dg2:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-8/igt@gem_lmem_swapping@smem-oom.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-5/igt@gem_lmem_swapping@smem-oom.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
    - shard-mtlp:         NOTRUN -> [SKIP][3] +1 other test skip
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
    - shard-tglu-1:       NOTRUN -> [SKIP][4] +1 other test skip
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
    - shard-dg2:          NOTRUN -> [SKIP][5] +1 other test skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-4/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier:
    - shard-rkl:          NOTRUN -> [SKIP][6] +2 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html
    - shard-dg1:          NOTRUN -> [SKIP][7]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-16/igt@kms_plane@pixel-format-yf-tiled-modifier.html
    - shard-tglu:         NOTRUN -> [SKIP][8] +2 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-8/igt@kms_plane@pixel-format-yf-tiled-modifier.html

  * igt@kms_psr@psr-sprite-render:
    - shard-mtlp:         [PASS][9] -> [DMESG-WARN][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-mtlp-7/igt@kms_psr@psr-sprite-render.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-1/igt@kms_psr@psr-sprite-render.html

  
#### Warnings ####

  * igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
    - shard-rkl:          [SKIP][11] ([i915#14544]) -> [SKIP][12] +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html

  
New tests
---------

  New tests have been introduced between IGT_8758_full and IGTPW_14567_full:

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

  * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-dp-3:
    - Statuses : 1 pass(s)
    - Exec time: [3.53] s

  * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-d-dp-3:
    - Statuses : 1 pass(s)
    - Exec time: [3.32] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@device_reset@cold-reset-bound:
    - shard-tglu:         NOTRUN -> [SKIP][13] ([i915#11078])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-7/igt@device_reset@cold-reset-bound.html

  * igt@gem_caching@read-writes:
    - shard-mtlp:         NOTRUN -> [SKIP][14] ([i915#4873])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-2/igt@gem_caching@read-writes.html

  * igt@gem_ccs@block-multicopy-compressed:
    - shard-tglu-1:       NOTRUN -> [SKIP][15] ([i915#9323])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-rkl:          NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy.html
    - shard-tglu-1:       NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
    - shard-dg2:          NOTRUN -> [INCOMPLETE][18] ([i915#12392] / [i915#13356])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-6/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-dg1:          NOTRUN -> [SKIP][19] ([i915#7697])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-14/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_close_race@multigpu-basic-threads:
    - shard-tglu-1:       NOTRUN -> [SKIP][20] ([i915#7697])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html

  * igt@gem_create@create-ext-set-pat:
    - shard-rkl:          NOTRUN -> [SKIP][21] ([i915#8562])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@gem_create@create-ext-set-pat.html

  * igt@gem_ctx_persistence@heartbeat-hostile:
    - shard-dg2:          NOTRUN -> [SKIP][22] ([i915#8555])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hostile.html

  * igt@gem_ctx_persistence@legacy-engines-mixed-process:
    - shard-snb:          NOTRUN -> [SKIP][23] ([i915#1099]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-snb1/igt@gem_ctx_persistence@legacy-engines-mixed-process.html

  * igt@gem_ctx_sseu@engines:
    - shard-tglu:         NOTRUN -> [SKIP][24] ([i915#280])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-6/igt@gem_ctx_sseu@engines.html

  * igt@gem_ctx_sseu@invalid-args:
    - shard-rkl:          NOTRUN -> [SKIP][25] ([i915#280])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-3/igt@gem_ctx_sseu@invalid-args.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-rkl:          NOTRUN -> [SKIP][26] ([i915#4525]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-5/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_big@single:
    - shard-tglu:         [PASS][27] -> [ABORT][28] ([i915#11713])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-tglu-5/igt@gem_exec_big@single.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-9/igt@gem_exec_big@single.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-rkl:          NOTRUN -> [SKIP][29] ([i915#6344])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-dg1:          NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-14/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

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

  * igt@gem_exec_reloc@basic-gtt-read:
    - shard-dg2:          NOTRUN -> [SKIP][32] ([i915#3281]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-read.html
    - shard-dg1:          NOTRUN -> [SKIP][33] ([i915#3281]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-14/igt@gem_exec_reloc@basic-gtt-read.html

  * igt@gem_exec_reloc@basic-wc:
    - shard-rkl:          NOTRUN -> [SKIP][34] ([i915#14544] / [i915#3281]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@gem_exec_reloc@basic-wc.html

  * igt@gem_exec_reloc@basic-write-read:
    - shard-rkl:          NOTRUN -> [SKIP][35] ([i915#3281]) +8 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-4/igt@gem_exec_reloc@basic-write-read.html

  * igt@gem_exec_schedule@reorder-wide:
    - shard-dg2:          NOTRUN -> [SKIP][36] ([i915#4537] / [i915#4812])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-1/igt@gem_exec_schedule@reorder-wide.html

  * igt@gem_exec_suspend@basic-s4-devices:
    - shard-rkl:          [PASS][37] -> [ABORT][38] ([i915#7975]) +1 other test abort
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@gem_lmem_evict@dontneed-evict-race:
    - shard-tglu-1:       NOTRUN -> [SKIP][39] ([i915#4613] / [i915#7582])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html

  * igt@gem_lmem_swapping@heavy-multi:
    - shard-rkl:          NOTRUN -> [SKIP][40] ([i915#14544] / [i915#4613])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@gem_lmem_swapping@heavy-multi.html
    - shard-mtlp:         NOTRUN -> [SKIP][41] ([i915#4613])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-6/igt@gem_lmem_swapping@heavy-multi.html

  * igt@gem_lmem_swapping@massive-random:
    - shard-glk:          NOTRUN -> [SKIP][42] ([i915#4613]) +3 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-glk6/igt@gem_lmem_swapping@massive-random.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-tglu:         NOTRUN -> [SKIP][43] ([i915#4613]) +3 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-7/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg2:          [PASS][44] -> [CRASH][45] ([i915#5493])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@gem_lmem_swapping@verify:
    - shard-rkl:          NOTRUN -> [SKIP][46] ([i915#4613])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@gem_lmem_swapping@verify.html

  * igt@gem_mmap_gtt@basic-read-write:
    - shard-mtlp:         NOTRUN -> [SKIP][47] ([i915#4077]) +2 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-1/igt@gem_mmap_gtt@basic-read-write.html

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

  * igt@gem_mmap_gtt@hang-busy:
    - shard-dg2:          NOTRUN -> [SKIP][49] ([i915#4077]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-6/igt@gem_mmap_gtt@hang-busy.html

  * igt@gem_mmap_wc@copy:
    - shard-mtlp:         NOTRUN -> [SKIP][50] ([i915#4083]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-6/igt@gem_mmap_wc@copy.html

  * igt@gem_partial_pwrite_pread@reads-uncached:
    - shard-dg2:          NOTRUN -> [SKIP][51] ([i915#3282]) +2 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-5/igt@gem_partial_pwrite_pread@reads-uncached.html

  * igt@gem_pread@snoop:
    - shard-rkl:          NOTRUN -> [SKIP][52] ([i915#14544] / [i915#3282])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@gem_pread@snoop.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-rkl:          NOTRUN -> [SKIP][53] ([i915#3282])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@gem_pwrite@basic-exhaustion.html
    - shard-tglu-1:       NOTRUN -> [WARN][54] ([i915#2658])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@hw-rejects-pxp-buffer:
    - shard-tglu:         NOTRUN -> [SKIP][55] ([i915#13398])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-8/igt@gem_pxp@hw-rejects-pxp-buffer.html

  * igt@gem_pxp@verify-pxp-stale-buf-execution:
    - shard-dg2:          NOTRUN -> [SKIP][56] ([i915#4270]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-11/igt@gem_pxp@verify-pxp-stale-buf-execution.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][57] ([i915#5190] / [i915#8428]) +1 other test skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html

  * igt@gem_render_copy@y-tiled-to-vebox-linear:
    - shard-mtlp:         NOTRUN -> [SKIP][58] ([i915#8428])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-8/igt@gem_render_copy@y-tiled-to-vebox-linear.html

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

  * igt@gem_softpin@evict-snoop-interruptible:
    - shard-glk10:        NOTRUN -> [SKIP][60] +68 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-glk10/igt@gem_softpin@evict-snoop-interruptible.html
    - shard-dg2:          NOTRUN -> [SKIP][61] ([i915#4885])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-8/igt@gem_softpin@evict-snoop-interruptible.html

  * igt@gem_softpin@noreloc-s3:
    - shard-glk:          NOTRUN -> [INCOMPLETE][62] ([i915#13809])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-glk6/igt@gem_softpin@noreloc-s3.html

  * igt@gem_userptr_blits@create-destroy-unsync:
    - shard-tglu:         NOTRUN -> [SKIP][63] ([i915#3297]) +3 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-5/igt@gem_userptr_blits@create-destroy-unsync.html

  * igt@gem_userptr_blits@unsync-unmap:
    - shard-rkl:          NOTRUN -> [SKIP][64] ([i915#3297]) +2 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap.html

  * igt@gem_userptr_blits@unsync-unmap-after-close:
    - shard-mtlp:         NOTRUN -> [SKIP][65] ([i915#3297])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-3/igt@gem_userptr_blits@unsync-unmap-after-close.html

  * igt@gem_workarounds@suspend-resume:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][66] ([i915#13356])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-4/igt@gem_workarounds@suspend-resume.html

  * igt@gen7_exec_parse@basic-rejected:
    - shard-dg2:          NOTRUN -> [SKIP][67] +3 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-3/igt@gen7_exec_parse@basic-rejected.html

  * igt@gen7_exec_parse@bitmasks:
    - shard-rkl:          NOTRUN -> [SKIP][68] ([i915#14544]) +4 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@gen7_exec_parse@bitmasks.html

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

  * igt@gen9_exec_parse@basic-rejected:
    - shard-rkl:          NOTRUN -> [SKIP][70] ([i915#2527])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-2/igt@gen9_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@basic-rejected-ctx-param:
    - shard-dg1:          NOTRUN -> [SKIP][71] ([i915#2527])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-12/igt@gen9_exec_parse@basic-rejected-ctx-param.html

  * igt@gen9_exec_parse@batch-zero-length:
    - shard-mtlp:         NOTRUN -> [SKIP][72] ([i915#2856])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-2/igt@gen9_exec_parse@batch-zero-length.html

  * igt@gen9_exec_parse@bb-large:
    - shard-tglu:         NOTRUN -> [SKIP][73] ([i915#2527] / [i915#2856]) +3 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-6/igt@gen9_exec_parse@bb-large.html

  * igt@i915_drm_fdinfo@busy@bcs0:
    - shard-mtlp:         NOTRUN -> [SKIP][74] ([i915#14073]) +6 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-4/igt@i915_drm_fdinfo@busy@bcs0.html

  * igt@i915_drm_fdinfo@virtual-busy-idle-all:
    - shard-dg1:          NOTRUN -> [SKIP][75] ([i915#14118]) +1 other test skip
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-13/igt@i915_drm_fdinfo@virtual-busy-idle-all.html

  * igt@i915_module_load@fault-injection@intel_connector_register:
    - shard-rkl:          NOTRUN -> [ABORT][76] ([i915#15342]) +1 other test abort
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-2/igt@i915_module_load@fault-injection@intel_connector_register.html

  * igt@i915_module_load@fault-injection@intel_gt_init-enodev:
    - shard-rkl:          NOTRUN -> [SKIP][77] ([i915#15479]) +4 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-2/igt@i915_module_load@fault-injection@intel_gt_init-enodev.html

  * igt@i915_pm_freq_api@freq-reset:
    - shard-tglu:         NOTRUN -> [SKIP][78] ([i915#8399])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-10/igt@i915_pm_freq_api@freq-reset.html

  * igt@i915_pm_freq_mult@media-freq@gt0:
    - shard-tglu-1:       NOTRUN -> [SKIP][79] ([i915#6590]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html

  * igt@i915_power@sanity:
    - shard-mtlp:         [PASS][80] -> [SKIP][81] ([i915#7984])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-mtlp-2/igt@i915_power@sanity.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-5/igt@i915_power@sanity.html

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

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-mtlp:         NOTRUN -> [SKIP][83] ([i915#6645])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-7/igt@i915_suspend@basic-s3-without-i915.html

  * igt@i915_suspend@forcewake:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][84] ([i915#4817])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-glk10/igt@i915_suspend@forcewake.html

  * igt@kms_addfb_basic@addfb25-x-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][85] ([i915#4212])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-1/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-rkl:          NOTRUN -> [SKIP][86] ([i915#12454] / [i915#12712] / [i915#14544])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_async_flips@async-flip-suspend-resume:
    - shard-glk:          NOTRUN -> [INCOMPLETE][87] ([i915#12761]) +1 other test incomplete
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-glk9/igt@kms_async_flips@async-flip-suspend-resume.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-mtlp:         NOTRUN -> [SKIP][88] ([i915#3555])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
    - shard-dg2:          NOTRUN -> [SKIP][89] ([i915#9531])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
    - shard-rkl:          NOTRUN -> [SKIP][90] ([i915#9531])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
    - shard-dg1:          NOTRUN -> [SKIP][91] ([i915#9531])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-14/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
    - shard-tglu:         NOTRUN -> [SKIP][92] ([i915#9531])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_atomic_interruptible@universal-setplane-cursor:
    - shard-dg1:          [PASS][93] -> [DMESG-WARN][94] ([i915#4423]) +3 other tests dmesg-warn
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg1-13/igt@kms_atomic_interruptible@universal-setplane-cursor.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-13/igt@kms_atomic_interruptible@universal-setplane-cursor.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-mtlp:         [PASS][95] -> [FAIL][96] ([i915#5956]) +1 other test fail
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-mtlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
    - shard-tglu-1:       NOTRUN -> [SKIP][97] ([i915#1769] / [i915#3555])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
    - shard-dg2:          [PASS][98] -> [FAIL][99] ([i915#5956]) +1 other test fail
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-0:
    - shard-tglu-1:       NOTRUN -> [SKIP][100] ([i915#5286]) +2 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-rkl:          NOTRUN -> [SKIP][101] ([i915#5286]) +2 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-tglu:         NOTRUN -> [SKIP][102] ([i915#5286]) +3 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-rkl:          NOTRUN -> [SKIP][103] ([i915#14544] / [i915#5286])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][104] ([i915#4538] / [i915#5286]) +1 other test skip
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][105] ([i915#3638]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][106] +2 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2:          NOTRUN -> [SKIP][107] ([i915#4538] / [i915#5190]) +1 other test skip
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
    - shard-dg1:          NOTRUN -> [SKIP][108] ([i915#4538])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-18/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][109] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][110] ([i915#14544] / [i915#6095]) +2 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][111] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][112] ([i915#12313]) +1 other test skip
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][113] ([i915#14098] / [i915#6095]) +33 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][114] ([i915#6095]) +49 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][115] ([i915#10307] / [i915#6095]) +122 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-1/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][116] ([i915#6095]) +19 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][117] ([i915#6095]) +43 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][118] ([i915#6095]) +19 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][119] ([i915#12313])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][120] ([i915#6095]) +202 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][121] ([i915#12313])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][122] ([i915#6095]) +54 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-tglu:         NOTRUN -> [SKIP][123] ([i915#3742])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-5/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][124] ([i915#13781]) +3 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html

  * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#13783]) +3 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html

  * igt@kms_chamelium_edid@dp-mode-timings:
    - shard-mtlp:         NOTRUN -> [SKIP][126] ([i915#11151] / [i915#7828]) +2 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-1/igt@kms_chamelium_edid@dp-mode-timings.html

  * igt@kms_chamelium_edid@vga-edid-read:
    - shard-dg2:          NOTRUN -> [SKIP][127] ([i915#11151] / [i915#7828]) +1 other test skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-5/igt@kms_chamelium_edid@vga-edid-read.html

  * igt@kms_chamelium_frames@dp-crc-single:
    - shard-tglu:         NOTRUN -> [SKIP][128] ([i915#11151] / [i915#7828]) +6 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-8/igt@kms_chamelium_frames@dp-crc-single.html

  * igt@kms_chamelium_frames@hdmi-crc-fast:
    - shard-dg1:          NOTRUN -> [SKIP][129] ([i915#11151] / [i915#7828]) +1 other test skip
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-13/igt@kms_chamelium_frames@hdmi-crc-fast.html

  * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
    - shard-rkl:          NOTRUN -> [SKIP][130] ([i915#11151] / [i915#7828]) +1 other test skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html

  * igt@kms_chamelium_hpd@dp-hpd-storm-disable:
    - shard-tglu-1:       NOTRUN -> [SKIP][131] ([i915#11151] / [i915#7828]) +3 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html

  * igt@kms_content_protection@atomic:
    - shard-rkl:          NOTRUN -> [SKIP][132] ([i915#6944] / [i915#7118] / [i915#9424])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-tglu-1:       NOTRUN -> [SKIP][133] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-tglu:         NOTRUN -> [SKIP][134] ([i915#15330] / [i915#3116] / [i915#3299])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-4/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-rkl:          NOTRUN -> [SKIP][135] ([i915#15330] / [i915#3116])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0.html
    - shard-tglu-1:       NOTRUN -> [SKIP][136] ([i915#15330] / [i915#3116] / [i915#3299])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html

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

  * igt@kms_content_protection@legacy-hdcp14:
    - shard-dg2:          NOTRUN -> [FAIL][138] ([i915#7173]) +3 other tests fail
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-11/igt@kms_content_protection@legacy-hdcp14.html

  * igt@kms_content_protection@lic-type-0:
    - shard-tglu:         NOTRUN -> [SKIP][139] ([i915#6944] / [i915#9424])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-7/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@suspend-resume:
    - shard-rkl:          NOTRUN -> [SKIP][140] ([i915#6944])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@kms_content_protection@suspend-resume.html

  * igt@kms_content_protection@uevent-hdcp14:
    - shard-tglu:         NOTRUN -> [SKIP][141] ([i915#6944])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-9/igt@kms_content_protection@uevent-hdcp14.html

  * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [FAIL][142] ([i915#13566]) +2 other tests fail
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-tglu-1:       NOTRUN -> [SKIP][143] ([i915#13049])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-mtlp:         NOTRUN -> [SKIP][144] ([i915#13049])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-32x32:
    - shard-tglu-1:       NOTRUN -> [SKIP][145] ([i915#3555]) +2 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-tglu:         NOTRUN -> [SKIP][146] ([i915#13049]) +1 other test skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-6/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-random-64x21:
    - shard-rkl:          [PASS][147] -> [FAIL][148] ([i915#13566]) +4 other tests fail
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_cursor_crc@cursor-random-64x21.html
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-4/igt@kms_cursor_crc@cursor-random-64x21.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-tglu:         [PASS][149] -> [FAIL][150] ([i915#13566]) +7 other tests fail
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-256x85.html
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-rkl:          NOTRUN -> [SKIP][151] ([i915#3555]) +5 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-rkl:          NOTRUN -> [SKIP][152] ([i915#13049]) +2 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-64x21:
    - shard-tglu-1:       NOTRUN -> [FAIL][153] ([i915#13566]) +1 other test fail
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-64x21.html

  * igt@kms_cursor_crc@cursor-sliding-max-size:
    - shard-mtlp:         NOTRUN -> [SKIP][154] ([i915#3555] / [i915#8814])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-max-size.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
    - shard-rkl:          [PASS][155] -> [INCOMPLETE][156] ([i915#12358] / [i915#14152]) +1 other test incomplete
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-7/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-tglu:         NOTRUN -> [SKIP][157] ([i915#4103])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][158] +6 other tests skip
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-3/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-mtlp:         NOTRUN -> [SKIP][159] ([i915#9809])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-rkl:          NOTRUN -> [SKIP][160] ([i915#4103])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
    - shard-tglu-1:       NOTRUN -> [SKIP][161] ([i915#4103])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-tglu:         NOTRUN -> [SKIP][162] ([i915#13691])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-6/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-dg2:          NOTRUN -> [SKIP][163] ([i915#13749])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-3/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-dg1:          NOTRUN -> [SKIP][164] ([i915#13707])
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-14/igt@kms_dp_linktrain_fallback@dp-fallback.html

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

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-tglu:         NOTRUN -> [SKIP][166] ([i915#3840])
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-tglu:         NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3840])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-7/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_fbcon_fbt@psr:
    - shard-tglu:         NOTRUN -> [SKIP][168] ([i915#3469])
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-8/igt@kms_fbcon_fbt@psr.html

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

  * igt@kms_feature_discovery@dp-mst:
    - shard-rkl:          NOTRUN -> [SKIP][170] ([i915#14544] / [i915#9337])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr2:
    - shard-tglu:         NOTRUN -> [SKIP][171] ([i915#658])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-3/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-blocking-wf_vblank:
    - shard-mtlp:         NOTRUN -> [SKIP][172] ([i915#3637] / [i915#9934]) +2 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-6/igt@kms_flip@2x-blocking-wf_vblank.html

  * igt@kms_flip@2x-dpms-vs-vblank-race:
    - shard-tglu-1:       NOTRUN -> [SKIP][173] ([i915#3637] / [i915#9934])
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_flip@2x-dpms-vs-vblank-race.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-tglu:         NOTRUN -> [SKIP][174] ([i915#3637] / [i915#9934]) +5 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-tglu:         NOTRUN -> [SKIP][175] ([i915#9934])
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-3/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-dg2:          NOTRUN -> [SKIP][176] ([i915#9934])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-5/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-plain-flip:
    - shard-rkl:          NOTRUN -> [SKIP][177] ([i915#9934]) +4 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank:
    - shard-rkl:          [PASS][178] -> [FAIL][179] ([i915#10826])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-7/igt@kms_flip@flip-vs-blocking-wf-vblank.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-5/igt@kms_flip@flip-vs-blocking-wf-vblank.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1:
    - shard-rkl:          NOTRUN -> [FAIL][180] ([i915#10826])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][181] ([i915#12745] / [i915#4839])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-glk6/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][182] ([i915#12745])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html

  * igt@kms_flip@wf_vblank-ts-check-interruptible:
    - shard-dg2:          [PASS][183] -> [FAIL][184] ([i915#15457]) +1 other test fail
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-5/igt@kms_flip@wf_vblank-ts-check-interruptible.html
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-3/igt@kms_flip@wf_vblank-ts-check-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][185] ([i915#15643]) +1 other test skip
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
    - shard-tglu:         NOTRUN -> [SKIP][186] ([i915#15643]) +5 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
    - shard-mtlp:         NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8810] / [i915#8813])
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
    - shard-dg1:          NOTRUN -> [SKIP][188] ([i915#15643])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][190] ([i915#15643]) +1 other test skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-dg2:          [PASS][191] -> [FAIL][192] ([i915#15389] / [i915#6880])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][193] ([i915#1825]) +20 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
    - shard-dg1:          NOTRUN -> [SKIP][194] +8 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
    - shard-tglu:         NOTRUN -> [SKIP][195] +44 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-rkl:          [PASS][196] -> [INCOMPLETE][197] ([i915#10056])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
    - shard-dg1:          NOTRUN -> [SKIP][198] ([i915#15102] / [i915#3458]) +3 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-rkl:          NOTRUN -> [SKIP][200] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
    - shard-tglu:         NOTRUN -> [SKIP][201] ([i915#15102]) +18 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-mtlp:         NOTRUN -> [SKIP][202] ([i915#1825]) +10 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
    - shard-rkl:          NOTRUN -> [SKIP][203] ([i915#14544] / [i915#1825]) +3 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][204] ([i915#8708]) +3 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][205] ([i915#15102]) +1 other test skip
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
    - shard-dg2:          NOTRUN -> [SKIP][206] ([i915#15102] / [i915#3458]) +4 other tests skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][207] ([i915#8708]) +4 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-snb:          NOTRUN -> [SKIP][208] +63 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-snb1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][209] ([i915#5354]) +7 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][210] ([i915#8708]) +1 other test skip
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
    - shard-tglu-1:       NOTRUN -> [SKIP][211] ([i915#15102]) +5 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-tglu-1:       NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-rkl:          NOTRUN -> [SKIP][213] ([i915#12713])
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html

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

  * igt@kms_joiner@basic-big-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][215] ([i915#14544] / [i915#15460])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][216] ([i915#13688])
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-6/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][217] ([i915#15458]) +1 other test skip
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-2/igt@kms_joiner@basic-ultra-joiner.html
    - shard-mtlp:         NOTRUN -> [SKIP][218] ([i915#15458])
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-7/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-tglu-1:       NOTRUN -> [SKIP][219] ([i915#15459])
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][220] ([i915#15458])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-tglu-1:       NOTRUN -> [SKIP][221] ([i915#1839])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-tglu:         NOTRUN -> [SKIP][222] ([i915#6301])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-4/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
    - shard-tglu-1:       NOTRUN -> [SKIP][223] +26 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-rkl:          [PASS][224] -> [INCOMPLETE][225] ([i915#12756] / [i915#13476])
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc.html
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][226] ([i915#12756] / [i915#13409] / [i915#13476])
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
    - shard-rkl:          [PASS][227] -> [INCOMPLETE][228] ([i915#13476])
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
    - shard-glk:          NOTRUN -> [INCOMPLETE][229] ([i915#13409] / [i915#13476])
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5:
    - shard-mtlp:         NOTRUN -> [SKIP][230] ([i915#15608]) +1 other test skip
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
    - shard-tglu:         NOTRUN -> [SKIP][231] ([i915#15608]) +1 other test skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-9/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-rkl:          NOTRUN -> [SKIP][232] ([i915#13958]) +1 other test skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
    - shard-tglu:         NOTRUN -> [SKIP][233] ([i915#15329]) +4 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
    - shard-mtlp:         NOTRUN -> [SKIP][234] ([i915#15329] / [i915#6953])
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b:
    - shard-mtlp:         NOTRUN -> [SKIP][235] ([i915#15329]) +3 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][236] ([i915#12343])
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-2/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][237] ([i915#5354])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-tglu:         NOTRUN -> [SKIP][238] ([i915#9812])
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-10/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc5-dpms-negative:
    - shard-mtlp:         NOTRUN -> [SKIP][239] ([i915#13441])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-5/igt@kms_pm_dc@dc5-dpms-negative.html

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

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-tglu:         NOTRUN -> [SKIP][241] ([i915#3828])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-4/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-dg1:          [PASS][242] -> [SKIP][243] ([i915#15073])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg1-16/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-rkl:          NOTRUN -> [SKIP][244] ([i915#15073])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-tglu:         NOTRUN -> [SKIP][245] ([i915#15073])
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
    - shard-mtlp:         NOTRUN -> [SKIP][246] ([i915#15073])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-rkl:          [PASS][247] -> [SKIP][248] ([i915#15073]) +1 other test skip
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
    - shard-dg2:          [PASS][249] -> [SKIP][250] ([i915#15073])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@package-g7:
    - shard-tglu:         NOTRUN -> [SKIP][251] ([i915#15403])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-6/igt@kms_pm_rpm@package-g7.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2:          NOTRUN -> [SKIP][252] ([i915#11520])
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-snb:          NOTRUN -> [SKIP][253] ([i915#11520]) +1 other test skip
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-snb4/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
    - shard-rkl:          NOTRUN -> [SKIP][254] ([i915#11520] / [i915#14544])
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-rkl:          NOTRUN -> [SKIP][255] ([i915#11520]) +3 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
    - shard-dg1:          NOTRUN -> [SKIP][256] ([i915#11520])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-16/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-tglu:         NOTRUN -> [SKIP][257] ([i915#11520]) +6 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
    - shard-glk10:        NOTRUN -> [SKIP][258] ([i915#11520]) +2 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-glk10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
    - shard-tglu-1:       NOTRUN -> [SKIP][259] ([i915#11520]) +4 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-glk:          NOTRUN -> [SKIP][260] ([i915#11520]) +6 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-glk9/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-rkl:          NOTRUN -> [SKIP][261] ([i915#9683])
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@fbc-psr-dpms:
    - shard-mtlp:         NOTRUN -> [SKIP][262] ([i915#9688]) +8 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-2/igt@kms_psr@fbc-psr-dpms.html

  * igt@kms_psr@fbc-psr2-sprite-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][263] ([i915#1072] / [i915#9732]) +6 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-7/igt@kms_psr@fbc-psr2-sprite-mmap-cpu.html
    - shard-rkl:          NOTRUN -> [SKIP][264] ([i915#1072] / [i915#14544] / [i915#9732])
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-mmap-cpu.html
    - shard-dg1:          NOTRUN -> [SKIP][265] ([i915#1072] / [i915#9732]) +3 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-18/igt@kms_psr@fbc-psr2-sprite-mmap-cpu.html

  * igt@kms_psr@psr-sprite-plane-move:
    - shard-rkl:          NOTRUN -> [SKIP][266] ([i915#1072] / [i915#9732]) +13 other tests skip
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@kms_psr@psr-sprite-plane-move.html

  * igt@kms_psr@psr2-primary-render:
    - shard-tglu:         NOTRUN -> [SKIP][267] ([i915#9732]) +14 other tests skip
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-7/igt@kms_psr@psr2-primary-render.html

  * igt@kms_psr@psr2-sprite-mmap-cpu:
    - shard-tglu-1:       NOTRUN -> [SKIP][268] ([i915#9732]) +6 other tests skip
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-cpu.html

  * igt@kms_psr@psr2-sprite-plane-onoff:
    - shard-glk:          NOTRUN -> [SKIP][269] +244 other tests skip
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-glk6/igt@kms_psr@psr2-sprite-plane-onoff.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-tglu-1:       NOTRUN -> [SKIP][270] ([i915#9685])
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-tglu:         NOTRUN -> [SKIP][271] ([i915#5289]) +1 other test skip
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-dg2:          NOTRUN -> [SKIP][272] ([i915#3555])
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-6/igt@kms_scaling_modes@scaling-mode-full.html
    - shard-dg1:          NOTRUN -> [SKIP][273] ([i915#3555])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-14/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-tglu:         NOTRUN -> [SKIP][274] ([i915#3555]) +5 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-glk:          NOTRUN -> [FAIL][275] ([i915#10959])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@flip-basic:
    - shard-rkl:          NOTRUN -> [SKIP][276] ([i915#14544] / [i915#15243] / [i915#3555])
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flip-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][277] ([i915#15243] / [i915#3555])
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-5/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@max-min:
    - shard-tglu-1:       NOTRUN -> [SKIP][278] ([i915#9906])
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-1/igt@kms_vrr@max-min.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-tglu:         NOTRUN -> [SKIP][279] ([i915#9906])
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@perf@gen8-unprivileged-single-ctx-counters:
    - shard-rkl:          NOTRUN -> [SKIP][280] ([i915#2436])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html

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

  * igt@perf_pmu@semaphore-busy@vecs0:
    - shard-mtlp:         [PASS][282] -> [FAIL][283] ([i915#4349]) +5 other tests fail
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-mtlp-3/igt@perf_pmu@semaphore-busy@vecs0.html
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-3/igt@perf_pmu@semaphore-busy@vecs0.html

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

  * igt@prime_vgem@fence-write-hang:
    - shard-rkl:          NOTRUN -> [SKIP][285] ([i915#3708])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-5/igt@prime_vgem@fence-write-hang.html

  * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-7:
    - shard-tglu:         NOTRUN -> [FAIL][286] ([i915#12910]) +9 other tests fail
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-9/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-7.html

  
#### Possible fixes ####

  * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
    - shard-dg2:          [INCOMPLETE][287] ([i915#12392] / [i915#13356]) -> [PASS][288]
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html

  * igt@gem_ctx_isolation@preservation-s3@bcs0:
    - shard-rkl:          [INCOMPLETE][289] ([i915#13356]) -> [PASS][290] +3 other tests pass
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3@bcs0.html
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-4/igt@gem_ctx_isolation@preservation-s3@bcs0.html

  * igt@gem_exec_big@single:
    - shard-mtlp:         [DMESG-FAIL][291] ([i915#15478]) -> [PASS][292]
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-mtlp-8/igt@gem_exec_big@single.html
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-4/igt@gem_exec_big@single.html

  * igt@gem_exec_suspend@basic-s0@smem:
    - shard-dg2:          [INCOMPLETE][293] ([i915#13356]) -> [PASS][294] +1 other test pass
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-1/igt@gem_exec_suspend@basic-s0@smem.html

  * igt@gem_mmap_offset@clear-via-pagefault:
    - shard-mtlp:         [ABORT][295] ([i915#14809]) -> [PASS][296] +1 other test pass
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-mtlp-6/igt@gem_mmap_offset@clear-via-pagefault.html
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-mtlp-5/igt@gem_mmap_offset@clear-via-pagefault.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-rkl:          [ABORT][297] ([i915#15131]) -> [PASS][298]
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-1/igt@gem_workarounds@suspend-resume-context.html
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-5/igt@gem_workarounds@suspend-resume-context.html

  * igt@i915_pm_rc6_residency@rc6-fence:
    - shard-tglu:         [WARN][299] ([i915#13790] / [i915#2681]) -> [PASS][300] +1 other test pass
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-fence.html
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-dg1:          [DMESG-WARN][301] ([i915#4391] / [i915#4423]) -> [PASS][302]
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg1-16/igt@i915_suspend@basic-s3-without-i915.html
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-18/igt@i915_suspend@basic-s3-without-i915.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-rkl:          [ABORT][303] ([i915#15140]) -> [PASS][304]
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-1/igt@i915_suspend@fence-restore-tiled2untiled.html
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-5/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21:
    - shard-rkl:          [FAIL][305] ([i915#13566]) -> [PASS][306] +1 other test pass
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html

  * igt@kms_cursor_crc@cursor-random-256x85:
    - shard-tglu:         [FAIL][307] ([i915#13566]) -> [PASS][308] +1 other test pass
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-tglu-2/igt@kms_cursor_crc@cursor-random-256x85.html
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-tglu-6/igt@kms_cursor_crc@cursor-random-256x85.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-snb:          [TIMEOUT][309] ([i915#14033] / [i915#14350]) -> [PASS][310]
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
    - shard-snb:          [TIMEOUT][311] ([i915#14033]) -> [PASS][312] +2 other tests pass
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-rkl:          [INCOMPLETE][313] ([i915#6113]) -> [PASS][314]
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-dg2:          [SKIP][315] ([i915#3555] / [i915#8228]) -> [PASS][316]
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-6/igt@kms_hdr@bpc-switch-suspend.html
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-11/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-dg2:          [SKIP][317] ([i915#15073]) -> [PASS][318] +1 other test pass
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-dg1:          [SKIP][319] ([i915#15073]) -> [PASS][320]
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  
#### Warnings ####

  * igt@api_intel_bb@crc32:
    - shard-rkl:          [SKIP][321] ([i915#6230]) -> [SKIP][322] ([i915#14544] / [i915#6230])
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-7/igt@api_intel_bb@crc32.html
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@api_intel_bb@crc32.html

  * igt@gem_bad_reloc@negative-reloc:
    - shard-rkl:          [SKIP][323] ([i915#3281]) -> [SKIP][324] ([i915#14544] / [i915#3281]) +4 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-4/igt@gem_bad_reloc@negative-reloc.html
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@gem_bad_reloc@negative-reloc.html

  * igt@gem_ccs@block-copy-compressed:
    - shard-rkl:          [SKIP][325] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][326] ([i915#3555] / [i915#9323])
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-3/igt@gem_ccs@block-copy-compressed.html

  * igt@gem_ccs@ctrl-surf-copy-new-ctx:
    - shard-rkl:          [SKIP][327] ([i915#14544] / [i915#9323]) -> [SKIP][328] ([i915#9323])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html

  * igt@gem_ccs@large-ctrl-surf-copy:
    - shard-rkl:          [SKIP][329] ([i915#13008]) -> [SKIP][330] ([i915#13008] / [i915#14544])
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-2/igt@gem_ccs@large-ctrl-surf-copy.html
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html

  * igt@gem_exec_balancer@parallel:
    - shard-rkl:          [SKIP][331] ([i915#4525]) -> [SKIP][332] ([i915#14544] / [i915#4525]) +1 other test skip
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-2/igt@gem_exec_balancer@parallel.html
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_reloc@basic-gtt-read-noreloc:
    - shard-rkl:          [SKIP][333] ([i915#14544] / [i915#3281]) -> [SKIP][334] ([i915#3281]) +1 other test skip
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-read-noreloc.html

  * igt@gem_huc_copy@huc-copy:
    - shard-rkl:          [SKIP][335] ([i915#2190]) -> [SKIP][336] ([i915#14544] / [i915#2190])
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-rkl:          [SKIP][337] ([i915#4613]) -> [SKIP][338] ([i915#14544] / [i915#4613])
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_lmem_swapping@parallel-multi:
    - shard-rkl:          [SKIP][339] ([i915#14544] / [i915#4613]) -> [SKIP][340] ([i915#4613]) +1 other test skip
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@gem_lmem_swapping@parallel-multi.html

  * igt@gem_partial_pwrite_pread@writes-after-reads:
    - shard-rkl:          [SKIP][341] ([i915#14544] / [i915#3282]) -> [SKIP][342] ([i915#3282])
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads.html

  * igt@gem_pxp@hw-rejects-pxp-buffer:
    - shard-rkl:          [SKIP][343] ([i915#13717]) -> [SKIP][344] ([i915#13717] / [i915#14544])
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-buffer.html
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html

  * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
    - shard-rkl:          [SKIP][345] ([i915#14544] / [i915#8411]) -> [SKIP][346] ([i915#8411])
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html

  * igt@gen9_exec_parse@bb-start-out:
    - shard-rkl:          [SKIP][347] ([i915#14544] / [i915#2527]) -> [SKIP][348] ([i915#2527]) +1 other test skip
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@gen9_exec_parse@bb-start-out.html

  * igt@gen9_exec_parse@bb-start-param:
    - shard-rkl:          [SKIP][349] ([i915#2527]) -> [SKIP][350] ([i915#14544] / [i915#2527]) +1 other test skip
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-2/igt@gen9_exec_parse@bb-start-param.html
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
    - shard-rkl:          [SKIP][351] ([i915#14544] / [i915#5286]) -> [SKIP][352] ([i915#5286])
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-rkl:          [SKIP][353] ([i915#5286]) -> [SKIP][354] ([i915#14544] / [i915#5286]) +2 other tests skip
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-rkl:          [SKIP][355] ([i915#14544] / [i915#3638]) -> [SKIP][356] ([i915#3638]) +2 other tests skip
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
    - shard-rkl:          [SKIP][357] ([i915#3638]) -> [SKIP][358] ([i915#14544] / [i915#3638])
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-8/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][359] ([i915#14544] / [i915#6095]) -> [SKIP][360] ([i915#6095]) +7 other tests skip
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
    - shard-rkl:          [SKIP][361] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][362] ([i915#14098] / [i915#6095]) +9 other tests skip
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][363] ([i915#6095]) -> [SKIP][364] ([i915#14544] / [i915#6095]) +9 other tests skip
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-4/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2.html
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
    - shard-rkl:          [SKIP][365] ([i915#14098] / [i915#6095]) -> [SKIP][366] ([i915#14098] / [i915#14544] / [i915#6095]) +11 other tests skip
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-7/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-rkl:          [SKIP][367] ([i915#12313]) -> [SKIP][368] ([i915#12313] / [i915#14544])
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
    - shard-rkl:          [SKIP][369] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][370] ([i915#11151] / [i915#7828]) +3 other tests skip
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-rkl:          [SKIP][371] ([i915#11151] / [i915#7828]) -> [SKIP][372] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_content_protection@atomic:
    - shard-dg2:          [SKIP][373] ([i915#6944] / [i915#7118] / [i915#9424]) -> [FAIL][374] ([i915#7173])
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-6/igt@kms_content_protection@atomic.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-11/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-dg2:          [FAIL][375] ([i915#7173]) -> [SKIP][376] ([i915#6944] / [i915#7118] / [i915#9424])
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@atomic-dpms-hdcp14:
    - shard-dg2:          [FAIL][377] ([i915#7173]) -> [SKIP][378] ([i915#6944])
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-8/igt@kms_content_protection@atomic-dpms-hdcp14.html
    - shard-rkl:          [SKIP][379] ([i915#6944]) -> [SKIP][380] ([i915#14544] / [i915#6944])
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-8/igt@kms_content_protection@atomic-dpms-hdcp14.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_content_protection@atomic-dpms-hdcp14.html

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-rkl:          [SKIP][381] ([i915#15330]) -> [SKIP][382] ([i915#14544] / [i915#15330])
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-rkl:          [SKIP][383] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][384] ([i915#15330] / [i915#3116])
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@legacy:
    - shard-rkl:          [SKIP][385] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][386] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424])
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-5/igt@kms_content_protection@legacy.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-0:
    - shard-dg2:          [SKIP][387] ([i915#6944] / [i915#9424]) -> [FAIL][388] ([i915#7173])
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-5/igt@kms_content_protection@lic-type-0.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-11/igt@kms_content_protection@lic-type-0.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-rkl:          [SKIP][389] ([i915#13049] / [i915#14544]) -> [SKIP][390] ([i915#13049])
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-max-size:
    - shard-rkl:          [SKIP][391] ([i915#3555]) -> [SKIP][392] ([i915#14544] / [i915#3555]) +2 other tests skip
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-rkl:          [SKIP][393] ([i915#14544]) -> [SKIP][394] +5 other tests skip
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-rkl:          [SKIP][395] ([i915#4103]) -> [SKIP][396] ([i915#14544] / [i915#4103])
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-rkl:          [SKIP][397] -> [SKIP][398] ([i915#14544]) +5 other tests skip
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-rkl:          [SKIP][399] ([i915#13691] / [i915#14544]) -> [SKIP][400] ([i915#13691])
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-4/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dsc@dsc-basic:
    - shard-rkl:          [SKIP][401] ([i915#3555] / [i915#3840]) -> [SKIP][402] ([i915#14544] / [i915#3555] / [i915#3840]) +1 other test skip
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-5/igt@kms_dsc@dsc-basic.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_dsc@dsc-basic.html

  * igt@kms_feature_discovery@psr1:
    - shard-rkl:          [SKIP][403] ([i915#14544] / [i915#658]) -> [SKIP][404] ([i915#658])
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_feature_discovery@psr1.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-2/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@2x-flip-vs-panning:
    - shard-rkl:          [SKIP][405] ([i915#9934]) -> [SKIP][406] ([i915#14544] / [i915#9934]) +2 other tests skip
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-glk:          [INCOMPLETE][407] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][408] ([i915#12745] / [i915#4839] / [i915#6113])
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-glk9/igt@kms_flip@2x-flip-vs-suspend.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-glk1/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [INCOMPLETE][409] ([i915#4839]) -> [INCOMPLETE][410] ([i915#4839] / [i915#6113])
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-glk9/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-glk1/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
    - shard-rkl:          [SKIP][411] ([i915#14544] / [i915#15643]) -> [SKIP][412] ([i915#15643])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
    - shard-rkl:          [SKIP][413] ([i915#15643]) -> [SKIP][414] ([i915#14544] / [i915#15643]) +3 other tests skip
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
    - shard-rkl:          [SKIP][415] ([i915#14544] / [i915#1825]) -> [SKIP][416] ([i915#1825]) +13 other tests skip
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu:
    - shard-rkl:          [SKIP][417] ([i915#14544] / [i915#15102]) -> [SKIP][418] ([i915#15102])
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
    - shard-rkl:          [SKIP][419] ([i915#1825]) -> [SKIP][420] ([i915#14544] / [i915#1825]) +14 other tests skip
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg2:          [SKIP][421] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][422] ([i915#15102] / [i915#3458]) +1 other test skip
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
    - shard-rkl:          [SKIP][423] ([i915#15102]) -> [SKIP][424] ([i915#14544] / [i915#15102]) +2 other tests skip
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
    - shard-rkl:          [SKIP][425] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][426] ([i915#15102] / [i915#3023]) +3 other tests skip
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
    - shard-rkl:          [SKIP][427] ([i915#15102] / [i915#3023]) -> [SKIP][428] ([i915#14544] / [i915#15102] / [i915#3023]) +8 other tests skip
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:
    - shard-dg2:          [SKIP][429] ([i915#15102] / [i915#3458]) -> [SKIP][430] ([i915#10433] / [i915#15102] / [i915#3458])
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-dg1:          [SKIP][431] ([i915#15458] / [i915#4423]) -> [SKIP][432] ([i915#15458])
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg1-16/igt@kms_joiner@basic-ultra-joiner.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg1-18/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-rkl:          [SKIP][433] ([i915#14544] / [i915#15458]) -> [SKIP][434] ([i915#15458])
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-rkl:          [SKIP][435] ([i915#14544] / [i915#1839] / [i915#4816]) -> [SKIP][436] ([i915#1839] / [i915#4816])
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
    - shard-rkl:          [SKIP][437] ([i915#14544] / [i915#15329]) -> [SKIP][438] ([i915#15329]) +3 other tests skip
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-rkl:          [SKIP][439] ([i915#14544] / [i915#9340]) -> [SKIP][440] ([i915#9340])
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-dg2:          [SKIP][441] ([i915#12916]) -> [SKIP][442] ([i915#15073])
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
    - shard-rkl:          [SKIP][443] ([i915#11520] / [i915#14544]) -> [SKIP][444] ([i915#11520])
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
    - shard-rkl:          [SKIP][445] ([i915#11520]) -> [SKIP][446] ([i915#11520] / [i915#14544]) +3 other tests skip
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-rkl:          [SKIP][447] ([i915#9683]) -> [SKIP][448] ([i915#14544] / [i915#9683])
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-4/igt@kms_psr2_su@page_flip-xrgb8888.html
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@pr-cursor-blt:
    - shard-rkl:          [SKIP][449] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][450] ([i915#1072] / [i915#9732]) +2 other tests skip
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_psr@pr-cursor-blt.html
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-4/igt@kms_psr@pr-cursor-blt.html

  * igt@kms_psr@psr2-cursor-mmap-gtt:
    - shard-rkl:          [SKIP][451] ([i915#1072] / [i915#9732]) -> [SKIP][452] ([i915#1072] / [i915#14544] / [i915#9732]) +6 other tests skip
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-3/igt@kms_psr@psr2-cursor-mmap-gtt.html
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-rkl:          [SKIP][453] ([i915#14544] / [i915#5289]) -> [SKIP][454] ([i915#5289]) +1 other test skip
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-rkl:          [SKIP][455] ([i915#14544] / [i915#9906]) -> [SKIP][456] ([i915#9906])
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@perf@per-context-mode-unprivileged:
    - shard-rkl:          [SKIP][457] ([i915#14544] / [i915#2435]) -> [SKIP][458] ([i915#2435])
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@perf@per-context-mode-unprivileged.html

  * igt@perf@unprivileged-single-ctx-counters:
    - shard-rkl:          [SKIP][459] ([i915#14544] / [i915#2433]) -> [SKIP][460] ([i915#2433])
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-8/igt@perf@unprivileged-single-ctx-counters.html

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - shard-rkl:          [SKIP][461] ([i915#9917]) -> [SKIP][462] ([i915#14544] / [i915#9917])
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8758/shard-rkl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14567/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html

  
  [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
  [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
  [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
  [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
  [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
  [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
  [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
  [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
  [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
  [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
  [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
  [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
  [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
  [i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
  [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
  [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
  [i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441
  [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
  [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
  [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
  [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
  [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
  [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
  [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
  [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
  [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
  [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
  [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
  [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
  [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
  [i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809
  [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
  [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
  [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
  [i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
  [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
  [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
  [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
  [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
  [i915#15457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15457
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
  [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
  [i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478
  [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
  [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
  [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
  [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
  [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
  [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
  [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
  [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
  [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
  [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
  [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
  [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
  [i915#6645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6645
  [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
  [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
  [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
  [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
  [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
  [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
  [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
  [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
  [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
  [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
  [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
  [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
  [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8758 -> IGTPW_14567

  CI-20190529: 20190529
  CI_DRM_18003: fc9512d31fa2c190f58c85dbdf7313d2d0ad4b0d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14567: 40704d87ff91f1ce0ff2ae0d0e9e26a70ceb8b1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8758: 8758

== Logs ==

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

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

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

* RE: [PATCH] lib/intel_pat: Handle platforms without compressed PAT index
  2026-02-18 10:36 [PATCH] lib/intel_pat: Handle platforms without compressed PAT index Sanjay Yadav
                   ` (3 preceding siblings ...)
  2026-02-18 14:14 ` ✗ i915.CI.Full: " Patchwork
@ 2026-03-03  9:50 ` Gurram, Pravalika
  2026-03-03 10:30   ` Yadav, Sanjay Kumar
  4 siblings, 1 reply; 9+ messages in thread
From: Gurram, Pravalika @ 2026-03-03  9:50 UTC (permalink / raw)
  To: Yadav, Sanjay Kumar, igt-dev@lists.freedesktop.org; +Cc: Auld, Matthew



> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Sanjay
> Yadav
> Sent: Wednesday, 18 February, 2026 04:06 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Auld, Matthew <matthew.auld@intel.com>
> Subject: [PATCH] lib/intel_pat: Handle platforms without compressed PAT
> index
> 
> Previously intel_get_pat_idx_uc_comp() would silently return zero on
> platforms where no compressed PAT index exists (e.g. CRI), since uc_comp was
> zero-initialized by default. This could lead to incorrect behavior when callers
> assume the returned index is valid.
> 
> Fix this by:
> - Adding XE_PAT_IDX_INVALID sentinel to detect unsupported platforms
> - Initializing uc_comp to XE_PAT_IDX_INVALID in intel_get_pat_idx();
>   only platforms with CCS (graphics_ver 20/30) override it to a valid
>   index
> - Adding igt_assert_f() in intel_get_pat_idx_uc_comp() to fail with
>   a clear error instead of returning an invalid index
> 
> Also update the bo-comp-disable-bind test to distinguish between "CCS is
> disabled" and "CCS does not exist" using HAS_FLATCCS(). On platforms
> without CCS, the compressed PAT bind check is skipped since there is no valid
> compressed PAT index to test with.
> 
> Suggested-by: Matthew Auld <matthew.auld@intel.com>
> Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
> ---
>  lib/intel_pat.c      |  5 +++++
>  lib/intel_pat.h      |  1 +
>  tests/intel/xe_pat.c | 30 ++++++++++++++++++++++--------
>  3 files changed, 28 insertions(+), 8 deletions(-)
> 
> diff --git a/lib/intel_pat.c b/lib/intel_pat.c index 9815efc18..d30bee453
> 100644
> --- a/lib/intel_pat.c
> +++ b/lib/intel_pat.c
> @@ -98,6 +98,8 @@ static void intel_get_pat_idx(int fd, struct
> intel_pat_cache *pat)  {
>  	uint16_t dev_id = intel_get_drm_devid(fd);
> 
> +	pat->uc_comp = XE_PAT_IDX_INVALID;
> +
>  	if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) {
>  		pat->uc = 3;
>  		pat->wb = 2;
> @@ -155,8 +157,11 @@ uint8_t intel_get_pat_idx_uc_comp(int fd)
>  	uint16_t dev_id = intel_get_drm_devid(fd);
> 
>  	igt_assert(intel_gen(dev_id) >= 20);
> +	igt_assert(HAS_FLATCCS(dev_id));
> 
>  	intel_get_pat_idx(fd, &pat);
> +	igt_assert_f(pat.uc_comp != XE_PAT_IDX_INVALID,
> +		     "No compressed PAT index available on this platform\n");
>  	return pat.uc_comp;
>  }
> 
> diff --git a/lib/intel_pat.h b/lib/intel_pat.h index e9ade2e2e..e5dd8a0af
> 100644
> --- a/lib/intel_pat.h
> +++ b/lib/intel_pat.h
> @@ -10,6 +10,7 @@
>  #include <stdint.h>
> 
>  #define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way or better
> */
> +#define XE_PAT_IDX_INVALID ((uint8_t)-2) /* no such PAT index on this
> +platform */
>  #define XE_PAT_MAX_ENTRIES 32
> 
>  struct xe_pat_entry {
> diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c index
> 21547c84e..052b7b699 100644
> --- a/tests/intel/xe_pat.c
> +++ b/tests/intel/xe_pat.c
> @@ -844,15 +844,18 @@ static bool has_no_compression_hint(int fd)
>   * Test category: functionality test
>   * Description: Validates that binding a BO created with
>   * the NO_COMPRESSION flag using a compressed PAT index fails
> - * with -EINVAL on Xe2+ platforms.
> + * with -EINVAL on Xe2+ platforms. On platforms where CCS
> + * does not exist, the test verifies uncompressed access works.
>   */
> 
>  static void bo_comp_disable_bind(int fd)  {
>  	size_t size = xe_get_default_alignment(fd);
> -	uint8_t comp_pat_index, uncomp_pat_index;
> -	bool supported;
> +	uint16_t dev_id = intel_get_drm_devid(fd);
> +	bool has_flatccs = HAS_FLATCCS(dev_id);
> +	uint8_t uncomp_pat_index;
>  	uint32_t vm, bo;
> +	bool supported;
>  	int ret;
> 
>  	supported = has_no_compression_hint(fd); @@ -868,14 +871,25
> @@ static void bo_comp_disable_bind(int fd)
>  	igt_assert_eq(ret, 0);
>  	vm = xe_vm_create(fd, 0, 0);
> 
> -	comp_pat_index = intel_get_pat_idx_uc_comp(fd);
>  	uncomp_pat_index = intel_get_pat_idx_uc(fd);
> 
> -	igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
> -				   size, 0, 0, NULL, 0,
> -				   0, comp_pat_index, 0),
> -		      -EINVAL);
> +	/*
> +	 * On platforms with CCS, binding a NO_COMPRESSION BO with a
> +	 * compressed PAT index must fail. On platforms without CCS,
> +	 * there is no valid compressed PAT index, so skip this check.
> +	 */
> +	if (has_flatccs) {
> +		uint8_t comp_pat_index = intel_get_pat_idx_uc_comp(fd);
> +
> +		igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
> +					   size, 0, 0, NULL, 0,
> +					   0, comp_pat_index, 0),
> +			      -EINVAL);
> +	} else {
> +		igt_debug("Platform has no CCS, skipping compressed PAT
> bind check\n");
> +	}
Does this test needs to be skipped here? If yes you need to use igt_skip
And handle the resource cleanup
> 
> +	/* Uncompressed bind must always succeed */
>  	igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
>  				   size, 0, 0, NULL, 0,
>  				   0, uncomp_pat_index, 0),
> --
> 2.52.0


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

* Re: [PATCH] lib/intel_pat: Handle platforms without compressed PAT index
  2026-03-03  9:50 ` [PATCH] " Gurram, Pravalika
@ 2026-03-03 10:30   ` Yadav, Sanjay Kumar
  2026-03-03 11:23     ` Gurram, Pravalika
  0 siblings, 1 reply; 9+ messages in thread
From: Yadav, Sanjay Kumar @ 2026-03-03 10:30 UTC (permalink / raw)
  To: Gurram, Pravalika, igt-dev@lists.freedesktop.org; +Cc: Auld, Matthew


On 03-03-2026 15:20, Gurram, Pravalika wrote:
>
>> -----Original Message-----
>> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Sanjay
>> Yadav
>> Sent: Wednesday, 18 February, 2026 04:06 PM
>> To: igt-dev@lists.freedesktop.org
>> Cc: Auld, Matthew <matthew.auld@intel.com>
>> Subject: [PATCH] lib/intel_pat: Handle platforms without compressed PAT
>> index
>>
>> Previously intel_get_pat_idx_uc_comp() would silently return zero on
>> platforms where no compressed PAT index exists (e.g. CRI), since uc_comp was
>> zero-initialized by default. This could lead to incorrect behavior when callers
>> assume the returned index is valid.
>>
>> Fix this by:
>> - Adding XE_PAT_IDX_INVALID sentinel to detect unsupported platforms
>> - Initializing uc_comp to XE_PAT_IDX_INVALID in intel_get_pat_idx();
>>    only platforms with CCS (graphics_ver 20/30) override it to a valid
>>    index
>> - Adding igt_assert_f() in intel_get_pat_idx_uc_comp() to fail with
>>    a clear error instead of returning an invalid index
>>
>> Also update the bo-comp-disable-bind test to distinguish between "CCS is
>> disabled" and "CCS does not exist" using HAS_FLATCCS(). On platforms
>> without CCS, the compressed PAT bind check is skipped since there is no valid
>> compressed PAT index to test with.
>>
>> Suggested-by: Matthew Auld <matthew.auld@intel.com>
>> Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
>> ---
>>   lib/intel_pat.c      |  5 +++++
>>   lib/intel_pat.h      |  1 +
>>   tests/intel/xe_pat.c | 30 ++++++++++++++++++++++--------
>>   3 files changed, 28 insertions(+), 8 deletions(-)
>>
>> diff --git a/lib/intel_pat.c b/lib/intel_pat.c index 9815efc18..d30bee453
>> 100644
>> --- a/lib/intel_pat.c
>> +++ b/lib/intel_pat.c
>> @@ -98,6 +98,8 @@ static void intel_get_pat_idx(int fd, struct
>> intel_pat_cache *pat)  {
>>   	uint16_t dev_id = intel_get_drm_devid(fd);
>>
>> +	pat->uc_comp = XE_PAT_IDX_INVALID;
>> +
>>   	if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) {
>>   		pat->uc = 3;
>>   		pat->wb = 2;
>> @@ -155,8 +157,11 @@ uint8_t intel_get_pat_idx_uc_comp(int fd)
>>   	uint16_t dev_id = intel_get_drm_devid(fd);
>>
>>   	igt_assert(intel_gen(dev_id) >= 20);
>> +	igt_assert(HAS_FLATCCS(dev_id));
>>
>>   	intel_get_pat_idx(fd, &pat);
>> +	igt_assert_f(pat.uc_comp != XE_PAT_IDX_INVALID,
>> +		     "No compressed PAT index available on this platform\n");
>>   	return pat.uc_comp;
>>   }
>>
>> diff --git a/lib/intel_pat.h b/lib/intel_pat.h index e9ade2e2e..e5dd8a0af
>> 100644
>> --- a/lib/intel_pat.h
>> +++ b/lib/intel_pat.h
>> @@ -10,6 +10,7 @@
>>   #include <stdint.h>
>>
>>   #define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way or better
>> */
>> +#define XE_PAT_IDX_INVALID ((uint8_t)-2) /* no such PAT index on this
>> +platform */
>>   #define XE_PAT_MAX_ENTRIES 32
>>
>>   struct xe_pat_entry {
>> diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c index
>> 21547c84e..052b7b699 100644
>> --- a/tests/intel/xe_pat.c
>> +++ b/tests/intel/xe_pat.c
>> @@ -844,15 +844,18 @@ static bool has_no_compression_hint(int fd)
>>    * Test category: functionality test
>>    * Description: Validates that binding a BO created with
>>    * the NO_COMPRESSION flag using a compressed PAT index fails
>> - * with -EINVAL on Xe2+ platforms.
>> + * with -EINVAL on Xe2+ platforms. On platforms where CCS
>> + * does not exist, the test verifies uncompressed access works.
>>    */
>>
>>   static void bo_comp_disable_bind(int fd)  {
>>   	size_t size = xe_get_default_alignment(fd);
>> -	uint8_t comp_pat_index, uncomp_pat_index;
>> -	bool supported;
>> +	uint16_t dev_id = intel_get_drm_devid(fd);
>> +	bool has_flatccs = HAS_FLATCCS(dev_id);
>> +	uint8_t uncomp_pat_index;
>>   	uint32_t vm, bo;
>> +	bool supported;
>>   	int ret;
>>
>>   	supported = has_no_compression_hint(fd); @@ -868,14 +871,25
>> @@ static void bo_comp_disable_bind(int fd)
>>   	igt_assert_eq(ret, 0);
>>   	vm = xe_vm_create(fd, 0, 0);
>>
>> -	comp_pat_index = intel_get_pat_idx_uc_comp(fd);
>>   	uncomp_pat_index = intel_get_pat_idx_uc(fd);
>>
>> -	igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
>> -				   size, 0, 0, NULL, 0,
>> -				   0, comp_pat_index, 0),
>> -		      -EINVAL);
>> +	/*
>> +	 * On platforms with CCS, binding a NO_COMPRESSION BO with a
>> +	 * compressed PAT index must fail. On platforms without CCS,
>> +	 * there is no valid compressed PAT index, so skip this check.
>> +	 */
>> +	if (has_flatccs) {
>> +		uint8_t comp_pat_index = intel_get_pat_idx_uc_comp(fd);
>> +
>> +		igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
>> +					   size, 0, 0, NULL, 0,
>> +					   0, comp_pat_index, 0),
>> +			      -EINVAL);
>> +	} else {
>> +		igt_debug("Platform has no CCS, skipping compressed PAT
>> bind check\n");
>> +	}
> Does this test needs to be skipped here? If yes you need to use igt_skip
> And handle the resource cleanup
No. The test still has a valid positive path on platforms without CCS: 
it verifies that binding with the uncompressed
PAT index succeeds. Only the compressed-path assertion is not applicable 
when HAS_FLATCCS(dev_id) is false, so I kept
the test running and added a debug log to make that explicit. Skipping 
the test with igt_skip would drop that coverage.

>> +	/* Uncompressed bind must always succeed */
>>   	igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
>>   				   size, 0, 0, NULL, 0,
>>   				   0, uncomp_pat_index, 0),
>> --
>> 2.52.0

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

* RE: [PATCH] lib/intel_pat: Handle platforms without compressed PAT index
  2026-03-03 10:30   ` Yadav, Sanjay Kumar
@ 2026-03-03 11:23     ` Gurram, Pravalika
  2026-03-03 11:34       ` Yadav, Sanjay Kumar
  0 siblings, 1 reply; 9+ messages in thread
From: Gurram, Pravalika @ 2026-03-03 11:23 UTC (permalink / raw)
  To: Yadav, Sanjay Kumar, igt-dev@lists.freedesktop.org; +Cc: Auld, Matthew



> -----Original Message-----
> From: Yadav, Sanjay Kumar <sanjay.kumar.yadav@intel.com>
> Sent: Tuesday, 3 March, 2026 04:01 PM
> To: Gurram, Pravalika <pravalika.gurram@intel.com>; igt-
> dev@lists.freedesktop.org
> Cc: Auld, Matthew <matthew.auld@intel.com>
> Subject: Re: [PATCH] lib/intel_pat: Handle platforms without compressed PAT
> index
> 
> 
> On 03-03-2026 15:20, Gurram, Pravalika wrote:
> >
> >> -----Original Message-----
> >> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of
> >> Sanjay Yadav
> >> Sent: Wednesday, 18 February, 2026 04:06 PM
> >> To: igt-dev@lists.freedesktop.org
> >> Cc: Auld, Matthew <matthew.auld@intel.com>
> >> Subject: [PATCH] lib/intel_pat: Handle platforms without compressed
> >> PAT index
> >>
> >> Previously intel_get_pat_idx_uc_comp() would silently return zero on
> >> platforms where no compressed PAT index exists (e.g. CRI), since
> >> uc_comp was zero-initialized by default. This could lead to incorrect
> >> behavior when callers assume the returned index is valid.
> >>
> >> Fix this by:
> >> - Adding XE_PAT_IDX_INVALID sentinel to detect unsupported platforms
> >> - Initializing uc_comp to XE_PAT_IDX_INVALID in intel_get_pat_idx();
> >>    only platforms with CCS (graphics_ver 20/30) override it to a valid
> >>    index
> >> - Adding igt_assert_f() in intel_get_pat_idx_uc_comp() to fail with
> >>    a clear error instead of returning an invalid index
> >>
> >> Also update the bo-comp-disable-bind test to distinguish between "CCS
> >> is disabled" and "CCS does not exist" using HAS_FLATCCS(). On
> >> platforms without CCS, the compressed PAT bind check is skipped since
> >> there is no valid compressed PAT index to test with.
> >>
> >> Suggested-by: Matthew Auld <matthew.auld@intel.com>
> >> Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
> >> ---
> >>   lib/intel_pat.c      |  5 +++++
> >>   lib/intel_pat.h      |  1 +
> >>   tests/intel/xe_pat.c | 30 ++++++++++++++++++++++--------
> >>   3 files changed, 28 insertions(+), 8 deletions(-)
> >>
> >> diff --git a/lib/intel_pat.c b/lib/intel_pat.c index
> >> 9815efc18..d30bee453
> >> 100644
> >> --- a/lib/intel_pat.c
> >> +++ b/lib/intel_pat.c
> >> @@ -98,6 +98,8 @@ static void intel_get_pat_idx(int fd, struct
> >> intel_pat_cache *pat)  {
> >>   	uint16_t dev_id = intel_get_drm_devid(fd);
> >>
> >> +	pat->uc_comp = XE_PAT_IDX_INVALID;
> >> +
> >>   	if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) {
> >>   		pat->uc = 3;
> >>   		pat->wb = 2;
> >> @@ -155,8 +157,11 @@ uint8_t intel_get_pat_idx_uc_comp(int fd)
> >>   	uint16_t dev_id = intel_get_drm_devid(fd);
> >>
> >>   	igt_assert(intel_gen(dev_id) >= 20);
> >> +	igt_assert(HAS_FLATCCS(dev_id));
> >>
> >>   	intel_get_pat_idx(fd, &pat);
> >> +	igt_assert_f(pat.uc_comp != XE_PAT_IDX_INVALID,
> >> +		     "No compressed PAT index available on this platform\n");
> >>   	return pat.uc_comp;
> >>   }
> >>
> >> diff --git a/lib/intel_pat.h b/lib/intel_pat.h index
> >> e9ade2e2e..e5dd8a0af
> >> 100644
> >> --- a/lib/intel_pat.h
> >> +++ b/lib/intel_pat.h
> >> @@ -10,6 +10,7 @@
> >>   #include <stdint.h>
> >>
> >>   #define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way
> >> or better */
> >> +#define XE_PAT_IDX_INVALID ((uint8_t)-2) /* no such PAT index on
> >> +this platform */
> >>   #define XE_PAT_MAX_ENTRIES 32
> >>
> >>   struct xe_pat_entry {
> >> diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c index
> >> 21547c84e..052b7b699 100644
> >> --- a/tests/intel/xe_pat.c
> >> +++ b/tests/intel/xe_pat.c
> >> @@ -844,15 +844,18 @@ static bool has_no_compression_hint(int fd)
> >>    * Test category: functionality test
> >>    * Description: Validates that binding a BO created with
> >>    * the NO_COMPRESSION flag using a compressed PAT index fails
> >> - * with -EINVAL on Xe2+ platforms.
> >> + * with -EINVAL on Xe2+ platforms. On platforms where CCS
> >> + * does not exist, the test verifies uncompressed access works.
> >>    */
> >>
> >>   static void bo_comp_disable_bind(int fd)  {
> >>   	size_t size = xe_get_default_alignment(fd);
> >> -	uint8_t comp_pat_index, uncomp_pat_index;
> >> -	bool supported;
> >> +	uint16_t dev_id = intel_get_drm_devid(fd);
> >> +	bool has_flatccs = HAS_FLATCCS(dev_id);
> >> +	uint8_t uncomp_pat_index;
> >>   	uint32_t vm, bo;
> >> +	bool supported;
> >>   	int ret;
> >>
> >>   	supported = has_no_compression_hint(fd); @@ -868,14 +871,25
> @@
> >> static void bo_comp_disable_bind(int fd)
> >>   	igt_assert_eq(ret, 0);
> >>   	vm = xe_vm_create(fd, 0, 0);
> >>
> >> -	comp_pat_index = intel_get_pat_idx_uc_comp(fd);
> >>   	uncomp_pat_index = intel_get_pat_idx_uc(fd);
> >>
> >> -	igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
> >> -				   size, 0, 0, NULL, 0,
> >> -				   0, comp_pat_index, 0),
> >> -		      -EINVAL);
> >> +	/*
> >> +	 * On platforms with CCS, binding a NO_COMPRESSION BO with a
> >> +	 * compressed PAT index must fail. On platforms without CCS,
> >> +	 * there is no valid compressed PAT index, so skip this check.
> >> +	 */
> >> +	if (has_flatccs) {
> >> +		uint8_t comp_pat_index = intel_get_pat_idx_uc_comp(fd);
> >> +
> >> +		igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
> >> +					   size, 0, 0, NULL, 0,
> >> +					   0, comp_pat_index, 0),
> >> +			      -EINVAL);
> >> +	} else {
> >> +		igt_debug("Platform has no CCS, skipping compressed PAT
> >> bind check\n");
> >> +	}
> > Does this test needs to be skipped here? If yes you need to use
> > igt_skip And handle the resource cleanup
> No. The test still has a valid positive path on platforms without CCS:
> it verifies that binding with the uncompressed PAT index succeeds. Only the
> compressed-path assertion is not applicable when HAS_FLATCCS(dev_id) is
> false, so I kept the test running and added a debug log to make that explicit.
> Skipping the test with igt_skip would drop that coverage.
> 
Reviewed-by: Pravalika Gurram <pravalika.gurram@intel.com>
> >> +	/* Uncompressed bind must always succeed */
> >>   	igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
> >>   				   size, 0, 0, NULL, 0,
> >>   				   0, uncomp_pat_index, 0),
> >> --
> >> 2.52.0

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

* Re: [PATCH] lib/intel_pat: Handle platforms without compressed PAT index
  2026-03-03 11:23     ` Gurram, Pravalika
@ 2026-03-03 11:34       ` Yadav, Sanjay Kumar
  0 siblings, 0 replies; 9+ messages in thread
From: Yadav, Sanjay Kumar @ 2026-03-03 11:34 UTC (permalink / raw)
  To: Gurram, Pravalika, igt-dev@lists.freedesktop.org; +Cc: Auld, Matthew


On 03-03-2026 16:53, Gurram, Pravalika wrote:
>
>> -----Original Message-----
>> From: Yadav, Sanjay Kumar <sanjay.kumar.yadav@intel.com>
>> Sent: Tuesday, 3 March, 2026 04:01 PM
>> To: Gurram, Pravalika <pravalika.gurram@intel.com>; igt-
>> dev@lists.freedesktop.org
>> Cc: Auld, Matthew <matthew.auld@intel.com>
>> Subject: Re: [PATCH] lib/intel_pat: Handle platforms without compressed PAT
>> index
>>
>>
>> On 03-03-2026 15:20, Gurram, Pravalika wrote:
>>>> -----Original Message-----
>>>> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of
>>>> Sanjay Yadav
>>>> Sent: Wednesday, 18 February, 2026 04:06 PM
>>>> To: igt-dev@lists.freedesktop.org
>>>> Cc: Auld, Matthew <matthew.auld@intel.com>
>>>> Subject: [PATCH] lib/intel_pat: Handle platforms without compressed
>>>> PAT index
>>>>
>>>> Previously intel_get_pat_idx_uc_comp() would silently return zero on
>>>> platforms where no compressed PAT index exists (e.g. CRI), since
>>>> uc_comp was zero-initialized by default. This could lead to incorrect
>>>> behavior when callers assume the returned index is valid.
>>>>
>>>> Fix this by:
>>>> - Adding XE_PAT_IDX_INVALID sentinel to detect unsupported platforms
>>>> - Initializing uc_comp to XE_PAT_IDX_INVALID in intel_get_pat_idx();
>>>>     only platforms with CCS (graphics_ver 20/30) override it to a valid
>>>>     index
>>>> - Adding igt_assert_f() in intel_get_pat_idx_uc_comp() to fail with
>>>>     a clear error instead of returning an invalid index
>>>>
>>>> Also update the bo-comp-disable-bind test to distinguish between "CCS
>>>> is disabled" and "CCS does not exist" using HAS_FLATCCS(). On
>>>> platforms without CCS, the compressed PAT bind check is skipped since
>>>> there is no valid compressed PAT index to test with.
>>>>
>>>> Suggested-by: Matthew Auld <matthew.auld@intel.com>
>>>> Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
>>>> ---
>>>>    lib/intel_pat.c      |  5 +++++
>>>>    lib/intel_pat.h      |  1 +
>>>>    tests/intel/xe_pat.c | 30 ++++++++++++++++++++++--------
>>>>    3 files changed, 28 insertions(+), 8 deletions(-)
>>>>
>>>> diff --git a/lib/intel_pat.c b/lib/intel_pat.c index
>>>> 9815efc18..d30bee453
>>>> 100644
>>>> --- a/lib/intel_pat.c
>>>> +++ b/lib/intel_pat.c
>>>> @@ -98,6 +98,8 @@ static void intel_get_pat_idx(int fd, struct
>>>> intel_pat_cache *pat)  {
>>>>    	uint16_t dev_id = intel_get_drm_devid(fd);
>>>>
>>>> +	pat->uc_comp = XE_PAT_IDX_INVALID;
>>>> +
>>>>    	if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) {
>>>>    		pat->uc = 3;
>>>>    		pat->wb = 2;
>>>> @@ -155,8 +157,11 @@ uint8_t intel_get_pat_idx_uc_comp(int fd)
>>>>    	uint16_t dev_id = intel_get_drm_devid(fd);
>>>>
>>>>    	igt_assert(intel_gen(dev_id) >= 20);
>>>> +	igt_assert(HAS_FLATCCS(dev_id));
>>>>
>>>>    	intel_get_pat_idx(fd, &pat);
>>>> +	igt_assert_f(pat.uc_comp != XE_PAT_IDX_INVALID,
>>>> +		     "No compressed PAT index available on this platform\n");
>>>>    	return pat.uc_comp;
>>>>    }
>>>>
>>>> diff --git a/lib/intel_pat.h b/lib/intel_pat.h index
>>>> e9ade2e2e..e5dd8a0af
>>>> 100644
>>>> --- a/lib/intel_pat.h
>>>> +++ b/lib/intel_pat.h
>>>> @@ -10,6 +10,7 @@
>>>>    #include <stdint.h>
>>>>
>>>>    #define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way
>>>> or better */
>>>> +#define XE_PAT_IDX_INVALID ((uint8_t)-2) /* no such PAT index on
>>>> +this platform */
>>>>    #define XE_PAT_MAX_ENTRIES 32
>>>>
>>>>    struct xe_pat_entry {
>>>> diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c index
>>>> 21547c84e..052b7b699 100644
>>>> --- a/tests/intel/xe_pat.c
>>>> +++ b/tests/intel/xe_pat.c
>>>> @@ -844,15 +844,18 @@ static bool has_no_compression_hint(int fd)
>>>>     * Test category: functionality test
>>>>     * Description: Validates that binding a BO created with
>>>>     * the NO_COMPRESSION flag using a compressed PAT index fails
>>>> - * with -EINVAL on Xe2+ platforms.
>>>> + * with -EINVAL on Xe2+ platforms. On platforms where CCS
>>>> + * does not exist, the test verifies uncompressed access works.
>>>>     */
>>>>
>>>>    static void bo_comp_disable_bind(int fd)  {
>>>>    	size_t size = xe_get_default_alignment(fd);
>>>> -	uint8_t comp_pat_index, uncomp_pat_index;
>>>> -	bool supported;
>>>> +	uint16_t dev_id = intel_get_drm_devid(fd);
>>>> +	bool has_flatccs = HAS_FLATCCS(dev_id);
>>>> +	uint8_t uncomp_pat_index;
>>>>    	uint32_t vm, bo;
>>>> +	bool supported;
>>>>    	int ret;
>>>>
>>>>    	supported = has_no_compression_hint(fd); @@ -868,14 +871,25
>> @@
>>>> static void bo_comp_disable_bind(int fd)
>>>>    	igt_assert_eq(ret, 0);
>>>>    	vm = xe_vm_create(fd, 0, 0);
>>>>
>>>> -	comp_pat_index = intel_get_pat_idx_uc_comp(fd);
>>>>    	uncomp_pat_index = intel_get_pat_idx_uc(fd);
>>>>
>>>> -	igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
>>>> -				   size, 0, 0, NULL, 0,
>>>> -				   0, comp_pat_index, 0),
>>>> -		      -EINVAL);
>>>> +	/*
>>>> +	 * On platforms with CCS, binding a NO_COMPRESSION BO with a
>>>> +	 * compressed PAT index must fail. On platforms without CCS,
>>>> +	 * there is no valid compressed PAT index, so skip this check.
>>>> +	 */
>>>> +	if (has_flatccs) {
>>>> +		uint8_t comp_pat_index = intel_get_pat_idx_uc_comp(fd);
>>>> +
>>>> +		igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
>>>> +					   size, 0, 0, NULL, 0,
>>>> +					   0, comp_pat_index, 0),
>>>> +			      -EINVAL);
>>>> +	} else {
>>>> +		igt_debug("Platform has no CCS, skipping compressed PAT
>>>> bind check\n");
>>>> +	}
>>> Does this test needs to be skipped here? If yes you need to use
>>> igt_skip And handle the resource cleanup
>> No. The test still has a valid positive path on platforms without CCS:
>> it verifies that binding with the uncompressed PAT index succeeds. Only the
>> compressed-path assertion is not applicable when HAS_FLATCCS(dev_id) is
>> false, so I kept the test running and added a debug log to make that explicit.
>> Skipping the test with igt_skip would drop that coverage.
>>
> Reviewed-by: Pravalika Gurram <pravalika.gurram@intel.com>

Thanks for the prompt review and your time

-Sanjay

>>>> +	/* Uncompressed bind must always succeed */
>>>>    	igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
>>>>    				   size, 0, 0, NULL, 0,
>>>>    				   0, uncomp_pat_index, 0),
>>>> --
>>>> 2.52.0

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

end of thread, other threads:[~2026-03-03 11:34 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-18 10:36 [PATCH] lib/intel_pat: Handle platforms without compressed PAT index Sanjay Yadav
2026-02-18 11:58 ` ✓ i915.CI.BAT: success for " Patchwork
2026-02-18 12:18 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-18 12:37 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-18 14:14 ` ✗ i915.CI.Full: " Patchwork
2026-03-03  9:50 ` [PATCH] " Gurram, Pravalika
2026-03-03 10:30   ` Yadav, Sanjay Kumar
2026-03-03 11:23     ` Gurram, Pravalika
2026-03-03 11:34       ` Yadav, Sanjay Kumar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox