* [PATCH i-g-t] lib/intel_pat: add hardcoded PAT fallback for older kernels
@ 2026-03-27 5:22 himanshu.girotra
2026-03-27 6:28 ` ✓ i915.CI.BAT: success for " Patchwork
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: himanshu.girotra @ 2026-03-27 5:22 UTC (permalink / raw)
To: igt-dev; +Cc: matthew.d.roper, francois.dugast, matthew.auld
From: Himanshu Girotra <himanshu.girotra@intel.com>
When IGT runs on kernels that lack the gt0/pat_sw_config debugfs entry
(commit "drm/xe: expose PAT software config to debugfs"), the PAT cache
is NULL and intel_get_pat_idx() hits a fatal assertion. This breaks
basic tests like xe_exec_basic on stock distro kernels (e.g. Ubuntu
25.10).
Add xe_pat_fallback() with hardcoded PAT indices matching the kernel's
xe_pat_init_early() for platforms up to Crescent Island (xe3p XPC).
When the debugfs is unavailable, the fallback provides correct values
instead of crashing. Newer platforms (xe3p LPG and beyond) are not
covered because their kernel support arrived after the debugfs entry
was already in place.
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Matt Roper <matthew.d.roper@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Signed-off-by: Himanshu Girotra <himanshu.girotra@intel.com>
---
lib/intel_pat.c | 76 ++++++++++++++++++++++++++++++++++++++++++++++---
1 file changed, 72 insertions(+), 4 deletions(-)
diff --git a/lib/intel_pat.c b/lib/intel_pat.c
index b202a6241..71633b314 100644
--- a/lib/intel_pat.c
+++ b/lib/intel_pat.c
@@ -97,6 +97,62 @@ int32_t xe_get_pat_sw_config(int drm_fd, struct intel_pat_cache *xe_pat_cache)
return parsed;
}
+/*
+ * Hardcoded PAT indices for Xe platforms, used as a fallback when the
+ * kernel doesn't expose gt0/pat_sw_config in debugfs.
+ *
+ * Covers platforms up to Crescent Island (xe3p XPC) that have Xe driver
+ * support in current stable kernels. Anything newer must run a kernel
+ * that provides the pat_sw_config debugfs entry.
+ *
+ * TODO: drop this fallback once stable kernels ship with pat_sw_config.
+ */
+static bool xe_pat_fallback(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)) {
+ /* Xe3p XPC (GFX ver 35.11): no WT, no compression */
+ pat->uc = 3;
+ pat->wt = 3; /* No WT on XPC; use UC */
+ pat->wb = 2;
+ pat->max_index = 31;
+ } else if (intel_get_device_info(dev_id)->graphics_ver == 30 ||
+ intel_get_device_info(dev_id)->graphics_ver == 20) {
+ /* Xe2 / Xe3: GFX ver 20 / 30 */
+ pat->uc = 3;
+ pat->wt = 15;
+ pat->wb = 2;
+ pat->uc_comp = 12;
+ pat->max_index = 31;
+
+ /* Wa_16023588340: CLOS3 entries at end of table are unusable */
+ if (intel_graphics_ver(dev_id) == IP_VER(20, 1))
+ pat->max_index -= 4;
+ } else if (IS_METEORLAKE(dev_id)) {
+ pat->uc = 2;
+ pat->wt = 1;
+ pat->wb = 3;
+ pat->max_index = 3;
+ } else if (IS_PONTEVECCHIO(dev_id)) {
+ pat->uc = 0;
+ pat->wt = 2;
+ pat->wb = 3;
+ pat->max_index = 7;
+ } else if (IS_DG2(dev_id) || intel_graphics_ver(dev_id) <= IP_VER(12, 10)) {
+ pat->uc = 3;
+ pat->wt = 2;
+ pat->wb = 0;
+ pat->max_index = 3;
+ } else {
+ return false;
+ }
+
+ return true;
+}
+
static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat)
{
uint16_t dev_id;
@@ -105,14 +161,26 @@ static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat)
* For Xe, use the PAT cache stored in struct xe_device.
* xe_device_get() populates the cache while still root; forked
* children that inherit the xe_device can use it post-drop_root().
+ *
+ * Fall back to hardcoded values when the kernel lacks the
+ * pat_sw_config debugfs. Platforms newer than Crescent Island
+ * must have the debugfs available.
*/
if (is_xe_device(fd)) {
struct xe_device *xe_dev = xe_device_get(fd);
- igt_assert_f(xe_dev->pat_cache,
- "PAT sw_config not available -- "
- "debugfs not accessible (missing root or not mounted?)\n");
- *pat = *xe_dev->pat_cache;
+ if (xe_dev->pat_cache) {
+ *pat = *xe_dev->pat_cache;
+ } else if (xe_pat_fallback(fd, pat)) {
+ igt_info("PAT sw_config debugfs not available, "
+ "using hardcoded fallback\n");
+ } else {
+ igt_assert_f(false,
+ "PAT sw_config not available and no "
+ "hardcoded fallback for this platform -- "
+ "kernel with 'drm/xe: expose PAT software "
+ "config to debugfs' required\n");
+ }
return;
}
--
2.50.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* ✓ i915.CI.BAT: success for lib/intel_pat: add hardcoded PAT fallback for older kernels 2026-03-27 5:22 [PATCH i-g-t] lib/intel_pat: add hardcoded PAT fallback for older kernels himanshu.girotra @ 2026-03-27 6:28 ` Patchwork 2026-03-27 6:32 ` ✓ Xe.CI.BAT: " Patchwork ` (5 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-03-27 6:28 UTC (permalink / raw) To: himanshu.girotra; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2026 bytes --] == Series Details == Series: lib/intel_pat: add hardcoded PAT fallback for older kernels URL : https://patchwork.freedesktop.org/series/163963/ State : success == Summary == CI Bug Log - changes from IGT_8834 -> IGTPW_14870 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/index.html Participating hosts (41 -> 38) ------------------------------ Missing (3): bat-dg2-13 bat-mtlp-9 bat-adls-6 Known issues ------------ Here are the changes found in IGTPW_14870 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-dg2-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/bat-dg2-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/bat-dg2-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-dg2-14: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/bat-dg2-14/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/bat-dg2-14/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8834 -> IGTPW_14870 * Linux: CI_DRM_18222 -> CI_DRM_18232 CI-20190529: 20190529 CI_DRM_18222: 2ccc868c40a9048ecf287b7bb002d73b5d25c7bf @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18232: 0a7844908d3616b88a7887704eb6dfa0d315be1b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14870: 944293f093a579d387e2f6566bd32dac1c9ff9bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8834: 8834 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/index.html [-- Attachment #2: Type: text/html, Size: 2741 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for lib/intel_pat: add hardcoded PAT fallback for older kernels 2026-03-27 5:22 [PATCH i-g-t] lib/intel_pat: add hardcoded PAT fallback for older kernels himanshu.girotra 2026-03-27 6:28 ` ✓ i915.CI.BAT: success for " Patchwork @ 2026-03-27 6:32 ` Patchwork 2026-03-27 10:35 ` [PATCH i-g-t] " Matthew Auld ` (4 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-03-27 6:32 UTC (permalink / raw) To: himanshu.girotra; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1792 bytes --] == Series Details == Series: lib/intel_pat: add hardcoded PAT fallback for older kernels URL : https://patchwork.freedesktop.org/series/163963/ State : success == Summary == CI Bug Log - changes from XEIGT_8834_BAT -> XEIGTPW_14870_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 14) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14870_BAT that come from known issues: ### IGT changes ### #### Warnings #### * igt@core_hotunplug@unbind-rebind: - bat-bmg-2: [DMESG-WARN][1] ([Intel XE#7433]) -> [ABORT][2] ([Intel XE#7249] / [Intel XE#7578]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8834/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14870/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html [Intel XE#7249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7249 [Intel XE#7433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7433 [Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578 Build changes ------------- * IGT: IGT_8834 -> IGTPW_14870 * Linux: xe-4793-2ccc868c40a9048ecf287b7bb002d73b5d25c7bf -> xe-4803-0a7844908d3616b88a7887704eb6dfa0d315be1b IGTPW_14870: 944293f093a579d387e2f6566bd32dac1c9ff9bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8834: 8834 xe-4793-2ccc868c40a9048ecf287b7bb002d73b5d25c7bf: 2ccc868c40a9048ecf287b7bb002d73b5d25c7bf xe-4803-0a7844908d3616b88a7887704eb6dfa0d315be1b: 0a7844908d3616b88a7887704eb6dfa0d315be1b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14870/index.html [-- Attachment #2: Type: text/html, Size: 2354 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t] lib/intel_pat: add hardcoded PAT fallback for older kernels 2026-03-27 5:22 [PATCH i-g-t] lib/intel_pat: add hardcoded PAT fallback for older kernels himanshu.girotra 2026-03-27 6:28 ` ✓ i915.CI.BAT: success for " Patchwork 2026-03-27 6:32 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-03-27 10:35 ` Matthew Auld 2026-03-27 22:07 ` ✓ Xe.CI.FULL: success for " Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Matthew Auld @ 2026-03-27 10:35 UTC (permalink / raw) To: himanshu.girotra, igt-dev; +Cc: matthew.d.roper, francois.dugast On 27/03/2026 05:22, himanshu.girotra@intel.com wrote: > From: Himanshu Girotra <himanshu.girotra@intel.com> > > When IGT runs on kernels that lack the gt0/pat_sw_config debugfs entry > (commit "drm/xe: expose PAT software config to debugfs"), the PAT cache > is NULL and intel_get_pat_idx() hits a fatal assertion. This breaks > basic tests like xe_exec_basic on stock distro kernels (e.g. Ubuntu > 25.10). > > Add xe_pat_fallback() with hardcoded PAT indices matching the kernel's > xe_pat_init_early() for platforms up to Crescent Island (xe3p XPC). > When the debugfs is unavailable, the fallback provides correct values > instead of crashing. Newer platforms (xe3p LPG and beyond) are not > covered because their kernel support arrived after the debugfs entry > was already in place. > > Cc: Matthew Auld <matthew.auld@intel.com> > Cc: Matt Roper <matthew.d.roper@intel.com> > Cc: Francois Dugast <francois.dugast@intel.com> > Signed-off-by: Himanshu Girotra <himanshu.girotra@intel.com> Reviewed-by: Matthew Auld <matthew.auld@intel.com> ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.FULL: success for lib/intel_pat: add hardcoded PAT fallback for older kernels 2026-03-27 5:22 [PATCH i-g-t] lib/intel_pat: add hardcoded PAT fallback for older kernels himanshu.girotra ` (2 preceding siblings ...) 2026-03-27 10:35 ` [PATCH i-g-t] " Matthew Auld @ 2026-03-27 22:07 ` Patchwork 2026-03-28 7:31 ` ✗ i915.CI.Full: failure " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-03-27 22:07 UTC (permalink / raw) To: himanshu.girotra; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3704 bytes --] == Series Details == Series: lib/intel_pat: add hardcoded PAT fallback for older kernels URL : https://patchwork.freedesktop.org/series/163963/ State : success == Summary == CI Bug Log - changes from XEIGT_8834_FULL -> XEIGTPW_14870_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14870_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [PASS][1] -> [FAIL][2] ([Intel XE#301]) +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8834/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14870/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_vrr@flip-suspend: - shard-lnl: [PASS][3] -> [FAIL][4] ([Intel XE#4227] / [Intel XE#7397]) +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8834/shard-lnl-4/igt@kms_vrr@flip-suspend.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14870/shard-lnl-6/igt@kms_vrr@flip-suspend.html #### Possible fixes #### * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][5] ([Intel XE#7340] / [Intel XE#7504]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8834/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14870/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][7] ([Intel XE#4459]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8834/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14870/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html #### Warnings #### * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-lnl: [SKIP][9] ([Intel XE#7675]) -> [SKIP][10] ([Intel XE#7675] / [Intel XE#7679]) +7 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8834/shard-lnl-1/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14870/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [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#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397 [Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504 [Intel XE#7675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7675 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 Build changes ------------- * IGT: IGT_8834 -> IGTPW_14870 * Linux: xe-4793-2ccc868c40a9048ecf287b7bb002d73b5d25c7bf -> xe-4803-0a7844908d3616b88a7887704eb6dfa0d315be1b IGTPW_14870: 944293f093a579d387e2f6566bd32dac1c9ff9bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8834: 8834 xe-4793-2ccc868c40a9048ecf287b7bb002d73b5d25c7bf: 2ccc868c40a9048ecf287b7bb002d73b5d25c7bf xe-4803-0a7844908d3616b88a7887704eb6dfa0d315be1b: 0a7844908d3616b88a7887704eb6dfa0d315be1b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14870/index.html [-- Attachment #2: Type: text/html, Size: 4439 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for lib/intel_pat: add hardcoded PAT fallback for older kernels 2026-03-27 5:22 [PATCH i-g-t] lib/intel_pat: add hardcoded PAT fallback for older kernels himanshu.girotra ` (3 preceding siblings ...) 2026-03-27 22:07 ` ✓ Xe.CI.FULL: success for " Patchwork @ 2026-03-28 7:31 ` Patchwork 2026-03-31 22:56 ` [PATCH i-g-t] " Dixit, Ashutosh 2026-04-01 0:10 ` Wang, X 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-03-28 7:31 UTC (permalink / raw) To: himanshu.girotra; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 144814 bytes --] == Series Details == Series: lib/intel_pat: add hardcoded PAT fallback for older kernels URL : https://patchwork.freedesktop.org/series/163963/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18232_full -> IGTPW_14870_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14870_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14870_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_14870/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14870_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk3/igt@i915_selftest@mock.html New tests --------- New tests have been introduced between CI_DRM_18232_full and IGTPW_14870_full: ### New IGT tests (12) ### * igt@kms_plane_multiple@2x-tiling-yf@pipe-a-hdmi-a-1-pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.11] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-a-hdmi-a-1-pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.20] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-a-hdmi-a-2-pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.31] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-a-hdmi-a-2-pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.14] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-b-hdmi-a-1-pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.35] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-b-hdmi-a-1-pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.13] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-b-hdmi-a-2-pipe-a-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.26] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-b-hdmi-a-2-pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.10] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-c-hdmi-a-1-pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.12] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-c-hdmi-a-1-pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.08] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-c-hdmi-a-2-pipe-a-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.31] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-c-hdmi-a-2-pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.14] s Known issues ------------ Here are the changes found in IGTPW_14870_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][2] ([i915#6230]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][3] ([i915#6230]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-16/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][4] ([i915#6230]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-9/igt@api_intel_bb@crc32.html * igt@device_reset@cold-reset-bound: - shard-tglu-1: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-4/igt@device_reset@cold-reset-bound.html * igt@drm_buddy@drm_buddy: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#15678]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-6/igt@drm_buddy@drm_buddy.html * igt@fbdev@pan: - shard-snb: NOTRUN -> [FAIL][8] ([i915#15792]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-snb6/igt@fbdev@pan.html * igt@gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][9] ([i915#13356]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-4/igt@gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-14/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][12] ([i915#9323]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-7/igt@gem_ccs@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-5/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][14] ([i915#12392] / [i915#13356]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-4/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-12/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#6335]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-5/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][17] ([i915#13356]) +1 other test incomplete [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk2/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][18] ([i915#1099]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-snb1/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-7/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#4525]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-5/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-out-fence: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#4525]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-9/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_big@single: - shard-mtlp: [PASS][22] -> [DMESG-FAIL][23] ([i915#15478]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-mtlp-7/igt@gem_exec_big@single.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-8/igt@gem_exec_big@single.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-16/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#3281]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#14544] / [i915#3281]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3281]) +4 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-wc-active.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3281]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-16/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#3281]) +6 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#7276]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s0: - shard-rkl: [PASS][31] -> [INCOMPLETE][32] ([i915#13356]) +1 other test incomplete [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-2/igt@gem_exec_suspend@basic-s0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@gem_exec_suspend@basic-s0.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#4613]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#4613]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][35] ([i915#4613]) +6 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk3/igt@gem_lmem_swapping@random-engines.html - shard-tglu: NOTRUN -> [SKIP][36] ([i915#4613]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-6/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][37] -> [INCOMPLETE][38] ([i915#5493]) +1 other test incomplete [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_madvise@dontneed-before-pwrite: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3282]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-12/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#284]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-7/igt@gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][41] ([i915#284]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-5/igt@gem_media_vme.html - shard-dg1: NOTRUN -> [SKIP][42] ([i915#284]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-16/igt@gem_media_vme.html - shard-tglu: NOTRUN -> [SKIP][43] ([i915#284]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-3/igt@gem_media_vme.html - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#284]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-3/igt@gem_media_vme.html * igt@gem_mmap@big-bo: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4083]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-19/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@basic-small-bo-tiledy: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4077]) +8 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-3/igt@gem_mmap_gtt@basic-small-bo-tiledy.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077]) +5 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-5/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@ptrace: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4077]) +6 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-14/igt@gem_mmap_gtt@ptrace.html * igt@gem_pwrite@basic-exhaustion: - shard-glk10: NOTRUN -> [WARN][49] ([i915#14702] / [i915#2658]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@fail-invalid-protected-context: - shard-rkl: [PASS][50] -> [SKIP][51] ([i915#4270]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-4/igt@gem_pxp@fail-invalid-protected-context.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4270]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4270]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-3/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_readwrite@beyond-eob: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3282]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@x-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#8428]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-1/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#5190] / [i915#8428]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-8/igt@gem_render_copy@yf-tiled.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#15656]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@gem_tiled_pread_basic@basic.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4079]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-8/igt@gem_tiled_pread_pwrite.html - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4079]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-18/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4079]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-6/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4879]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-18/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3297]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-6/igt@gem_userptr_blits@create-destroy-unsync.html - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3297]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-5/igt@gem_userptr_blits@create-destroy-unsync.html - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3297]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-17/igt@gem_userptr_blits@create-destroy-unsync.html - shard-tglu: NOTRUN -> [SKIP][65] ([i915#3297]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-4/igt@gem_userptr_blits@create-destroy-unsync.html - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3297]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#14544] / [i915#3297] / [i915#3323]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#3297] / [i915#4880]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-dg1: NOTRUN -> [SKIP][69] ([i915#3297] / [i915#4880]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu-1: NOTRUN -> [SKIP][70] ([i915#3297]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3281] / [i915#3297]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-6/igt@gem_userptr_blits@relocations.html - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3281] / [i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@gem_userptr_blits@relocations.html - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3281] / [i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-18/igt@gem_userptr_blits@relocations.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3281] / [i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-5/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#14544] / [i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_workarounds@suspend-resume-context: - shard-glk11: NOTRUN -> [INCOMPLETE][76] ([i915#13356]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk11/igt@gem_workarounds@suspend-resume-context.html * igt@gen7_exec_parse@batch-without-end: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#14544]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@batch-invalid-length: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#2856]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-5/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@batch-without-end: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#2527]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#2527]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-19/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu-1: NOTRUN -> [SKIP][81] ([i915#2527] / [i915#2856]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#2527] / [i915#2856]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-3/igt@gen9_exec_parse@unaligned-jump.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#2856]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-8/igt@gen9_exec_parse@unaligned-jump.html - shard-rkl: NOTRUN -> [SKIP][84] ([i915#14544] / [i915#2527]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_drm_fdinfo@isolation@rcs0: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#14073]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-16/igt@i915_drm_fdinfo@isolation@rcs0.html * igt@i915_drm_fdinfo@virtual-busy-hang-all: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#14118]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-18/igt@i915_drm_fdinfo@virtual-busy-hang-all.html * igt@i915_module_load@resize-bar: - shard-dg2: [PASS][87] -> [DMESG-WARN][88] ([i915#14545]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg2-8/igt@i915_module_load@resize-bar.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-1/igt@i915_module_load@resize-bar.html - shard-rkl: NOTRUN -> [SKIP][89] ([i915#6412]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-5/igt@i915_module_load@resize-bar.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#14498]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@system-suspend: - shard-glk: [PASS][91] -> [INCOMPLETE][92] ([i915#13356]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-glk2/igt@i915_pm_rpm@system-suspend.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk6/igt@i915_pm_rpm@system-suspend.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#6245]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-18/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#14544] / [i915#5723]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-glk: [PASS][95] -> [INCOMPLETE][96] ([i915#4817]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-glk1/igt@i915_suspend@fence-restore-tiled2untiled.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk1/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#5190]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4212]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-18/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#4212]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-5/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4212]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-6/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#3555]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg2: NOTRUN -> [SKIP][102] ([i915#9531]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][103] ([i915#9531]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][104] ([i915#9531]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-13/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][105] ([i915#9531]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/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][107] -> [FAIL][108] ([i915#5956]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#5286]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-16/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#5286]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-2/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#5286]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#3638]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][114] ([i915#3638]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-12/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#3828]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5190]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-7/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#5190]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][118] +20 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-glk11: NOTRUN -> [SKIP][120] +88 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk11/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#12313]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#14098] / [i915#6095]) +50 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][123] +354 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#6095]) +19 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#12313] / [i915#14544]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#10307] / [i915#6095]) +86 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#6095]) +73 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#6095]) +54 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#12313]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#14544] / [i915#6095]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#6095]) +193 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-19/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#6095]) +29 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#6095]) +17 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#3742]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][136] +7 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-8/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#11151] / [i915#7828]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-16/igt@kms_chamelium_frames@dp-crc-single.html - shard-tglu: NOTRUN -> [SKIP][138] ([i915#11151] / [i915#7828]) +5 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-9/igt@kms_chamelium_frames@dp-crc-single.html - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#11151] / [i915#7828]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-1/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#11151] / [i915#7828]) +6 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html - shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#11151] / [i915#7828]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-5/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#11151] / [i915#14544] / [i915#7828]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#12655] / [i915#3555]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-8/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#15865]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#15330]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-19/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#15330]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-dg2: NOTRUN -> [SKIP][148] ([i915#15330]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][149] ([i915#15330]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][150] ([i915#15330]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#14544] / [i915#15865]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#15865]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-8/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent-hdcp14: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#15865]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#13049]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [PASS][155] -> [FAIL][156] ([i915#13566]) +1 other test fail [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-256x85.html - shard-rkl: [PASS][157] -> [FAIL][158] ([i915#13566]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][159] ([i915#13566]) +1 other test fail [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#3555]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#13049]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-10/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#13049]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-16/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-tglu-1: NOTRUN -> [FAIL][163] ([i915#13566]) +1 other test fail [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3555]) +7 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3555]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#3555]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8814]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-32x32.html - shard-rkl: NOTRUN -> [SKIP][168] ([i915#14544] / [i915#3555]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#13049]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][170] ([i915#12358] / [i915#14152] / [i915#7882]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk3/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][171] ([i915#12358] / [i915#14152]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk3/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#4103]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][173] ([i915#15804]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#4103]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#9723]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#13691]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-1/igt@kms_display_modes@extended-mode-basic.html - shard-rkl: NOTRUN -> [SKIP][177] ([i915#13691]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html - shard-dg1: NOTRUN -> [SKIP][178] ([i915#13691]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-19/igt@kms_display_modes@extended-mode-basic.html - shard-tglu: NOTRUN -> [SKIP][179] ([i915#13691]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-5/igt@kms_display_modes@extended-mode-basic.html - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#13691]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-4/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#13748]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-4/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#3840]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#3840]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-14/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#3840] / [i915#9053]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#1839]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-7/igt@kms_feature_discovery@display-2x.html - shard-rkl: NOTRUN -> [SKIP][187] ([i915#1839]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-2/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][188] ([i915#1839]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-16/igt@kms_feature_discovery@display-2x.html - shard-tglu: NOTRUN -> [SKIP][189] ([i915#1839]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-9/igt@kms_feature_discovery@display-2x.html - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#1839]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-1/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#9337]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-5/igt@kms_feature_discovery@dp-mst.html - shard-rkl: NOTRUN -> [SKIP][192] ([i915#9337]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][193] ([i915#9337]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-13/igt@kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][194] ([i915#9337]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-8/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#9337]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-7/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#658]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-6/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#4881]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-3/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#3637] / [i915#9934]) +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-9/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#9934]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-7/igt@kms_flip@2x-flip-vs-dpms-on-nop.html - shard-dg1: NOTRUN -> [SKIP][200] ([i915#9934]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-16/igt@kms_flip@2x-flip-vs-dpms-on-nop.html - shard-tglu: NOTRUN -> [SKIP][201] ([i915#9934]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms-on-nop.html - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#9934]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#8381]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-8/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#14544] / [i915#9934]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-flip-vs-panning: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#3637] / [i915#9934]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3637] / [i915#9934]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html - shard-glk: NOTRUN -> [INCOMPLETE][207] ([i915#12314] / [i915#12745] / [i915#4839]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html - shard-snb: NOTRUN -> [TIMEOUT][208] ([i915#14033] / [i915#14350]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][209] ([i915#12314] / [i915#4839]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [TIMEOUT][210] ([i915#14033]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#9934]) +9 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-2/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: NOTRUN -> [INCOMPLETE][212] ([i915#6113]) +1 other test incomplete [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-4/igt@kms_flip@flip-vs-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][213] ([i915#12745] / [i915#4839]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk9/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][214] ([i915#12745]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk9/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#15643]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#14544] / [i915#15643]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#15643]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#15643]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#15643]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#15643]) +2 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#15643] / [i915#5190]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt: - shard-dg2: [PASS][223] -> [FAIL][224] ([i915#15389]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#5354]) +15 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#8708]) +11 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html - shard-rkl: NOTRUN -> [SKIP][227] ([i915#14544] / [i915#1825]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#15104]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html - shard-rkl: NOTRUN -> [SKIP][229] ([i915#15102]) +2 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#15102]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-glk10: NOTRUN -> [SKIP][231] +238 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-tglu-1: NOTRUN -> [SKIP][232] +29 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#1825]) +27 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-snb: NOTRUN -> [SKIP][234] +129 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-snb4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html - shard-dg1: NOTRUN -> [SKIP][235] ([i915#15102] / [i915#3458]) +8 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#9766]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][237] ([i915#9766]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-16/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][238] ([i915#9766]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][239] ([i915#9766]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#15104]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#15102] / [i915#3023]) +19 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#8708]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#8708]) +10 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#15102]) +21 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][246] +42 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#1825]) +13 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#15102] / [i915#3458]) +7 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#15102]) +6 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8228]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-2/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#1187] / [i915#12713]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html - shard-dg2: NOTRUN -> [SKIP][252] ([i915#12713]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-7/igt@kms_hdr@brightness-with-hdr.html - shard-rkl: NOTRUN -> [SKIP][253] ([i915#12713]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-2/igt@kms_hdr@brightness-with-hdr.html - shard-dg1: NOTRUN -> [SKIP][254] ([i915#12713]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-16/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][255] ([i915#12713]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-9/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-swap: - shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-rkl: [PASS][257] -> [SKIP][258] ([i915#3555] / [i915#8228]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-1/igt@kms_hdr@static-toggle.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-5/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-19/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#8228]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#15460]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-9/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#15459]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#15460]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-8/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][264] ([i915#15460]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-4/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][265] ([i915#15460]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-17/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#15460]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-8/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#15458]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#15458]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-9/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#15458]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][270] ([i915#15458]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][271] ([i915#15458]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][272] ([i915#15458]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-12/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#15638] / [i915#15722]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#15815]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#6301]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-3/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-dg1: NOTRUN -> [SKIP][276] +22 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-13/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html - shard-mtlp: NOTRUN -> [SKIP][277] +7 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-1/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][278] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#14544] / [i915#14712]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#15709]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#15709]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#15709]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-9/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html - shard-dg1: NOTRUN -> [SKIP][283] ([i915#15709]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-16/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#15608]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#14544] / [i915#15709]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-tglu: NOTRUN -> [SKIP][286] ([i915#15608]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#15709]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#15608]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#15709]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][290] ([i915#13026]) +1 other test incomplete [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk8/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk10: NOTRUN -> [FAIL][291] ([i915#10647] / [i915#12169]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [FAIL][292] ([i915#10647]) +1 other test fail [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1.html * igt@kms_plane_cursor@overlay@pipe-c-edp-1-size-64: - shard-mtlp: [PASS][293] -> [FAIL][294] ([i915#15733]) +2 other tests fail [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-mtlp-3/igt@kms_plane_cursor@overlay@pipe-c-edp-1-size-64.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-5/igt@kms_plane_cursor@overlay@pipe-c-edp-1-size-64.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#8821]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#3555] / [i915#8821]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-6/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@2x-tiling-4: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#13958]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-17/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-none: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#13958]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-none.html - shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#13958]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#14259]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#15887] / [i915#9809]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - shard-dg2: NOTRUN -> [SKIP][302] ([i915#13046] / [i915#5354] / [i915#9423]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#15329]) +4 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#15329]) +3 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#15329]) +4 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#5354]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][307] ([i915#9685]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-12/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#8430]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-3/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][309] -> [SKIP][310] ([i915#15073]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [PASS][311] -> [SKIP][312] ([i915#15073]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg1-19/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][313] -> [SKIP][314] ([i915#15073]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#15073]) +2 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#15073]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][317] ([i915#15073]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@package-g7: - shard-tglu: NOTRUN -> [SKIP][318] ([i915#15403]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-9/igt@kms_pm_rpm@package-g7.html - shard-mtlp: NOTRUN -> [SKIP][319] ([i915#15403]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-7/igt@kms_pm_rpm@package-g7.html - shard-dg2: NOTRUN -> [SKIP][320] ([i915#15403]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-3/igt@kms_pm_rpm@package-g7.html - shard-rkl: NOTRUN -> [SKIP][321] ([i915#15403]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@kms_pm_rpm@package-g7.html - shard-dg1: NOTRUN -> [SKIP][322] ([i915#15403]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-12/igt@kms_pm_rpm@package-g7.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][323] ([i915#6524]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-9/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#11520] / [i915#14544]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][325] ([i915#11520]) +6 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#12316]) +2 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][327] ([i915#11520]) +7 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk9/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][328] ([i915#11520]) +7 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html - shard-glk11: NOTRUN -> [SKIP][329] ([i915#11520]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk11/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#11520]) +2 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#11520]) +4 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-glk10: NOTRUN -> [SKIP][332] ([i915#11520]) +7 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk10/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][333] ([i915#11520]) +3 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-snb5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][334] ([i915#11520]) +5 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-19/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#9683]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-render: - shard-dg1: NOTRUN -> [SKIP][336] ([i915#1072] / [i915#9732]) +13 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-19/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr-sprite-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#1072] / [i915#9732]) +11 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-6/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html * igt@kms_psr@fbc-psr-sprite-render: - shard-mtlp: NOTRUN -> [SKIP][338] ([i915#9688]) +11 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-7/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][339] ([i915#9732]) +17 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-9/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#1072] / [i915#9732]) +20 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@kms_psr@psr2-sprite-mmap-cpu.html - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#9732]) +10 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#9685]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-10/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk11: NOTRUN -> [INCOMPLETE][344] ([i915#15492]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk11/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][345] ([i915#12755] / [i915#15867]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#5289]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#5289]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#3555]) +7 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][349] ([i915#13179]) +1 other test abort [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-snb4/igt@kms_selftest@drm_framebuffer.html - shard-tglu: NOTRUN -> [ABORT][350] ([i915#13179]) +1 other test abort [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-6/igt@kms_selftest@drm_framebuffer.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][351] ([i915#10959]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#8623]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: NOTRUN -> [ABORT][353] ([i915#15132]) +1 other test abort [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-1/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][354] ([i915#12276]) +3 other tests incomplete [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk9/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][355] ([i915#9906]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-6/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flipline: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#15243] / [i915#3555]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-3/igt@kms_vrr@flipline.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#9906]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][358] ([i915#9906]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#9906]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-dg1: NOTRUN -> [SKIP][360] ([i915#9906]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-mtlp: NOTRUN -> [SKIP][361] ([i915#8808] / [i915#9906]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-5/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#2436]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][363] -> [FAIL][364] ([i915#4349]) +4 other tests fail [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg1: NOTRUN -> [SKIP][365] ([i915#14121]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-14/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][366] ([i915#3708] / [i915#4077]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-8/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][367] ([i915#3708] / [i915#4077]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html - shard-dg1: NOTRUN -> [SKIP][368] ([i915#3708] / [i915#4077]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-14/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][369] ([i915#3708]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg1: NOTRUN -> [SKIP][370] ([i915#3708]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-18/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][371] ([i915#9917]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-6/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][372] ([i915#12910]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-mtlp: NOTRUN -> [FAIL][373] ([i915#12910]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-rkl: NOTRUN -> [SKIP][374] ([i915#9917]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg1: NOTRUN -> [SKIP][375] ([i915#9917]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-17/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_exec_big@single: - shard-tglu: [FAIL][376] ([i915#15816]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-tglu-6/igt@gem_exec_big@single.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-3/igt@gem_exec_big@single.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [DMESG-WARN][378] ([i915#15478]) -> [PASS][379] +1 other test pass [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-8/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_softpin@noreloc-s3: - shard-glk: [INCOMPLETE][380] ([i915#13809]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-glk8/igt@gem_softpin@noreloc-s3.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-glk5/igt@gem_softpin@noreloc-s3.html * igt@i915_pm_rpm@system-suspend: - shard-rkl: [INCOMPLETE][382] ([i915#13356]) -> [PASS][383] +2 other tests pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@i915_pm_rpm@system-suspend.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-5/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][384] ([i915#13729] / [i915#13821]) -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-snb1/igt@i915_pm_rps@reset.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-snb7/igt@i915_pm_rps@reset.html * igt@i915_selftest@live: - shard-mtlp: [DMESG-FAIL][386] ([i915#12061] / [i915#15560]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-mtlp-4/igt@i915_selftest@live.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-4/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [DMESG-FAIL][388] ([i915#12964]) -> [PASS][389] +1 other test pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-2/igt@i915_selftest@live@gt_pm.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][390] ([i915#12061]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-mtlp-4/igt@i915_selftest@live@workarounds.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-4/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@addfb25-4-tiled: - shard-dg1: [DMESG-WARN][392] ([i915#4423]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg1-19/igt@kms_addfb_basic@addfb25-4-tiled.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-17/igt@kms_addfb_basic@addfb25-4-tiled.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2: [FAIL][394] ([i915#5956]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-mtlp: [FAIL][396] ([i915#5956]) -> [PASS][397] +1 other test pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-mtlp-4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_color@deep-color: - shard-rkl: [SKIP][398] ([i915#12655] / [i915#3555]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-2/igt@kms_color@deep-color.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_color@deep-color.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][400] ([i915#13566]) -> [PASS][401] +6 other tests pass [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-tglu: [FAIL][402] ([i915#13566]) -> [PASS][403] +9 other tests pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: [INCOMPLETE][404] ([i915#9878]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-4/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1: - shard-snb: [TIMEOUT][406] ([i915#14033]) -> [PASS][407] +1 other test pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-suspend: - shard-snb: [DMESG-WARN][408] ([i915#13899]) -> [PASS][409] +1 other test pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-snb1/igt@kms_flip@flip-vs-suspend.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-snb1/igt@kms_flip@flip-vs-suspend.html * igt@kms_force_connector_basic@force-edid: - shard-mtlp: [SKIP][410] ([i915#15672]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-4/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2: [FAIL][412] ([i915#15389] / [i915#6880]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-suspend.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: [SKIP][414] ([i915#3555] / [i915#8228]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-8/igt@kms_hdr@invalid-metadata-sizes.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-rkl: [INCOMPLETE][416] ([i915#14412]) -> [PASS][417] +1 other test pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [SKIP][418] ([i915#6953]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg1: [SKIP][420] ([i915#15073]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg1-14/igt@kms_pm_rpm@dpms-non-lpsp.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-17/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][422] ([i915#15073]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [SKIP][424] ([i915#15073]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_setmode@basic: - shard-tglu: [FAIL][426] ([i915#15106]) -> [PASS][427] +2 other tests pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-tglu-6/igt@kms_setmode@basic.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-4/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-b-hdmi-a-3: - shard-dg2: [FAIL][428] ([i915#15106]) -> [PASS][429] +2 other tests pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg2-7/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-1/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html * igt@kms_vblank@ts-continuation-suspend: - shard-rkl: [INCOMPLETE][430] ([i915#12276]) -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-4/igt@kms_vblank@ts-continuation-suspend.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@kms_vblank@ts-continuation-suspend.html * igt@perf_pmu@busy-double-start@vecs0: - shard-mtlp: [FAIL][432] ([i915#4349]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-mtlp-1/igt@perf_pmu@busy-double-start@vecs0.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-mtlp-6/igt@perf_pmu@busy-double-start@vecs0.html #### Warnings #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: [SKIP][434] ([i915#14544] / [i915#8411]) -> [SKIP][435] ([i915#8411]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-2/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: [SKIP][436] ([i915#11078]) -> [SKIP][437] ([i915#11078] / [i915#14544]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_ctx_sseu@engines: - shard-rkl: [SKIP][438] ([i915#280]) -> [SKIP][439] ([i915#14544] / [i915#280]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-8/igt@gem_ctx_sseu@engines.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: [SKIP][440] ([i915#14544] / [i915#280]) -> [SKIP][441] ([i915#280]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-2/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: [SKIP][442] ([i915#4525]) -> [SKIP][443] ([i915#14544] / [i915#4525]) +1 other test skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-7/igt@gem_exec_balancer@parallel-ordering.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: [SKIP][444] ([i915#14544] / [i915#6334]) -> [SKIP][445] ([i915#6334]) +1 other test skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: [SKIP][446] ([i915#14544] / [i915#3281]) -> [SKIP][447] ([i915#3281]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@gem_exec_reloc@basic-scanout.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-2/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-write-cpu: - shard-rkl: [SKIP][448] ([i915#3281]) -> [SKIP][449] ([i915#14544] / [i915#3281]) +3 other tests skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-2/igt@gem_exec_reloc@basic-write-cpu.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@gem_exec_reloc@basic-write-cpu.html * igt@gem_lmem_swapping@random: - shard-rkl: [SKIP][450] ([i915#14544] / [i915#4613]) -> [SKIP][451] ([i915#4613]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@gem_lmem_swapping@random.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: [SKIP][452] ([i915#4613]) -> [SKIP][453] ([i915#14544] / [i915#4613]) +3 other tests skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-8/igt@gem_lmem_swapping@random-engines.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html * igt@gem_pread@display: - shard-rkl: [SKIP][454] ([i915#3282]) -> [SKIP][455] ([i915#14544] / [i915#3282]) +2 other tests skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-3/igt@gem_pread@display.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@gem_pread@display.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: [SKIP][456] ([i915#14544] / [i915#3297]) -> [SKIP][457] ([i915#3297]) +1 other test skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-5/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][458] ([i915#3282] / [i915#3297]) -> [SKIP][459] ([i915#14544] / [i915#3282] / [i915#3297]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-5/igt@gem_userptr_blits@forbidden-operations.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: [SKIP][460] ([i915#14544] / [i915#2527]) -> [SKIP][461] ([i915#2527]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-4/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: [SKIP][462] ([i915#2527]) -> [SKIP][463] ([i915#14544] / [i915#2527]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-4/igt@gen9_exec_parse@secure-batches.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html * igt@i915_query@hwconfig_table: - shard-rkl: [SKIP][464] ([i915#6245]) -> [SKIP][465] ([i915#14544] / [i915#6245]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-5/igt@i915_query@hwconfig_table.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@i915_query@hwconfig_table.html * igt@intel_hwmon@hwmon-read: - shard-rkl: [SKIP][466] ([i915#7707]) -> [SKIP][467] ([i915#14544] / [i915#7707]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-4/igt@intel_hwmon@hwmon-read.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@intel_hwmon@hwmon-read.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: [SKIP][468] ([i915#14544] / [i915#1769] / [i915#3555]) -> [SKIP][469] ([i915#1769] / [i915#3555]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: [SKIP][470] ([i915#5286]) -> [SKIP][471] ([i915#14544] / [i915#5286]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-8/igt@kms_big_fb@4-tiled-addfb.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: [SKIP][472] ([i915#3638]) -> [SKIP][473] ([i915#14544] / [i915#3638]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-270.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-rkl: [SKIP][474] ([i915#14544]) -> [SKIP][475] +3 other tests skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][476] -> [SKIP][477] ([i915#14544]) +10 other tests skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][478] ([i915#14544] / [i915#6095]) -> [SKIP][479] ([i915#6095]) +1 other test skip [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][480] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][481] ([i915#14098] / [i915#6095]) +2 other tests skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: [SKIP][482] ([i915#12313]) -> [SKIP][483] ([i915#12313] / [i915#14544]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][484] ([i915#6095]) -> [SKIP][485] ([i915#14544] / [i915#6095]) +8 other tests skip [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][486] ([i915#14098] / [i915#6095]) -> [SKIP][487] ([i915#14098] / [i915#14544] / [i915#6095]) +11 other tests skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: [SKIP][488] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][489] ([i915#11151] / [i915#7828]) +3 other tests skip [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: [SKIP][490] ([i915#11151] / [i915#7828]) -> [SKIP][491] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: [SKIP][492] ([i915#15865]) -> [SKIP][493] ([i915#14544] / [i915#15865]) +1 other test skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][494] ([i915#14544] / [i915#15865]) -> [SKIP][495] ([i915#15865]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_content_protection@type1.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: [SKIP][496] ([i915#13049]) -> [SKIP][497] ([i915#13049] / [i915#14544]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: [SKIP][498] ([i915#9723]) -> [SKIP][499] ([i915#14544] / [i915#9723]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: [SKIP][500] ([i915#3555] / [i915#3840]) -> [SKIP][501] ([i915#14544] / [i915#3555] / [i915#3840]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][502] ([i915#14544] / [i915#3955]) -> [SKIP][503] ([i915#3955]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@psr2: - shard-rkl: [SKIP][504] ([i915#658]) -> [SKIP][505] ([i915#14544] / [i915#658]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-2/igt@kms_feature_discovery@psr2.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-rkl: [SKIP][506] ([i915#14544] / [i915#9934]) -> [SKIP][507] ([i915#9934]) +2 other tests skip [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: [SKIP][508] ([i915#9934]) -> [SKIP][509] ([i915#14544] / [i915#9934]) +4 other tests skip [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: [SKIP][510] ([i915#14544] / [i915#15643]) -> [SKIP][511] ([i915#15643]) +1 other test skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-rkl: [SKIP][512] ([i915#15643]) -> [SKIP][513] ([i915#14544] / [i915#15643]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][514] ([i915#1825]) -> [SKIP][515] ([i915#14544] / [i915#1825]) +17 other tests skip [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt: - shard-rkl: [SKIP][516] ([i915#15102]) -> [SKIP][517] ([i915#14544] / [i915#15102]) +1 other test skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][518] ([i915#14544] / [i915#1825]) -> [SKIP][519] ([i915#1825]) +6 other tests skip [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-dg1: [SKIP][520] ([i915#4423] / [i915#8708]) -> [SKIP][521] ([i915#8708]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt: - shard-rkl: [SKIP][522] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][523] ([i915#15102] / [i915#3023]) +4 other tests skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-rkl: [SKIP][524] ([i915#14544] / [i915#15102]) -> [SKIP][525] ([i915#15102]) +1 other test skip [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][526] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][527] ([i915#15102] / [i915#3458]) +3 other tests skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][528] ([i915#15102] / [i915#3023]) -> [SKIP][529] ([i915#14544] / [i915#15102] / [i915#3023]) +10 other tests skip [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_joiner@basic-max-non-joiner: - shard-rkl: [SKIP][530] ([i915#13688]) -> [SKIP][531] ([i915#13688] / [i915#14544]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-1/igt@kms_joiner@basic-max-non-joiner.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: [SKIP][532] ([i915#14544] / [i915#15638] / [i915#15722]) -> [SKIP][533] ([i915#15638] / [i915#15722]) [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: [SKIP][534] ([i915#15329]) -> [SKIP][535] ([i915#14544] / [i915#15329]) +3 other tests skip [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: [SKIP][536] ([i915#12343]) -> [SKIP][537] ([i915#12343] / [i915#14544]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-1/igt@kms_pm_backlight@brightness-with-dpms.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [SKIP][538] ([i915#15128]) -> [FAIL][539] ([i915#15752]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][540] ([i915#15739]) -> [SKIP][541] ([i915#15128]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][542] ([i915#9340]) -> [SKIP][543] ([i915#3828]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@cursor: - shard-dg1: [SKIP][544] ([i915#4077] / [i915#4423]) -> [SKIP][545] ([i915#4077]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg1-17/igt@kms_pm_rpm@cursor.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-14/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][546] ([i915#15073]) -> [SKIP][547] ([i915#14544] / [i915#15073]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: [SKIP][548] ([i915#15073] / [i915#4423]) -> [SKIP][549] ([i915#15073]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: [SKIP][550] ([i915#11520]) -> [SKIP][551] ([i915#11520] / [i915#14544]) +3 other tests skip [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-rkl: [SKIP][552] ([i915#11520] / [i915#14544]) -> [SKIP][553] ([i915#11520]) +1 other test skip [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: [SKIP][554] ([i915#9683]) -> [SKIP][555] ([i915#14544] / [i915#9683]) +1 other test skip [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-primary-mmap-cpu: - shard-rkl: [SKIP][556] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][557] ([i915#1072] / [i915#9732]) +5 other tests skip [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@kms_psr@fbc-pr-primary-mmap-cpu.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-3/igt@kms_psr@fbc-pr-primary-mmap-cpu.html * igt@kms_psr@pr-sprite-blt: - shard-dg1: [SKIP][558] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][559] ([i915#1072] / [i915#9732]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-dg1-17/igt@kms_psr@pr-sprite-blt.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-dg1-14/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: [SKIP][560] ([i915#1072] / [i915#9732]) -> [SKIP][561] ([i915#1072] / [i915#14544] / [i915#9732]) +9 other tests skip [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-2/igt@kms_psr@psr-cursor-plane-move.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: [SKIP][562] ([i915#9685]) -> [SKIP][563] ([i915#14544] / [i915#9685]) [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: [SKIP][564] ([i915#5289]) -> [SKIP][565] ([i915#14544] / [i915#5289]) [564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: [SKIP][566] ([i915#3555]) -> [SKIP][567] ([i915#14544] / [i915#3555]) +2 other tests skip [566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-2/igt@kms_setmode@basic-clone-single-crtc.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-rkl: [SKIP][568] ([i915#8623]) -> [SKIP][569] ([i915#14544] / [i915#8623]) [568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@lobf: - shard-rkl: [SKIP][570] ([i915#11920]) -> [SKIP][571] ([i915#11920] / [i915#14544]) [570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-4/igt@kms_vrr@lobf.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-rkl: [SKIP][572] ([i915#9906]) -> [SKIP][573] ([i915#14544] / [i915#9906]) [572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-8/igt@kms_vrr@max-min.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@kms_vrr@max-min.html * igt@perf@mi-rpc: - shard-rkl: [SKIP][574] ([i915#14544] / [i915#2434]) -> [SKIP][575] ([i915#2434]) [574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-6/igt@perf@mi-rpc.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-5/igt@perf@mi-rpc.html * igt@prime_vgem@basic-read: - shard-rkl: [SKIP][576] ([i915#3291] / [i915#3708]) -> [SKIP][577] ([i915#14544] / [i915#3291] / [i915#3708]) [576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-5/igt@prime_vgem@basic-read.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-write-hang: - shard-rkl: [SKIP][578] ([i915#3708]) -> [SKIP][579] ([i915#14544] / [i915#3708]) [578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-3/igt@prime_vgem@fence-write-hang.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: [SKIP][580] ([i915#9917]) -> [SKIP][581] ([i915#14544] / [i915#9917]) [580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18232/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-on.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [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#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [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#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [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#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821 [i915#13899]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13899 [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#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350 [i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [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#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [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#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752 [i915#15792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15792 [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15887 [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#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [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#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [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#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [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#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [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#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [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#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [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#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [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#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [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#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [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_8834 -> IGTPW_14870 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18232: 0a7844908d3616b88a7887704eb6dfa0d315be1b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14870: 944293f093a579d387e2f6566bd32dac1c9ff9bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8834: 8834 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14870/index.html [-- Attachment #2: Type: text/html, Size: 193850 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t] lib/intel_pat: add hardcoded PAT fallback for older kernels 2026-03-27 5:22 [PATCH i-g-t] lib/intel_pat: add hardcoded PAT fallback for older kernels himanshu.girotra ` (4 preceding siblings ...) 2026-03-28 7:31 ` ✗ i915.CI.Full: failure " Patchwork @ 2026-03-31 22:56 ` Dixit, Ashutosh 2026-03-31 23:06 ` Dixit, Ashutosh 2026-04-01 0:10 ` Wang, X 6 siblings, 1 reply; 9+ messages in thread From: Dixit, Ashutosh @ 2026-03-31 22:56 UTC (permalink / raw) To: himanshu.girotra; +Cc: igt-dev, matthew.d.roper, francois.dugast, matthew.auld On Thu, 26 Mar 2026 22:22:12 -0700, himanshu.girotra@intel.com wrote: > > From: Himanshu Girotra <himanshu.girotra@intel.com> > > When IGT runs on kernels that lack the gt0/pat_sw_config debugfs entry > (commit "drm/xe: expose PAT software config to debugfs"), the PAT cache > is NULL and intel_get_pat_idx() hits a fatal assertion. This breaks > basic tests like xe_exec_basic on stock distro kernels (e.g. Ubuntu > 25.10). > > Add xe_pat_fallback() with hardcoded PAT indices matching the kernel's > xe_pat_init_early() for platforms up to Crescent Island (xe3p XPC). > When the debugfs is unavailable, the fallback provides correct values > instead of crashing. Newer platforms (xe3p LPG and beyond) are not > covered because their kernel support arrived after the debugfs entry > was already in place. > > Cc: Matthew Auld <matthew.auld@intel.com> > Cc: Matt Roper <matthew.d.roper@intel.com> > Cc: Francois Dugast <francois.dugast@intel.com> > Signed-off-by: Himanshu Girotra <himanshu.girotra@intel.com> > --- > lib/intel_pat.c | 76 ++++++++++++++++++++++++++++++++++++++++++++++--- > 1 file changed, 72 insertions(+), 4 deletions(-) > > diff --git a/lib/intel_pat.c b/lib/intel_pat.c > index b202a6241..71633b314 100644 > --- a/lib/intel_pat.c > +++ b/lib/intel_pat.c > @@ -97,6 +97,62 @@ int32_t xe_get_pat_sw_config(int drm_fd, struct intel_pat_cache *xe_pat_cache) > return parsed; > } > > +/* > + * Hardcoded PAT indices for Xe platforms, used as a fallback when the > + * kernel doesn't expose gt0/pat_sw_config in debugfs. > + * > + * Covers platforms up to Crescent Island (xe3p XPC) that have Xe driver > + * support in current stable kernels. Anything newer must run a kernel > + * that provides the pat_sw_config debugfs entry. > + * > + * TODO: drop this fallback once stable kernels ship with pat_sw_config. > + */ > +static bool xe_pat_fallback(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)) { > + /* Xe3p XPC (GFX ver 35.11): no WT, no compression */ > + pat->uc = 3; > + pat->wt = 3; /* No WT on XPC; use UC */ > + pat->wb = 2; > + pat->max_index = 31; > + } else if (intel_get_device_info(dev_id)->graphics_ver == 30 || > + intel_get_device_info(dev_id)->graphics_ver == 20) { > + /* Xe2 / Xe3: GFX ver 20 / 30 */ > + pat->uc = 3; > + pat->wt = 15; > + pat->wb = 2; > + pat->uc_comp = 12; > + pat->max_index = 31; > + > + /* Wa_16023588340: CLOS3 entries at end of table are unusable */ > + if (intel_graphics_ver(dev_id) == IP_VER(20, 1)) > + pat->max_index -= 4; > + } else if (IS_METEORLAKE(dev_id)) { > + pat->uc = 2; > + pat->wt = 1; > + pat->wb = 3; > + pat->max_index = 3; > + } else if (IS_PONTEVECCHIO(dev_id)) { > + pat->uc = 0; > + pat->wt = 2; > + pat->wb = 3; > + pat->max_index = 7; > + } else if (IS_DG2(dev_id) || intel_graphics_ver(dev_id) <= IP_VER(12, 10)) { > + pat->uc = 3; > + pat->wt = 2; > + pat->wb = 0; > + pat->max_index = 3; > + } else { > + return false; > + } > + > + return true; > +} > + > static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat) > { > uint16_t dev_id; > @@ -105,14 +161,26 @@ static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat) > * For Xe, use the PAT cache stored in struct xe_device. > * xe_device_get() populates the cache while still root; forked > * children that inherit the xe_device can use it post-drop_root(). > + * > + * Fall back to hardcoded values when the kernel lacks the > + * pat_sw_config debugfs. Platforms newer than Crescent Island > + * must have the debugfs available. > */ > if (is_xe_device(fd)) { > struct xe_device *xe_dev = xe_device_get(fd); > > - igt_assert_f(xe_dev->pat_cache, > - "PAT sw_config not available -- " > - "debugfs not accessible (missing root or not mounted?)\n"); > - *pat = *xe_dev->pat_cache; > + if (xe_dev->pat_cache) { > + *pat = *xe_dev->pat_cache; > + } else if (xe_pat_fallback(fd, pat)) { Shouldn't this be "else if (!xe_pat_fallback(fd, pat)"? Or return 0 from xe_pat_fallback() on success? > + igt_info("PAT sw_config debugfs not available, " > + "using hardcoded fallback\n"); > + } else { > + igt_assert_f(false, > + "PAT sw_config not available and no " > + "hardcoded fallback for this platform -- " > + "kernel with 'drm/xe: expose PAT software " > + "config to debugfs' required\n"); > + } > return; > } > > -- > 2.50.1 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t] lib/intel_pat: add hardcoded PAT fallback for older kernels 2026-03-31 22:56 ` [PATCH i-g-t] " Dixit, Ashutosh @ 2026-03-31 23:06 ` Dixit, Ashutosh 0 siblings, 0 replies; 9+ messages in thread From: Dixit, Ashutosh @ 2026-03-31 23:06 UTC (permalink / raw) To: himanshu.girotra; +Cc: igt-dev, matthew.d.roper, francois.dugast, matthew.auld On Tue, 31 Mar 2026 15:56:57 -0700, Dixit, Ashutosh wrote: > > > @@ -105,14 +161,26 @@ static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat) > > * For Xe, use the PAT cache stored in struct xe_device. > > * xe_device_get() populates the cache while still root; forked > > * children that inherit the xe_device can use it post-drop_root(). > > + * > > + * Fall back to hardcoded values when the kernel lacks the > > + * pat_sw_config debugfs. Platforms newer than Crescent Island > > + * must have the debugfs available. > > */ > > if (is_xe_device(fd)) { > > struct xe_device *xe_dev = xe_device_get(fd); > > > > - igt_assert_f(xe_dev->pat_cache, > > - "PAT sw_config not available -- " > > - "debugfs not accessible (missing root or not mounted?)\n"); > > - *pat = *xe_dev->pat_cache; > > + if (xe_dev->pat_cache) { > > + *pat = *xe_dev->pat_cache; > > + } else if (xe_pat_fallback(fd, pat)) { > > Shouldn't this be "else if (!xe_pat_fallback(fd, pat)"? Or return 0 from > xe_pat_fallback() on success? Sorry, misread the code, please ignore, code is correct! ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t] lib/intel_pat: add hardcoded PAT fallback for older kernels 2026-03-27 5:22 [PATCH i-g-t] lib/intel_pat: add hardcoded PAT fallback for older kernels himanshu.girotra ` (5 preceding siblings ...) 2026-03-31 22:56 ` [PATCH i-g-t] " Dixit, Ashutosh @ 2026-04-01 0:10 ` Wang, X 6 siblings, 0 replies; 9+ messages in thread From: Wang, X @ 2026-04-01 0:10 UTC (permalink / raw) To: himanshu.girotra, igt-dev; +Cc: matthew.d.roper, francois.dugast, matthew.auld On 3/26/2026 22:22, himanshu.girotra@intel.com wrote: > From: Himanshu Girotra <himanshu.girotra@intel.com> > > When IGT runs on kernels that lack the gt0/pat_sw_config debugfs entry > (commit "drm/xe: expose PAT software config to debugfs"), the PAT cache > is NULL and intel_get_pat_idx() hits a fatal assertion. This breaks > basic tests like xe_exec_basic on stock distro kernels (e.g. Ubuntu > 25.10). > > Add xe_pat_fallback() with hardcoded PAT indices matching the kernel's > xe_pat_init_early() for platforms up to Crescent Island (xe3p XPC). > When the debugfs is unavailable, the fallback provides correct values > instead of crashing. Newer platforms (xe3p LPG and beyond) are not > covered because their kernel support arrived after the debugfs entry > was already in place. > > Cc: Matthew Auld <matthew.auld@intel.com> > Cc: Matt Roper <matthew.d.roper@intel.com> > Cc: Francois Dugast <francois.dugast@intel.com> > Signed-off-by: Himanshu Girotra <himanshu.girotra@intel.com> > --- > lib/intel_pat.c | 76 ++++++++++++++++++++++++++++++++++++++++++++++--- > 1 file changed, 72 insertions(+), 4 deletions(-) > > diff --git a/lib/intel_pat.c b/lib/intel_pat.c > index b202a6241..71633b314 100644 > --- a/lib/intel_pat.c > +++ b/lib/intel_pat.c > @@ -97,6 +97,62 @@ int32_t xe_get_pat_sw_config(int drm_fd, struct intel_pat_cache *xe_pat_cache) > return parsed; > } > > +/* > + * Hardcoded PAT indices for Xe platforms, used as a fallback when the > + * kernel doesn't expose gt0/pat_sw_config in debugfs. > + * > + * Covers platforms up to Crescent Island (xe3p XPC) that have Xe driver > + * support in current stable kernels. Anything newer must run a kernel > + * that provides the pat_sw_config debugfs entry. > + * > + * TODO: drop this fallback once stable kernels ship with pat_sw_config. > + */ > +static bool xe_pat_fallback(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)) { > + /* Xe3p XPC (GFX ver 35.11): no WT, no compression */ > + pat->uc = 3; > + pat->wt = 3; /* No WT on XPC; use UC */ > + pat->wb = 2; > + pat->max_index = 31; > + } else if (intel_get_device_info(dev_id)->graphics_ver == 30 || > + intel_get_device_info(dev_id)->graphics_ver == 20) { > + /* Xe2 / Xe3: GFX ver 20 / 30 */ > + pat->uc = 3; > + pat->wt = 15; > + pat->wb = 2; > + pat->uc_comp = 12; > + pat->max_index = 31; > + > + /* Wa_16023588340: CLOS3 entries at end of table are unusable */ > + if (intel_graphics_ver(dev_id) == IP_VER(20, 1)) > + pat->max_index -= 4; > + } else if (IS_METEORLAKE(dev_id)) { > + pat->uc = 2; > + pat->wt = 1; > + pat->wb = 3; > + pat->max_index = 3; > + } else if (IS_PONTEVECCHIO(dev_id)) { > + pat->uc = 0; > + pat->wt = 2; > + pat->wb = 3; > + pat->max_index = 7; > + } else if (IS_DG2(dev_id) || intel_graphics_ver(dev_id) <= IP_VER(12, 10)) { > + pat->uc = 3; > + pat->wt = 2; > + pat->wb = 0; > + pat->max_index = 3; > + } else { > + return false; > + } > + > + return true; > +} > + Since we've already hardcoded some things, essentially repeating parameters from the KMD, why don't we just copy the complete PAT table as well? This way, all tests for xe_pat's dependencies on the complete PAT table will pass smoothly. > static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat) > { > uint16_t dev_id; > @@ -105,14 +161,26 @@ static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat) > * For Xe, use the PAT cache stored in struct xe_device. > * xe_device_get() populates the cache while still root; forked > * children that inherit the xe_device can use it post-drop_root(). > + * > + * Fall back to hardcoded values when the kernel lacks the > + * pat_sw_config debugfs. Platforms newer than Crescent Island > + * must have the debugfs available. > */ > if (is_xe_device(fd)) { > struct xe_device *xe_dev = xe_device_get(fd); > > - igt_assert_f(xe_dev->pat_cache, > - "PAT sw_config not available -- " > - "debugfs not accessible (missing root or not mounted?)\n"); > - *pat = *xe_dev->pat_cache; > + if (xe_dev->pat_cache) { > + *pat = *xe_dev->pat_cache; > + } else if (xe_pat_fallback(fd, pat)) { > + igt_info("PAT sw_config debugfs not available, " > + "using hardcoded fallback\n"); > + } else { > + igt_assert_f(false, > + "PAT sw_config not available and no " > + "hardcoded fallback for this platform -- " > + "kernel with 'drm/xe: expose PAT software " > + "config to debugfs' required\n"); > + } > return; > } > ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-04-01 0:11 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-27 5:22 [PATCH i-g-t] lib/intel_pat: add hardcoded PAT fallback for older kernels himanshu.girotra 2026-03-27 6:28 ` ✓ i915.CI.BAT: success for " Patchwork 2026-03-27 6:32 ` ✓ Xe.CI.BAT: " Patchwork 2026-03-27 10:35 ` [PATCH i-g-t] " Matthew Auld 2026-03-27 22:07 ` ✓ Xe.CI.FULL: success for " Patchwork 2026-03-28 7:31 ` ✗ i915.CI.Full: failure " Patchwork 2026-03-31 22:56 ` [PATCH i-g-t] " Dixit, Ashutosh 2026-03-31 23:06 ` Dixit, Ashutosh 2026-04-01 0:10 ` Wang, X
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox