* [PATCH i-g-t 0/2] Add mocs tests
@ 2024-03-21 15:16 janga.rahul.kumar
2024-03-21 15:16 ` [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Extend gt test to check mocs entry janga.rahul.kumar
` (4 more replies)
0 siblings, 5 replies; 12+ messages in thread
From: janga.rahul.kumar @ 2024-03-21 15:16 UTC (permalink / raw)
To: igt-dev, ramadevi.gandi, janga.rahul.kumar; +Cc: matthew.d.roper
From: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
Add below mocs tests:
1. Test to read and dump mocs debugfs entry
2. Test to check mocs values retained over suspend/resume.
Below patch add mocs debugfs in kernel:
https://patchwork.freedesktop.org/patch/583858/
Janga Rahul Kumar (2):
tests/intel/xe_debugfs: Extend gt test to check mocs entry
tests/intel/xe_pm: Add mocs suspend resume test
tests/intel/xe_debugfs.c | 5 +++++
tests/intel/xe_pm.c | 43 ++++++++++++++++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
--
2.25.1
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Extend gt test to check mocs entry
2024-03-21 15:16 [PATCH i-g-t 0/2] Add mocs tests janga.rahul.kumar
@ 2024-03-21 15:16 ` janga.rahul.kumar
2024-03-22 21:18 ` Matt Roper
2024-03-21 15:16 ` [PATCH i-g-t 2/2] tests/intel/xe_pm: Add mocs suspend resume test janga.rahul.kumar
` (3 subsequent siblings)
4 siblings, 1 reply; 12+ messages in thread
From: janga.rahul.kumar @ 2024-03-21 15:16 UTC (permalink / raw)
To: igt-dev, ramadevi.gandi, janga.rahul.kumar; +Cc: matthew.d.roper
From: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
Read and dump mocs debugfs entry.
Cc: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
---
tests/intel/xe_debugfs.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c
index c5a586e9b..ba12f6ccc 100644
--- a/tests/intel/xe_debugfs.c
+++ b/tests/intel/xe_debugfs.c
@@ -158,6 +158,7 @@ test_gt(int fd, int gt_id)
"topology",
"sa_info",
"hw_engines",
+ "mocs",
// "force_reset"
};
static const char * const expected_files_uc[] = {
@@ -183,6 +184,10 @@ test_gt(int fd, int gt_id)
igt_assert(igt_debugfs_exists(fd, name, O_RDONLY));
igt_debugfs_dump(fd, name);
+ sprintf(name, "gt%d/mocs", gt_id);
+ igt_assert(igt_debugfs_exists(fd, name, O_RDONLY));
+ igt_debugfs_dump(fd, name);
+
sprintf(name, "gt%d/uc/guc_info", gt_id);
igt_assert(igt_debugfs_exists(fd, name, O_RDONLY));
igt_debugfs_dump(fd, name);
--
2.25.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH i-g-t 2/2] tests/intel/xe_pm: Add mocs suspend resume test
2024-03-21 15:16 [PATCH i-g-t 0/2] Add mocs tests janga.rahul.kumar
2024-03-21 15:16 ` [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Extend gt test to check mocs entry janga.rahul.kumar
@ 2024-03-21 15:16 ` janga.rahul.kumar
2024-03-22 21:25 ` Matt Roper
2024-03-21 17:12 ` ✓ Fi.CI.BAT: success for Add mocs tests Patchwork
` (2 subsequent siblings)
4 siblings, 1 reply; 12+ messages in thread
From: janga.rahul.kumar @ 2024-03-21 15:16 UTC (permalink / raw)
To: igt-dev, ramadevi.gandi, janga.rahul.kumar; +Cc: matthew.d.roper
From: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
Add test to check mocs values are retained over suspend/resume.
Cc: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
---
tests/intel/xe_pm.c | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c
index fcbed6249..0761d59c4 100644
--- a/tests/intel/xe_pm.c
+++ b/tests/intel/xe_pm.c
@@ -560,6 +560,45 @@ static void test_mmap(device_t device, uint32_t placement, uint32_t flags)
close(fw_handle);
}
+/**
+ * SUBTEST: mocs_suspend_resume
+ * Description:
+ * Validate mocs register contents over suspend resume
+ *
+ * Functionality: mocs
+ * Run type: FULL
+ */
+static void test_mocs_suspend_resume(device_t device)
+{
+ int gt;
+
+ xe_for_each_gt(device.fd_xe, gt) {
+ char path[256];
+
+ // Mocs debugfs contents before and after suspend-resume
+ char mocs_content_pre[4096], mocs_contents_post[4096];
+
+ sprintf(path, "gt%d/mocs", gt);
+ igt_assert(igt_debugfs_exists(device.fd_xe, path, O_RDONLY));
+ igt_debugfs_dump(device.fd_xe, path);
+ igt_debugfs_read(device.fd_xe, path, mocs_content_pre);
+
+ fw_handle = igt_debugfs_open(device.fd_xe, "forcewake_all", O_RDONLY);
+ igt_assert(fw_handle >= 0);
+ igt_assert(igt_get_runtime_pm_status() == IGT_RUNTIME_PM_STATUS_ACTIVE);
+
+ /* Runtime suspend */
+ close(fw_handle);
+ igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED));
+
+ igt_assert(igt_debugfs_exists(device.fd_xe, path, O_RDONLY));
+ igt_debugfs_dump(device.fd_xe, path);
+ igt_debugfs_read(device.fd_xe, path, mocs_contents_post);
+
+ igt_assert(strcmp(mocs_content_pre, mocs_contents_post) == 0);
+ }
+}
+
igt_main
{
struct drm_xe_engine_class_instance *hwe;
@@ -701,6 +740,10 @@ igt_main
dpms_on_off(device, DRM_MODE_DPMS_ON);
igt_pm_set_autosuspend_delay(device.pci_xe, delay_ms);
}
+
+ igt_subtest("mocs_suspend_resume")
+ test_mocs_suspend_resume(device);
+
}
igt_fixture {
--
2.25.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* ✓ Fi.CI.BAT: success for Add mocs tests
2024-03-21 15:16 [PATCH i-g-t 0/2] Add mocs tests janga.rahul.kumar
2024-03-21 15:16 ` [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Extend gt test to check mocs entry janga.rahul.kumar
2024-03-21 15:16 ` [PATCH i-g-t 2/2] tests/intel/xe_pm: Add mocs suspend resume test janga.rahul.kumar
@ 2024-03-21 17:12 ` Patchwork
2024-03-21 17:22 ` ✗ CI.xeBAT: failure " Patchwork
2024-03-22 8:42 ` ✗ Fi.CI.IGT: " Patchwork
4 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-03-21 17:12 UTC (permalink / raw)
To: janga.rahul.kumar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 13112 bytes --]
== Series Details ==
Series: Add mocs tests
URL : https://patchwork.freedesktop.org/series/131430/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14463 -> IGTPW_10873
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/index.html
Participating hosts (38 -> 36)
------------------------------
Additional (2): bat-dg1-7 fi-kbl-8809g
Missing (4): fi-blb-e6850 fi-cfl-8109u bat-jsl-1 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10873 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- fi-kbl-8809g: NOTRUN -> [DMESG-WARN][1] ([i915#10462])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html
* igt@fbdev@info:
- fi-kbl-8809g: NOTRUN -> [SKIP][2] ([i915#1849])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/fi-kbl-8809g/igt@fbdev@info.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-8809g: NOTRUN -> [SKIP][3] ([i915#2190])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-8809g: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/fi-kbl-8809g/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@basic@lmem0:
- bat-dg2-11: NOTRUN -> [FAIL][5] ([i915#10378])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html
* igt@gem_mmap@basic:
- bat-dg1-7: NOTRUN -> [SKIP][6] ([i915#4083])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg1-7/igt@gem_mmap@basic.html
- bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#4083])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@gem_mmap@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg1-7: NOTRUN -> [SKIP][8] ([i915#4077]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg1-7/igt@gem_tiled_fence_blits@basic.html
- bat-dg2-11: NOTRUN -> [SKIP][9] ([i915#4077]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg1-7: NOTRUN -> [SKIP][10] ([i915#4079]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg1-7/igt@gem_tiled_pread_basic.html
- bat-dg2-11: NOTRUN -> [SKIP][11] ([i915#4079]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg1-7: NOTRUN -> [SKIP][12] ([i915#6621])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg1-7/igt@i915_pm_rps@basic-api.html
- bat-dg2-11: NOTRUN -> [SKIP][13] ([i915#6621])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][14] ([i915#4212]) +7 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg1-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
- bat-dg2-11: NOTRUN -> [SKIP][15] ([i915#4212]) +7 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][16] ([i915#5190])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@bad-pitch-65536:
- fi-kbl-8809g: NOTRUN -> [FAIL][17] ([i915#10457]) +1 other test fail
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/fi-kbl-8809g/igt@kms_addfb_basic@bad-pitch-65536.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][18] ([i915#4215])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-11: NOTRUN -> [SKIP][19] ([i915#4215] / [i915#5190])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@too-high:
- fi-kbl-8809g: NOTRUN -> [FAIL][20] ([i915#10455])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/fi-kbl-8809g/igt@kms_addfb_basic@too-high.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-dg2-11: NOTRUN -> [SKIP][21] ([i915#4103] / [i915#4213]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][22] ([i915#4103] / [i915#4213]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-11: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#3840])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@kms_dsc@dsc-basic.html
- bat-dg1-7: NOTRUN -> [SKIP][24] ([i915#3555] / [i915#3840])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg1-7/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-edid:
- fi-kbl-8809g: NOTRUN -> [DMESG-FAIL][25] ([i915#10454])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/fi-kbl-8809g/igt@kms_force_connector_basic@force-edid.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg1-7: NOTRUN -> [SKIP][26]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg1-7/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg2-11: NOTRUN -> [SKIP][27]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-11: NOTRUN -> [SKIP][28] ([i915#5274])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
- fi-kbl-8809g: NOTRUN -> [DMESG-WARN][29] ([i915#10454]) +1 other test dmesg-warn
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/fi-kbl-8809g/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_hdmi_inject@inject-audio:
- bat-dg1-7: NOTRUN -> [SKIP][30] ([i915#433])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html
- fi-kbl-8809g: NOTRUN -> [FAIL][31] ([IGT#3])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/fi-kbl-8809g/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1:
- fi-kbl-8809g: NOTRUN -> [SKIP][32] +58 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg1-7: NOTRUN -> [SKIP][33] ([i915#5354])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg1-7/igt@kms_pm_backlight@basic-brightness.html
- bat-dg2-11: NOTRUN -> [SKIP][34] ([i915#5354])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-page-flip:
- bat-dg1-7: NOTRUN -> [SKIP][35] ([i915#9732]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg1-7/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-11: NOTRUN -> [SKIP][36] ([i915#9732]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-11: NOTRUN -> [SKIP][37] ([i915#3555])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg1-7: NOTRUN -> [SKIP][38] ([i915#3555])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg1-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg1-7: NOTRUN -> [SKIP][39] ([i915#3708]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg1-7/igt@prime_vgem@basic-fence-flip.html
- bat-dg2-11: NOTRUN -> [SKIP][40] ([i915#3708])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg1-7: NOTRUN -> [SKIP][41] ([i915#3708] / [i915#4077]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html
- bat-dg2-11: NOTRUN -> [SKIP][42] ([i915#3708] / [i915#4077]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-read:
- bat-dg2-11: NOTRUN -> [SKIP][43] ([i915#3291] / [i915#3708]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-dg2-11/igt@prime_vgem@basic-read.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- {bat-mtlp-9}: [WARN][44] ([i915#10436]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@reset:
- bat-atsm-1: [ABORT][46] ([i915#10366]) -> [PASS][47]
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/bat-atsm-1/igt@i915_selftest@live@reset.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/bat-atsm-1/igt@i915_selftest@live@reset.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
[i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366
[i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#10436]: https://gitlab.freedesktop.org/drm/intel/issues/10436
[i915#10454]: https://gitlab.freedesktop.org/drm/intel/issues/10454
[i915#10455]: https://gitlab.freedesktop.org/drm/intel/issues/10455
[i915#10457]: https://gitlab.freedesktop.org/drm/intel/issues/10457
[i915#10462]: https://gitlab.freedesktop.org/drm/intel/issues/10462
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7774 -> IGTPW_10873
CI-20190529: 20190529
CI_DRM_14463: 0cd99ca612f004f19c35f4966a584f0a729bbc31 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10873: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/index.html
IGT_7774: 7774
Testlist changes
----------------
+igt@xe_pm@mocs_suspend_resume
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/index.html
[-- Attachment #2: Type: text/html, Size: 16027 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ CI.xeBAT: failure for Add mocs tests
2024-03-21 15:16 [PATCH i-g-t 0/2] Add mocs tests janga.rahul.kumar
` (2 preceding siblings ...)
2024-03-21 17:12 ` ✓ Fi.CI.BAT: success for Add mocs tests Patchwork
@ 2024-03-21 17:22 ` Patchwork
2024-03-22 8:42 ` ✗ Fi.CI.IGT: " Patchwork
4 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-03-21 17:22 UTC (permalink / raw)
To: janga.rahul.kumar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2220 bytes --]
== Series Details ==
Series: Add mocs tests
URL : https://patchwork.freedesktop.org/series/131430/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7774_BAT -> XEIGTPW_10873_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_10873_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_10873_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 3)
------------------------------
Missing (1): bat-dg2-oem2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_10873_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_debugfs@gt:
- bat-pvc-2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7774/bat-pvc-2/igt@xe_debugfs@gt.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10873/bat-pvc-2/igt@xe_debugfs@gt.html
- bat-atsm-2: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7774/bat-atsm-2/igt@xe_debugfs@gt.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10873/bat-atsm-2/igt@xe_debugfs@gt.html
- bat-adlp-7: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7774/bat-adlp-7/igt@xe_debugfs@gt.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10873/bat-adlp-7/igt@xe_debugfs@gt.html
Build changes
-------------
* IGT: IGT_7774 -> IGTPW_10873
* Linux: xe-971-9ae91289c9ed219b53a3fbd25be9f414651ce4f2 -> xe-972-0cd99ca612f004f19c35f4966a584f0a729bbc31
IGTPW_10873: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/index.html
IGT_7774: 7774
xe-971-9ae91289c9ed219b53a3fbd25be9f414651ce4f2: 9ae91289c9ed219b53a3fbd25be9f414651ce4f2
xe-972-0cd99ca612f004f19c35f4966a584f0a729bbc31: 0cd99ca612f004f19c35f4966a584f0a729bbc31
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10873/index.html
[-- Attachment #2: Type: text/html, Size: 2832 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for Add mocs tests
2024-03-21 15:16 [PATCH i-g-t 0/2] Add mocs tests janga.rahul.kumar
` (3 preceding siblings ...)
2024-03-21 17:22 ` ✗ CI.xeBAT: failure " Patchwork
@ 2024-03-22 8:42 ` Patchwork
4 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-03-22 8:42 UTC (permalink / raw)
To: janga.rahul.kumar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 99065 bytes --]
== Series Details ==
Series: Add mocs tests
URL : https://patchwork.freedesktop.org/series/131430/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14463_full -> IGTPW_10873_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10873_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10873_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_10873/index.html
Participating hosts (9 -> 10)
------------------------------
Additional (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10873_full:
### IGT changes ###
#### Possible regressions ####
* igt@fbdev@write:
- shard-mtlp: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-mtlp-5/igt@fbdev@write.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-7/igt@fbdev@write.html
- shard-dg2: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg2-10/igt@fbdev@write.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@fbdev@write.html
- shard-snb: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-snb2/igt@fbdev@write.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-snb6/igt@fbdev@write.html
* igt@gem_exec_gttfill@engines@ccs2:
- shard-dg2: [PASS][7] -> [INCOMPLETE][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg2-11/igt@gem_exec_gttfill@engines@ccs2.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-2/igt@gem_exec_gttfill@engines@ccs2.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][9]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@kms_flip@blocking-wf_vblank@b-hdmi-a1:
- shard-rkl: [PASS][10] -> [FAIL][11] +1 other test fail
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-rkl-4/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@d-hdmi-a4:
- shard-dg1: [PASS][12] -> [FAIL][13] +4 other tests fail
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg1-18/igt@kms_flip@flip-vs-blocking-wf-vblank@d-hdmi-a4.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-18/igt@kms_flip@flip-vs-blocking-wf-vblank@d-hdmi-a4.html
* igt@runner@aborted:
- shard-glk: NOTRUN -> [FAIL][14]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-glk5/igt@runner@aborted.html
Known issues
------------
Here are the changes found in IGTPW_10873_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#8411])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-15/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8411])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#8411]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-1/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#7701])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-2/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#7701])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-1/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@all-busy-check-all:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8414]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-16/igt@drm_fdinfo@all-busy-check-all.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8414]) +13 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-4/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@drm_fdinfo@busy@rcs0:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#8414]) +13 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-2/igt@drm_fdinfo@busy@rcs0.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#7697]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-4/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#7697])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@gem_basic@multigpu-create-close.html
* igt@gem_close_race@multigpu-basic-process:
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#7697])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-4/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#8562])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-6/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#8562])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-2/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][28] ([i915#1099]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-snb5/igt@gem_ctx_persistence@file.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#8555]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-8/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#8555])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#8555]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#5882]) +5 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-6/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#280]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#280])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][35] -> [FAIL][36] ([i915#5784]) +1 other test fail
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg1-15/igt@gem_eio@unwedge-stress.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-16/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-pair:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4771]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-6/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#4812])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-18/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4036])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-2/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#4525]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-6/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#6334])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-glk: NOTRUN -> [FAIL][43] ([i915#9606])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-glk2/igt@gem_exec_capture@many-4k-incremental.html
- shard-mtlp: NOTRUN -> [FAIL][44] ([i915#9606])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-2/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg1: NOTRUN -> [FAIL][45] ([i915#9606])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-17/igt@gem_exec_capture@many-4k-zero.html
- shard-dg2: NOTRUN -> [FAIL][46] ([i915#9606])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@gem_exec_capture@many-4k-zero.html
- shard-rkl: NOTRUN -> [FAIL][47] ([i915#9606])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-4/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-none:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-18/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: NOTRUN -> [FAIL][49] ([i915#2842])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-7/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-solo:
- shard-snb: NOTRUN -> [SKIP][50] +92 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-snb5/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-none@vecs0:
- shard-rkl: [PASS][51] -> [FAIL][52] ([i915#2842])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-rkl-4/igt@gem_exec_fair@basic-none@vecs0.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@gem_exec_fair@basic-none@vecs0.html
* igt@gem_exec_fair@basic-pace:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4473] / [i915#4771])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-7/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3539])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3539] / [i915#4852]) +6 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-6/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#5107])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-1/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#3281]) +14 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-6/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3281]) +12 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_reloc@basic-write-read:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#3281]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-17/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_reloc@basic-write-wc:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3281]) +6 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-8/igt@gem_exec_reloc@basic-write-wc.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4537] / [i915#4812])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@semaphore-power:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4537] / [i915#4812]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-7/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4860]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-6/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4860]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4613])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-6/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg2: [PASS][66] -> [FAIL][67] ([i915#10378]) +1 other test fail
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#4613]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu: NOTRUN -> [SKIP][69] ([i915#4613])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-3/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4565])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@random:
- shard-glk: NOTRUN -> [SKIP][71] ([i915#4613]) +6 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-glk2/igt@gem_lmem_swapping@random.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#284])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@gem_media_vme.html
* igt@gem_mmap_gtt@big-bo-tiledx:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4077]) +14 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@gem_mmap_gtt@big-bo-tiledx.html
* igt@gem_mmap_gtt@cpuset-big-copy-xy:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4077]) +6 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4083]) +6 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_mmap_wc@read:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4083])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-6/igt@gem_mmap_wc@read.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4083]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-17/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3282]) +5 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pread@display:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3282]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-1/igt@gem_pread@display.html
* igt@gem_pwrite@basic-random:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#3282]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-13/igt@gem_pwrite@basic-random.html
* igt@gem_pwrite@basic-self:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3282]) +5 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-3/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4270]) +6 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#4270])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-7/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4270])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-18/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#4270]) +4 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4270]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-1/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@y-tiled-to-vebox-x-tiled:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#8428]) +6 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-6/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#5190] / [i915#8428]) +8 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-6/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#4079]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#4079]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-15/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#4885])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-2/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][92] ([i915#5889])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@gem_spin_batch@spin-all-new.html
* igt@gem_tiled_pread_basic:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#4079]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-7/igt@gem_tiled_pread_basic.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][94] ([i915#3323])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-glk8/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4880]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4880]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#3297]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-7/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#3297]) +6 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@gem_userptr_blits@unsync-unmap.html
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#3297])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#3297]) +4 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@basic-rejected:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#2527]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-1/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#2856]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-8/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-chained:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#2527]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-14/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-start-far:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#2527] / [i915#2856])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-4/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#2856]) +5 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@load:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#6227])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@i915_module_load@load.html
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#6227])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-2/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [PASS][108] -> [INCOMPLETE][109] ([i915#9820])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][110] -> [ABORT][111] ([i915#10131] / [i915#9820])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#6412])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-4/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#8399]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-2/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#6590]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-1/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][115] ([i915#8346])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-7/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#8925]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4387])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@i915_pm_sseu@full-enable.html
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#4387])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_selftest@mock@memory_region:
- shard-mtlp: NOTRUN -> [DMESG-WARN][119] ([i915#9311])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-7/igt@i915_selftest@mock@memory_region.html
* igt@intel_hwmon@hwmon-read:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#7707])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#4212]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#4212])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-17/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#4212]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#3826])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@invalid-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6228])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-4/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#10333])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-6/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#1769] / [i915#3555])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][128] ([i915#1769])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#5286]) +8 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#5286]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5286]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][132] -> [FAIL][133] ([i915#5138])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#3638])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-17/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#3638]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-2/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [PASS][136] -> [FAIL][137] ([i915#3743])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-tglu-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][138] +19 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-8/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#5190]) +4 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#4538] / [i915#5190]) +14 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-15/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#10434]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#10278])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#10307]) +218 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6095]) +39 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#10278])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-7/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#6095]) +59 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#10278])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#10278])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#6095]) +11 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#10278])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#6095]) +59 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#7213]) +4 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#3742]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-1/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#4087]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#7828]) +4 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-15/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#7828]) +13 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#7828]) +10 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#7828]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-7/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#7828]) +6 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#7118] / [i915#9424])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][162] ([i915#7173]) +1 other test timeout
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#6944] / [i915#9424]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-3/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3299])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#3116])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#6944] / [i915#9424])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#9424])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-2/igt@kms_content_protection@lic-type-1.html
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#9424])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#6944] / [i915#7116] / [i915#7118])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-3/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#7118] / [i915#9424]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#7116] / [i915#9424])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-18/igt@kms_content_protection@uevent.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][172] ([i915#1339])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#3359]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3359]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#8814]) +3 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#8814])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#3359])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#3555])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#4103] / [i915#4213])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#4103])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#4213])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#9809]) +4 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][183] ([i915#2346])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#9067])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#9067])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-tglu: [PASS][186] -> [DMESG-WARN][187] ([i915#10166] / [i915#1982])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-tglu-6/igt@kms_cursor_legacy@torture-move@pipe-a.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-7/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#9833])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#9723])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-18/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#9723])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#9227])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#9723])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#3804])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@kms_dsc@dsc-basic.html
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#3840])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-16/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#3840] / [i915#9688])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp.html
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#3840])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3840])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#3469])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-18/igt@kms_fbcon_fbt@psr-suspend.html
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#3469])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-3/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#3469])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#1839]) +2 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-4/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#8381])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#8381])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-15/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#8381])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][206] +33 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3637]) +4 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-1/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#9934]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-18/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#3637]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-10/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@blocking-wf_vblank@b-hdmi-a1:
- shard-snb: [PASS][210] -> [FAIL][211] ([i915#2122])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-snb6/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-snb7/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8810])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#2672]) +5 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2672]) +2 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#2672]) +5 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-dg2: [PASS][218] -> [FAIL][219] ([i915#6880])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#8708]) +27 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#1825]) +51 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#5354]) +51 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#3023]) +25 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#8708]) +7 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][225] +54 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-dg1: NOTRUN -> [SKIP][226] +22 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#3458]) +7 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#5439])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#10055])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#3458]) +25 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#8708]) +6 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#1825]) +27 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][233] +34 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8228]) +3 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8228]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-6/igt@kms_hdr@static-toggle.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#6301])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-2/igt@kms_panel_fitting@legacy.html
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#6301])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-6/igt@kms_panel_fitting@legacy.html
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#6301])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-2/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#6301])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-13/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8821])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8821])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8806])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-8/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#5354] / [i915#9423])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#9423]) +7 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#5176]) +3 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#9423]) +9 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#5235]) +5 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#5235]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#5235] / [i915#9423]) +23 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#5235]) +3 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-17/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#5235]) +3 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#5354])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-2/igt@kms_pm_backlight@basic-brightness.html
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#5354])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-13/igt@kms_pm_backlight@basic-brightness.html
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#9812])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-2/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#9293])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-8/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#5978])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#9685]) +2 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#3361])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu: [PASS][260] -> [SKIP][261] ([i915#4281])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#9340])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#8430])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-3/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#9519])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#9519]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][266] -> [SKIP][267] ([i915#9519]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#9519])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@pm-caching:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#4077]) +5 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-15/igt@kms_pm_rpm@pm-caching.html
* igt@kms_prime@basic-crc-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#6524])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-6/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#6524])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-14/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#6524] / [i915#6805])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#6524])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-9/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#9808]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-2/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf@psr2-pipe-a-edp-1.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#9683])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-16/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#9683])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#9683]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#9683]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#9673] / [i915#9732]) +4 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html
* igt@kms_psr@pr-cursor-blt:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#9688]) +13 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-8/igt@kms_psr@pr-cursor-blt.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#9732]) +8 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-7/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@psr-sprite-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#4077] / [i915#9688])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-8/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#9732]) +27 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-4/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#9732]) +19 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-sprite-blt:
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#9732]) +9 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-18/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][286] +455 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-glk8/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#9685]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-18/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#5289])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#5289])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#4235] / [i915#5190]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#5289])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#4235]) +2 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-4/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#4235])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#3555]) +9 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#3555]) +4 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#3555]) +3 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-2/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-snb: [PASS][297] -> [FAIL][298] ([i915#9196])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-snb1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
- shard-tglu: [PASS][299] -> [FAIL][300] ([i915#9196])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-mtlp: [PASS][301] -> [FAIL][302] ([i915#9196])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-dg2: [PASS][303] -> [FAIL][304] ([i915#9196])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg2-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#9906])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@kms_vrr@flip-basic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#9906])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-4/igt@kms_vrr@flip-basic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#9906])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-17/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#2437])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@kms_writeback@writeback-check-output.html
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#2437])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-1/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#2437] / [i915#9412])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#2437] / [i915#9412])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#2437] / [i915#9412])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-17/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#2437] / [i915#9412])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-glk: NOTRUN -> [SKIP][314] ([i915#2437])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-glk2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#2436])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#7387])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@perf@global-sseu-config.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#2434] / [i915#7387])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@perf@mi-rpc.html
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#2434])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-1/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#2435])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: NOTRUN -> [FAIL][320] ([i915#4349]) +1 other test fail
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#8850])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@event-wait@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][322] ([i915#3555] / [i915#8807])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-5/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][323] ([i915#5793])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-6/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#3291] / [i915#3708]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-dg1: NOTRUN -> [SKIP][325] ([i915#3708] / [i915#4077])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-18/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#3291] / [i915#3708])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#3708] / [i915#4077]) +2 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#3708]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@prime_vgem@fence-write-hang.html
- shard-dg1: NOTRUN -> [SKIP][329] ([i915#3708]) +1 other test skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-15/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][330] ([i915#9917])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-13/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-tglu: NOTRUN -> [SKIP][331] ([i915#9917])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#9917])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-rkl: NOTRUN -> [SKIP][333] ([i915#9917])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-glk: NOTRUN -> [FAIL][334] ([i915#9781])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-glk2/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@v3d/v3d_perfmon@get-values-invalid-perfmon:
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#2575]) +4 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-15/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html
* igt@v3d/v3d_submit_cl@bad-multisync-pad:
- shard-tglu: NOTRUN -> [SKIP][336] ([i915#2575]) +8 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-7/igt@v3d/v3d_submit_cl@bad-multisync-pad.html
* igt@v3d/v3d_submit_csd@single-out-sync:
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#2575]) +20 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@v3d/v3d_submit_csd@single-out-sync.html
* igt@v3d/v3d_wait_bo@map-bo-0ns:
- shard-mtlp: NOTRUN -> [SKIP][338] ([i915#2575]) +7 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-7/igt@v3d/v3d_wait_bo@map-bo-0ns.html
* igt@vc4/vc4_purgeable_bo@access-purged-bo-mem:
- shard-mtlp: NOTRUN -> [SKIP][339] ([i915#7711]) +5 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-mtlp-6/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html
* igt@vc4/vc4_purgeable_bo@mark-purgeable:
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#7711]) +10 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-2/igt@vc4/vc4_purgeable_bo@mark-purgeable.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged:
- shard-dg1: NOTRUN -> [SKIP][341] ([i915#7711]) +2 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-15/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html
* igt@vc4/vc4_tiling@set-bad-modifier:
- shard-dg2: NOTRUN -> [SKIP][342] ([i915#7711]) +13 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-10/igt@vc4/vc4_tiling@set-bad-modifier.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [FAIL][343] ([i915#6268]) -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][345] ([i915#2842]) -> [PASS][346] +1 other test pass
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-2/igt@gem_exec_fair@basic-pace@rcs0.html
- shard-tglu: [FAIL][347] ([i915#2842]) -> [PASS][348] +2 other tests pass
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-tglu-9/igt@gem_exec_fair@basic-pace@rcs0.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fence@syncobj-timeline-signal:
- shard-dg2: [INCOMPLETE][349] -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg2-6/igt@gem_exec_fence@syncobj-timeline-signal.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@gem_exec_fence@syncobj-timeline-signal.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][351] ([i915#5493]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [ABORT][353] ([i915#5566]) -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-glk5/igt@gen9_exec_parse@allowed-single.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-glk2/igt@gen9_exec_parse@allowed-single.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-glk: [ABORT][355] ([i915#9849]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [FAIL][357] ([i915#3591]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][359] ([i915#3743]) -> [PASS][360] +2 other tests pass
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-tglu-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_flip@absolute-wf_vblank-interruptible@b-vga1:
- shard-snb: [ABORT][361] -> [PASS][362] +1 other test pass
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-snb7/igt@kms_flip@absolute-wf_vblank-interruptible@b-vga1.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-snb4/igt@kms_flip@absolute-wf_vblank-interruptible@b-vga1.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode:
- shard-dg1: [FAIL][363] -> [PASS][364]
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
- shard-dg2: [FAIL][365] ([i915#6880]) -> [PASS][366] +1 other test pass
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][367] ([i915#9519]) -> [PASS][368] +1 other test pass
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][369] ([i915#9519]) -> [PASS][370] +1 other test pass
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][371] ([i915#4349]) -> [PASS][372] +3 other tests pass
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][373] ([i915#9846]) -> [INCOMPLETE][374] ([i915#9364])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][375] ([i915#4816]) -> [SKIP][376] ([i915#4070] / [i915#4816])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@psr2-cursor-plane-move:
- shard-dg2: [SKIP][377] ([i915#9732]) -> [SKIP][378] ([i915#9673] / [i915#9732]) +13 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg2-8/igt@kms_psr@psr2-cursor-plane-move.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-11/igt@kms_psr@psr2-cursor-plane-move.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: [SKIP][379] ([i915#9673] / [i915#9732]) -> [SKIP][380] ([i915#9732]) +13 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [CRASH][381] ([i915#9351]) -> [INCOMPLETE][382] ([i915#5493])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14463/shard-dg2-8/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/shard-dg2-8/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055
[i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131
[i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166
[i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/intel/issues/10333
[i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
[i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340
[i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
[i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833
[i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7774 -> IGTPW_10873
CI-20190529: 20190529
CI_DRM_14463: 0cd99ca612f004f19c35f4966a584f0a729bbc31 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10873: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/index.html
IGT_7774: 7774
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10873/index.html
[-- Attachment #2: Type: text/html, Size: 121514 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Extend gt test to check mocs entry
2024-03-21 15:16 ` [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Extend gt test to check mocs entry janga.rahul.kumar
@ 2024-03-22 21:18 ` Matt Roper
2024-04-24 20:19 ` Kumar, Janga Rahul
0 siblings, 1 reply; 12+ messages in thread
From: Matt Roper @ 2024-03-22 21:18 UTC (permalink / raw)
To: janga.rahul.kumar; +Cc: igt-dev, ramadevi.gandi
On Thu, Mar 21, 2024 at 08:46:36PM +0530, janga.rahul.kumar@intel.com wrote:
> From: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
>
> Read and dump mocs debugfs entry.
>
> Cc: Matt Roper <matthew.d.roper@intel.com>
> Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
> ---
> tests/intel/xe_debugfs.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c
> index c5a586e9b..ba12f6ccc 100644
> --- a/tests/intel/xe_debugfs.c
> +++ b/tests/intel/xe_debugfs.c
> @@ -158,6 +158,7 @@ test_gt(int fd, int gt_id)
> "topology",
> "sa_info",
> "hw_engines",
> + "mocs",
> // "force_reset"
> };
> static const char * const expected_files_uc[] = {
> @@ -183,6 +184,10 @@ test_gt(int fd, int gt_id)
> igt_assert(igt_debugfs_exists(fd, name, O_RDONLY));
> igt_debugfs_dump(fd, name);
>
> + sprintf(name, "gt%d/mocs", gt_id);
> + igt_assert(igt_debugfs_exists(fd, name, O_RDONLY));
> + igt_debugfs_dump(fd, name);
Rather than just dumping the contents to the log should we do some very
basic sanity checks (e.g., make sure that the values don't come back as
all 0's for every entry)?
Matt
> +
> sprintf(name, "gt%d/uc/guc_info", gt_id);
> igt_assert(igt_debugfs_exists(fd, name, O_RDONLY));
> igt_debugfs_dump(fd, name);
> --
> 2.25.1
>
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/xe_pm: Add mocs suspend resume test
2024-03-21 15:16 ` [PATCH i-g-t 2/2] tests/intel/xe_pm: Add mocs suspend resume test janga.rahul.kumar
@ 2024-03-22 21:25 ` Matt Roper
2024-04-24 20:21 ` Kumar, Janga Rahul
0 siblings, 1 reply; 12+ messages in thread
From: Matt Roper @ 2024-03-22 21:25 UTC (permalink / raw)
To: janga.rahul.kumar; +Cc: igt-dev, ramadevi.gandi
On Thu, Mar 21, 2024 at 08:46:37PM +0530, janga.rahul.kumar@intel.com wrote:
> From: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
>
> Add test to check mocs values are retained over suspend/resume.
>
> Cc: Matt Roper <matthew.d.roper@intel.com>
> Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
> ---
> tests/intel/xe_pm.c | 43 +++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 43 insertions(+)
>
> diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c
> index fcbed6249..0761d59c4 100644
> --- a/tests/intel/xe_pm.c
> +++ b/tests/intel/xe_pm.c
> @@ -560,6 +560,45 @@ static void test_mmap(device_t device, uint32_t placement, uint32_t flags)
> close(fw_handle);
> }
>
> +/**
> + * SUBTEST: mocs_suspend_resume
> + * Description:
> + * Validate mocs register contents over suspend resume
> + *
> + * Functionality: mocs
> + * Run type: FULL
> + */
> +static void test_mocs_suspend_resume(device_t device)
> +{
> + int gt;
> +
> + xe_for_each_gt(device.fd_xe, gt) {
> + char path[256];
> +
> + // Mocs debugfs contents before and after suspend-resume
> + char mocs_content_pre[4096], mocs_contents_post[4096];
> +
> + sprintf(path, "gt%d/mocs", gt);
> + igt_assert(igt_debugfs_exists(device.fd_xe, path, O_RDONLY));
> + igt_debugfs_dump(device.fd_xe, path);
> + igt_debugfs_read(device.fd_xe, path, mocs_content_pre);
> +
> + fw_handle = igt_debugfs_open(device.fd_xe, "forcewake_all", O_RDONLY);
> + igt_assert(fw_handle >= 0);
> + igt_assert(igt_get_runtime_pm_status() == IGT_RUNTIME_PM_STATUS_ACTIVE);
> +
> + /* Runtime suspend */
> + close(fw_handle);
> + igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED));
> +
> + igt_assert(igt_debugfs_exists(device.fd_xe, path, O_RDONLY));
> + igt_debugfs_dump(device.fd_xe, path);
> + igt_debugfs_read(device.fd_xe, path, mocs_contents_post);
> +
> + igt_assert(strcmp(mocs_content_pre, mocs_contents_post) == 0);
> + }
> +}
Assuming xe_pm has already ensured that anything else that might have
blocked runtime PM is out of the way, looks good to me. But should we
also test S3 and S4 as well rather than just runtime suspend? Those
follow different driver flows, and it's possible a driver bug could
cause of to fail to reprogram MOCS on an S3/S4 resume, even though
runtime PM resume works okay.
It would also be good to extend this same pattern to other kinds of
non-PM MOCS tests as well. E.g., for reset IGTs it would be valuable to
have subtests like:
a = capture
trigger engine hang & reset
b = capture
fail if a != b
and
a = capture
trigger full GT reset
b = capture
fail if a != b
Matt
> +
> igt_main
> {
> struct drm_xe_engine_class_instance *hwe;
> @@ -701,6 +740,10 @@ igt_main
> dpms_on_off(device, DRM_MODE_DPMS_ON);
> igt_pm_set_autosuspend_delay(device.pci_xe, delay_ms);
> }
> +
> + igt_subtest("mocs_suspend_resume")
> + test_mocs_suspend_resume(device);
> +
> }
>
> igt_fixture {
> --
> 2.25.1
>
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Extend gt test to check mocs entry
2024-04-24 20:08 [PATCH i-g-t v2 0/2] " janga.rahul.kumar
@ 2024-04-24 20:08 ` janga.rahul.kumar
2024-05-02 9:16 ` Nilawar, Badal
0 siblings, 1 reply; 12+ messages in thread
From: janga.rahul.kumar @ 2024-04-24 20:08 UTC (permalink / raw)
To: igt-dev, ramadevi.gandi, janga.rahul.kumar; +Cc: matthew.d.roper
From: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
Read and dump mocs debugfs entry.
Cc: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
---
tests/intel/xe_debugfs.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c
index c5a586e9b..ba12f6ccc 100644
--- a/tests/intel/xe_debugfs.c
+++ b/tests/intel/xe_debugfs.c
@@ -158,6 +158,7 @@ test_gt(int fd, int gt_id)
"topology",
"sa_info",
"hw_engines",
+ "mocs",
// "force_reset"
};
static const char * const expected_files_uc[] = {
@@ -183,6 +184,10 @@ test_gt(int fd, int gt_id)
igt_assert(igt_debugfs_exists(fd, name, O_RDONLY));
igt_debugfs_dump(fd, name);
+ sprintf(name, "gt%d/mocs", gt_id);
+ igt_assert(igt_debugfs_exists(fd, name, O_RDONLY));
+ igt_debugfs_dump(fd, name);
+
sprintf(name, "gt%d/uc/guc_info", gt_id);
igt_assert(igt_debugfs_exists(fd, name, O_RDONLY));
igt_debugfs_dump(fd, name);
--
2.25.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* RE: [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Extend gt test to check mocs entry
2024-03-22 21:18 ` Matt Roper
@ 2024-04-24 20:19 ` Kumar, Janga Rahul
0 siblings, 0 replies; 12+ messages in thread
From: Kumar, Janga Rahul @ 2024-04-24 20:19 UTC (permalink / raw)
To: Roper, Matthew D; +Cc: igt-dev@lists.freedesktop.org, Gandi, Ramadevi
> -----Original Message-----
> From: Roper, Matthew D <matthew.d.roper@intel.com>
> Sent: Saturday, March 23, 2024 2:48 AM
> To: Kumar, Janga Rahul <janga.rahul.kumar@intel.com>
> Cc: igt-dev@lists.freedesktop.org; Gandi, Ramadevi
> <ramadevi.gandi@intel.com>
> Subject: Re: [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Extend gt test to check
> mocs entry
>
> On Thu, Mar 21, 2024 at 08:46:36PM +0530, janga.rahul.kumar@intel.com
> wrote:
> > From: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
> >
> > Read and dump mocs debugfs entry.
> >
> > Cc: Matt Roper <matthew.d.roper@intel.com>
> > Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
> > ---
> > tests/intel/xe_debugfs.c | 5 +++++
> > 1 file changed, 5 insertions(+)
> >
> > diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c index
> > c5a586e9b..ba12f6ccc 100644
> > --- a/tests/intel/xe_debugfs.c
> > +++ b/tests/intel/xe_debugfs.c
> > @@ -158,6 +158,7 @@ test_gt(int fd, int gt_id)
> > "topology",
> > "sa_info",
> > "hw_engines",
> > + "mocs",
> > // "force_reset"
> > };
> > static const char * const expected_files_uc[] = { @@ -183,6 +184,10
> > @@ test_gt(int fd, int gt_id)
> > igt_assert(igt_debugfs_exists(fd, name, O_RDONLY));
> > igt_debugfs_dump(fd, name);
> >
> > + sprintf(name, "gt%d/mocs", gt_id);
> > + igt_assert(igt_debugfs_exists(fd, name, O_RDONLY));
> > + igt_debugfs_dump(fd, name);
>
> Rather than just dumping the contents to the log should we do some very basic
> sanity checks (e.g., make sure that the values don't come back as all 0's for
> every entry)?
@Roper, Matthew D, I have tried checking for some basic sanity . To check any mocs entry is "0" or not based on the debugfs output format.
Made below changes. During testing I have observed that test was failing on few platforms. In some platforms few entries are 0.
To ensure not all values are 0's we can count the number of 0 occurances and compare it with the mocs entries for that platform but it is not maintenance friendly we might need to update the test for every new platform. This test ensure that the debugfs is created or not.
We do have self test to check the correctness of register values with mocs entries. Debugfs dump is generated by reading registers so if there is any wrong register state it will be caught via selftest.
Code change:
#include "xe/xe_query.h"
+#define INVALID_MOCS_VALUE "( 0x0)"
struct {
bool warn_on_not_hit;
} opt = { 0 };
@@ -186,6 +188,7 @@ test_gt(int fd, int gt_id)
sprintf(name, "gt%d/mocs", gt_id);
igt_assert(igt_debugfs_exists(fd, name, O_RDONLY));
+ igt_assert(!igt_debugfs_search(fd, name, INVALID_MOCS_VALUE));
igt_debugfs_dump(fd, name);
Thanks,
Rahul
>
>
> Matt
>
> > +
> > sprintf(name, "gt%d/uc/guc_info", gt_id);
> > igt_assert(igt_debugfs_exists(fd, name, O_RDONLY));
> > igt_debugfs_dump(fd, name);
> > --
> > 2.25.1
> >
>
> --
> Matt Roper
> Graphics Software Engineer
> Linux GPU Platform Enablement
> Intel Corporation
^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: [PATCH i-g-t 2/2] tests/intel/xe_pm: Add mocs suspend resume test
2024-03-22 21:25 ` Matt Roper
@ 2024-04-24 20:21 ` Kumar, Janga Rahul
0 siblings, 0 replies; 12+ messages in thread
From: Kumar, Janga Rahul @ 2024-04-24 20:21 UTC (permalink / raw)
To: Roper, Matthew D; +Cc: igt-dev@lists.freedesktop.org, Gandi, Ramadevi
> -----Original Message-----
> From: Roper, Matthew D <matthew.d.roper@intel.com>
> Sent: Saturday, March 23, 2024 2:55 AM
> To: Kumar, Janga Rahul <janga.rahul.kumar@intel.com>
> Cc: igt-dev@lists.freedesktop.org; Gandi, Ramadevi
> <ramadevi.gandi@intel.com>
> Subject: Re: [PATCH i-g-t 2/2] tests/intel/xe_pm: Add mocs suspend resume test
>
> On Thu, Mar 21, 2024 at 08:46:37PM +0530, janga.rahul.kumar@intel.com
> wrote:
> > From: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
> >
> > Add test to check mocs values are retained over suspend/resume.
> >
> > Cc: Matt Roper <matthew.d.roper@intel.com>
> > Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
> > ---
> > tests/intel/xe_pm.c | 43 +++++++++++++++++++++++++++++++++++++++++++
> > 1 file changed, 43 insertions(+)
> >
> > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index
> > fcbed6249..0761d59c4 100644
> > --- a/tests/intel/xe_pm.c
> > +++ b/tests/intel/xe_pm.c
> > @@ -560,6 +560,45 @@ static void test_mmap(device_t device, uint32_t
> placement, uint32_t flags)
> > close(fw_handle);
> > }
> >
> > +/**
> > + * SUBTEST: mocs_suspend_resume
> > + * Description:
> > + * Validate mocs register contents over suspend resume
> > + *
> > + * Functionality: mocs
> > + * Run type: FULL
> > + */
> > +static void test_mocs_suspend_resume(device_t device) {
> > + int gt;
> > +
> > + xe_for_each_gt(device.fd_xe, gt) {
> > + char path[256];
> > +
> > + // Mocs debugfs contents before and after suspend-resume
> > + char mocs_content_pre[4096], mocs_contents_post[4096];
> > +
> > + sprintf(path, "gt%d/mocs", gt);
> > + igt_assert(igt_debugfs_exists(device.fd_xe, path, O_RDONLY));
> > + igt_debugfs_dump(device.fd_xe, path);
> > + igt_debugfs_read(device.fd_xe, path, mocs_content_pre);
> > +
> > + fw_handle = igt_debugfs_open(device.fd_xe, "forcewake_all",
> O_RDONLY);
> > + igt_assert(fw_handle >= 0);
> > + igt_assert(igt_get_runtime_pm_status() ==
> > +IGT_RUNTIME_PM_STATUS_ACTIVE);
> > +
> > + /* Runtime suspend */
> > + close(fw_handle);
> > +
> >
> +igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED));
> > +
> > + igt_assert(igt_debugfs_exists(device.fd_xe, path, O_RDONLY));
> > + igt_debugfs_dump(device.fd_xe, path);
> > + igt_debugfs_read(device.fd_xe, path, mocs_contents_post);
> > +
> > + igt_assert(strcmp(mocs_content_pre, mocs_contents_post) ==
> 0);
> > + }
> > +}
>
> Assuming xe_pm has already ensured that anything else that might have blocked
> runtime PM is out of the way, looks good to me. But should we also test S3 and
> S4 as well rather than just runtime suspend? Those follow different driver flows,
> and it's possible a driver bug could cause of to fail to reprogram MOCS on an
> S3/S4 resume, even though runtime PM resume works okay.
Sent v2 with S3/S4 s/r state.
>
> It would also be good to extend this same pattern to other kinds of non-PM
> MOCS tests as well. E.g., for reset IGTs it would be valuable to have subtests
Will send a separate series targeting reset and engine hang/reset.
Thanks,
Rahul
> like:
>
> a = capture
> trigger engine hang & reset
> b = capture
> fail if a != b
>
> and
>
> a = capture
> trigger full GT reset
> b = capture
> fail if a != b
>
>
> Matt
>
> > +
> > igt_main
> > {
> > struct drm_xe_engine_class_instance *hwe; @@ -701,6 +740,10 @@
> > igt_main
> > dpms_on_off(device, DRM_MODE_DPMS_ON);
> > igt_pm_set_autosuspend_delay(device.pci_xe,
> delay_ms);
> > }
> > +
> > + igt_subtest("mocs_suspend_resume")
> > + test_mocs_suspend_resume(device);
> > +
> > }
> >
> > igt_fixture {
> > --
> > 2.25.1
> >
>
> --
> Matt Roper
> Graphics Software Engineer
> Linux GPU Platform Enablement
> Intel Corporation
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Extend gt test to check mocs entry
2024-04-24 20:08 ` [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Extend gt test to check mocs entry janga.rahul.kumar
@ 2024-05-02 9:16 ` Nilawar, Badal
0 siblings, 0 replies; 12+ messages in thread
From: Nilawar, Badal @ 2024-05-02 9:16 UTC (permalink / raw)
To: janga.rahul.kumar, igt-dev, ramadevi.gandi; +Cc: matthew.d.roper
On 25-04-2024 01:38, janga.rahul.kumar@intel.com wrote:
> From: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
>
> Read and dump mocs debugfs entry.
>
> Cc: Matt Roper <matthew.d.roper@intel.com>
> Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
> ---
> tests/intel/xe_debugfs.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c
> index c5a586e9b..ba12f6ccc 100644
> --- a/tests/intel/xe_debugfs.c
> +++ b/tests/intel/xe_debugfs.c
> @@ -158,6 +158,7 @@ test_gt(int fd, int gt_id)
> "topology",
> "sa_info",
> "hw_engines",
> + "mocs",
> // "force_reset"
> };
> static const char * const expected_files_uc[] = {
> @@ -183,6 +184,10 @@ test_gt(int fd, int gt_id)
> igt_assert(igt_debugfs_exists(fd, name, O_RDONLY));
> igt_debugfs_dump(fd, name);
>
> + sprintf(name, "gt%d/mocs", gt_id);
> + igt_assert(igt_debugfs_exists(fd, name, O_RDONLY));
> + igt_debugfs_dump(fd, name);
Reviewed-by: Badal Nilawar <badal.nilawar@intel.com>
Regards,
Badal
> +
> sprintf(name, "gt%d/uc/guc_info", gt_id);
> igt_assert(igt_debugfs_exists(fd, name, O_RDONLY));
> igt_debugfs_dump(fd, name);
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-05-02 9:16 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-21 15:16 [PATCH i-g-t 0/2] Add mocs tests janga.rahul.kumar
2024-03-21 15:16 ` [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Extend gt test to check mocs entry janga.rahul.kumar
2024-03-22 21:18 ` Matt Roper
2024-04-24 20:19 ` Kumar, Janga Rahul
2024-03-21 15:16 ` [PATCH i-g-t 2/2] tests/intel/xe_pm: Add mocs suspend resume test janga.rahul.kumar
2024-03-22 21:25 ` Matt Roper
2024-04-24 20:21 ` Kumar, Janga Rahul
2024-03-21 17:12 ` ✓ Fi.CI.BAT: success for Add mocs tests Patchwork
2024-03-21 17:22 ` ✗ CI.xeBAT: failure " Patchwork
2024-03-22 8:42 ` ✗ Fi.CI.IGT: " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2024-04-24 20:08 [PATCH i-g-t v2 0/2] " janga.rahul.kumar
2024-04-24 20:08 ` [PATCH i-g-t 1/2] tests/intel/xe_debugfs: Extend gt test to check mocs entry janga.rahul.kumar
2024-05-02 9:16 ` Nilawar, Badal
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox