* [igt-dev] [PATCH i-g-t 0/2] Idle Residency on Exec
@ 2023-08-11 10:32 Riana Tauro
2023-08-11 10:32 ` [igt-dev] [PATCH i-g-t 1/2] RFC tests/xe: Add a test that validates idle residency on exec Riana Tauro
` (9 more replies)
0 siblings, 10 replies; 22+ messages in thread
From: Riana Tauro @ 2023-08-11 10:32 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
Add a test that validates idle residency on exec when
a background load is running approximately 1% of time.
Riana Tauro (2):
tests/xe: Add a test that validates idle residency on exec
HAX: Add idle-residency-on-exec to xe-fast-feedback.testlist
tests/intel-ci/xe-fast-feedback.testlist | 1 +
tests/xe/xe_pm_residency.c | 135 ++++++++++++++++++++++-
2 files changed, 134 insertions(+), 2 deletions(-)
--
2.40.0
^ permalink raw reply [flat|nested] 22+ messages in thread
* [igt-dev] [PATCH i-g-t 1/2] RFC tests/xe: Add a test that validates idle residency on exec
2023-08-11 10:32 [igt-dev] [PATCH i-g-t 0/2] Idle Residency on Exec Riana Tauro
@ 2023-08-11 10:32 ` Riana Tauro
2023-08-28 16:28 ` Nilawar, Badal
` (2 more replies)
2023-08-11 10:32 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add idle-residency-on-exec to xe-fast-feedback.testlist Riana Tauro
` (8 subsequent siblings)
9 siblings, 3 replies; 22+ messages in thread
From: Riana Tauro @ 2023-08-11 10:32 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
Add a test what runs a background load that is
active approximately 1% of the time. Verify that we do enter
GT-C6 the rest of the time and validate idle residency is within
tolerance.
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
---
tests/xe/xe_pm_residency.c | 135 ++++++++++++++++++++++++++++++++++++-
1 file changed, 133 insertions(+), 2 deletions(-)
diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c
index 4936de166..abf07c696 100644
--- a/tests/xe/xe_pm_residency.c
+++ b/tests/xe/xe_pm_residency.c
@@ -11,13 +11,18 @@
* Test category: functionality test
*/
+#include <time.h>
+
#include "igt.h"
#include "igt_sysfs.h"
+#include "lib/igt_syncobj.h"
+
+#include "xe/xe_ioctl.h"
#include "xe/xe_query.h"
#include "xe/xe_util.h"
-#define SLEEP_DURATION 3000 /* in milliseconds */
+#define SLEEP_DURATION 3 /* in seconds */
const double tolerance = 0.1;
@@ -38,9 +43,98 @@ const double tolerance = 0.1;
* Description: basic residency test to validate idle residency
* measured over a time interval is within the tolerance
* Run type: FULL
+ *
+ * SUBTEST: idle-residency-on-exec
+ * Description: Validate idle residency measured when a background
+ * is only active for ~1% of the time
+ * Run type: FULL
*/
IGT_TEST_DESCRIPTION("Tests for gtidle properties");
+static void exec_load(int fd, struct drm_xe_engine_class_instance *hwe, unsigned long *done)
+{
+ uint32_t bo = 0;
+ uint32_t exec_queue, syncobj, vm;
+ uint64_t addr = 0x1a0000;
+ uint64_t batch_addr, batch_offset, data_addr, data_offset;
+ size_t bo_size;
+ int b;
+ struct {
+ uint32_t batch[16];
+ uint64_t pad;
+ uint32_t data;
+ } *data;
+
+ struct drm_xe_sync sync = {
+ .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL,
+ };
+
+ struct drm_xe_exec exec = {
+ .num_batch_buffer = 1,
+ .num_syncs = 1,
+ .syncs = to_user_pointer(&sync),
+ };
+
+ vm = xe_vm_create(fd, 0, 0);
+ exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
+ bo_size = xe_get_default_alignment(fd);
+
+ bo = xe_bo_create_flags(fd, vm, bo_size,
+ visible_vram_if_possible(fd, hwe->gt_id));
+ data = xe_bo_map(fd, bo, bo_size);
+ syncobj = syncobj_create(fd, 0);
+
+ xe_vm_bind_sync(fd, vm, bo, 0, addr, bo_size);
+
+ batch_offset = (char *)&data->batch - (char *)data;
+ batch_addr = addr + batch_offset;
+ data_offset = (char *)&data->data - (char *)data;
+ data_addr = addr + data_offset;
+
+ do {
+ uint64_t submit, elapsed;
+ struct timespec tv = {};
+
+ b = 0;
+ done[1]++;
+ data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
+ data->batch[b++] = data_addr;
+ data->batch[b++] = data_addr >> 32;
+ data->batch[b++] = done[1];
+ data->batch[b++] = MI_BATCH_BUFFER_END;
+ igt_assert(b <= ARRAY_SIZE(data->batch));
+
+ exec.exec_queue_id = exec_queue;
+ exec.address = batch_addr;
+ sync.handle = syncobj;
+
+ igt_nsec_elapsed(&tv);
+ xe_exec(fd, &exec);
+ submit = igt_nsec_elapsed(&tv);
+
+ igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
+ elapsed = igt_nsec_elapsed(&tv);
+ igt_assert_eq(data->data, done[1]);
+
+ igt_debug("Execution took %.3fms (submit %.1fus, wait %.1fus)\n",
+ 1e-6 * elapsed,
+ 1e-3 * submit,
+ 1e-3 * (elapsed - submit));
+
+ syncobj_reset(fd, &syncobj, 1);
+
+ /* Aim for ~1% busy */
+ usleep(elapsed / 10);
+ } while (!READ_ONCE(*done));
+
+ xe_vm_unbind_sync(fd, vm, 0, addr, bo_size);
+ syncobj_destroy(fd, syncobj);
+ munmap(data, bo_size);
+ gem_close(fd, bo);
+ xe_exec_queue_destroy(fd, exec_queue);
+ xe_vm_destroy(fd, vm);
+}
+
static unsigned int measured_usleep(unsigned int usec)
{
struct timespec ts = { };
@@ -76,7 +170,7 @@ static void test_idle_residency(int fd, int gt)
igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), "GT not in C6\n");
residency_start = read_idle_residency(fd, gt);
- elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000;
+ elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
residency_end = read_idle_residency(fd, gt);
igt_info("Measured %lums of idle residency in %lums\n",
@@ -85,9 +179,41 @@ static void test_idle_residency(int fd, int gt)
assert_within_epsilon(residency_end - residency_start, elapsed_ms, tolerance);
}
+static void idle_residency_on_exec(int fd, struct drm_xe_engine_class_instance *hwe)
+{
+ const int tol = 20;
+ unsigned long *done;
+ unsigned long cycles, elapsed_ms, residency;
+
+ done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
+ igt_assert(done != MAP_FAILED);
+ memset(done, 0, 4096);
+
+ igt_fork(child, 1)
+ exec_load(fd, hwe, done);
+
+ cycles -= READ_ONCE(done[1]);
+ residency -= read_idle_residency(fd, hwe->gt_id);
+ elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
+ residency += read_idle_residency(fd, hwe->gt_id);
+ cycles += READ_ONCE(done[1]);
+ *done = 1;
+
+ igt_waitchildren();
+
+ /* At least one wakeup/s needed for a reasonable test */
+ igt_assert(cycles >= SLEEP_DURATION);
+
+ /* While very nearly busy, expect full GT C6 */
+ assert_within_epsilon(residency, elapsed_ms, tol);
+
+ munmap(done, 4096);
+}
+
igt_main
{
int fd, gt;
+ struct drm_xe_engine_class_instance *hwe;
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
@@ -104,6 +230,11 @@ igt_main
xe_for_each_gt(fd, gt)
test_idle_residency(fd, gt);
+ igt_describe("Validate idle residency on exec");
+ igt_subtest("idle-residency-on-exec")
+ xe_for_each_hw_engine(fd, hwe)
+ idle_residency_on_exec(fd, hwe);
+
igt_fixture {
close(fd);
}
--
2.40.0
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] HAX: Add idle-residency-on-exec to xe-fast-feedback.testlist
2023-08-11 10:32 [igt-dev] [PATCH i-g-t 0/2] Idle Residency on Exec Riana Tauro
2023-08-11 10:32 ` [igt-dev] [PATCH i-g-t 1/2] RFC tests/xe: Add a test that validates idle residency on exec Riana Tauro
@ 2023-08-11 10:32 ` Riana Tauro
2023-08-11 11:18 ` [igt-dev] ○ CI.xeBAT: info for Idle Residency on Exec Patchwork
` (7 subsequent siblings)
9 siblings, 0 replies; 22+ messages in thread
From: Riana Tauro @ 2023-08-11 10:32 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
Add idle-residency-on-exec to xe-fast-feedback.testlist
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
---
tests/intel-ci/xe-fast-feedback.testlist | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index f7c6b62f5..e8f9c1902 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -144,6 +144,7 @@ igt@xe_mmap@vram-system
igt@xe_mmio@mmio-timestamp
igt@xe_mmio@mmio-invalid
igt@xe_pm_residency@gt-c6-on-idle
+igt@xe_pm_residency@idle-residency-on-exec
igt@xe_prime_self_import@basic-with_one_bo
igt@xe_prime_self_import@basic-with_fd_dup
#igt@xe_prime_self_import@basic-llseek-size
--
2.40.0
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for Idle Residency on Exec
2023-08-11 10:32 [igt-dev] [PATCH i-g-t 0/2] Idle Residency on Exec Riana Tauro
2023-08-11 10:32 ` [igt-dev] [PATCH i-g-t 1/2] RFC tests/xe: Add a test that validates idle residency on exec Riana Tauro
2023-08-11 10:32 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add idle-residency-on-exec to xe-fast-feedback.testlist Riana Tauro
@ 2023-08-11 11:18 ` Patchwork
2023-08-11 11:20 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
` (6 subsequent siblings)
9 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2023-08-11 11:18 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 299 bytes --]
== Series Details ==
Series: Idle Residency on Exec
URL : https://patchwork.freedesktop.org/series/122341/
State : info
== Summary ==
Participating hosts:
bat-dg2-oem2
bat-adlp-7
Missing hosts results[0]:
Results: [IGTPW_9575](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9575/index.html)
[-- Attachment #2: Type: text/html, Size: 803 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Idle Residency on Exec
2023-08-11 10:32 [igt-dev] [PATCH i-g-t 0/2] Idle Residency on Exec Riana Tauro
` (2 preceding siblings ...)
2023-08-11 11:18 ` [igt-dev] ○ CI.xeBAT: info for Idle Residency on Exec Patchwork
@ 2023-08-11 11:20 ` Patchwork
2023-08-12 13:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
` (5 subsequent siblings)
9 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2023-08-11 11:20 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6660 bytes --]
== Series Details ==
Series: Idle Residency on Exec
URL : https://patchwork.freedesktop.org/series/122341/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13507 -> IGTPW_9575
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/index.html
Participating hosts (42 -> 41)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9575 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-skl-guc: [PASS][1] -> [FAIL][2] ([i915#7940])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@basic-rte:
- fi-cfl-8109u: [PASS][3] -> [FAIL][4] ([i915#7940])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html
- fi-kbl-7567u: [PASS][5] -> [FAIL][6] ([i915#7940])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/fi-kbl-7567u/igt@i915_pm_rpm@basic-rte.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/fi-kbl-7567u/igt@i915_pm_rpm@basic-rte.html
* igt@i915_pm_rpm@module-reload:
- fi-rkl-11600: [PASS][7] -> [FAIL][8] ([i915#7940])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@gt_mocs:
- bat-mtlp-8: [PASS][9] -> [DMESG-FAIL][10] ([i915#7059])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@requests:
- bat-mtlp-8: [PASS][11] -> [DMESG-FAIL][12] ([i915#7269])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/bat-mtlp-8/igt@i915_selftest@live@requests.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/bat-mtlp-8/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@slpc:
- bat-mtlp-6: [PASS][13] -> [DMESG-WARN][14] ([i915#6367])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/bat-mtlp-6/igt@i915_selftest@live@slpc.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/bat-mtlp-6/igt@i915_selftest@live@slpc.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-rpls-2: [PASS][15] -> [ABORT][16] ([i915#6687] / [i915#7978] / [i915#8668])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/bat-rpls-2/igt@i915_suspend@basic-s3-without-i915.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/bat-rpls-2/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][17] ([i915#1845] / [i915#5354]) +3 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- fi-tgl-1115g4: [FAIL][18] ([i915#7940]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [DMESG-FAIL][20] ([i915#5334]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@slpc:
- bat-rpls-2: [DMESG-WARN][22] ([i915#6367]) -> [PASS][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/bat-rpls-2/igt@i915_selftest@live@slpc.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/bat-rpls-2/igt@i915_selftest@live@slpc.html
#### Warnings ####
* igt@i915_pm_rpm@basic-pci-d3-state:
- bat-adlp-9: [FAIL][24] ([i915#7691]) -> [FAIL][25] ([i915#7940])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@kms_psr@primary_page_flip:
- bat-rplp-1: [SKIP][26] ([i915#1072]) -> [ABORT][27] ([i915#8442] / [i915#8668] / [i915#8860])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/bat-rplp-1/igt@kms_psr@primary_page_flip.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/bat-rplp-1/igt@kms_psr@primary_page_flip.html
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269
[i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
[i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8860]: https://gitlab.freedesktop.org/drm/intel/issues/8860
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7430 -> IGTPW_9575
CI-20190529: 20190529
CI_DRM_13507: 836bdeb32920259516f05778a43cb80302e83e15 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9575: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/index.html
IGT_7430: 7430
Testlist changes
----------------
+igt@xe_pm_residency@idle-residency-on-exec
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/index.html
[-- Attachment #2: Type: text/html, Size: 8052 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Idle Residency on Exec
2023-08-11 10:32 [igt-dev] [PATCH i-g-t 0/2] Idle Residency on Exec Riana Tauro
` (3 preceding siblings ...)
2023-08-11 11:20 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-08-12 13:55 ` Patchwork
2023-09-05 14:41 ` [igt-dev] ✓ Fi.CI.BAT: success for Idle Residency on Exec (rev2) Patchwork
` (4 subsequent siblings)
9 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2023-08-12 13:55 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 81331 bytes --]
== Series Details ==
Series: Idle Residency on Exec
URL : https://patchwork.freedesktop.org/series/122341/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13507_full -> IGTPW_9575_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9575_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9575_full, please notify your bug team 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_9575/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9575_full:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@unbind-rebind:
- shard-dg2: [PASS][1] -> [TIMEOUT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg2-12/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@core_hotunplug@unbind-rebind.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: NOTRUN -> [TIMEOUT][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@kms_hdr@static-toggle-dpms.html
#### Warnings ####
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg2: [SKIP][4] ([i915#4860]) -> [TIMEOUT][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-none.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt:
- shard-dg2: [SKIP][6] ([i915#8708]) -> [TIMEOUT][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt.html
* igt@kms_psr@sprite_mmap_cpu:
- shard-dg2: [SKIP][8] ([i915#1072]) -> [TIMEOUT][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg2-12/igt@kms_psr@sprite_mmap_cpu.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@kms_psr@sprite_mmap_cpu.html
New tests
---------
New tests have been introduced between CI_DRM_13507_full and IGTPW_9575_full:
### New IGT tests (2) ###
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9575_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8411])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-2/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#7456])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-7/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#7701])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-1/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#7701])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-2/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@virtual-busy-hang-all:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) +1 similar issue
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-4/igt@drm_fdinfo@virtual-busy-hang-all.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-6/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#1839])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-6/igt@feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#1839])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-10/igt@feature_discovery@display-2x.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#7697])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-12/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8562])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@hang:
- shard-snb: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#1099])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-snb2/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-12/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-7/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][24] -> [FAIL][25] ([i915#5784])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg1-18/igt@gem_eio@unwedge-stress.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg1-17/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_await@wide-contexts:
- shard-dg2: [PASS][26] -> [TIMEOUT][27] ([i915#5892])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg2-11/igt@gem_exec_await@wide-contexts.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@gem_exec_await@wide-contexts.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4812])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-7/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4036])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-12/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@pi@ccs0:
- shard-mtlp: [PASS][31] -> [FAIL][32] ([i915#7765])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-8/igt@gem_exec_capture@pi@ccs0.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-1/igt@gem_exec_capture@pi@ccs0.html
* igt@gem_exec_capture@pi@rcs0:
- shard-mtlp: [PASS][33] -> [FAIL][34] ([i915#4475])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-8/igt@gem_exec_capture@pi@rcs0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-1/igt@gem_exec_capture@pi@rcs0.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4812])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-6/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3711])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-2/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +2 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-12/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281]) +5 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +9 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-12/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-2/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812]) +1 similar issue
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-6/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4860])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_huc_copy@huc-copy:
- shard-apl: NOTRUN -> [SKIP][44] ([fdo#109271] / [i915#2190])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-apl6/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-8/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@verify:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-1/igt@gem_lmem_swapping@verify.html
* igt@gem_mmap_gtt@medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-4/igt@gem_mmap_gtt@medium-copy.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4083]) +8 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-6/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4083])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg1-13/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#3282]) +2 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#3282]) +3 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@gem_pread@snoop.html
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3282]) +2 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-5/igt@gem_pread@snoop.html
* igt@gem_pxp@create-regular-buffer:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4270]) +1 similar issue
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-5/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#4270])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4270]) +1 similar issue
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-6/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#8428]) +3 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-8/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4885])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-2/igt@gem_softpin@evict-snoop-interruptible.html
- shard-tglu: NOTRUN -> [SKIP][58] ([fdo#109312])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-2/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_spin_batch@user-each:
- shard-mtlp: [PASS][59] -> [DMESG-FAIL][60] ([i915#8962])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-8/igt@gem_spin_batch@user-each.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-4/igt@gem_spin_batch@user-each.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4879])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-10/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#3297])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-12/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3297])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297] / [i915#4880])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@vma-merge:
- shard-tglu: NOTRUN -> [FAIL][65] ([i915#3318])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-9/igt@gem_userptr_blits@vma-merge.html
* igt@gen3_render_mixed_blits:
- shard-rkl: NOTRUN -> [SKIP][66] ([fdo#109289]) +1 similar issue
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-1/igt@gen3_render_mixed_blits.html
* igt@gen7_exec_parse@chained-batch:
- shard-dg2: NOTRUN -> [SKIP][67] ([fdo#109289]) +2 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-12/igt@gen7_exec_parse@chained-batch.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#2856])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-7/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#2856]) +3 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#2527])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-4/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_hangman@engine-engine-error@vcs0:
- shard-mtlp: [PASS][72] -> [FAIL][73] ([i915#7069])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-4/igt@i915_hangman@engine-engine-error@vcs0.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-1/igt@i915_hangman@engine-engine-error@vcs0.html
* igt@i915_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#7707])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-9/igt@i915_hwmon@hwmon-read.html
* igt@i915_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#7561])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-7/igt@i915_pm_backlight@fade-with-dpms.html
* igt@i915_pm_dc@dc6-dpms:
- shard-tglu: [PASS][76] -> [FAIL][77] ([i915#3989] / [i915#454])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-tglu-9/igt@i915_pm_dc@dc6-dpms.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-5/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3361])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-3/igt@i915_pm_dc@dc6-psr.html
* igt@i915_pm_dc@dc9-dpms:
- shard-tglu: [PASS][79] -> [SKIP][80] ([i915#4281])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-3/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
- shard-rkl: [PASS][81] -> [SKIP][82] ([i915#1937])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-2/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
* igt@i915_pm_rpm@cursor-dpms:
- shard-tglu: NOTRUN -> [FAIL][83] ([i915#7940])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-8/igt@i915_pm_rpm@cursor-dpms.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-dg2: NOTRUN -> [SKIP][84] ([fdo#109506])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rpm@gem-execbuf@lmem0:
- shard-dg1: [PASS][85] -> [FAIL][86] ([i915#7940])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf@lmem0.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg1-15/igt@i915_pm_rpm@gem-execbuf@lmem0.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#1397])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-4/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu: NOTRUN -> [SKIP][88] ([fdo#111644] / [i915#1397])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][89] -> [SKIP][90] ([i915#1397])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@i915_pm_rpm@pc8-residency:
- shard-mtlp: NOTRUN -> [SKIP][91] ([fdo#109293])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-8/igt@i915_pm_rpm@pc8-residency.html
* igt@i915_pm_rps@basic-api:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#6621])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-7/igt@i915_pm_rps@basic-api.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#7984])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-1/igt@i915_power@sanity.html
* igt@i915_suspend@fence-restore-untiled:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#4077]) +10 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-2/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#4212])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-1/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#4212])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-apl: NOTRUN -> [SKIP][97] ([fdo#109271]) +32 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-apl4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#8502]) +3 similar issues
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [FAIL][99] ([i915#8247]) +3 similar issues
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#6229])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-3/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#1769] / [i915#3555])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-12/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#5286]) +1 similar issue
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#5286])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-2/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [PASS][104] -> [FAIL][105] ([i915#5138])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][106] ([fdo#111614] / [i915#3638]) +1 similar issue
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#3638])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg1-17/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][108] ([fdo#111614]) +3 similar issues
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][109] ([fdo#111614])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: [PASS][110] -> [FAIL][111] ([i915#3743])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#5190]) +10 similar issues
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [SKIP][113] ([fdo#111615]) +3 similar issues
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][114] ([fdo#110723]) +1 similar issue
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5190]) +3 similar issues
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][116] ([fdo#111615])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_joiner@2x-modeset:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#2705])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-1/igt@kms_big_joiner@2x-modeset.html
* igt@kms_ccs@pipe-a-bad-pixel-format-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][118] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-3/igt@kms_ccs@pipe-a-bad-pixel-format-yf_tiled_ccs.html
* igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#3734] / [i915#5354] / [i915#6095]) +3 similar issues
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-2/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6095]) +10 similar issues
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-1/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#3689] / [i915#5354] / [i915#6095]) +6 similar issues
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-3/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][123] ([fdo#109271] / [i915#3886]) +2 similar issues
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-apl4/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_mtl_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#5354] / [i915#6095]) +1 similar issue
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-4/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#3689] / [i915#5354]) +22 similar issues
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-1/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][126] ([i915#5354] / [i915#6095]) +4 similar issues
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#5354]) +11 similar issues
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-1/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#3886] / [i915#6095])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-7/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#3689] / [i915#3886] / [i915#5354]) +8 similar issues
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-1/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2: NOTRUN -> [SKIP][130] ([fdo#111827])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-6/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-tglu: NOTRUN -> [SKIP][131] ([fdo#111827])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-3/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-mtlp: NOTRUN -> [SKIP][132] ([fdo#111827])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-3/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#7828]) +8 similar issues
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#7828]) +2 similar issues
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-1/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#7828]) +1 similar issue
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-1/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#7828]) +1 similar issue
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-2/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#3555]) +2 similar issues
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-1/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3299])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy@pipe-a-dp-2:
- shard-dg2: NOTRUN -> [TIMEOUT][139] ([i915#7173])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-12/igt@kms_content_protection@legacy@pipe-a-dp-2.html
* igt@kms_content_protection@mei_interface:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#7118] / [i915#7162])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@kms_content_protection@mei_interface.html
* igt@kms_content_protection@uevent:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#7116])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg1-19/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#3555]) +1 similar issue
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#3359])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg1: NOTRUN -> [SKIP][144] ([fdo#111825]) +1 similar issue
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg1-18/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3546]) +1 similar issue
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#4103] / [i915#4213]) +1 similar issue
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#4103])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: NOTRUN -> [SKIP][148] ([fdo#109274] / [i915#5354]) +4 similar issues
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-12/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][149] ([fdo#109274])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [PASS][150] -> [FAIL][151] ([i915#2346])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#4213])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#4103])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#3804])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#3840])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-6/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#3840])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#3469])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_fence_pin_leak:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#4881])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-4/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3637]) +3 similar issues
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-snb: NOTRUN -> [SKIP][160] ([fdo#109271] / [fdo#111767])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-snb6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][161] ([fdo#109274]) +8 similar issues
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-12/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][162] ([fdo#109274] / [i915#3637]) +1 similar issue
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-5/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][163] ([fdo#111825]) +2 similar issues
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-4/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2: NOTRUN -> [FAIL][164] ([fdo#103375])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-mtlp: [PASS][165] -> [DMESG-WARN][166] ([i915#1982])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-2/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-7/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#2672]) +4 similar issues
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#2672])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#2587] / [i915#2672]) +1 similar issue
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#5274])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#5354]) +33 similar issues
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#3023]) +2 similar issues
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][173] ([fdo#111825] / [i915#1825]) +15 similar issues
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][174] ([fdo#109280]) +7 similar issues
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-snb: NOTRUN -> [SKIP][175] ([fdo#109271]) +191 similar issues
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-snb1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#8708])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#3458]) +18 similar issues
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#1825]) +11 similar issues
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#8708]) +11 similar issues
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#6118])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-1/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8228]) +1 similar issue
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-2/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8228])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8228])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-2/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane@pixel-format@pipe-b-planes:
- shard-mtlp: [PASS][184] -> [FAIL][185] ([i915#1623])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-2/igt@kms_plane@pixel-format@pipe-b-planes.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
- shard-snb: NOTRUN -> [DMESG-WARN][186] ([i915#8841]) +4 similar issues
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-snb2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#6953])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][188] -> [FAIL][189] ([i915#8292])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#5176]) +7 similar issues
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#5176]) +1 similar issue
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#5176]) +3 similar issues
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#5176]) +3 similar issues
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#5235]) +3 similar issues
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#5235]) +5 similar issues
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#5235]) +15 similar issues
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#5235]) +3 similar issues
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#5235]) +7 similar issues
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#658]) +1 similar issue
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-1/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#658])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-7/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#658]) +4 similar issues
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-6/igt@kms_psr2_su@page_flip-nv12.html
- shard-tglu: NOTRUN -> [SKIP][202] ([fdo#109642] / [fdo#111068] / [i915#658])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-10/igt@kms_psr2_su@page_flip-nv12.html
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#4348])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-5/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@primary_blt:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#1072]) +5 similar issues
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-2/igt@kms_psr@primary_blt.html
* igt@kms_psr@psr2_cursor_plane_onoff:
- shard-tglu: NOTRUN -> [SKIP][205] ([fdo#110189]) +6 similar issues
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-4/igt@kms_psr@psr2_cursor_plane_onoff.html
* igt@kms_psr@sprite_blt:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#1072]) +4 similar issues
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-1/igt@kms_psr@sprite_blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#5461] / [i915#658])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#4235] / [i915#5190])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#4235])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-12/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#3555]) +2 similar issues
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#4098])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-2/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#4070] / [i915#6768]) +1 similar issue
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-2/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
* igt@kms_vblank@pipe-d-query-forked:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#4070] / [i915#533] / [i915#6768]) +1 similar issue
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-1/igt@kms_vblank@pipe-d-query-forked.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#2437])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#2437])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-7/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: NOTRUN -> [SKIP][216] ([fdo#109289]) +1 similar issue
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-5/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [PASS][217] -> [FAIL][218] ([i915#9100])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#2433])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-idle-check-all@ccs0:
- shard-mtlp: [PASS][220] -> [FAIL][221] ([i915#4521]) +3 similar issues
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@ccs0.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-6/igt@perf_pmu@busy-idle-check-all@ccs0.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][222] ([i915#5793] / [i915#6121])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-2/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#8516])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-5/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [INCOMPLETE][224] ([i915#5493])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-12/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3291] / [i915#3708])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][226] ([fdo#109295] / [i915#3708])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-1/igt@prime_vgem@fence-flip-hang.html
* igt@sw_sync@timeline_closed_signaled:
- shard-mtlp: [PASS][227] -> [DMESG-WARN][228] ([i915#2017])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-3/igt@sw_sync@timeline_closed_signaled.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-2/igt@sw_sync@timeline_closed_signaled.html
* igt@sysfs_heartbeat_interval@nopreempt@vcs0:
- shard-mtlp: NOTRUN -> [FAIL][229] ([i915#6015]) +5 similar issues
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-1/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#2575]) +12 similar issues
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_submit_cl@multiple-job-submission:
- shard-tglu: NOTRUN -> [SKIP][231] ([fdo#109315] / [i915#2575]) +1 similar issue
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-3/igt@v3d/v3d_submit_cl@multiple-job-submission.html
* igt@v3d/v3d_submit_cl@single-out-sync:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#2575]) +1 similar issue
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-7/igt@v3d/v3d_submit_cl@single-out-sync.html
* igt@v3d/v3d_submit_csd@bad-extension:
- shard-rkl: NOTRUN -> [SKIP][233] ([fdo#109315]) +2 similar issues
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-4/igt@v3d/v3d_submit_csd@bad-extension.html
* igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#7711]) +2 similar issues
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-4/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html
* igt@vc4/vc4_label_bo@set-bad-handle:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#2575]) +2 similar issues
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-8/igt@vc4/vc4_label_bo@set-bad-handle.html
* igt@vc4/vc4_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#7711]) +1 similar issue
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-2/igt@vc4/vc4_perfmon@create-perfmon-exceed.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#7711]) +11 similar issues
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-11/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [FAIL][238] ([i915#7742]) -> [PASS][239] +1 similar issue
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-7/igt@drm_fdinfo@virtual-idle.html
* igt@gem_ctx_persistence@engines-hostile@vcs0:
- shard-mtlp: [FAIL][240] ([i915#2410]) -> [PASS][241] +5 similar issues
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-1/igt@gem_ctx_persistence@engines-hostile@vcs0.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-8/igt@gem_ctx_persistence@engines-hostile@vcs0.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][242] ([i915#5784]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg1-13/igt@gem_eio@reset-stress.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg1-17/igt@gem_eio@reset-stress.html
* igt@gem_exec_capture@pi@vcs0:
- shard-mtlp: [FAIL][244] ([i915#4475]) -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-8/igt@gem_exec_capture@pi@vcs0.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-1/igt@gem_exec_capture@pi@vcs0.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-rkl: [FAIL][246] ([i915#2842]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-rkl-1/igt@gem_exec_fair@basic-pace@bcs0.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_schedule@preempt-engines@ccs0:
- shard-mtlp: [FAIL][248] -> [PASS][249] +5 similar issues
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@ccs0.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-3/igt@gem_exec_schedule@preempt-engines@ccs0.html
* igt@gem_exec_schedule@preempt-engines@rcs0:
- shard-mtlp: [DMESG-FAIL][250] -> [PASS][251] +1 similar issue
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@rcs0.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-3/igt@gem_exec_schedule@preempt-engines@rcs0.html
* igt@gem_exec_schedule@preemptive-hang@vcs0:
- shard-mtlp: [FAIL][252] ([i915#9051]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-2/igt@gem_exec_schedule@preemptive-hang@vcs0.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-7/igt@gem_exec_schedule@preemptive-hang@vcs0.html
* igt@gem_spin_batch@spin-each:
- shard-mtlp: [DMESG-FAIL][254] ([i915#8962]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-4/igt@gem_spin_batch@spin-each.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-5/igt@gem_spin_batch@spin-each.html
* igt@gen9_exec_parse@allowed-single:
- shard-apl: [ABORT][256] ([i915#5566]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-apl1/igt@gen9_exec_parse@allowed-single.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-apl2/igt@gen9_exec_parse@allowed-single.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-mtlp: [SKIP][258] ([i915#8403]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle@bcs0:
- shard-dg1: [FAIL][260] ([i915#3591]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- shard-dg1: [FAIL][262] ([i915#7691]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg1-17/igt@i915_pm_rpm@basic-pci-d3-state.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-lmem0:
- shard-dg1: [FAIL][264] ([i915#7940]) -> [PASS][265] +1 similar issue
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg1-16/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-lmem0.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg1-13/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-lmem0.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][266] ([i915#1397]) -> [PASS][267] +1 similar issue
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg2-6/igt@i915_pm_rpm@modeset-lpsp.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][268] ([i915#1397]) -> [PASS][269]
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg1: [SKIP][270] ([i915#1397]) -> [PASS][271]
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg1-16/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@i915_selftest@live@gt_mocs:
- shard-mtlp: [DMESG-FAIL][272] ([i915#7059]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-1/igt@i915_selftest@live@gt_mocs.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-6/igt@i915_selftest@live@gt_mocs.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
- shard-mtlp: [FAIL][274] ([i915#2521]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1:
- shard-glk: [FAIL][276] ([i915#2521]) -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-glk8/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-mtlp: [FAIL][278] ([i915#3743]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-dg2: [FAIL][280] ([i915#6880]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-12/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-planes:
- shard-mtlp: [FAIL][282] ([i915#1623]) -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-1/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-4/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html
* igt@perf_pmu@busy-double-start@ccs3:
- shard-dg2: [FAIL][284] ([i915#4349]) -> [PASS][285] +7 similar issues
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg2-10/igt@perf_pmu@busy-double-start@ccs3.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-6/igt@perf_pmu@busy-double-start@ccs3.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-dg1: [FAIL][286] ([i915#4349]) -> [PASS][287] +2 similar issues
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg1-17/igt@perf_pmu@busy-double-start@vcs1.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg1-14/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@rc6-suspend:
- shard-tglu: [ABORT][288] ([i915#5122] / [i915#5251]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-tglu-8/igt@perf_pmu@rc6-suspend.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-tglu-4/igt@perf_pmu@rc6-suspend.html
* igt@perf_pmu@rc6@runtime-pm-long-gt1:
- shard-mtlp: [SKIP][290] ([i915#8537]) -> [PASS][291] +2 similar issues
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-7/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-2/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
* igt@sysfs_heartbeat_interval@mixed@ccs0:
- shard-mtlp: [ABORT][292] ([i915#8552]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@ccs0.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-8/igt@sysfs_heartbeat_interval@mixed@ccs0.html
* igt@sysfs_heartbeat_interval@mixed@vecs0:
- shard-mtlp: [FAIL][294] ([i915#1731]) -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@vecs0.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-8/igt@sysfs_heartbeat_interval@mixed@vecs0.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [DMESG-WARN][296] ([i915#7061] / [i915#8617]) -> [WARN][297] ([i915#7356])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_content_protection@mei_interface:
- shard-dg1: [SKIP][298] ([fdo#109300]) -> [SKIP][299] ([i915#7116])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg1-13/igt@kms_content_protection@mei_interface.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg1-16/igt@kms_content_protection@mei_interface.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-mtlp: [FAIL][300] ([i915#2346]) -> [DMESG-FAIL][301] ([i915#2017] / [i915#5954])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][302] ([i915#4070] / [i915#4816]) -> [SKIP][303] ([i915#4816])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: [SKIP][304] ([i915#1072]) -> [SKIP][305] ([i915#1072] / [i915#4078]) +1 similar issue
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13507/shard-dg1-17/igt@kms_psr@cursor_plane_move.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/shard-dg1-13/igt@kms_psr@cursor_plane_move.html
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623
[i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[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#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[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#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#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#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475
[i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521
[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#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
[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#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[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#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892
[i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954
[i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061
[i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
[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#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7765]: https://gitlab.freedesktop.org/drm/intel/issues/7765
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8537]: https://gitlab.freedesktop.org/drm/intel/issues/8537
[i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
[i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962
[i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051
[i915#9100]: https://gitlab.freedesktop.org/drm/intel/issues/9100
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7430 -> IGTPW_9575
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13507: 836bdeb32920259516f05778a43cb80302e83e15 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9575: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/index.html
IGT_7430: 7430
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9575/index.html
[-- Attachment #2: Type: text/html, Size: 97019 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] RFC tests/xe: Add a test that validates idle residency on exec
2023-08-11 10:32 ` [igt-dev] [PATCH i-g-t 1/2] RFC tests/xe: Add a test that validates idle residency on exec Riana Tauro
@ 2023-08-28 16:28 ` Nilawar, Badal
2023-08-30 5:15 ` Riana Tauro
2023-08-28 16:41 ` Belgaumkar, Vinay
2023-09-05 10:54 ` [igt-dev] [PATCH i-g-t v2 1/2] " Riana Tauro
2 siblings, 1 reply; 22+ messages in thread
From: Nilawar, Badal @ 2023-08-28 16:28 UTC (permalink / raw)
To: Riana Tauro, igt-dev
Hi Riana,
On 11-08-2023 16:02, Riana Tauro wrote:
> Add a test what runs a background load that is
> active approximately 1% of the time. Verify that we do enter
> GT-C6 the rest of the time and validate idle residency is within
> tolerance.
>
> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
> ---
> tests/xe/xe_pm_residency.c | 135 ++++++++++++++++++++++++++++++++++++-
> 1 file changed, 133 insertions(+), 2 deletions(-)
>
> diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c
> index 4936de166..abf07c696 100644
> --- a/tests/xe/xe_pm_residency.c
> +++ b/tests/xe/xe_pm_residency.c
> @@ -11,13 +11,18 @@
> * Test category: functionality test
> */
>
> +#include <time.h>
> +
> #include "igt.h"
> #include "igt_sysfs.h"
>
> +#include "lib/igt_syncobj.h"
> +
> +#include "xe/xe_ioctl.h"
> #include "xe/xe_query.h"
> #include "xe/xe_util.h"
>
> -#define SLEEP_DURATION 3000 /* in milliseconds */
> +#define SLEEP_DURATION 3 /* in seconds */
>
> const double tolerance = 0.1;
>
> @@ -38,9 +43,98 @@ const double tolerance = 0.1;
> * Description: basic residency test to validate idle residency
> * measured over a time interval is within the tolerance
> * Run type: FULL
> + *
> + * SUBTEST: idle-residency-on-exec
> + * Description: Validate idle residency measured when a background
> + * is only active for ~1% of the time
> + * Run type: FULL
> */
> IGT_TEST_DESCRIPTION("Tests for gtidle properties");
>
> +static void exec_load(int fd, struct drm_xe_engine_class_instance *hwe, unsigned long *done)
> +{
> + uint32_t bo = 0;
> + uint32_t exec_queue, syncobj, vm;
> + uint64_t addr = 0x1a0000;
> + uint64_t batch_addr, batch_offset, data_addr, data_offset;
> + size_t bo_size;
> + int b;
> + struct {
> + uint32_t batch[16];
> + uint64_t pad;
> + uint32_t data;
> + } *data;
> +
> + struct drm_xe_sync sync = {
> + .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL,
> + };
> +
> + struct drm_xe_exec exec = {
> + .num_batch_buffer = 1,
> + .num_syncs = 1,
> + .syncs = to_user_pointer(&sync),
> + };
> +
> + vm = xe_vm_create(fd, 0, 0);
> + exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
> + bo_size = xe_get_default_alignment(fd);
> +
> + bo = xe_bo_create_flags(fd, vm, bo_size,
> + visible_vram_if_possible(fd, hwe->gt_id));
> + data = xe_bo_map(fd, bo, bo_size);
> + syncobj = syncobj_create(fd, 0);
> +
> + xe_vm_bind_sync(fd, vm, bo, 0, addr, bo_size);
> +
> + batch_offset = (char *)&data->batch - (char *)data;
> + batch_addr = addr + batch_offset;
> + data_offset = (char *)&data->data - (char *)data;
> + data_addr = addr + data_offset;
> +
> + do {
> + uint64_t submit, elapsed;
> + struct timespec tv = {};
> +
> + b = 0;
> + done[1]++;
> + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
> + data->batch[b++] = data_addr;
> + data->batch[b++] = data_addr >> 32;
> + data->batch[b++] = done[1];
> + data->batch[b++] = MI_BATCH_BUFFER_END;
> + igt_assert(b <= ARRAY_SIZE(data->batch));
Curious to know why MI_BATCH_BUFFER_START is not needed in batch buffer.
> +
> + exec.exec_queue_id = exec_queue;
> + exec.address = batch_addr;
> + sync.handle = syncobj;
> +
> + igt_nsec_elapsed(&tv);
> + xe_exec(fd, &exec);
> + submit = igt_nsec_elapsed(&tv);
> +
> + igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
> + elapsed = igt_nsec_elapsed(&tv);
> + igt_assert_eq(data->data, done[1]);
> +
> + igt_debug("Execution took %.3fms (submit %.1fus, wait %.1fus)\n",
> + 1e-6 * elapsed,
> + 1e-3 * submit,
> + 1e-3 * (elapsed - submit));
> +
> + syncobj_reset(fd, &syncobj, 1);
> +
> + /* Aim for ~1% busy */
This is sleep for 99% of execution (elapsed) time? May be you can add
some explanation with example here.
> + usleep(elapsed / 10);
> + } while (!READ_ONCE(*done));
> +
> + xe_vm_unbind_sync(fd, vm, 0, addr, bo_size);
> + syncobj_destroy(fd, syncobj);
> + munmap(data, bo_size);
> + gem_close(fd, bo);
> + xe_exec_queue_destroy(fd, exec_queue);
> + xe_vm_destroy(fd, vm);
> +}
> +
> static unsigned int measured_usleep(unsigned int usec)
> {
> struct timespec ts = { };
> @@ -76,7 +170,7 @@ static void test_idle_residency(int fd, int gt)
> igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), "GT not in C6\n");
>
> residency_start = read_idle_residency(fd, gt);
> - elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000;
> + elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
> residency_end = read_idle_residency(fd, gt);
>
> igt_info("Measured %lums of idle residency in %lums\n",
> @@ -85,9 +179,41 @@ static void test_idle_residency(int fd, int gt)
> assert_within_epsilon(residency_end - residency_start, elapsed_ms, tolerance);
> }
>
> +static void idle_residency_on_exec(int fd, struct drm_xe_engine_class_instance *hwe)
> +{
> + const int tol = 20;
> + unsigned long *done;
> + unsigned long cycles, elapsed_ms, residency;
> +
> + done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
> + igt_assert(done != MAP_FAILED);
> + memset(done, 0, 4096);
> +
> + igt_fork(child, 1)
> + exec_load(fd, hwe, done);
> +
> + cycles -= READ_ONCE(done[1]);
> + residency -= read_idle_residency(fd, hwe->gt_id);
> + elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
> + residency += read_idle_residency(fd, hwe->gt_id);
> + cycles += READ_ONCE(done[1]);
As discussed use separate variables for start and end here.
> + *done = 1;
> +
> + igt_waitchildren();
> +
> + /* At least one wakeup/s needed for a reasonable test */
> + igt_assert(cycles >= SLEEP_DURATION);
> +
> + /* While very nearly busy, expect full GT C6 */
> + assert_within_epsilon(residency, elapsed_ms, tol);
I think residency will always be less than elapsed time.
Regards,
Badal
> +
> + munmap(done, 4096);
> +}
> +
> igt_main
> {
> int fd, gt;
> + struct drm_xe_engine_class_instance *hwe;
>
> igt_fixture {
> fd = drm_open_driver(DRIVER_XE);
> @@ -104,6 +230,11 @@ igt_main
> xe_for_each_gt(fd, gt)
> test_idle_residency(fd, gt);
>
> + igt_describe("Validate idle residency on exec");
> + igt_subtest("idle-residency-on-exec")
> + xe_for_each_hw_engine(fd, hwe)
> + idle_residency_on_exec(fd, hwe);
> +
> igt_fixture {
> close(fd);
> }
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] RFC tests/xe: Add a test that validates idle residency on exec
2023-08-11 10:32 ` [igt-dev] [PATCH i-g-t 1/2] RFC tests/xe: Add a test that validates idle residency on exec Riana Tauro
2023-08-28 16:28 ` Nilawar, Badal
@ 2023-08-28 16:41 ` Belgaumkar, Vinay
2023-08-28 18:18 ` Nilawar, Badal
2023-09-05 10:54 ` [igt-dev] [PATCH i-g-t v2 1/2] " Riana Tauro
2 siblings, 1 reply; 22+ messages in thread
From: Belgaumkar, Vinay @ 2023-08-28 16:41 UTC (permalink / raw)
To: Riana Tauro, igt-dev; +Cc: badal.nilawar
On 8/11/2023 3:32 AM, Riana Tauro wrote:
> Add a test what runs a background load that is
> active approximately 1% of the time. Verify that we do enter
> GT-C6 the rest of the time and validate idle residency is within
> tolerance.
>
> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
> ---
> tests/xe/xe_pm_residency.c | 135 ++++++++++++++++++++++++++++++++++++-
> 1 file changed, 133 insertions(+), 2 deletions(-)
>
> diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c
> index 4936de166..abf07c696 100644
> --- a/tests/xe/xe_pm_residency.c
> +++ b/tests/xe/xe_pm_residency.c
> @@ -11,13 +11,18 @@
> * Test category: functionality test
> */
>
> +#include <time.h>
> +
> #include "igt.h"
> #include "igt_sysfs.h"
>
> +#include "lib/igt_syncobj.h"
> +
> +#include "xe/xe_ioctl.h"
> #include "xe/xe_query.h"
> #include "xe/xe_util.h"
>
> -#define SLEEP_DURATION 3000 /* in milliseconds */
> +#define SLEEP_DURATION 3 /* in seconds */
>
> const double tolerance = 0.1;
>
> @@ -38,9 +43,98 @@ const double tolerance = 0.1;
> * Description: basic residency test to validate idle residency
> * measured over a time interval is within the tolerance
> * Run type: FULL
> + *
> + * SUBTEST: idle-residency-on-exec
> + * Description: Validate idle residency measured when a background
> + * is only active for ~1% of the time
> + * Run type: FULL
> */
> IGT_TEST_DESCRIPTION("Tests for gtidle properties");
>
> +static void exec_load(int fd, struct drm_xe_engine_class_instance *hwe, unsigned long *done)
> +{
> + uint32_t bo = 0;
> + uint32_t exec_queue, syncobj, vm;
> + uint64_t addr = 0x1a0000;
> + uint64_t batch_addr, batch_offset, data_addr, data_offset;
> + size_t bo_size;
> + int b;
> + struct {
> + uint32_t batch[16];
> + uint64_t pad;
> + uint32_t data;
> + } *data;
> +
> + struct drm_xe_sync sync = {
> + .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL,
> + };
> +
> + struct drm_xe_exec exec = {
> + .num_batch_buffer = 1,
> + .num_syncs = 1,
> + .syncs = to_user_pointer(&sync),
> + };
> +
> + vm = xe_vm_create(fd, 0, 0);
> + exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
> + bo_size = xe_get_default_alignment(fd);
> +
> + bo = xe_bo_create_flags(fd, vm, bo_size,
> + visible_vram_if_possible(fd, hwe->gt_id));
> + data = xe_bo_map(fd, bo, bo_size);
> + syncobj = syncobj_create(fd, 0);
> +
> + xe_vm_bind_sync(fd, vm, bo, 0, addr, bo_size);
> +
> + batch_offset = (char *)&data->batch - (char *)data;
> + batch_addr = addr + batch_offset;
> + data_offset = (char *)&data->data - (char *)data;
> + data_addr = addr + data_offset;
> +
> + do {
> + uint64_t submit, elapsed;
> + struct timespec tv = {};
> +
> + b = 0;
> + done[1]++;
> + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
> + data->batch[b++] = data_addr;
> + data->batch[b++] = data_addr >> 32;
> + data->batch[b++] = done[1];
It'll be better to align this batch like the one here -
https://patchwork.freedesktop.org/series/122462/
Thanks,
Vinay.
> + data->batch[b++] = MI_BATCH_BUFFER_END;
> + igt_assert(b <= ARRAY_SIZE(data->batch));
> +
> + exec.exec_queue_id = exec_queue;
> + exec.address = batch_addr;
> + sync.handle = syncobj;
> +
> + igt_nsec_elapsed(&tv);
> + xe_exec(fd, &exec);
> + submit = igt_nsec_elapsed(&tv);
> +
> + igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
> + elapsed = igt_nsec_elapsed(&tv);
> + igt_assert_eq(data->data, done[1]);
> +
> + igt_debug("Execution took %.3fms (submit %.1fus, wait %.1fus)\n",
> + 1e-6 * elapsed,
> + 1e-3 * submit,
> + 1e-3 * (elapsed - submit));
> +
> + syncobj_reset(fd, &syncobj, 1);
> +
> + /* Aim for ~1% busy */
> + usleep(elapsed / 10);
> + } while (!READ_ONCE(*done));
> +
> + xe_vm_unbind_sync(fd, vm, 0, addr, bo_size);
> + syncobj_destroy(fd, syncobj);
> + munmap(data, bo_size);
> + gem_close(fd, bo);
> + xe_exec_queue_destroy(fd, exec_queue);
> + xe_vm_destroy(fd, vm);
> +}
> +
> static unsigned int measured_usleep(unsigned int usec)
> {
> struct timespec ts = { };
> @@ -76,7 +170,7 @@ static void test_idle_residency(int fd, int gt)
> igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), "GT not in C6\n");
>
> residency_start = read_idle_residency(fd, gt);
> - elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000;
> + elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
> residency_end = read_idle_residency(fd, gt);
>
> igt_info("Measured %lums of idle residency in %lums\n",
> @@ -85,9 +179,41 @@ static void test_idle_residency(int fd, int gt)
> assert_within_epsilon(residency_end - residency_start, elapsed_ms, tolerance);
> }
>
> +static void idle_residency_on_exec(int fd, struct drm_xe_engine_class_instance *hwe)
> +{
> + const int tol = 20;
> + unsigned long *done;
> + unsigned long cycles, elapsed_ms, residency;
> +
> + done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
> + igt_assert(done != MAP_FAILED);
> + memset(done, 0, 4096);
> +
> + igt_fork(child, 1)
> + exec_load(fd, hwe, done);
> +
> + cycles -= READ_ONCE(done[1]);
> + residency -= read_idle_residency(fd, hwe->gt_id);
> + elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
> + residency += read_idle_residency(fd, hwe->gt_id);
> + cycles += READ_ONCE(done[1]);
> + *done = 1;
> +
> + igt_waitchildren();
> +
> + /* At least one wakeup/s needed for a reasonable test */
> + igt_assert(cycles >= SLEEP_DURATION);
> +
> + /* While very nearly busy, expect full GT C6 */
> + assert_within_epsilon(residency, elapsed_ms, tol);
> +
> + munmap(done, 4096);
> +}
> +
> igt_main
> {
> int fd, gt;
> + struct drm_xe_engine_class_instance *hwe;
>
> igt_fixture {
> fd = drm_open_driver(DRIVER_XE);
> @@ -104,6 +230,11 @@ igt_main
> xe_for_each_gt(fd, gt)
> test_idle_residency(fd, gt);
>
> + igt_describe("Validate idle residency on exec");
> + igt_subtest("idle-residency-on-exec")
> + xe_for_each_hw_engine(fd, hwe)
> + idle_residency_on_exec(fd, hwe);
> +
> igt_fixture {
> close(fd);
> }
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] RFC tests/xe: Add a test that validates idle residency on exec
2023-08-28 16:41 ` Belgaumkar, Vinay
@ 2023-08-28 18:18 ` Nilawar, Badal
2023-08-28 18:19 ` Belgaumkar, Vinay
0 siblings, 1 reply; 22+ messages in thread
From: Nilawar, Badal @ 2023-08-28 18:18 UTC (permalink / raw)
To: Belgaumkar, Vinay, Riana Tauro, igt-dev
On 28-08-2023 22:11, Belgaumkar, Vinay wrote:
>
> On 8/11/2023 3:32 AM, Riana Tauro wrote:
>> Add a test what runs a background load that is
>> active approximately 1% of the time. Verify that we do enter
>> GT-C6 the rest of the time and validate idle residency is within
>> tolerance.
>>
>> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
>> ---
>> tests/xe/xe_pm_residency.c | 135 ++++++++++++++++++++++++++++++++++++-
>> 1 file changed, 133 insertions(+), 2 deletions(-)
>>
>> diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c
>> index 4936de166..abf07c696 100644
>> --- a/tests/xe/xe_pm_residency.c
>> +++ b/tests/xe/xe_pm_residency.c
>> @@ -11,13 +11,18 @@
>> * Test category: functionality test
>> */
>> +#include <time.h>
>> +
>> #include "igt.h"
>> #include "igt_sysfs.h"
>> +#include "lib/igt_syncobj.h"
>> +
>> +#include "xe/xe_ioctl.h"
>> #include "xe/xe_query.h"
>> #include "xe/xe_util.h"
>> -#define SLEEP_DURATION 3000 /* in milliseconds */
>> +#define SLEEP_DURATION 3 /* in seconds */
>> const double tolerance = 0.1;
>> @@ -38,9 +43,98 @@ const double tolerance = 0.1;
>> * Description: basic residency test to validate idle residency
>> * measured over a time interval is within the tolerance
>> * Run type: FULL
>> + *
>> + * SUBTEST: idle-residency-on-exec
>> + * Description: Validate idle residency measured when a background
>> + * is only active for ~1% of the time
>> + * Run type: FULL
>> */
>> IGT_TEST_DESCRIPTION("Tests for gtidle properties");
>> +static void exec_load(int fd, struct drm_xe_engine_class_instance
>> *hwe, unsigned long *done)
>> +{
>> + uint32_t bo = 0;
>> + uint32_t exec_queue, syncobj, vm;
>> + uint64_t addr = 0x1a0000;
>> + uint64_t batch_addr, batch_offset, data_addr, data_offset;
>> + size_t bo_size;
>> + int b;
>> + struct {
>> + uint32_t batch[16];
>> + uint64_t pad;
>> + uint32_t data;
>> + } *data;
>> +
>> + struct drm_xe_sync sync = {
>> + .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL,
>> + };
>> +
>> + struct drm_xe_exec exec = {
>> + .num_batch_buffer = 1,
>> + .num_syncs = 1,
>> + .syncs = to_user_pointer(&sync),
>> + };
>> +
>> + vm = xe_vm_create(fd, 0, 0);
>> + exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
>> + bo_size = xe_get_default_alignment(fd);
>> +
>> + bo = xe_bo_create_flags(fd, vm, bo_size,
>> + visible_vram_if_possible(fd, hwe->gt_id));
>> + data = xe_bo_map(fd, bo, bo_size);
>> + syncobj = syncobj_create(fd, 0);
>> +
>> + xe_vm_bind_sync(fd, vm, bo, 0, addr, bo_size);
>> +
>> + batch_offset = (char *)&data->batch - (char *)data;
>> + batch_addr = addr + batch_offset;
>> + data_offset = (char *)&data->data - (char *)data;
>> + data_addr = addr + data_offset;
>> +
>> + do {
>> + uint64_t submit, elapsed;
>> + struct timespec tv = {};
>> +
>> + b = 0;
>> + done[1]++;
>> + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
>> + data->batch[b++] = data_addr;
>> + data->batch[b++] = data_addr >> 32;
>> + data->batch[b++] = done[1];
>
> It'll be better to align this batch like the one here -
> https://patchwork.freedesktop.org/series/122462/
This WL is not like spinner, it is a pulse after specific sleep
interval. Is alignment still recommended?
Regards,
Badal
>
> Thanks,
>
> Vinay.
>
>> + data->batch[b++] = MI_BATCH_BUFFER_END;
>> + igt_assert(b <= ARRAY_SIZE(data->batch));
>> +
>> + exec.exec_queue_id = exec_queue;
>> + exec.address = batch_addr;
>> + sync.handle = syncobj;
>> +
>> + igt_nsec_elapsed(&tv);
>> + xe_exec(fd, &exec);
>> + submit = igt_nsec_elapsed(&tv);
>> +
>> + igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
>> + elapsed = igt_nsec_elapsed(&tv);
>> + igt_assert_eq(data->data, done[1]);
>> +
>> + igt_debug("Execution took %.3fms (submit %.1fus, wait
>> %.1fus)\n",
>> + 1e-6 * elapsed,
>> + 1e-3 * submit,
>> + 1e-3 * (elapsed - submit));
>> +
>> + syncobj_reset(fd, &syncobj, 1);
>> +
>> + /* Aim for ~1% busy */
>> + usleep(elapsed / 10);
>> + } while (!READ_ONCE(*done));
>> +
>> + xe_vm_unbind_sync(fd, vm, 0, addr, bo_size);
>> + syncobj_destroy(fd, syncobj);
>> + munmap(data, bo_size);
>> + gem_close(fd, bo);
>> + xe_exec_queue_destroy(fd, exec_queue);
>> + xe_vm_destroy(fd, vm);
>> +}
>> +
>> static unsigned int measured_usleep(unsigned int usec)
>> {
>> struct timespec ts = { };
>> @@ -76,7 +170,7 @@ static void test_idle_residency(int fd, int gt)
>> igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), "GT not
>> in C6\n");
>> residency_start = read_idle_residency(fd, gt);
>> - elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000;
>> + elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
>> residency_end = read_idle_residency(fd, gt);
>> igt_info("Measured %lums of idle residency in %lums\n",
>> @@ -85,9 +179,41 @@ static void test_idle_residency(int fd, int gt)
>> assert_within_epsilon(residency_end - residency_start,
>> elapsed_ms, tolerance);
>> }
>> +static void idle_residency_on_exec(int fd, struct
>> drm_xe_engine_class_instance *hwe)
>> +{
>> + const int tol = 20;
>> + unsigned long *done;
>> + unsigned long cycles, elapsed_ms, residency;
>> +
>> + done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
>> + igt_assert(done != MAP_FAILED);
>> + memset(done, 0, 4096);
>> +
>> + igt_fork(child, 1)
>> + exec_load(fd, hwe, done);
>> +
>> + cycles -= READ_ONCE(done[1]);
>> + residency -= read_idle_residency(fd, hwe->gt_id);
>> + elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
>> + residency += read_idle_residency(fd, hwe->gt_id);
>> + cycles += READ_ONCE(done[1]);
>> + *done = 1;
>> +
>> + igt_waitchildren();
>> +
>> + /* At least one wakeup/s needed for a reasonable test */
>> + igt_assert(cycles >= SLEEP_DURATION);
>> +
>> + /* While very nearly busy, expect full GT C6 */
>> + assert_within_epsilon(residency, elapsed_ms, tol);
>> +
>> + munmap(done, 4096);
>> +}
>> +
>> igt_main
>> {
>> int fd, gt;
>> + struct drm_xe_engine_class_instance *hwe;
>> igt_fixture {
>> fd = drm_open_driver(DRIVER_XE);
>> @@ -104,6 +230,11 @@ igt_main
>> xe_for_each_gt(fd, gt)
>> test_idle_residency(fd, gt);
>> + igt_describe("Validate idle residency on exec");
>> + igt_subtest("idle-residency-on-exec")
>> + xe_for_each_hw_engine(fd, hwe)
>> + idle_residency_on_exec(fd, hwe);
>> +
>> igt_fixture {
>> close(fd);
>> }
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] RFC tests/xe: Add a test that validates idle residency on exec
2023-08-28 18:18 ` Nilawar, Badal
@ 2023-08-28 18:19 ` Belgaumkar, Vinay
0 siblings, 0 replies; 22+ messages in thread
From: Belgaumkar, Vinay @ 2023-08-28 18:19 UTC (permalink / raw)
To: Nilawar, Badal, Riana Tauro, igt-dev
On 8/28/2023 11:18 AM, Nilawar, Badal wrote:
>
>
> On 28-08-2023 22:11, Belgaumkar, Vinay wrote:
>>
>> On 8/11/2023 3:32 AM, Riana Tauro wrote:
>>> Add a test what runs a background load that is
>>> active approximately 1% of the time. Verify that we do enter
>>> GT-C6 the rest of the time and validate idle residency is within
>>> tolerance.
>>>
>>> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
>>> ---
>>> tests/xe/xe_pm_residency.c | 135
>>> ++++++++++++++++++++++++++++++++++++-
>>> 1 file changed, 133 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c
>>> index 4936de166..abf07c696 100644
>>> --- a/tests/xe/xe_pm_residency.c
>>> +++ b/tests/xe/xe_pm_residency.c
>>> @@ -11,13 +11,18 @@
>>> * Test category: functionality test
>>> */
>>> +#include <time.h>
>>> +
>>> #include "igt.h"
>>> #include "igt_sysfs.h"
>>> +#include "lib/igt_syncobj.h"
>>> +
>>> +#include "xe/xe_ioctl.h"
>>> #include "xe/xe_query.h"
>>> #include "xe/xe_util.h"
>>> -#define SLEEP_DURATION 3000 /* in milliseconds */
>>> +#define SLEEP_DURATION 3 /* in seconds */
>>> const double tolerance = 0.1;
>>> @@ -38,9 +43,98 @@ const double tolerance = 0.1;
>>> * Description: basic residency test to validate idle residency
>>> * measured over a time interval is within the tolerance
>>> * Run type: FULL
>>> + *
>>> + * SUBTEST: idle-residency-on-exec
>>> + * Description: Validate idle residency measured when a background
>>> + * is only active for ~1% of the time
>>> + * Run type: FULL
>>> */
>>> IGT_TEST_DESCRIPTION("Tests for gtidle properties");
>>> +static void exec_load(int fd, struct drm_xe_engine_class_instance
>>> *hwe, unsigned long *done)
>>> +{
>>> + uint32_t bo = 0;
>>> + uint32_t exec_queue, syncobj, vm;
>>> + uint64_t addr = 0x1a0000;
>>> + uint64_t batch_addr, batch_offset, data_addr, data_offset;
>>> + size_t bo_size;
>>> + int b;
>>> + struct {
>>> + uint32_t batch[16];
>>> + uint64_t pad;
>>> + uint32_t data;
>>> + } *data;
>>> +
>>> + struct drm_xe_sync sync = {
>>> + .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL,
>>> + };
>>> +
>>> + struct drm_xe_exec exec = {
>>> + .num_batch_buffer = 1,
>>> + .num_syncs = 1,
>>> + .syncs = to_user_pointer(&sync),
>>> + };
>>> +
>>> + vm = xe_vm_create(fd, 0, 0);
>>> + exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
>>> + bo_size = xe_get_default_alignment(fd);
>>> +
>>> + bo = xe_bo_create_flags(fd, vm, bo_size,
>>> + visible_vram_if_possible(fd, hwe->gt_id));
>>> + data = xe_bo_map(fd, bo, bo_size);
>>> + syncobj = syncobj_create(fd, 0);
>>> +
>>> + xe_vm_bind_sync(fd, vm, bo, 0, addr, bo_size);
>>> +
>>> + batch_offset = (char *)&data->batch - (char *)data;
>>> + batch_addr = addr + batch_offset;
>>> + data_offset = (char *)&data->data - (char *)data;
>>> + data_addr = addr + data_offset;
>>> +
>>> + do {
>>> + uint64_t submit, elapsed;
>>> + struct timespec tv = {};
>>> +
>>> + b = 0;
>>> + done[1]++;
>>> + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
>>> + data->batch[b++] = data_addr;
>>> + data->batch[b++] = data_addr >> 32;
>>> + data->batch[b++] = done[1];
>>
>> It'll be better to align this batch like the one here -
>> https://patchwork.freedesktop.org/series/122462/
> This WL is not like spinner, it is a pulse after specific sleep
> interval. Is alignment still recommended?
In that case, not required.
Thanks,
Vinay.
>
> Regards,
> Badal
>>
>> Thanks,
>>
>> Vinay.
>>
>>> + data->batch[b++] = MI_BATCH_BUFFER_END;
>>> + igt_assert(b <= ARRAY_SIZE(data->batch));
>>> +
>>> + exec.exec_queue_id = exec_queue;
>>> + exec.address = batch_addr;
>>> + sync.handle = syncobj;
>>> +
>>> + igt_nsec_elapsed(&tv);
>>> + xe_exec(fd, &exec);
>>> + submit = igt_nsec_elapsed(&tv);
>>> +
>>> + igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
>>> + elapsed = igt_nsec_elapsed(&tv);
>>> + igt_assert_eq(data->data, done[1]);
>>> +
>>> + igt_debug("Execution took %.3fms (submit %.1fus, wait
>>> %.1fus)\n",
>>> + 1e-6 * elapsed,
>>> + 1e-3 * submit,
>>> + 1e-3 * (elapsed - submit));
>>> +
>>> + syncobj_reset(fd, &syncobj, 1);
>>> +
>>> + /* Aim for ~1% busy */
>>> + usleep(elapsed / 10);
>>> + } while (!READ_ONCE(*done));
>>> +
>>> + xe_vm_unbind_sync(fd, vm, 0, addr, bo_size);
>>> + syncobj_destroy(fd, syncobj);
>>> + munmap(data, bo_size);
>>> + gem_close(fd, bo);
>>> + xe_exec_queue_destroy(fd, exec_queue);
>>> + xe_vm_destroy(fd, vm);
>>> +}
>>> +
>>> static unsigned int measured_usleep(unsigned int usec)
>>> {
>>> struct timespec ts = { };
>>> @@ -76,7 +170,7 @@ static void test_idle_residency(int fd, int gt)
>>> igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), "GT
>>> not in C6\n");
>>> residency_start = read_idle_residency(fd, gt);
>>> - elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000;
>>> + elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) /
>>> 1000;
>>> residency_end = read_idle_residency(fd, gt);
>>> igt_info("Measured %lums of idle residency in %lums\n",
>>> @@ -85,9 +179,41 @@ static void test_idle_residency(int fd, int gt)
>>> assert_within_epsilon(residency_end - residency_start,
>>> elapsed_ms, tolerance);
>>> }
>>> +static void idle_residency_on_exec(int fd, struct
>>> drm_xe_engine_class_instance *hwe)
>>> +{
>>> + const int tol = 20;
>>> + unsigned long *done;
>>> + unsigned long cycles, elapsed_ms, residency;
>>> +
>>> + done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
>>> + igt_assert(done != MAP_FAILED);
>>> + memset(done, 0, 4096);
>>> +
>>> + igt_fork(child, 1)
>>> + exec_load(fd, hwe, done);
>>> +
>>> + cycles -= READ_ONCE(done[1]);
>>> + residency -= read_idle_residency(fd, hwe->gt_id);
>>> + elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) /
>>> 1000;
>>> + residency += read_idle_residency(fd, hwe->gt_id);
>>> + cycles += READ_ONCE(done[1]);
>>> + *done = 1;
>>> +
>>> + igt_waitchildren();
>>> +
>>> + /* At least one wakeup/s needed for a reasonable test */
>>> + igt_assert(cycles >= SLEEP_DURATION);
>>> +
>>> + /* While very nearly busy, expect full GT C6 */
>>> + assert_within_epsilon(residency, elapsed_ms, tol);
>>> +
>>> + munmap(done, 4096);
>>> +}
>>> +
>>> igt_main
>>> {
>>> int fd, gt;
>>> + struct drm_xe_engine_class_instance *hwe;
>>> igt_fixture {
>>> fd = drm_open_driver(DRIVER_XE);
>>> @@ -104,6 +230,11 @@ igt_main
>>> xe_for_each_gt(fd, gt)
>>> test_idle_residency(fd, gt);
>>> + igt_describe("Validate idle residency on exec");
>>> + igt_subtest("idle-residency-on-exec")
>>> + xe_for_each_hw_engine(fd, hwe)
>>> + idle_residency_on_exec(fd, hwe);
>>> +
>>> igt_fixture {
>>> close(fd);
>>> }
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] RFC tests/xe: Add a test that validates idle residency on exec
2023-08-28 16:28 ` Nilawar, Badal
@ 2023-08-30 5:15 ` Riana Tauro
0 siblings, 0 replies; 22+ messages in thread
From: Riana Tauro @ 2023-08-30 5:15 UTC (permalink / raw)
To: Nilawar, Badal, igt-dev
Hi Badal
Thanks for the review
On 8/28/2023 9:58 PM, Nilawar, Badal wrote:
> Hi Riana,
>
> On 11-08-2023 16:02, Riana Tauro wrote:
>> Add a test what runs a background load that is
>> active approximately 1% of the time. Verify that we do enter
>> GT-C6 the rest of the time and validate idle residency is within
>> tolerance.
>>
>> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
>> ---
>> tests/xe/xe_pm_residency.c | 135 ++++++++++++++++++++++++++++++++++++-
>> 1 file changed, 133 insertions(+), 2 deletions(-)
>>
>> diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c
>> index 4936de166..abf07c696 100644
>> --- a/tests/xe/xe_pm_residency.c
>> +++ b/tests/xe/xe_pm_residency.c
>> @@ -11,13 +11,18 @@
>> * Test category: functionality test
>> */
>> +#include <time.h>
>> +
>> #include "igt.h"
>> #include "igt_sysfs.h"
>> +#include "lib/igt_syncobj.h"
>> +
>> +#include "xe/xe_ioctl.h"
>> #include "xe/xe_query.h"
>> #include "xe/xe_util.h"
>> -#define SLEEP_DURATION 3000 /* in milliseconds */
>> +#define SLEEP_DURATION 3 /* in seconds */
>> const double tolerance = 0.1;
>> @@ -38,9 +43,98 @@ const double tolerance = 0.1;
>> * Description: basic residency test to validate idle residency
>> * measured over a time interval is within the tolerance
>> * Run type: FULL
>> + *
>> + * SUBTEST: idle-residency-on-exec
>> + * Description: Validate idle residency measured when a background
>> + * is only active for ~1% of the time
>> + * Run type: FULL
>> */
>> IGT_TEST_DESCRIPTION("Tests for gtidle properties");
>> +static void exec_load(int fd, struct drm_xe_engine_class_instance
>> *hwe, unsigned long *done)
>> +{
>> + uint32_t bo = 0;
>> + uint32_t exec_queue, syncobj, vm;
>> + uint64_t addr = 0x1a0000;
>> + uint64_t batch_addr, batch_offset, data_addr, data_offset;
>> + size_t bo_size;
>> + int b;
>> + struct {
>> + uint32_t batch[16];
>> + uint64_t pad;
>> + uint32_t data;
>> + } *data;
>> +
>> + struct drm_xe_sync sync = {
>> + .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL,
>> + };
>> +
>> + struct drm_xe_exec exec = {
>> + .num_batch_buffer = 1,
>> + .num_syncs = 1,
>> + .syncs = to_user_pointer(&sync),
>> + };
>> +
>> + vm = xe_vm_create(fd, 0, 0);
>> + exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
>> + bo_size = xe_get_default_alignment(fd);
>> +
>> + bo = xe_bo_create_flags(fd, vm, bo_size,
>> + visible_vram_if_possible(fd, hwe->gt_id));
>> + data = xe_bo_map(fd, bo, bo_size);
>> + syncobj = syncobj_create(fd, 0);
>> +
>> + xe_vm_bind_sync(fd, vm, bo, 0, addr, bo_size);
>> +
>> + batch_offset = (char *)&data->batch - (char *)data;
>> + batch_addr = addr + batch_offset;
>> + data_offset = (char *)&data->data - (char *)data;
>> + data_addr = addr + data_offset;
>> +
>> + do {
>> + uint64_t submit, elapsed;
>> + struct timespec tv = {};
>> +
>> + b = 0;
>> + done[1]++;
>> + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
>> + data->batch[b++] = data_addr;
>> + data->batch[b++] = data_addr >> 32;
>> + data->batch[b++] = done[1];
>> + data->batch[b++] = MI_BATCH_BUFFER_END;
>> + igt_assert(b <= ARRAY_SIZE(data->batch));
> Curious to know why MI_BATCH_BUFFER_START is not needed in batch buffer.
MI_BATCH_BUFFER_START is added while submitting the batch buffer in kernel.
>> +
>> + exec.exec_queue_id = exec_queue;
>> + exec.address = batch_addr;
>> + sync.handle = syncobj;
>> +
>> + igt_nsec_elapsed(&tv);
>> + xe_exec(fd, &exec);
>> + submit = igt_nsec_elapsed(&tv);
>> +
>> + igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
>> + elapsed = igt_nsec_elapsed(&tv);
>> + igt_assert_eq(data->data, done[1]);
>> +
>> + igt_debug("Execution took %.3fms (submit %.1fus, wait
>> %.1fus)\n",
>> + 1e-6 * elapsed,
>> + 1e-3 * submit,
>> + 1e-3 * (elapsed - submit));
>> +
>> + syncobj_reset(fd, &syncobj, 1);
>> +
>> + /* Aim for ~1% busy */
> This is sleep for 99% of execution (elapsed) time? May be you can add
> some explanation with example here.
Will add more detailed explanation
>> + usleep(elapsed / 10);
>> + } while (!READ_ONCE(*done));
>> +
>> + xe_vm_unbind_sync(fd, vm, 0, addr, bo_size);
>> + syncobj_destroy(fd, syncobj);
>> + munmap(data, bo_size);
>> + gem_close(fd, bo);
>> + xe_exec_queue_destroy(fd, exec_queue);
>> + xe_vm_destroy(fd, vm);
>> +}
>> +
>> static unsigned int measured_usleep(unsigned int usec)
>> {
>> struct timespec ts = { };
>> @@ -76,7 +170,7 @@ static void test_idle_residency(int fd, int gt)
>> igt_assert_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 1), "GT not
>> in C6\n");
>> residency_start = read_idle_residency(fd, gt);
>> - elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000;
>> + elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
>> residency_end = read_idle_residency(fd, gt);
>> igt_info("Measured %lums of idle residency in %lums\n",
>> @@ -85,9 +179,41 @@ static void test_idle_residency(int fd, int gt)
>> assert_within_epsilon(residency_end - residency_start,
>> elapsed_ms, tolerance);
>> }
>> +static void idle_residency_on_exec(int fd, struct
>> drm_xe_engine_class_instance *hwe)
>> +{
>> + const int tol = 20;
>> + unsigned long *done;
>> + unsigned long cycles, elapsed_ms, residency;
>> +
>> + done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
>> + igt_assert(done != MAP_FAILED);
>> + memset(done, 0, 4096);
>> +
>> + igt_fork(child, 1)
>> + exec_load(fd, hwe, done);
>> +
>> + cycles -= READ_ONCE(done[1]);
>> + residency -= read_idle_residency(fd, hwe->gt_id);
>> + elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
>> + residency += read_idle_residency(fd, hwe->gt_id);
>> + cycles += READ_ONCE(done[1]);
> As discussed use separate variables for start and end here.
Sure. Will fix this.
>> + *done = 1;
>> +
>> + igt_waitchildren();
>> +
>> + /* At least one wakeup/s needed for a reasonable test */
>> + igt_assert(cycles >= SLEEP_DURATION);
>> +
>> + /* While very nearly busy, expect full GT C6 */
>> + assert_within_epsilon(residency, elapsed_ms, tol);
> I think residency will always be less than elapsed time.
>
It might be. Will run multiple times and check
But isn't it better to use a tolerance ?
Thanks
Riana
> Regards,
> Badal
>> +
>> + munmap(done, 4096);
>> +}
>> +
>> igt_main
>> {
>> int fd, gt;
>> + struct drm_xe_engine_class_instance *hwe;
>> igt_fixture {
>> fd = drm_open_driver(DRIVER_XE);
>> @@ -104,6 +230,11 @@ igt_main
>> xe_for_each_gt(fd, gt)
>> test_idle_residency(fd, gt);
>> + igt_describe("Validate idle residency on exec");
>> + igt_subtest("idle-residency-on-exec")
>> + xe_for_each_hw_engine(fd, hwe)
>> + idle_residency_on_exec(fd, hwe);
>> +
>> igt_fixture {
>> close(fd);
>> }
^ permalink raw reply [flat|nested] 22+ messages in thread
* [igt-dev] [PATCH i-g-t v2 1/2] tests/xe: Add a test that validates idle residency on exec
2023-08-11 10:32 ` [igt-dev] [PATCH i-g-t 1/2] RFC tests/xe: Add a test that validates idle residency on exec Riana Tauro
2023-08-28 16:28 ` Nilawar, Badal
2023-08-28 16:41 ` Belgaumkar, Vinay
@ 2023-09-05 10:54 ` Riana Tauro
2023-09-08 13:22 ` Gupta, Anshuman
2023-09-12 9:50 ` [igt-dev] [PATCH i-g-t v3 " Riana Tauro
2 siblings, 2 replies; 22+ messages in thread
From: Riana Tauro @ 2023-09-05 10:54 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
Add a test what runs a background load that is
active approximately 1% of the time. Verify that we do enter
GT-C6 the rest of the time and validate idle residency is within
tolerance.
v2: use start and end variables for residency
add detailed comment (Badal)
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
---
tests/intel/xe_pm_residency.c | 140 +++++++++++++++++++++++++++++++++-
1 file changed, 137 insertions(+), 3 deletions(-)
diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
index bf8230114..f3b247bf0 100644
--- a/tests/intel/xe_pm_residency.c
+++ b/tests/intel/xe_pm_residency.c
@@ -12,17 +12,20 @@
*/
#include <fcntl.h>
#include <limits.h>
+#include <time.h>
#include "igt.h"
#include "igt_device.h"
#include "igt_power.h"
#include "igt_sysfs.h"
+#include "lib/igt_syncobj.h"
+#include "xe/xe_ioctl.h"
#include "xe/xe_query.h"
#include "xe/xe_util.h"
#define NUM_REPS 16 /* No of Repetitions */
-#define SLEEP_DURATION 3000 /* in milliseconds */
+#define SLEEP_DURATION 3 /* in seconds */
const double tolerance = 0.1;
int fw_handle = -1;
@@ -50,6 +53,11 @@ enum test_type {
* measured over a time interval is within the tolerance
* Run type: FULL
*
+ * SUBTEST: idle-residency-on-exec
+ * Description: Validate idle residency measured when a background
+ * load is only active for ~1% of the time
+ * Run type: FULL
+ *
* SUBTEST: gt-c6-freeze
* Description: Validate idle residency measured over suspend(s2idle)
* is greater than suspend time or within tolerance
@@ -68,6 +76,94 @@ static void close_fw_handle(int sig)
close(fw_handle);
}
+static void exec_load(int fd, struct drm_xe_engine_class_instance *hwe, unsigned long *done)
+{
+ uint32_t bo = 0;
+ uint32_t exec_queue, syncobj, vm;
+ uint64_t addr = 0x1a0000;
+ uint64_t batch_addr, batch_offset, data_addr, data_offset;
+ size_t bo_size;
+ int b;
+ struct {
+ uint32_t batch[16];
+ uint64_t pad;
+ uint32_t data;
+ } *data;
+
+ struct drm_xe_sync sync = {
+ .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL,
+ };
+
+ struct drm_xe_exec exec = {
+ .num_batch_buffer = 1,
+ .num_syncs = 1,
+ .syncs = to_user_pointer(&sync),
+ };
+
+ vm = xe_vm_create(fd, 0, 0);
+ exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
+ bo_size = xe_get_default_alignment(fd);
+
+ bo = xe_bo_create_flags(fd, vm, bo_size,
+ visible_vram_if_possible(fd, hwe->gt_id));
+ data = xe_bo_map(fd, bo, bo_size);
+ syncobj = syncobj_create(fd, 0);
+
+ xe_vm_bind_sync(fd, vm, bo, 0, addr, bo_size);
+
+ batch_offset = (char *)&data->batch - (char *)data;
+ batch_addr = addr + batch_offset;
+ data_offset = (char *)&data->data - (char *)data;
+ data_addr = addr + data_offset;
+
+ /* Aim for ~1% busy */
+ do {
+ uint64_t submit, elapsed;
+ struct timespec tv = {};
+
+ b = 0;
+ done[1]++;
+ data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
+ data->batch[b++] = data_addr;
+ data->batch[b++] = data_addr >> 32;
+ data->batch[b++] = done[1];
+ data->batch[b++] = MI_BATCH_BUFFER_END;
+ igt_assert(b <= ARRAY_SIZE(data->batch));
+
+ exec.exec_queue_id = exec_queue;
+ exec.address = batch_addr;
+ sync.handle = syncobj;
+
+ igt_nsec_elapsed(&tv);
+ xe_exec(fd, &exec);
+ submit = igt_nsec_elapsed(&tv);
+
+ igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
+ elapsed = igt_nsec_elapsed(&tv);
+ igt_assert_eq(data->data, done[1]);
+
+ igt_debug("Execution took %.3fms (submit %.1fus, wait %.1fus)\n",
+ 1e-6 * elapsed,
+ 1e-3 * submit,
+ 1e-3 * (elapsed - submit));
+
+ syncobj_reset(fd, &syncobj, 1);
+
+ /*
+ * Execute the above workload for ~1% of the elapsed time and sleep for
+ * the rest of the time (~99%)
+ */
+ usleep(elapsed / 10);
+ } while (!READ_ONCE(*done));
+
+ xe_vm_unbind_sync(fd, vm, 0, addr, bo_size);
+ syncobj_destroy(fd, syncobj);
+ munmap(data, bo_size);
+ gem_close(fd, bo);
+ xe_exec_queue_destroy(fd, exec_queue);
+ xe_vm_destroy(fd, vm);
+}
+
static unsigned int measured_usleep(unsigned int usec)
{
struct timespec ts = { };
@@ -122,7 +218,7 @@ static void test_idle_residency(int fd, int gt, enum test_type flag)
if (flag == TEST_IDLE) {
residency_start = read_idle_residency(fd, gt);
- elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000;
+ elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
residency_end = read_idle_residency(fd, gt);
}
@@ -132,12 +228,44 @@ static void test_idle_residency(int fd, int gt, enum test_type flag)
assert_within_epsilon(residency_end - residency_start, elapsed_ms, tolerance);
}
+static void idle_residency_on_exec(int fd, struct drm_xe_engine_class_instance *hwe)
+{
+ const int tol = 20;
+ unsigned long *done;
+ unsigned long end, start;
+ unsigned long elapsed_ms, residency_end, residency_start;
+
+ done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
+ igt_assert(done != MAP_FAILED);
+ memset(done, 0, 4096);
+
+ igt_fork(child, 1)
+ exec_load(fd, hwe, done);
+
+ start = READ_ONCE(done[1]);
+ residency_start = read_idle_residency(fd, hwe->gt_id);
+ elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
+ residency_end = read_idle_residency(fd, hwe->gt_id);
+ end = READ_ONCE(done[1]);
+ *done = 1;
+
+ igt_waitchildren();
+
+ /* At least one wakeup/s needed for a reasonable test */
+ igt_assert(end - start);
+
+ /* While very nearly busy, expect full GT C6 */
+ assert_within_epsilon((residency_end - residency_start), elapsed_ms, tol);
+
+ munmap(done, 4096);
+}
+
static void measure_power(struct igt_power *gpu, double *power)
{
struct power_sample power_sample[2];
igt_power_get_energy(gpu, &power_sample[0]);
- measured_usleep(SLEEP_DURATION * 1000);
+ measured_usleep(SLEEP_DURATION * USEC_PER_SEC);
igt_power_get_energy(gpu, &power_sample[1]);
*power = igt_power_get_mW(gpu, &power_sample[0], &power_sample[1]);
}
@@ -185,6 +313,7 @@ igt_main
uint32_t d3cold_allowed;
int fd, gt;
char pci_slot_name[NAME_MAX];
+ struct drm_xe_engine_class_instance *hwe;
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
@@ -215,6 +344,11 @@ igt_main
xe_for_each_gt(fd, gt)
test_idle_residency(fd, gt, TEST_IDLE);
+ igt_describe("Validate idle residency on exec");
+ igt_subtest("idle-residency-on-exec")
+ xe_for_each_hw_engine(fd, hwe)
+ idle_residency_on_exec(fd, hwe);
+
igt_describe("Toggle GT C states by acquiring/releasing forcewake and validate power measured");
igt_subtest("toggle-gt-c6") {
igt_install_exit_handler(close_fw_handle);
--
2.40.0
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Idle Residency on Exec (rev2)
2023-08-11 10:32 [igt-dev] [PATCH i-g-t 0/2] Idle Residency on Exec Riana Tauro
` (4 preceding siblings ...)
2023-08-12 13:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-09-05 14:41 ` Patchwork
2023-09-05 16:53 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2023-09-05 14:41 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4552 bytes --]
== Series Details ==
Series: Idle Residency on Exec (rev2)
URL : https://patchwork.freedesktop.org/series/122341/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13597 -> IGTPW_9718
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/index.html
Participating hosts (39 -> 38)
------------------------------
Additional (1): fi-kbl-soraka
Missing (2): bat-dg2-8 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9718 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][3] ([i915#1886] / [i915#7913])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- fi-hsw-4770: NOTRUN -> [SKIP][4] ([fdo#109271]) +13 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-kbl-soraka: NOTRUN -> [SKIP][5] ([fdo#109271]) +8 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1:
- fi-hsw-4770: NOTRUN -> [DMESG-WARN][6] ([i915#8841]) +6 other tests dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/fi-hsw-4770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html
* igt@kms_psr@primary_mmap_gtt:
- bat-rplp-1: NOTRUN -> [SKIP][7] ([i915#1072])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html
* igt@kms_psr@sprite_plane_onoff:
- fi-hsw-4770: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#1072]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rplp-1: NOTRUN -> [ABORT][9] ([i915#8260] / [i915#8668])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html
#### Warnings ####
* igt@kms_psr@sprite_plane_onoff:
- bat-rplp-1: [ABORT][10] ([i915#8442] / [i915#8668] / [i915#8712]) -> [SKIP][11] ([i915#1072])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260
[i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7468 -> IGTPW_9718
CI-20190529: 20190529
CI_DRM_13597: 0bcdef3ce42624f34849ce20818bc54425df56c5 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9718: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/index.html
IGT_7468: 7468
Testlist changes
----------------
+igt@xe_pm_residency@idle-residency-on-exec
-igt@kms_dsc@dsc-fractional-bpp
-igt@kms_dsc@dsc-fractional-bpp-with-bpc
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/index.html
[-- Attachment #2: Type: text/html, Size: 5853 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Idle Residency on Exec (rev2)
2023-08-11 10:32 [igt-dev] [PATCH i-g-t 0/2] Idle Residency on Exec Riana Tauro
` (5 preceding siblings ...)
2023-09-05 14:41 ` [igt-dev] ✓ Fi.CI.BAT: success for Idle Residency on Exec (rev2) Patchwork
@ 2023-09-05 16:53 ` Patchwork
2023-09-12 12:48 ` [igt-dev] ✓ Fi.CI.BAT: success for Idle Residency on Exec (rev3) Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2023-09-05 16:53 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 84236 bytes --]
== Series Details ==
Series: Idle Residency on Exec (rev2)
URL : https://patchwork.freedesktop.org/series/122341/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13597_full -> IGTPW_9718_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): shard-rkl0
Known issues
------------
Here are the changes found in IGTPW_9718_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][1] ([i915#8411])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-2/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][2] ([i915#6122])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-5/igt@api_intel_bb@render-ccs.html
* igt@drm_fdinfo@busy-hang@bcs0:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8414]) +9 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-2/igt@drm_fdinfo@busy-hang@bcs0.html
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8414]) +6 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-8/igt@drm_fdinfo@busy@vcs0.html
* igt@feature_discovery@display-4x:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#1839])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-5/igt@feature_discovery@display-4x.html
* igt@feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#658]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-2/igt@feature_discovery@psr2.html
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#658])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-7/igt@feature_discovery@psr2.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#7697]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-2/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#4098] / [i915#5325])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#7697]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-3/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#8562])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-11/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [PASS][12] -> [FAIL][13] ([i915#6268])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html
- shard-mtlp: [PASS][14] -> [FAIL][15] ([i915#6121])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-4/igt@gem_ctx_exec@basic-nohangcheck.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-1/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-snb: NOTRUN -> [DMESG-WARN][16] ([i915#8841]) +5 other tests dmesg-warn
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-snb4/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8555])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@legacy-engines-persistence:
- shard-snb: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#1099]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-snb4/igt@gem_ctx_persistence@legacy-engines-persistence.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#280])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-3/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-rkl: NOTRUN -> [ABORT][22] ([i915#7975] / [i915#8213])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-6/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg2: [PASS][23] -> [FAIL][24] ([i915#5784])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-10/igt@gem_eio@kms.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-10/igt@gem_eio@kms.html
- shard-dg1: NOTRUN -> [FAIL][25] ([i915#5784])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-17/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#4771])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-1/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#4525])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-7/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture@vcs1-smem:
- shard-mtlp: NOTRUN -> [DMESG-WARN][28] ([i915#5591])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-7/igt@gem_exec_capture@capture@vcs1-smem.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][29] -> [FAIL][30] ([i915#2846])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4473] / [i915#4771])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-1/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [PASS][32] -> [FAIL][33] ([i915#2842]) +1 other test fail
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-2/igt@gem_exec_fair@basic-pace@vecs0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html
- shard-glk: [PASS][34] -> [FAIL][35] ([i915#2842])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-glk6/igt@gem_exec_fair@basic-pace@vecs0.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-glk2/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-5/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-5/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#3281]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +5 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-2/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_reloc@basic-write-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +6 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-3/igt@gem_exec_reloc@basic-write-cpu-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4537] / [i915#4812])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_suspend@basic-s0@smem:
- shard-dg2: [PASS][42] -> [INCOMPLETE][43] ([i915#6311])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-10/igt@gem_exec_suspend@basic-s0@smem.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-5/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4860])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4860]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-7/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@smem-oom:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4613]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-7/igt@gem_lmem_swapping@smem-oom.html
- shard-glk: NOTRUN -> [SKIP][48] ([fdo#109271] / [i915#4613])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-glk2/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][49] -> [TIMEOUT][50] ([i915#5493])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
- shard-dg1: NOTRUN -> [DMESG-WARN][51] ([i915#4936] / [i915#5493])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_mmap_gtt@flink-race:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-8/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4077]) +10 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-11/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-3/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@read-write:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4083]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-7/igt@gem_mmap_wc@read-write.html
* igt@gem_partial_pwrite_pread@reads:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3282]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-4/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pread@exhaustion:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#3282]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-1/igt@gem_pread@exhaustion.html
* igt@gem_pxp@create-regular-context-1:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4270])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-2/igt@gem_pxp@create-regular-context-1.html
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#4270])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-6/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@display-protected-crc:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4270]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-2/igt@gem_pxp@display-protected-crc.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8428]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-5/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4079]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-3/igt@gem_set_tiling_vs_gtt.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3297])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-8/igt@gem_userptr_blits@coherency-unsync.html
* igt@gen7_exec_parse@cmd-crossing-page:
- shard-rkl: NOTRUN -> [SKIP][65] ([fdo#109289])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-2/igt@gen7_exec_parse@cmd-crossing-page.html
- shard-tglu: NOTRUN -> [SKIP][66] ([fdo#109289])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-6/igt@gen7_exec_parse@cmd-crossing-page.html
* igt@gen7_exec_parse@load-register-reg:
- shard-mtlp: NOTRUN -> [SKIP][67] ([fdo#109289]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-2/igt@gen7_exec_parse@load-register-reg.html
- shard-dg2: NOTRUN -> [SKIP][68] ([fdo#109289])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-5/igt@gen7_exec_parse@load-register-reg.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#2856]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-3/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#2527])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-4/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@secure-batches:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#2856]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-8/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@load:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#6227])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-6/igt@i915_module_load@load.html
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#6227])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-2/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [PASS][74] -> [DMESG-WARN][75] ([i915#7061] / [i915#8617])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#7091])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_backlight@basic-brightness:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#5354] / [i915#7561])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-5/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_dc@dc9-dpms:
- shard-tglu: [PASS][78] -> [SKIP][79] ([i915#4281])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-9/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#1902])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-11/igt@i915_pm_lpsp@screens-disabled.html
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-dg1: [PASS][81] -> [FAIL][82] ([i915#3591]) +1 other test fail
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: [PASS][83] -> [SKIP][84] ([i915#1397])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-13/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][85] ([fdo#111644] / [i915#1397])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-3/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][86] -> [SKIP][87] ([i915#1397])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-4/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#1397]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
- shard-rkl: NOTRUN -> [SKIP][89] ([fdo#109506])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
* igt@i915_pm_rpm@pc8-residency:
- shard-dg2: NOTRUN -> [SKIP][90] ([fdo#109506])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-5/igt@i915_pm_rpm@pc8-residency.html
* igt@i915_pm_rpm@system-suspend-modeset:
- shard-dg2: NOTRUN -> [FAIL][91] ([fdo#103375]) +2 other tests fail
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-5/igt@i915_pm_rpm@system-suspend-modeset.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#6621])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][93] -> [INCOMPLETE][94] ([i915#7790])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-snb4/igt@i915_pm_rps@reset.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-snb5/igt@i915_pm_rps@reset.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#7984])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-4/igt@i915_power@sanity.html
* igt@i915_query@query-topology-unsupported:
- shard-mtlp: NOTRUN -> [SKIP][96] ([fdo#109302])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-4/igt@i915_query@query-topology-unsupported.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#4212])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#4212])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-1/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
- shard-mtlp: [PASS][99] -> [FAIL][100] ([i915#2521])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#8709]) +11 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][102] ([i915#8247]) +3 other tests fail
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][103] ([i915#8247]) +3 other tests fail
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-17/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#404])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#404])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-14/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#5286]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [FAIL][108] ([i915#3743]) +2 other tests fail
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][109] ([fdo#111614] / [i915#3638])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][110] ([fdo#111614]) +6 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-3/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][111] ([fdo#111614]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: [PASS][112] -> [FAIL][113] ([i915#3743])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#5190]) +9 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#3638])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-19/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][116] ([fdo#111615])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
- shard-rkl: NOTRUN -> [SKIP][117] ([fdo#110723])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#6187])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][119] ([fdo#111615]) +5 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5190]) +4 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][121] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-9/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-yf_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#3734] / [i915#5354] / [i915#6095]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-1/igt@kms_ccs@pipe-a-ccs-on-another-bo-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-4_tiled_mtl_rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#5354] / [i915#6095]) +9 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-2/igt@kms_ccs@pipe-b-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#6095]) +30 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-4/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#3886] / [i915#6095]) +4 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-4/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-13/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#5354]) +44 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-11/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#5354] / [i915#6095])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-18/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][129] ([fdo#109271] / [i915#3886]) +2 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-glk2/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#3689] / [i915#3886] / [i915#5354]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-11/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][131] ([fdo#109271]) +49 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-glk4/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#3689] / [i915#5354] / [i915#6095])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-4/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#3689] / [i915#5354]) +17 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-5/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#5354]) +11 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-1/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#5354] / [i915#6095]) +4 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-7/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#7213] / [i915#9010]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-5/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#4087]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-tglu: NOTRUN -> [SKIP][138] ([fdo#111827])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-2/igt@kms_chamelium_color@ctm-0-75.html
- shard-rkl: NOTRUN -> [SKIP][139] ([fdo#111827])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-1/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-mtlp: NOTRUN -> [SKIP][140] ([fdo#111827])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-8/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2: NOTRUN -> [SKIP][141] ([fdo#111827]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-5/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#7828]) +8 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-2/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#7828]) +2 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-4/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#7828])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-4/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#7828]) +6 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#3299])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-11/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6944])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-2/igt@kms_content_protection@lic.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#7118]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-1/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#3359])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3555] / [i915#8814]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#3359])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#3555]) +5 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-tglu: NOTRUN -> [SKIP][153] ([fdo#109274]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-9/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#4103]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#4103])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-mtlp: [PASS][156] -> [FAIL][157] ([i915#8248])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-5/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-2/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][158] ([fdo#109274] / [i915#5354]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3546]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-rkl: NOTRUN -> [SKIP][160] ([fdo#111825]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#4103] / [i915#4213])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-17/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#4213])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#3555] / [i915#3840])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#3840])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-11/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-mtlp: [PASS][165] -> [FAIL][166] ([i915#4767])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-6/igt@kms_fbcon_fbt@psr-suspend.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][167] ([fdo#111767] / [i915#3637]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#8381]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-snb: NOTRUN -> [SKIP][169] ([fdo#109271] / [fdo#111767])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-snb7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][170] ([fdo#109274]) +6 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-1/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3637])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1:
- shard-glk: [PASS][172] -> [FAIL][173] ([i915#79])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-glk5/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-glk5/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#2672]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#2672]) +4 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#2672])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8810])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#2672] / [i915#3555])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-dg2: NOTRUN -> [SKIP][179] ([fdo#109285])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt:
- shard-dg2: [PASS][180] -> [FAIL][181] ([i915#6880])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][182] ([fdo#111825] / [i915#1825]) +14 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#1825]) +31 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#8708])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#3023]) +11 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#8708]) +15 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][187] ([fdo#111825])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#3458]) +14 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][189] ([fdo#110189]) +3 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][190] ([fdo#109280]) +4 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#8708]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8228])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-6/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8228]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-3/igt@kms_hdr@static-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-4/igt@kms_hdr@static-toggle.html
* igt@kms_plane_lowres@tiling-yf:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8821])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-5/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#5176]) +15 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#5176]) +7 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#5176]) +3 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#5176]) +3 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#5235]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#5235]) +11 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/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-20x20-downscale-factor-0-5@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#5235]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#5235]) +7 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_prime@basic-crc-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#6524])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-8/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#6524] / [i915#6805])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-5/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#658]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][208] ([fdo#111068] / [i915#658])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@primary_page_flip:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#1072]) +3 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-1/igt@kms_psr@primary_page_flip.html
* igt@kms_psr@sprite_mmap_gtt:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#1072]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-4/igt@kms_psr@sprite_mmap_gtt.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#4235]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#4235] / [i915#5190]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][213] ([fdo#111615] / [i915#5289])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_selftest@drm_format_helper:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8661]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-2/igt@kms_selftest@drm_format_helper.html
* igt@kms_selftest@framebuffer:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#8661]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-6/igt@kms_selftest@framebuffer.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][216] ([IGT#2])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-1/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#8623])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-snb: NOTRUN -> [SKIP][218] ([fdo#109271]) +253 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-snb5/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vblank@pipe-c-ts-continuation-modeset:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#4070] / [i915#6768])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-7/igt@kms_vblank@pipe-c-ts-continuation-modeset.html
* igt@kms_vblank@pipe-d-ts-continuation-suspend:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#4070] / [i915#533] / [i915#6768])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-2/igt@kms_vblank@pipe-d-ts-continuation-suspend.html
* igt@kms_vrr@flip-basic:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#3555]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-7/igt@kms_vrr@flip-basic.html
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#3555]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-4/igt@kms_vrr@flip-basic.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#2437]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-2/igt@kms_writeback@writeback-pixel-formats.html
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#2437])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-8/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [PASS][225] -> [FAIL][226] ([i915#7484])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#8850])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-1/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@semaphore-busy@ccs0:
- shard-dg2: NOTRUN -> [FAIL][228] ([i915#4349]) +6 other tests fail
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-5/igt@perf_pmu@semaphore-busy@ccs0.html
* igt@perf_pmu@semaphore-busy@rcs0:
- shard-mtlp: [PASS][229] -> [FAIL][230] ([i915#7742])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-7/igt@perf_pmu@semaphore-busy@rcs0.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-2/igt@perf_pmu@semaphore-busy@rcs0.html
* igt@perf_pmu@semaphore-busy@vcs1:
- shard-dg1: [PASS][231] -> [FAIL][232] ([i915#4349]) +2 other tests fail
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html
- shard-mtlp: [PASS][233] -> [FAIL][234] ([i915#4349]) +2 other tests fail
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-7/igt@perf_pmu@semaphore-busy@vcs1.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-2/igt@perf_pmu@semaphore-busy@vcs1.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#3291] / [i915#3708])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-11/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#3708] / [i915#4077]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-4/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3708])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-3/igt@prime_vgem@fence-read-hang.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#4818])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-3/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#2575]) +9 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-11/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_submit_csd@bad-pad:
- shard-rkl: NOTRUN -> [SKIP][240] ([fdo#109315]) +6 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-2/igt@v3d/v3d_submit_csd@bad-pad.html
* igt@v3d/v3d_submit_csd@multiple-job-submission:
- shard-tglu: NOTRUN -> [SKIP][241] ([fdo#109315] / [i915#2575]) +2 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-10/igt@v3d/v3d_submit_csd@multiple-job-submission.html
* igt@v3d/v3d_wait_bo@map-bo-0ns:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#2575]) +4 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-8/igt@v3d/v3d_wait_bo@map-bo-0ns.html
* igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#7711]) +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-2/igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done.html
* igt@vc4/vc4_tiling@get-bad-handle:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#7711]) +7 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-11/igt@vc4/vc4_tiling@get-bad-handle.html
* igt@vc4/vc4_tiling@set-get:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#7711]) +4 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-5/igt@vc4/vc4_tiling@set-get.html
* igt@vc4/vc4_wait_bo@unused-bo-0ns:
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#2575])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-6/igt@vc4/vc4_wait_bo@unused-bo-0ns.html
#### Possible fixes ####
* igt@gem_ctx_persistence@legacy-engines-hostile@vebox:
- shard-mtlp: [FAIL][247] ([i915#2410]) -> [PASS][248] +2 other tests pass
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-3/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-8/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html
* igt@gem_ctx_persistence@saturated-hostile@vecs0:
- shard-mtlp: [FAIL][249] ([i915#7816]) -> [PASS][250] +2 other tests pass
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-7/igt@gem_ctx_persistence@saturated-hostile@vecs0.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-7/igt@gem_ctx_persistence@saturated-hostile@vecs0.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][251] ([i915#5784]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-17/igt@gem_eio@reset-stress.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-19/igt@gem_eio@reset-stress.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-rkl: [FAIL][253] ([i915#2842]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [FAIL][255] ([i915#2842]) -> [PASS][256]
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_schedule@preempt-engines@ccs0:
- shard-mtlp: [FAIL][257] ([i915#9119]) -> [PASS][258] +4 other tests pass
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@ccs0.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-7/igt@gem_exec_schedule@preempt-engines@ccs0.html
* igt@gem_exec_schedule@preempt-engines@rcs0:
- shard-mtlp: [DMESG-FAIL][259] ([i915#8962] / [i915#9121]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@rcs0.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-7/igt@gem_exec_schedule@preempt-engines@rcs0.html
* igt@gem_exec_schedule@preemptive-hang@vcs0:
- shard-mtlp: [FAIL][261] ([i915#9051]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-6/igt@gem_exec_schedule@preemptive-hang@vcs0.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-5/igt@gem_exec_schedule@preemptive-hang@vcs0.html
* igt@i915_hangman@gt-engine-error@vcs0:
- shard-mtlp: [FAIL][263] ([i915#7069]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-3/igt@i915_hangman@gt-engine-error@vcs0.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vcs0.html
* igt@i915_module_load@reload:
- shard-dg1: [DMESG-WARN][265] ([i915#4391] / [i915#4423]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-17/igt@i915_module_load@reload.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-16/igt@i915_module_load@reload.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [SKIP][267] ([fdo#109271]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-apl3/igt@i915_pm_dc@dc9-dpms.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-apl4/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg1: [SKIP][269] ([i915#1397]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-12/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_selftest@live@client:
- shard-mtlp: [ABORT][271] -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-2/igt@i915_selftest@live@client.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-6/igt@i915_selftest@live@client.html
* igt@i915_selftest@live@gt_heartbeat:
- shard-apl: [DMESG-FAIL][273] ([i915#5334]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [FAIL][275] ([i915#5138]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: [FAIL][277] ([i915#3743]) -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [FAIL][279] ([i915#2346]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy:
- shard-dg1: [DMESG-WARN][281] ([i915#4423]) -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-17/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-15/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][283] ([i915#2122]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-glk8/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [FAIL][285] ([i915#6880]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-mtlp: [FAIL][287] ([i915#4349]) -> [PASS][288] +2 other tests pass
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-2/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-dg1: [FAIL][289] ([i915#5234]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-17/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-12/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
- shard-mtlp: [FAIL][291] ([i915#5234]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-6/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-6/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@syncobj_wait@invalid-wait-illegal-handle:
- shard-mtlp: [DMESG-WARN][293] ([i915#2017]) -> [PASS][294] +1 other test pass
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-6/igt@syncobj_wait@invalid-wait-illegal-handle.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-2/igt@syncobj_wait@invalid-wait-illegal-handle.html
* igt@syncobj_wait@single-wait-submitted:
- shard-dg1: [DMESG-WARN][295] ([i915#1982] / [i915#4423]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-17/igt@syncobj_wait@single-wait-submitted.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-14/igt@syncobj_wait@single-wait-submitted.html
* igt@sysfs_heartbeat_interval@mixed@ccs0:
- shard-mtlp: [INCOMPLETE][297] ([i915#8552]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed@ccs0.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@ccs0.html
* igt@sysfs_heartbeat_interval@mixed@vecs0:
- shard-mtlp: [FAIL][299] ([i915#1731]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed@vecs0.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@vecs0.html
* igt@sysfs_timeslice_duration@timeout@vecs0:
- shard-mtlp: [TIMEOUT][301] ([i915#6950]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-2/igt@sysfs_timeslice_duration@timeout@vecs0.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-3/igt@sysfs_timeslice_duration@timeout@vecs0.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: [INCOMPLETE][303] -> [ABORT][304] ([i915#4983] / [i915#7461])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [INCOMPLETE][305] -> [ABORT][306] ([i915#7461])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [INCOMPLETE][307] ([i915#8489]) -> [INCOMPLETE][308] ([i915#1982] / [i915#8489])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-tglu: [WARN][309] ([i915#2681]) -> [FAIL][310] ([i915#2681] / [i915#3591]) +1 other test fail
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-tglu: [FAIL][311] ([i915#2681] / [i915#3591]) -> [WARN][312] ([i915#2681])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@kms_color@degamma@pipe-a:
- shard-mtlp: [DMESG-FAIL][313] ([i915#2017]) -> [FAIL][314] ([i915#9257])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-6/igt@kms_color@degamma@pipe-a.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-mtlp-3/igt@kms_color@degamma@pipe-a.html
* igt@kms_content_protection@mei_interface:
- shard-dg1: [SKIP][315] ([i915#7116]) -> [SKIP][316] ([fdo#109300])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-17/igt@kms_content_protection@mei_interface.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-dg1-13/igt@kms_content_protection@mei_interface.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][317] ([fdo#110189] / [i915#3955]) -> [SKIP][318] ([i915#3955])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-2/igt@kms_fbcon_fbt@psr.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][319] ([fdo#109285] / [i915#4098]) -> [SKIP][320] ([fdo#109285])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-3/igt@kms_force_connector_basic@force-load-detect.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][321] ([i915#4816]) -> [SKIP][322] ([i915#4070] / [i915#4816])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731
[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#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#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#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[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#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[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#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[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#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[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#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6950]: https://gitlab.freedesktop.org/drm/intel/issues/6950
[i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061
[i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069
[i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[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#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489
[i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
[i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[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#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962
[i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010
[i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051
[i915#9119]: https://gitlab.freedesktop.org/drm/intel/issues/9119
[i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121
[i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9257]: https://gitlab.freedesktop.org/drm/intel/issues/9257
[i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7468 -> IGTPW_9718
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13597: 0bcdef3ce42624f34849ce20818bc54425df56c5 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9718: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/index.html
IGT_7468: 7468
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9718/index.html
[-- Attachment #2: Type: text/html, Size: 101788 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 1/2] tests/xe: Add a test that validates idle residency on exec
2023-09-05 10:54 ` [igt-dev] [PATCH i-g-t v2 1/2] " Riana Tauro
@ 2023-09-08 13:22 ` Gupta, Anshuman
2023-09-12 6:09 ` Riana Tauro
2023-09-12 9:50 ` [igt-dev] [PATCH i-g-t v3 " Riana Tauro
1 sibling, 1 reply; 22+ messages in thread
From: Gupta, Anshuman @ 2023-09-08 13:22 UTC (permalink / raw)
To: Tauro, Riana, igt-dev@lists.freedesktop.org; +Cc: Nilawar, Badal
> -----Original Message-----
> From: Tauro, Riana <riana.tauro@intel.com>
> Sent: Tuesday, September 5, 2023 4:24 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman
> <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>;
> Nilawar, Badal <badal.nilawar@intel.com>; Belgaumkar, Vinay
> <vinay.belgaumkar@intel.com>
> Subject: [PATCH i-g-t v2 1/2] tests/xe: Add a test that validates idle residency on
> exec
>
> Add a test what runs a background load that is active approximately 1% of the
> time. Verify that we do enter
> GT-C6 the rest of the time and validate idle residency is within tolerance.
>
> v2: use start and end variables for residency
> add detailed comment (Badal)
>
> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
> ---
> tests/intel/xe_pm_residency.c | 140 +++++++++++++++++++++++++++++++++-
> 1 file changed, 137 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c index
> bf8230114..f3b247bf0 100644
> --- a/tests/intel/xe_pm_residency.c
> +++ b/tests/intel/xe_pm_residency.c
> @@ -12,17 +12,20 @@
> */
> #include <fcntl.h>
> #include <limits.h>
> +#include <time.h>
>
> #include "igt.h"
> #include "igt_device.h"
> #include "igt_power.h"
> #include "igt_sysfs.h"
>
> +#include "lib/igt_syncobj.h"
> +#include "xe/xe_ioctl.h"
> #include "xe/xe_query.h"
> #include "xe/xe_util.h"
>
> #define NUM_REPS 16 /* No of Repetitions */ -#define SLEEP_DURATION 3000
> /* in milliseconds */
> +#define SLEEP_DURATION 3 /* in seconds */
>
> const double tolerance = 0.1;
> int fw_handle = -1;
> @@ -50,6 +53,11 @@ enum test_type {
> * measured over a time interval is within the tolerance
> * Run type: FULL
> *
> + * SUBTEST: idle-residency-on-exec
> + * Description: Validate idle residency measured when a background
> + * load is only active for ~1% of the time
> + * Run type: FULL
> + *
> * SUBTEST: gt-c6-freeze
> * Description: Validate idle residency measured over suspend(s2idle)
> * is greater than suspend time or within tolerance
> @@ -68,6 +76,94 @@ static void close_fw_handle(int sig)
> close(fw_handle);
> }
>
> +static void exec_load(int fd, struct drm_xe_engine_class_instance *hwe,
> +unsigned long *done) {
> + uint32_t bo = 0;
> + uint32_t exec_queue, syncobj, vm;
> + uint64_t addr = 0x1a0000;
> + uint64_t batch_addr, batch_offset, data_addr, data_offset;
> + size_t bo_size;
> + int b;
> + struct {
> + uint32_t batch[16];
> + uint64_t pad;
> + uint32_t data;
> + } *data;
> +
> + struct drm_xe_sync sync = {
> + .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL,
> + };
> +
> + struct drm_xe_exec exec = {
> + .num_batch_buffer = 1,
> + .num_syncs = 1,
> + .syncs = to_user_pointer(&sync),
> + };
> +
> + vm = xe_vm_create(fd, 0, 0);
> + exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
> + bo_size = xe_get_default_alignment(fd);
> +
> + bo = xe_bo_create_flags(fd, vm, bo_size,
> + visible_vram_if_possible(fd, hwe->gt_id));
> + data = xe_bo_map(fd, bo, bo_size);
> + syncobj = syncobj_create(fd, 0);
> +
> + xe_vm_bind_sync(fd, vm, bo, 0, addr, bo_size);
> +
> + batch_offset = (char *)&data->batch - (char *)data;
> + batch_addr = addr + batch_offset;
> + data_offset = (char *)&data->data - (char *)data;
> + data_addr = addr + data_offset;
> +
> + /* Aim for ~1% busy */
> + do {
> + uint64_t submit, elapsed;
> + struct timespec tv = {};
> +
> + b = 0;
> + done[1]++;
> + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
> + data->batch[b++] = data_addr;
> + data->batch[b++] = data_addr >> 32;
> + data->batch[b++] = done[1];
> + data->batch[b++] = MI_BATCH_BUFFER_END;
> + igt_assert(b <= ARRAY_SIZE(data->batch));
> +
> + exec.exec_queue_id = exec_queue;
> + exec.address = batch_addr;
> + sync.handle = syncobj;
> +
> + igt_nsec_elapsed(&tv);
> + xe_exec(fd, &exec);
> + submit = igt_nsec_elapsed(&tv);
> +
> + igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
> + elapsed = igt_nsec_elapsed(&tv);
> + igt_assert_eq(data->data, done[1]);
> +
> + igt_debug("Execution took %.3fms (submit %.1fus, wait
> %.1fus)\n",
> + 1e-6 * elapsed,
> + 1e-3 * submit,
> + 1e-3 * (elapsed - submit));
> +
> + syncobj_reset(fd, &syncobj, 1);
> +
> + /*
> + * Execute the above workload for ~1% of the elapsed time and
> sleep for
> + * the rest of the time (~99%)
> + */
> + usleep(elapsed / 10);
> + } while (!READ_ONCE(*done));
> +
> + xe_vm_unbind_sync(fd, vm, 0, addr, bo_size);
> + syncobj_destroy(fd, syncobj);
> + munmap(data, bo_size);
> + gem_close(fd, bo);
> + xe_exec_queue_destroy(fd, exec_queue);
> + xe_vm_destroy(fd, vm);
> +}
> +
> static unsigned int measured_usleep(unsigned int usec) {
> struct timespec ts = { };
> @@ -122,7 +218,7 @@ static void test_idle_residency(int fd, int gt, enum
> test_type flag)
>
> if (flag == TEST_IDLE) {
> residency_start = read_idle_residency(fd, gt);
> - elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) /
> 1000;
> + elapsed_ms = measured_usleep(SLEEP_DURATION *
> USEC_PER_SEC) / 1000;
> residency_end = read_idle_residency(fd, gt);
> }
>
> @@ -132,12 +228,44 @@ static void test_idle_residency(int fd, int gt, enum
> test_type flag)
> assert_within_epsilon(residency_end - residency_start, elapsed_ms,
> tolerance); }
>
> +static void idle_residency_on_exec(int fd, struct
> +drm_xe_engine_class_instance *hwe) {
> + const int tol = 20;
> + unsigned long *done;
> + unsigned long end, start;
> + unsigned long elapsed_ms, residency_end, residency_start;
> +
> + done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1,
> 0);
> + igt_assert(done != MAP_FAILED);
> + memset(done, 0, 4096);
> +
> + igt_fork(child, 1)
> + exec_load(fd, hwe, done);
> +
> + start = READ_ONCE(done[1]);
> + residency_start = read_idle_residency(fd, hwe->gt_id);
> + elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) /
> 1000;
> + residency_end = read_idle_residency(fd, hwe->gt_id);
> + end = READ_ONCE(done[1]);
> + *done = 1;
> +
> + igt_waitchildren();
> +
> + /* At least one wakeup/s needed for a reasonable test */
> + igt_assert(end - start);
> +
> + /* While very nearly busy, expect full GT C6 */
> + assert_within_epsilon((residency_end - residency_start), elapsed_ms,
> +tol);
> +
> + munmap(done, 4096);
> +}
> +
> static void measure_power(struct igt_power *gpu, double *power) {
> struct power_sample power_sample[2];
>
> igt_power_get_energy(gpu, &power_sample[0]);
> - measured_usleep(SLEEP_DURATION * 1000);
> + measured_usleep(SLEEP_DURATION * USEC_PER_SEC);
> igt_power_get_energy(gpu, &power_sample[1]);
> *power = igt_power_get_mW(gpu, &power_sample[0],
> &power_sample[1]); } @@ -185,6 +313,7 @@ igt_main
> uint32_t d3cold_allowed;
> int fd, gt;
> char pci_slot_name[NAME_MAX];
> + struct drm_xe_engine_class_instance *hwe;
>
> igt_fixture {
> fd = drm_open_driver(DRIVER_XE);
> @@ -215,6 +344,11 @@ igt_main
> xe_for_each_gt(fd, gt)
> test_idle_residency(fd, gt, TEST_IDLE);
>
> + igt_describe("Validate idle residency on exec");
> + igt_subtest("idle-residency-on-exec")
> + xe_for_each_hw_engine(fd, hwe)
> + idle_residency_on_exec(fd, hwe);
Are we running this test for each engine ?
It would be better to run for each engine type ?
Thanks,
Anshuman.
> +
> igt_describe("Toggle GT C states by acquiring/releasing forcewake and
> validate power measured");
> igt_subtest("toggle-gt-c6") {
> igt_install_exit_handler(close_fw_handle);
> --
> 2.40.0
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 1/2] tests/xe: Add a test that validates idle residency on exec
2023-09-08 13:22 ` Gupta, Anshuman
@ 2023-09-12 6:09 ` Riana Tauro
0 siblings, 0 replies; 22+ messages in thread
From: Riana Tauro @ 2023-09-12 6:09 UTC (permalink / raw)
To: Gupta, Anshuman, igt-dev@lists.freedesktop.org; +Cc: Nilawar, Badal
Hi Anshuman
Thanks for the review
On 9/8/2023 6:52 PM, Gupta, Anshuman wrote:
>
>
>> -----Original Message-----
>> From: Tauro, Riana <riana.tauro@intel.com>
>> Sent: Tuesday, September 5, 2023 4:24 PM
>> To: igt-dev@lists.freedesktop.org
>> Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman
>> <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>;
>> Nilawar, Badal <badal.nilawar@intel.com>; Belgaumkar, Vinay
>> <vinay.belgaumkar@intel.com>
>> Subject: [PATCH i-g-t v2 1/2] tests/xe: Add a test that validates idle residency on
>> exec
>>
>> Add a test what runs a background load that is active approximately 1% of the
>> time. Verify that we do enter
>> GT-C6 the rest of the time and validate idle residency is within tolerance.
>>
>> v2: use start and end variables for residency
>> add detailed comment (Badal)
>>
>> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
>> ---
>> tests/intel/xe_pm_residency.c | 140 +++++++++++++++++++++++++++++++++-
>> 1 file changed, 137 insertions(+), 3 deletions(-)
>>
>> diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c index
>> bf8230114..f3b247bf0 100644
>> --- a/tests/intel/xe_pm_residency.c
>> +++ b/tests/intel/xe_pm_residency.c
>> @@ -12,17 +12,20 @@
>> */
>> #include <fcntl.h>
>> #include <limits.h>
>> +#include <time.h>
>>
>> #include "igt.h"
>> #include "igt_device.h"
>> #include "igt_power.h"
>> #include "igt_sysfs.h"
>>
>> +#include "lib/igt_syncobj.h"
>> +#include "xe/xe_ioctl.h"
>> #include "xe/xe_query.h"
>> #include "xe/xe_util.h"
>>
>> #define NUM_REPS 16 /* No of Repetitions */ -#define SLEEP_DURATION 3000
>> /* in milliseconds */
>> +#define SLEEP_DURATION 3 /* in seconds */
>>
>> const double tolerance = 0.1;
>> int fw_handle = -1;
>> @@ -50,6 +53,11 @@ enum test_type {
>> * measured over a time interval is within the tolerance
>> * Run type: FULL
>> *
>> + * SUBTEST: idle-residency-on-exec
>> + * Description: Validate idle residency measured when a background
>> + * load is only active for ~1% of the time
>> + * Run type: FULL
>> + *
>> * SUBTEST: gt-c6-freeze
>> * Description: Validate idle residency measured over suspend(s2idle)
>> * is greater than suspend time or within tolerance
>> @@ -68,6 +76,94 @@ static void close_fw_handle(int sig)
>> close(fw_handle);
>> }
>>
>> +static void exec_load(int fd, struct drm_xe_engine_class_instance *hwe,
>> +unsigned long *done) {
>> + uint32_t bo = 0;
>> + uint32_t exec_queue, syncobj, vm;
>> + uint64_t addr = 0x1a0000;
>> + uint64_t batch_addr, batch_offset, data_addr, data_offset;
>> + size_t bo_size;
>> + int b;
>> + struct {
>> + uint32_t batch[16];
>> + uint64_t pad;
>> + uint32_t data;
>> + } *data;
>> +
>> + struct drm_xe_sync sync = {
>> + .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL,
>> + };
>> +
>> + struct drm_xe_exec exec = {
>> + .num_batch_buffer = 1,
>> + .num_syncs = 1,
>> + .syncs = to_user_pointer(&sync),
>> + };
>> +
>> + vm = xe_vm_create(fd, 0, 0);
>> + exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
>> + bo_size = xe_get_default_alignment(fd);
>> +
>> + bo = xe_bo_create_flags(fd, vm, bo_size,
>> + visible_vram_if_possible(fd, hwe->gt_id));
>> + data = xe_bo_map(fd, bo, bo_size);
>> + syncobj = syncobj_create(fd, 0);
>> +
>> + xe_vm_bind_sync(fd, vm, bo, 0, addr, bo_size);
>> +
>> + batch_offset = (char *)&data->batch - (char *)data;
>> + batch_addr = addr + batch_offset;
>> + data_offset = (char *)&data->data - (char *)data;
>> + data_addr = addr + data_offset;
>> +
>> + /* Aim for ~1% busy */
>> + do {
>> + uint64_t submit, elapsed;
>> + struct timespec tv = {};
>> +
>> + b = 0;
>> + done[1]++;
>> + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
>> + data->batch[b++] = data_addr;
>> + data->batch[b++] = data_addr >> 32;
>> + data->batch[b++] = done[1];
>> + data->batch[b++] = MI_BATCH_BUFFER_END;
>> + igt_assert(b <= ARRAY_SIZE(data->batch));
>> +
>> + exec.exec_queue_id = exec_queue;
>> + exec.address = batch_addr;
>> + sync.handle = syncobj;
>> +
>> + igt_nsec_elapsed(&tv);
>> + xe_exec(fd, &exec);
>> + submit = igt_nsec_elapsed(&tv);
>> +
>> + igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
>> + elapsed = igt_nsec_elapsed(&tv);
>> + igt_assert_eq(data->data, done[1]);
>> +
>> + igt_debug("Execution took %.3fms (submit %.1fus, wait
>> %.1fus)\n",
>> + 1e-6 * elapsed,
>> + 1e-3 * submit,
>> + 1e-3 * (elapsed - submit));
>> +
>> + syncobj_reset(fd, &syncobj, 1);
>> +
>> + /*
>> + * Execute the above workload for ~1% of the elapsed time and
>> sleep for
>> + * the rest of the time (~99%)
>> + */
>> + usleep(elapsed / 10);
>> + } while (!READ_ONCE(*done));
>> +
>> + xe_vm_unbind_sync(fd, vm, 0, addr, bo_size);
>> + syncobj_destroy(fd, syncobj);
>> + munmap(data, bo_size);
>> + gem_close(fd, bo);
>> + xe_exec_queue_destroy(fd, exec_queue);
>> + xe_vm_destroy(fd, vm);
>> +}
>> +
>> static unsigned int measured_usleep(unsigned int usec) {
>> struct timespec ts = { };
>> @@ -122,7 +218,7 @@ static void test_idle_residency(int fd, int gt, enum
>> test_type flag)
>>
>> if (flag == TEST_IDLE) {
>> residency_start = read_idle_residency(fd, gt);
>> - elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) /
>> 1000;
>> + elapsed_ms = measured_usleep(SLEEP_DURATION *
>> USEC_PER_SEC) / 1000;
>> residency_end = read_idle_residency(fd, gt);
>> }
>>
>> @@ -132,12 +228,44 @@ static void test_idle_residency(int fd, int gt, enum
>> test_type flag)
>> assert_within_epsilon(residency_end - residency_start, elapsed_ms,
>> tolerance); }
>>
>> +static void idle_residency_on_exec(int fd, struct
>> +drm_xe_engine_class_instance *hwe) {
>> + const int tol = 20;
>> + unsigned long *done;
>> + unsigned long end, start;
>> + unsigned long elapsed_ms, residency_end, residency_start;
>> +
>> + done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1,
>> 0);
>> + igt_assert(done != MAP_FAILED);
>> + memset(done, 0, 4096);
>> +
>> + igt_fork(child, 1)
>> + exec_load(fd, hwe, done);
>> +
>> + start = READ_ONCE(done[1]);
>> + residency_start = read_idle_residency(fd, hwe->gt_id);
>> + elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) /
>> 1000;
>> + residency_end = read_idle_residency(fd, hwe->gt_id);
>> + end = READ_ONCE(done[1]);
>> + *done = 1;
>> +
>> + igt_waitchildren();
>> +
>> + /* At least one wakeup/s needed for a reasonable test */
>> + igt_assert(end - start);
>> +
>> + /* While very nearly busy, expect full GT C6 */
>> + assert_within_epsilon((residency_end - residency_start), elapsed_ms,
>> +tol);
>> +
>> + munmap(done, 4096);
>> +}
>> +
>> static void measure_power(struct igt_power *gpu, double *power) {
>> struct power_sample power_sample[2];
>>
>> igt_power_get_energy(gpu, &power_sample[0]);
>> - measured_usleep(SLEEP_DURATION * 1000);
>> + measured_usleep(SLEEP_DURATION * USEC_PER_SEC);
>> igt_power_get_energy(gpu, &power_sample[1]);
>> *power = igt_power_get_mW(gpu, &power_sample[0],
>> &power_sample[1]); } @@ -185,6 +313,7 @@ igt_main
>> uint32_t d3cold_allowed;
>> int fd, gt;
>> char pci_slot_name[NAME_MAX];
>> + struct drm_xe_engine_class_instance *hwe;
>>
>> igt_fixture {
>> fd = drm_open_driver(DRIVER_XE);
>> @@ -215,6 +344,11 @@ igt_main
>> xe_for_each_gt(fd, gt)
>> test_idle_residency(fd, gt, TEST_IDLE);
>>
>> + igt_describe("Validate idle residency on exec");
>> + igt_subtest("idle-residency-on-exec")
>> + xe_for_each_hw_engine(fd, hwe)
>> + idle_residency_on_exec(fd, hwe);
> Are we running this test for each engine ?
> It would be better to run for each engine type ?
Yeah currently its running on all the engines.
Okay will run it for a single instance [ instance 0]
Thanks
Riana
> Thanks,
> Anshuman.
>> +
>> igt_describe("Toggle GT C states by acquiring/releasing forcewake and
>> validate power measured");
>> igt_subtest("toggle-gt-c6") {
>> igt_install_exit_handler(close_fw_handle);
>> --
>> 2.40.0
>
^ permalink raw reply [flat|nested] 22+ messages in thread
* [igt-dev] [PATCH i-g-t v3 1/2] tests/xe: Add a test that validates idle residency on exec
2023-09-05 10:54 ` [igt-dev] [PATCH i-g-t v2 1/2] " Riana Tauro
2023-09-08 13:22 ` Gupta, Anshuman
@ 2023-09-12 9:50 ` Riana Tauro
2023-09-15 8:51 ` Nilawar, Badal
1 sibling, 1 reply; 22+ messages in thread
From: Riana Tauro @ 2023-09-12 9:50 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
Add a test what runs a background load that is
active approximately 1% of the time. Verify that we do enter
GT-C6 the rest of the time and validate idle residency is within
tolerance.
v2: use start and end variables for residency
add detailed comment (Badal)
v3: run on a single instance of an engine belonging to gt (Anshuman)
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
---
tests/intel/xe_pm_residency.c | 147 +++++++++++++++++++++++++++++++++-
1 file changed, 144 insertions(+), 3 deletions(-)
diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
index 6dc88ad0a..b85656040 100644
--- a/tests/intel/xe_pm_residency.c
+++ b/tests/intel/xe_pm_residency.c
@@ -12,17 +12,20 @@
*/
#include <fcntl.h>
#include <limits.h>
+#include <time.h>
#include "igt.h"
#include "igt_device.h"
#include "igt_power.h"
#include "igt_sysfs.h"
+#include "lib/igt_syncobj.h"
+#include "xe/xe_ioctl.h"
#include "xe/xe_query.h"
#include "xe/xe_util.h"
#define NUM_REPS 16 /* No of Repetitions */
-#define SLEEP_DURATION 3000 /* in milliseconds */
+#define SLEEP_DURATION 3 /* in seconds */
const double tolerance = 0.1;
int fw_handle = -1;
@@ -48,6 +51,11 @@ enum test_type {
* Description: basic residency test to validate idle residency
* measured over a time interval is within the tolerance
*
+ * SUBTEST: idle-residency-on-exec
+ * Description: Validate idle residency measured when a background
+ * load is only active for ~1% of the time
+ * Run type: FULL
+ *
* SUBTEST: gt-c6-freeze
* Description: Validate idle residency measured over suspend(s2idle)
* is greater than suspend time or within tolerance
@@ -64,6 +72,94 @@ static void close_fw_handle(int sig)
close(fw_handle);
}
+static void exec_load(int fd, struct drm_xe_engine_class_instance *hwe, unsigned long *done)
+{
+ uint32_t bo = 0;
+ uint32_t exec_queue, syncobj, vm;
+ uint64_t addr = 0x1a0000;
+ uint64_t batch_addr, batch_offset, data_addr, data_offset;
+ size_t bo_size;
+ int b;
+ struct {
+ uint32_t batch[16];
+ uint64_t pad;
+ uint32_t data;
+ } *data;
+
+ struct drm_xe_sync sync = {
+ .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL,
+ };
+
+ struct drm_xe_exec exec = {
+ .num_batch_buffer = 1,
+ .num_syncs = 1,
+ .syncs = to_user_pointer(&sync),
+ };
+
+ vm = xe_vm_create(fd, 0, 0);
+ exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
+ bo_size = xe_get_default_alignment(fd);
+
+ bo = xe_bo_create_flags(fd, vm, bo_size,
+ visible_vram_if_possible(fd, hwe->gt_id));
+ data = xe_bo_map(fd, bo, bo_size);
+ syncobj = syncobj_create(fd, 0);
+
+ xe_vm_bind_sync(fd, vm, bo, 0, addr, bo_size);
+
+ batch_offset = (char *)&data->batch - (char *)data;
+ batch_addr = addr + batch_offset;
+ data_offset = (char *)&data->data - (char *)data;
+ data_addr = addr + data_offset;
+
+ /* Aim for ~1% busy */
+ do {
+ uint64_t submit, elapsed;
+ struct timespec tv = {};
+
+ b = 0;
+ done[1]++;
+ data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
+ data->batch[b++] = data_addr;
+ data->batch[b++] = data_addr >> 32;
+ data->batch[b++] = done[1];
+ data->batch[b++] = MI_BATCH_BUFFER_END;
+ igt_assert(b <= ARRAY_SIZE(data->batch));
+
+ exec.exec_queue_id = exec_queue;
+ exec.address = batch_addr;
+ sync.handle = syncobj;
+
+ igt_nsec_elapsed(&tv);
+ xe_exec(fd, &exec);
+ submit = igt_nsec_elapsed(&tv);
+
+ igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
+ elapsed = igt_nsec_elapsed(&tv);
+ igt_assert_eq(data->data, done[1]);
+
+ igt_debug("Execution took %.3fms (submit %.1fus, wait %.1fus)\n",
+ 1e-6 * elapsed,
+ 1e-3 * submit,
+ 1e-3 * (elapsed - submit));
+
+ syncobj_reset(fd, &syncobj, 1);
+
+ /*
+ * Execute the above workload for ~1% of the elapsed time and sleep for
+ * the rest of the time (~99%)
+ */
+ usleep(elapsed / 10);
+ } while (!READ_ONCE(*done));
+
+ xe_vm_unbind_sync(fd, vm, 0, addr, bo_size);
+ syncobj_destroy(fd, syncobj);
+ munmap(data, bo_size);
+ gem_close(fd, bo);
+ xe_exec_queue_destroy(fd, exec_queue);
+ xe_vm_destroy(fd, vm);
+}
+
static unsigned int measured_usleep(unsigned int usec)
{
struct timespec ts = { };
@@ -118,7 +214,7 @@ static void test_idle_residency(int fd, int gt, enum test_type flag)
if (flag == TEST_IDLE) {
residency_start = read_idle_residency(fd, gt);
- elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000;
+ elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
residency_end = read_idle_residency(fd, gt);
}
@@ -128,12 +224,46 @@ static void test_idle_residency(int fd, int gt, enum test_type flag)
assert_within_epsilon(residency_end - residency_start, elapsed_ms, tolerance);
}
+static void idle_residency_on_exec(int fd, struct drm_xe_engine_class_instance *hwe)
+{
+ const int tol = 20;
+ unsigned long *done;
+ unsigned long end, start;
+ unsigned long elapsed_ms, residency_end, residency_start;
+
+ igt_debug("Running on %s:%d\n",
+ xe_engine_class_string(hwe->engine_class), hwe->engine_instance);
+ done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
+ igt_assert(done != MAP_FAILED);
+ memset(done, 0, 4096);
+
+ igt_fork(child, 1)
+ exec_load(fd, hwe, done);
+
+ start = READ_ONCE(done[1]);
+ residency_start = read_idle_residency(fd, hwe->gt_id);
+ elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
+ residency_end = read_idle_residency(fd, hwe->gt_id);
+ end = READ_ONCE(done[1]);
+ *done = 1;
+
+ igt_waitchildren();
+
+ /* At least one wakeup/s needed for a reasonable test */
+ igt_assert(end - start);
+
+ /* While very nearly busy, expect full GT C6 */
+ assert_within_epsilon((residency_end - residency_start), elapsed_ms, tol);
+
+ munmap(done, 4096);
+}
+
static void measure_power(struct igt_power *gpu, double *power)
{
struct power_sample power_sample[2];
igt_power_get_energy(gpu, &power_sample[0]);
- measured_usleep(SLEEP_DURATION * 1000);
+ measured_usleep(SLEEP_DURATION * USEC_PER_SEC);
igt_power_get_energy(gpu, &power_sample[1]);
*power = igt_power_get_mW(gpu, &power_sample[0], &power_sample[1]);
}
@@ -181,6 +311,7 @@ igt_main
uint32_t d3cold_allowed;
int fd, gt;
char pci_slot_name[NAME_MAX];
+ struct drm_xe_engine_class_instance *hwe;
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
@@ -211,6 +342,16 @@ igt_main
xe_for_each_gt(fd, gt)
test_idle_residency(fd, gt, TEST_IDLE);
+ igt_describe("Validate idle residency on exec");
+ igt_subtest("idle-residency-on-exec") {
+ xe_for_each_gt(fd, gt) {
+ xe_for_each_hw_engine(fd, hwe) {
+ if (gt == hwe->gt_id && !hwe->engine_instance)
+ idle_residency_on_exec(fd, hwe);
+ }
+ }
+ }
+
igt_describe("Toggle GT C states by acquiring/releasing forcewake and validate power measured");
igt_subtest("toggle-gt-c6") {
igt_install_exit_handler(close_fw_handle);
--
2.40.0
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Idle Residency on Exec (rev3)
2023-08-11 10:32 [igt-dev] [PATCH i-g-t 0/2] Idle Residency on Exec Riana Tauro
` (6 preceding siblings ...)
2023-09-05 16:53 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2023-09-12 12:48 ` Patchwork
2023-09-12 13:22 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-09-12 13:59 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
9 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2023-09-12 12:48 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2723 bytes --]
== Series Details ==
Series: Idle Residency on Exec (rev3)
URL : https://patchwork.freedesktop.org/series/122341/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13623 -> IGTPW_9771
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/index.html
Participating hosts (39 -> 37)
------------------------------
Missing (2): fi-kbl-soraka fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9771 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [DMESG-FAIL][1] ([i915#5334]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@hugepages:
- bat-mtlp-8: [DMESG-WARN][3] ([i915#9121]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/bat-mtlp-8/igt@i915_selftest@live@hugepages.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/bat-mtlp-8/igt@i915_selftest@live@hugepages.html
* igt@kms_hdmi_inject@inject-audio:
- fi-kbl-guc: [FAIL][5] ([IGT#3] / [i915#6121]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952
[i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7480 -> IGTPW_9771
CI-20190529: 20190529
CI_DRM_13623: eb35627e1c4a3781c161cd04944e403ce6df3e1c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9771: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/index.html
IGT_7480: a8d38db9ac258d7fd71b2cf7607e259a864f95be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@xe_pm_residency@idle-residency-on-exec
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/index.html
[-- Attachment #2: Type: text/html, Size: 3315 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Idle Residency on Exec (rev3)
2023-08-11 10:32 [igt-dev] [PATCH i-g-t 0/2] Idle Residency on Exec Riana Tauro
` (7 preceding siblings ...)
2023-09-12 12:48 ` [igt-dev] ✓ Fi.CI.BAT: success for Idle Residency on Exec (rev3) Patchwork
@ 2023-09-12 13:22 ` Patchwork
2023-09-12 13:59 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
9 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2023-09-12 13:22 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6848 bytes --]
== Series Details ==
Series: Idle Residency on Exec (rev3)
URL : https://patchwork.freedesktop.org/series/122341/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7480_BAT -> XEIGTPW_9771_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_9771_BAT:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@xe_pm_residency@idle-residency-on-exec}:
- bat-pvc-2: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/bat-pvc-2/igt@xe_pm_residency@idle-residency-on-exec.html
Known issues
------------
Here are the changes found in XEIGTPW_9771_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- bat-pvc-2: NOTRUN -> [SKIP][2] ([Intel XE#538]) +33 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- bat-pvc-2: NOTRUN -> [SKIP][3] ([Intel XE#539]) +6 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-pvc-2: NOTRUN -> [SKIP][4] ([Intel XE#541]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/bat-pvc-2/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [PASS][5] -> [FAIL][6] ([Intel XE#480])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7480/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-pvc-2: NOTRUN -> [SKIP][7] ([Intel XE#540]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-pvc-2: NOTRUN -> [SKIP][8] ([Intel XE#537]) +6 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/bat-pvc-2/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_prop_blob@basic:
- bat-pvc-2: NOTRUN -> [SKIP][9] ([Intel XE#536])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/bat-pvc-2/igt@kms_prop_blob@basic.html
* igt@kms_psr@primary_page_flip:
- bat-pvc-2: NOTRUN -> [SKIP][10] ([Intel XE#535]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/bat-pvc-2/igt@kms_psr@primary_page_flip.html
* igt@xe_guc_pc@freq_range_idle:
- bat-pvc-2: NOTRUN -> [SKIP][11] ([Intel XE#533]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/bat-pvc-2/igt@xe_guc_pc@freq_range_idle.html
* igt@xe_huc_copy@huc_copy:
- bat-pvc-2: NOTRUN -> [SKIP][12] ([Intel XE#255])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/bat-pvc-2/igt@xe_huc_copy@huc_copy.html
* igt@xe_intel_bb@render:
- bat-pvc-2: NOTRUN -> [SKIP][13] ([Intel XE#532])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/bat-pvc-2/igt@xe_intel_bb@render.html
* igt@xe_live_ktest@migrate:
- bat-pvc-2: NOTRUN -> [SKIP][14] ([Intel XE#483]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/bat-pvc-2/igt@xe_live_ktest@migrate.html
* igt@xe_pm_residency@gt-c6-on-idle:
- bat-pvc-2: NOTRUN -> [SKIP][15] ([Intel XE#531])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1:
- bat-adlp-7: [FAIL][16] ([Intel XE#480]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7480/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html
* igt@xe_exec_reset@virtual-close-fd-no-exec:
- bat-pvc-2: [INCOMPLETE][18] ([Intel XE#631]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7480/bat-pvc-2/igt@xe_exec_reset@virtual-close-fd-no-exec.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/bat-pvc-2/igt@xe_exec_reset@virtual-close-fd-no-exec.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/483
[Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
[Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531
[Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532
[Intel XE#533]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/533
[Intel XE#535]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/535
[Intel XE#536]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/536
[Intel XE#537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/537
[Intel XE#538]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/538
[Intel XE#539]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/539
[Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/541
[Intel XE#631]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/631
Build changes
-------------
* IGT: IGT_7480 -> IGTPW_9771
* Linux: xe-365-0533b5d42b2f8ec916646c10715ac45215e87689 -> xe-367-b4ddac861881e66a4af06531a7a72345c086bac1
IGTPW_9771: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/index.html
IGT_7480: a8d38db9ac258d7fd71b2cf7607e259a864f95be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-365-0533b5d42b2f8ec916646c10715ac45215e87689: 0533b5d42b2f8ec916646c10715ac45215e87689
xe-367-b4ddac861881e66a4af06531a7a72345c086bac1: b4ddac861881e66a4af06531a7a72345c086bac1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9771/index.html
[-- Attachment #2: Type: text/html, Size: 7811 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Idle Residency on Exec (rev3)
2023-08-11 10:32 [igt-dev] [PATCH i-g-t 0/2] Idle Residency on Exec Riana Tauro
` (8 preceding siblings ...)
2023-09-12 13:22 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
@ 2023-09-12 13:59 ` Patchwork
2023-09-18 6:46 ` Gupta, Anshuman
9 siblings, 1 reply; 22+ messages in thread
From: Patchwork @ 2023-09-12 13:59 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 89031 bytes --]
== Series Details ==
Series: Idle Residency on Exec (rev3)
URL : https://patchwork.freedesktop.org/series/122341/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13623_full -> IGTPW_9771_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9771_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9771_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9771/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9771_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_capture@pi@ccs0:
- shard-mtlp: NOTRUN -> [DMESG-WARN][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@gem_exec_capture@pi@ccs0.html
* igt@gem_userptr_blits@nohangcheck:
- shard-mtlp: [PASS][2] -> [FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-4/igt@gem_userptr_blits@nohangcheck.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-2/igt@gem_userptr_blits@nohangcheck.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
- shard-dg2: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-10/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-rkl: [PASS][6] -> [INCOMPLETE][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-2/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-c:
- shard-dg1: [PASS][8] -> [FAIL][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-13/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-14/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html
Known issues
------------
Here are the changes found in IGTPW_9771_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8411])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8411])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#7701])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-7/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#7701])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) +13 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-2/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +19 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#8414])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-17/igt@drm_fdinfo@virtual-busy-all.html
* igt@feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#658])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@feature_discovery@psr1.html
* igt@gem_ccs@block-copy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#3555]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@gem_ccs@block-copy-compressed.html
* igt@gem_close_race@multigpu-basic-process:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#7697])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#7697])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-2/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#6335])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [ABORT][22] ([i915#7461])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-mtlp: NOTRUN -> [FAIL][23] ([i915#6121])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-7/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg2: NOTRUN -> [SKIP][24] ([fdo#109314])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#8555])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#1099]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-snb6/igt@gem_ctx_persistence@processes.html
* igt@gem_ctx_persistence@saturated-hostile@vecs0:
- shard-mtlp: [PASS][27] -> [FAIL][28] ([i915#7816]) +2 other tests fail
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-1/igt@gem_ctx_persistence@saturated-hostile@vecs0.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-8/igt@gem_ctx_persistence@saturated-hostile@vecs0.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-8/igt@gem_ctx_sseu@invalid-sseu.html
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#280])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][31] -> [FAIL][32] ([i915#5784])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-12/igt@gem_eio@reset-stress.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-18/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4812])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-8/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4771])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4036])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#8555]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#4525])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-7/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#6334]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@pi@vcs0:
- shard-mtlp: NOTRUN -> [ABORT][39] ([i915#8668])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@gem_exec_capture@pi@vcs0.html
* igt@gem_exec_fair@basic-deadline:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4473] / [i915#4771])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][41] -> [FAIL][42] ([i915#2842])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [PASS][43] -> [FAIL][44] ([i915#2842]) +1 other test fail
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-7/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_params@secure-non-root:
- shard-mtlp: NOTRUN -> [SKIP][47] ([fdo#112283])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-cpu:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#3281]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@gem_exec_reloc@basic-cpu.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) +12 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-cpu:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-16/igt@gem_exec_reloc@basic-wc-cpu.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#3281]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4537])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: [PASS][54] -> [ABORT][55] ([i915#7975] / [i915#8213]) +1 other test abort
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-2/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
- shard-dg1: [PASS][56] -> [ABORT][57] ([i915#7975] / [i915#8213])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-19/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4860])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-15/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4860])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#4613])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-2/igt@gem_lmem_swapping@heavy-multi.html
- shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-3/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4613]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#284])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-2/igt@gem_media_vme.html
* igt@gem_mmap@bad-size:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4083]) +6 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@gem_mmap@bad-size.html
* igt@gem_mmap_gtt@basic-small-bo-tiledx:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4077]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@gem_mmap_gtt@basic-small-bo-tiledx.html
* igt@gem_mmap_gtt@hang-busy:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4077]) +20 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@gem_mmap_gtt@hang-busy.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@gem_mmap_wc@coherency.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#3282]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#3282]) +6 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pwrite@basic-exhaustion:
- shard-snb: NOTRUN -> [WARN][70] ([i915#2658])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-snb1/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-valid-protected-context:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4270]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#8428]) +8 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4079])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4079])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4885])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-7/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4077]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-15/igt@gem_tiled_blits@basic.html
* igt@gem_userptr_blits@access-control:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-7/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-8/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3297]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#4880])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#3297])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@vma-merge:
- shard-rkl: NOTRUN -> [FAIL][83] ([i915#3318])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-6/igt@gem_userptr_blits@vma-merge.html
- shard-tglu: NOTRUN -> [FAIL][84] ([i915#3318])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-3/igt@gem_userptr_blits@vma-merge.html
* igt@gen3_render_mixed_blits:
- shard-dg1: NOTRUN -> [SKIP][85] ([fdo#109289])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-12/igt@gen3_render_mixed_blits.html
* igt@gen7_exec_parse@basic-allocation:
- shard-mtlp: NOTRUN -> [SKIP][86] ([fdo#109289]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@gen7_exec_parse@basic-allocation.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#2856]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_hangman@engine-engine-hang@vcs0:
- shard-mtlp: [PASS][89] -> [FAIL][90] ([i915#7069])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-6/igt@i915_hangman@engine-engine-hang@vcs0.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@i915_hangman@engine-engine-hang@vcs0.html
* igt@i915_hwmon@hwmon-read:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#7707])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@i915_hwmon@hwmon-read.html
* igt@i915_module_load@load:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#6227])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@i915_module_load@load.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#8399])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-dg1: [PASS][94] -> [FAIL][95] ([i915#3591])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
- shard-tglu: NOTRUN -> [FAIL][96] ([i915#2681] / [i915#3591]) +1 other test fail
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-tglu: NOTRUN -> [WARN][97] ([i915#2681]) +1 other test warn
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#1397])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#1397])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][100] ([fdo#111644] / [i915#1397])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-5/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][101] ([i915#8346])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle@gt1:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#8925]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle@gt1.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#8925]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][104] ([fdo#109302])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@i915_query@query-topology-unsupported.html
* igt@i915_selftest@mock@memory_region:
- shard-mtlp: NOTRUN -> [DMESG-WARN][105] ([i915#9311] / [i915#9312])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-2/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6645])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4212]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#3826])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4212])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#8502]) +7 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][111] ([i915#8247]) +3 other tests fail
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-13/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html
* igt@kms_async_flips@invalid-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#6228])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6229])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-apl: NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#1769])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][115] ([fdo#111615] / [i915#5286])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][116] ([fdo#111614]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [FAIL][117] ([i915#5138])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][118] ([fdo#111614]) +4 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][119] ([fdo#111614])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#5190]) +11 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6187]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [PASS][122] -> [FAIL][123] ([i915#3743]) +1 other test fail
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][124] ([fdo#111615]) +12 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-apl: NOTRUN -> [SKIP][125] ([fdo#109271]) +22 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-16/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][127] ([fdo#111615]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
- shard-rkl: NOTRUN -> [SKIP][128] ([fdo#110723])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +7 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_joiner@2x-modeset:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#2705])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-8/igt@kms_big_joiner@2x-modeset.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-9/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#3886] / [i915#5354] / [i915#6095])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-7/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#3734] / [i915#5354] / [i915#6095])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#3689] / [i915#3886] / [i915#5354]) +5 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6095]) +39 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#5354] / [i915#6095]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-2/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#3689] / [i915#5354]) +15 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3886] / [i915#6095]) +8 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-2/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][139] ([fdo#109271] / [i915#3886])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl6/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#5354] / [i915#6095]) +4 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#5354]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-3/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-18/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#5354] / [i915#6095]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-19/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#7213] / [i915#9010]) +4 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#4087] / [i915#7213]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#3742])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-18/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#4087]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-tglu: NOTRUN -> [SKIP][149] ([fdo#111827])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-6/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-mtlp: NOTRUN -> [SKIP][150] ([fdo#111827])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2: NOTRUN -> [SKIP][151] ([fdo#111827])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#7828])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@kms_chamelium_frames@dp-crc-fast.html
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#7828]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-3/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#7828]) +12 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#7828])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-18/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#7828]) +8 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_color@deep-color:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#3555]) +4 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#7118]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-7/igt@kms_content_protection@atomic.html
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#6944] / [i915#7116] / [i915#7118]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#3299])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#7118]) +3 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#6944]) +3 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][163] ([fdo#109279] / [i915#3359])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#8814]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#3359])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#3359])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3359]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#4213]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][169] ([fdo#111825]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
- shard-tglu: NOTRUN -> [SKIP][170] ([fdo#109274])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-dg2: NOTRUN -> [SKIP][171] ([fdo#109274] / [i915#5354]) +4 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3546]) +3 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][173] ([fdo#111767] / [i915#3546]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
- shard-dg2: NOTRUN -> [SKIP][174] ([fdo#109274] / [fdo#111767] / [i915#5354])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [PASS][175] -> [FAIL][176] ([i915#2346]) +1 other test fail
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#4103] / [i915#4213])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#9227])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html
* igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#9226] / [i915#9261]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3840]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-formats:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#3840])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-mtlp: NOTRUN -> [ABORT][182] ([i915#9262]) +5 other tests abort
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_fence_pin_leak:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#4881])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][184] ([fdo#109274] / [fdo#111767])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#8381])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-dg1: NOTRUN -> [SKIP][186] ([fdo#111825]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-15/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3637]) +9 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: NOTRUN -> [DMESG-WARN][188] ([i915#8841])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-snb1/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-snb: NOTRUN -> [SKIP][189] ([fdo#109271]) +115 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-snb2/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip:
- shard-dg2: NOTRUN -> [SKIP][190] ([fdo#109274])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu: NOTRUN -> [SKIP][191] ([fdo#109274] / [i915#3637]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#8381])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#2672]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2672]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8810])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555]) +4 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: NOTRUN -> [SKIP][197] ([fdo#109285])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#5354]) +33 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#1825]) +45 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][200] ([fdo#109280]) +5 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#3458]) +11 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111825] / [i915#1825]) +6 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][203] ([fdo#110189]) +7 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8708]) +9 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#3023]) +4 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#8708])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#8708]) +19 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8228])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-7/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@kms_hdr@static-toggle.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#4816])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#6301])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
- shard-mtlp: [PASS][212] -> [ABORT][213] ([i915#9262]) +1 other test abort
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1:
- shard-mtlp: [PASS][214] -> [DMESG-WARN][215] ([i915#9262]) +2 other tests dmesg-warn
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
- shard-dg2: [PASS][216] -> [FAIL][217] ([fdo#103375])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-10/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3582]) +3 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#3555]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-7/igt@kms_plane_multiple@tiling-yf.html
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#3555]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-5/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][221] ([i915#8292])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][222] ([i915#8292])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#5176]) +7 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#5176]) +3 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#5176]) +19 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#5176]) +5 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#5235]) +3 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#5235]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#5235]) +7 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#5235]) +7 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#5235]) +19 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#6524] / [i915#6805])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#658])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#658])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][235] ([fdo#111068] / [i915#658])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-apl: NOTRUN -> [SKIP][236] ([fdo#109271] / [i915#658])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl1/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@cursor_plane_onoff:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#1072])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@kms_psr@cursor_plane_onoff.html
* igt@kms_psr@dpms:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#1072]) +7 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-7/igt@kms_psr@dpms.html
* igt@kms_psr@psr2_cursor_mmap_gtt:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#1072])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-12/igt@kms_psr@psr2_cursor_mmap_gtt.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#4235])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#5289])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#4235]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_selftest@drm_cmdline:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#8661]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@kms_selftest@drm_cmdline.html
* igt@kms_selftest@drm_format:
- shard-apl: NOTRUN -> [SKIP][244] ([fdo#109271] / [i915#8661])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl3/igt@kms_selftest@drm_format.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#8809]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#8623]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-a:
- shard-snb: NOTRUN -> [FAIL][247] ([i915#9196])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-snb6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-d:
- shard-tglu: [PASS][248] -> [FAIL][249] ([i915#9196])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html
* igt@kms_vblank@pipe-d-query-forked:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#4070] / [i915#533] / [i915#6768])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-1/igt@kms_vblank@pipe-d-query-forked.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#2437])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#7387])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html
* igt@perf@mi-rpc:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#2434])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg2: NOTRUN -> [SKIP][254] ([fdo#109289]) +4 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-accuracy-50@ccs0:
- shard-mtlp: NOTRUN -> [FAIL][255] ([i915#4349]) +5 other tests fail
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-7/igt@perf_pmu@busy-accuracy-50@ccs0.html
* igt@perf_pmu@faulting-read@gtt:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#8440])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@perf_pmu@faulting-read@gtt.html
* igt@prime_vgem@basic-fence-blt:
- shard-mtlp: NOTRUN -> [FAIL][257] ([i915#8445])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@prime_vgem@basic-fence-blt.html
* igt@prime_vgem@coherency-gtt:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#3708] / [i915#4077])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#3708])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-7/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#3708])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@prime_vgem@fence-write-hang.html
* igt@runner@aborted:
- shard-mtlp: NOTRUN -> [FAIL][261] ([i915#7812])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@runner@aborted.html
* igt@sysfs_heartbeat_interval@mixed@rcs0:
- shard-apl: [PASS][262] -> [FAIL][263] ([i915#1731])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-apl4/igt@sysfs_heartbeat_interval@mixed@rcs0.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl6/igt@sysfs_heartbeat_interval@mixed@rcs0.html
* igt@sysfs_heartbeat_interval@precise@vecs0:
- shard-mtlp: NOTRUN -> [FAIL][264] ([i915#8332])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@sysfs_heartbeat_interval@precise@vecs0.html
* igt@v3d/v3d_mmap@mmap-bo:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#2575]) +22 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@v3d/v3d_mmap@mmap-bo.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-tglu: NOTRUN -> [SKIP][266] ([fdo#109315] / [i915#2575]) +2 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-10/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@v3d/v3d_submit_csd@bad-extension:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#2575]) +11 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@v3d/v3d_submit_csd@bad-extension.html
* igt@v3d/v3d_wait_bo@bad-bo:
- shard-rkl: NOTRUN -> [SKIP][268] ([fdo#109315]) +2 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-7/igt@v3d/v3d_wait_bo@bad-bo.html
* igt@vc4/vc4_label_bo@set-kernel-name:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#7711]) +4 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@vc4/vc4_label_bo@set-kernel-name.html
* igt@vc4/vc4_perfmon@get-values-invalid-pointer:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#2575]) +3 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-9/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#7711]) +13 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
* igt@vc4/vc4_purgeable_bo@mark-willneed:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#7711]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@vc4/vc4_purgeable_bo@mark-willneed.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#7711])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-18/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][274] ([i915#7742]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][276] ([i915#2846]) -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-rkl: [FAIL][278] ([i915#2842]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-7/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][280] ([i915#2842]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-mtlp: [DMESG-FAIL][282] ([i915#8962] / [i915#9121]) -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_softpin@noreloc-s3:
- shard-dg2: [FAIL][284] ([fdo#103375]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-5/igt@gem_softpin@noreloc-s3.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@gem_softpin@noreloc-s3.html
* igt@gem_sync@basic-each:
- shard-mtlp: [ABORT][286] ([i915#9262]) -> [PASS][287] +2 other tests pass
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-2/igt@gem_sync@basic-each.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@gem_sync@basic-each.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-dg1: [FAIL][288] ([i915#3591]) -> [PASS][289] +1 other test pass
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: [SKIP][290] ([i915#1397]) -> [PASS][291]
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg1: [SKIP][292] ([i915#1397]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@i2c:
- shard-dg2: [FAIL][294] ([i915#8717]) -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-2/igt@i915_pm_rpm@i2c.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@i915_pm_rpm@i2c.html
* igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][296] ([i915#1397]) -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][298] ([i915#3743]) -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][300] ([i915#2346]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-dg2: [FAIL][302] ([i915#6880]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
- shard-apl: [INCOMPLETE][304] -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][306] ([i915#8292]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* {igt@kms_pm_dc@dc6-dpms}:
- shard-tglu: [FAIL][308] ([i915#9295]) -> [PASS][309]
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
* {igt@kms_pm_dc@dc9-dpms}:
- shard-tglu: [SKIP][310] ([i915#4281]) -> [PASS][311]
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-c:
- shard-tglu: [FAIL][312] ([i915#9196]) -> [PASS][313]
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html
* igt@kms_vblank@pipe-a-query-busy-hang:
- shard-apl: [SKIP][314] ([fdo#109271]) -> [PASS][315]
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-apl6/igt@kms_vblank@pipe-a-query-busy-hang.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl6/igt@kms_vblank@pipe-a-query-busy-hang.html
- shard-glk: [SKIP][316] ([fdo#109271]) -> [PASS][317]
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-glk8/igt@kms_vblank@pipe-a-query-busy-hang.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-glk9/igt@kms_vblank@pipe-a-query-busy-hang.html
* igt@syncobj_wait@invalid-single-wait-unsubmitted:
- shard-dg1: [DMESG-WARN][318] ([i915#1982] / [i915#4423]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@syncobj_wait@invalid-single-wait-unsubmitted.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-14/igt@syncobj_wait@invalid-single-wait-unsubmitted.html
* igt@sysfs_heartbeat_interval@mixed@vecs0:
- shard-mtlp: [FAIL][320] ([i915#1731]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@vecs0.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-2/igt@sysfs_heartbeat_interval@mixed@vecs0.html
#### Warnings ####
* igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs:
- shard-dg1: [SKIP][322] ([i915#4423] / [i915#5354] / [i915#6095]) -> [SKIP][323] ([i915#5354] / [i915#6095])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-19/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][324] ([i915#7118] / [i915#7162]) -> [SKIP][325] ([i915#7118])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-11/igt@kms_content_protection@type1.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@kms_content_protection@type1.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-dg1: [SKIP][326] ([i915#3458] / [i915#4423]) -> [SKIP][327] ([i915#3458])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-4:
- shard-dg1: [SKIP][328] ([i915#4423] / [i915#5176]) -> [SKIP][329] ([i915#5176])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-4.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-4.html
* igt@kms_psr@primary_mmap_gtt:
- shard-dg1: [SKIP][330] ([i915#1072] / [i915#4078]) -> [SKIP][331] ([i915#1072])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-13/igt@kms_psr@primary_mmap_gtt.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-17/igt@kms_psr@primary_mmap_gtt.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[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#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[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#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#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#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[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#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#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[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#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[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#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812
[i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332
[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#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440
[i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962
[i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9312]: https://gitlab.freedesktop.org/drm/intel/issues/9312
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7480 -> IGTPW_9771
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13623: eb35627e1c4a3781c161cd04944e403ce6df3e1c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9771: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/index.html
IGT_7480: a8d38db9ac258d7fd71b2cf7607e259a864f95be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/index.html
[-- Attachment #2: Type: text/html, Size: 108599 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3 1/2] tests/xe: Add a test that validates idle residency on exec
2023-09-12 9:50 ` [igt-dev] [PATCH i-g-t v3 " Riana Tauro
@ 2023-09-15 8:51 ` Nilawar, Badal
0 siblings, 0 replies; 22+ messages in thread
From: Nilawar, Badal @ 2023-09-15 8:51 UTC (permalink / raw)
To: Riana Tauro, igt-dev
On 12-09-2023 15:20, Riana Tauro wrote:
> Add a test what runs a background load that is
> active approximately 1% of the time. Verify that we do enter
> GT-C6 the rest of the time and validate idle residency is within
> tolerance.
>
> v2: use start and end variables for residency
> add detailed comment (Badal)
>
> v3: run on a single instance of an engine belonging to gt (Anshuman)
>
> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
> ---
> tests/intel/xe_pm_residency.c | 147 +++++++++++++++++++++++++++++++++-
> 1 file changed, 144 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
> index 6dc88ad0a..b85656040 100644
> --- a/tests/intel/xe_pm_residency.c
> +++ b/tests/intel/xe_pm_residency.c
> @@ -12,17 +12,20 @@
> */
> #include <fcntl.h>
> #include <limits.h>
> +#include <time.h>
>
> #include "igt.h"
> #include "igt_device.h"
> #include "igt_power.h"
> #include "igt_sysfs.h"
>
> +#include "lib/igt_syncobj.h"
> +#include "xe/xe_ioctl.h"
> #include "xe/xe_query.h"
> #include "xe/xe_util.h"
>
> #define NUM_REPS 16 /* No of Repetitions */
> -#define SLEEP_DURATION 3000 /* in milliseconds */
> +#define SLEEP_DURATION 3 /* in seconds */
>
> const double tolerance = 0.1;
> int fw_handle = -1;
> @@ -48,6 +51,11 @@ enum test_type {
> * Description: basic residency test to validate idle residency
> * measured over a time interval is within the tolerance
> *
> + * SUBTEST: idle-residency-on-exec
> + * Description: Validate idle residency measured when a background
> + * load is only active for ~1% of the time
> + * Run type: FULL
> + *
> * SUBTEST: gt-c6-freeze
> * Description: Validate idle residency measured over suspend(s2idle)
> * is greater than suspend time or within tolerance
> @@ -64,6 +72,94 @@ static void close_fw_handle(int sig)
> close(fw_handle);
> }
>
> +static void exec_load(int fd, struct drm_xe_engine_class_instance *hwe, unsigned long *done)
> +{
> + uint32_t bo = 0;
> + uint32_t exec_queue, syncobj, vm;
> + uint64_t addr = 0x1a0000;
> + uint64_t batch_addr, batch_offset, data_addr, data_offset;
> + size_t bo_size;
> + int b;
> + struct {
> + uint32_t batch[16];
> + uint64_t pad;
> + uint32_t data;
> + } *data;
> +
> + struct drm_xe_sync sync = {
> + .flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL,
> + };
> +
> + struct drm_xe_exec exec = {
> + .num_batch_buffer = 1,
> + .num_syncs = 1,
> + .syncs = to_user_pointer(&sync),
> + };
> +
> + vm = xe_vm_create(fd, 0, 0);
> + exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
> + bo_size = xe_get_default_alignment(fd);
> +
> + bo = xe_bo_create_flags(fd, vm, bo_size,
> + visible_vram_if_possible(fd, hwe->gt_id));
> + data = xe_bo_map(fd, bo, bo_size);
> + syncobj = syncobj_create(fd, 0);
> +
> + xe_vm_bind_sync(fd, vm, bo, 0, addr, bo_size);
> +
> + batch_offset = (char *)&data->batch - (char *)data;
> + batch_addr = addr + batch_offset;
> + data_offset = (char *)&data->data - (char *)data;
> + data_addr = addr + data_offset;
> +
> + /* Aim for ~1% busy */
> + do {
> + uint64_t submit, elapsed;
> + struct timespec tv = {};
> +
> + b = 0;
> + done[1]++;
> + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
> + data->batch[b++] = data_addr;
> + data->batch[b++] = data_addr >> 32;
> + data->batch[b++] = done[1];
> + data->batch[b++] = MI_BATCH_BUFFER_END;
> + igt_assert(b <= ARRAY_SIZE(data->batch));
> +
> + exec.exec_queue_id = exec_queue;
> + exec.address = batch_addr;
> + sync.handle = syncobj;
> +
> + igt_nsec_elapsed(&tv);
> + xe_exec(fd, &exec);
> + submit = igt_nsec_elapsed(&tv);
> +
> + igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
> + elapsed = igt_nsec_elapsed(&tv);
> + igt_assert_eq(data->data, done[1]);
> +
> + igt_debug("Execution took %.3fms (submit %.1fus, wait %.1fus)\n",
> + 1e-6 * elapsed,
> + 1e-3 * submit,
> + 1e-3 * (elapsed - submit));
> +
> + syncobj_reset(fd, &syncobj, 1);
> +
> + /*
> + * Execute the above workload for ~1% of the elapsed time and sleep for
> + * the rest of the time (~99%)
> + */
> + usleep(elapsed / 10);
> + } while (!READ_ONCE(*done));
> +
> + xe_vm_unbind_sync(fd, vm, 0, addr, bo_size);
> + syncobj_destroy(fd, syncobj);
> + munmap(data, bo_size);
> + gem_close(fd, bo);
> + xe_exec_queue_destroy(fd, exec_queue);
> + xe_vm_destroy(fd, vm);
> +}
> +
> static unsigned int measured_usleep(unsigned int usec)
> {
> struct timespec ts = { };
> @@ -118,7 +214,7 @@ static void test_idle_residency(int fd, int gt, enum test_type flag)
>
> if (flag == TEST_IDLE) {
> residency_start = read_idle_residency(fd, gt);
> - elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000;
> + elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
> residency_end = read_idle_residency(fd, gt);
> }
>
> @@ -128,12 +224,46 @@ static void test_idle_residency(int fd, int gt, enum test_type flag)
> assert_within_epsilon(residency_end - residency_start, elapsed_ms, tolerance);
> }
>
> +static void idle_residency_on_exec(int fd, struct drm_xe_engine_class_instance *hwe)
> +{
> + const int tol = 20;
> + unsigned long *done;
> + unsigned long end, start;
> + unsigned long elapsed_ms, residency_end, residency_start;
> +
> + igt_debug("Running on %s:%d\n",
> + xe_engine_class_string(hwe->engine_class), hwe->engine_instance);
> + done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
> + igt_assert(done != MAP_FAILED);
> + memset(done, 0, 4096);
> +
> + igt_fork(child, 1)
> + exec_load(fd, hwe, done);
> +
> + start = READ_ONCE(done[1]);
> + residency_start = read_idle_residency(fd, hwe->gt_id);
> + elapsed_ms = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
> + residency_end = read_idle_residency(fd, hwe->gt_id);
> + end = READ_ONCE(done[1]);
> + *done = 1;
> +
> + igt_waitchildren();
> +
> + /* At least one wakeup/s needed for a reasonable test */
> + igt_assert(end - start);
> +
> + /* While very nearly busy, expect full GT C6 */
> + assert_within_epsilon((residency_end - residency_start), elapsed_ms, tol);
> +
> + munmap(done, 4096);
> +}
> +
> static void measure_power(struct igt_power *gpu, double *power)
> {
> struct power_sample power_sample[2];
>
> igt_power_get_energy(gpu, &power_sample[0]);
> - measured_usleep(SLEEP_DURATION * 1000);
> + measured_usleep(SLEEP_DURATION * USEC_PER_SEC);
> igt_power_get_energy(gpu, &power_sample[1]);
> *power = igt_power_get_mW(gpu, &power_sample[0], &power_sample[1]);
> }
> @@ -181,6 +311,7 @@ igt_main
> uint32_t d3cold_allowed;
> int fd, gt;
> char pci_slot_name[NAME_MAX];
> + struct drm_xe_engine_class_instance *hwe;
>
> igt_fixture {
> fd = drm_open_driver(DRIVER_XE);
> @@ -211,6 +342,16 @@ igt_main
> xe_for_each_gt(fd, gt)
> test_idle_residency(fd, gt, TEST_IDLE);
>
> + igt_describe("Validate idle residency on exec");
> + igt_subtest("idle-residency-on-exec") {
> + xe_for_each_gt(fd, gt) {
> + xe_for_each_hw_engine(fd, hwe) {
> + if (gt == hwe->gt_id && !hwe->engine_instance)
So this will run on instance 0.
Reviewed-by: Badal Nilawar <badal.nilawar@intel.com>
Regards,
Badal
> + idle_residency_on_exec(fd, hwe);
> + }
> + }
> + }
> +
> igt_describe("Toggle GT C states by acquiring/releasing forcewake and validate power measured");
> igt_subtest("toggle-gt-c6") {
> igt_install_exit_handler(close_fw_handle);
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Idle Residency on Exec (rev3)
2023-09-12 13:59 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-09-18 6:46 ` Gupta, Anshuman
0 siblings, 0 replies; 22+ messages in thread
From: Gupta, Anshuman @ 2023-09-18 6:46 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, Tauro, Riana; +Cc: Nilawar, Badal
[-- Attachment #1: Type: text/plain, Size: 91216 bytes --]
The CI failures are unrelated to the test added by this patch.
Pushed to igt oprgin/master.
Thanks for patch and review.
Br,
Anshuman.
From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Patchwork
Sent: Tuesday, September 12, 2023 7:30 PM
To: Tauro, Riana <riana.tauro@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: [igt-dev] ✗ Fi.CI.IGT: failure for Idle Residency on Exec (rev3)
Patch Details
Series:
Idle Residency on Exec (rev3)
URL:
https://patchwork.freedesktop.org/series/122341/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/index.html
CI Bug Log - changes from CI_DRM_13623_full -> IGTPW_9771_full
Summary
FAILURE
Serious unknown changes coming with IGTPW_9771_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9771_full, please notify your bug team (lgci.bug.filing@intel.com<mailto:lgci.bug.filing@intel.com>) 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_9771/index.html
Participating hosts (9 -> 9)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in IGTPW_9771_full:
IGT changes
Possible regressions
* igt@gem_exec_capture@pi@ccs0:
* shard-mtlp: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@gem_exec_capture@pi@ccs0.html>
* igt@gem_userptr_blits@nohangcheck:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-4/igt@gem_userptr_blits@nohangcheck.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-2/igt@gem_userptr_blits@nohangcheck.html>
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-10/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html>
* igt@kms_rotation_crc@multiplane-rotation:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-2/igt@kms_rotation_crc@multiplane-rotation.html>
* igt@kms_universal_plane@cursor-fb-leak-pipe-c:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-13/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-14/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html>
Known issues
Here are the changes found in IGTPW_9771_full that come from known issues:
IGT changes
Issues hit
* igt@api_intel_bb@object-reloc-keep-cache:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@api_intel_bb@object-reloc-keep-cache.html> (i915#8411<https://gitlab.freedesktop.org/drm/intel/issues/8411>)
* igt@api_intel_bb@object-reloc-purge-cache:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@api_intel_bb@object-reloc-purge-cache.html> (i915#8411<https://gitlab.freedesktop.org/drm/intel/issues/8411>)
* igt@device_reset@cold-reset-bound:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-7/igt@device_reset@cold-reset-bound.html> (i915#7701<https://gitlab.freedesktop.org/drm/intel/issues/7701>)
* igt@device_reset@unbind-cold-reset-rebind:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@device_reset@unbind-cold-reset-rebind.html> (i915#7701<https://gitlab.freedesktop.org/drm/intel/issues/7701>)
* igt@drm_fdinfo@busy-hang@rcs0:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-2/igt@drm_fdinfo@busy-hang@rcs0.html> (i915#8414<https://gitlab.freedesktop.org/drm/intel/issues/8414>) +13 other tests skip
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html> (i915#8414<https://gitlab.freedesktop.org/drm/intel/issues/8414>) +19 other tests skip
* igt@drm_fdinfo@virtual-busy-all:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-17/igt@drm_fdinfo@virtual-busy-all.html> (i915#8414<https://gitlab.freedesktop.org/drm/intel/issues/8414>)
* igt@feature_discovery@psr1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@feature_discovery@psr1.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
* igt@gem_ccs@block-copy-compressed:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@gem_ccs@block-copy-compressed.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 other test skip
* igt@gem_close_race@multigpu-basic-process:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@gem_close_race@multigpu-basic-process.html> (i915#7697<https://gitlab.freedesktop.org/drm/intel/issues/7697>)
* igt@gem_close_race@multigpu-basic-threads:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-2/igt@gem_close_race@multigpu-basic-threads.html> (i915#7697<https://gitlab.freedesktop.org/drm/intel/issues/7697>)
* igt@gem_create@create-ext-cpu-access-big:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html> (i915#6335<https://gitlab.freedesktop.org/drm/intel/issues/6335>)
* shard-dg2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html> (i915#7461<https://gitlab.freedesktop.org/drm/intel/issues/7461>)
* igt@gem_ctx_exec@basic-nohangcheck:
* shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-7/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6121<https://gitlab.freedesktop.org/drm/intel/issues/6121>)
* igt@gem_ctx_param@set-priority-not-supported:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@gem_ctx_param@set-priority-not-supported.html> (fdo#109314<https://bugs.freedesktop.org/show_bug.cgi?id=109314>)
* igt@gem_ctx_persistence@heartbeat-hang:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hang.html> (i915#8555<https://gitlab.freedesktop.org/drm/intel/issues/8555>)
* igt@gem_ctx_persistence@processes:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-snb6/igt@gem_ctx_persistence@processes.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) +1 other test skip
* igt@gem_ctx_persistence@saturated-hostile@vecs0:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-1/igt@gem_ctx_persistence@saturated-hostile@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-8/igt@gem_ctx_persistence@saturated-hostile@vecs0.html> (i915#7816<https://gitlab.freedesktop.org/drm/intel/issues/7816>) +2 other tests fail
* igt@gem_ctx_sseu@invalid-sseu:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-8/igt@gem_ctx_sseu@invalid-sseu.html> (i915#280<https://gitlab.freedesktop.org/drm/intel/issues/280>)
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@gem_ctx_sseu@invalid-sseu.html> (i915#280<https://gitlab.freedesktop.org/drm/intel/issues/280>)
* igt@gem_eio@reset-stress:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-12/igt@gem_eio@reset-stress.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-18/igt@gem_eio@reset-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>)
* igt@gem_exec_balancer@bonded-false-hang:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-8/igt@gem_exec_balancer@bonded-false-hang.html> (i915#4812<https://gitlab.freedesktop.org/drm/intel/issues/4812>)
* igt@gem_exec_balancer@bonded-pair:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html> (i915#4771<https://gitlab.freedesktop.org/drm/intel/issues/4771>)
* igt@gem_exec_balancer@invalid-bonds:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@gem_exec_balancer@invalid-bonds.html> (i915#4036<https://gitlab.freedesktop.org/drm/intel/issues/4036>)
* igt@gem_exec_balancer@noheartbeat:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@gem_exec_balancer@noheartbeat.html> (i915#8555<https://gitlab.freedesktop.org/drm/intel/issues/8555>) +1 other test skip
* igt@gem_exec_balancer@parallel-contexts:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-7/igt@gem_exec_balancer@parallel-contexts.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>)
* igt@gem_exec_capture@capture-invisible@lmem0:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@gem_exec_capture@capture-invisible@lmem0.html> (i915#6334<https://gitlab.freedesktop.org/drm/intel/issues/6334>) +1 other test skip
* igt@gem_exec_capture@pi@vcs0:
* shard-mtlp: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@gem_exec_capture@pi@vcs0.html> (i915#8668<https://gitlab.freedesktop.org/drm/intel/issues/8668>)
* igt@gem_exec_fair@basic-deadline:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@gem_exec_fair@basic-deadline.html> (i915#4473<https://gitlab.freedesktop.org/drm/intel/issues/4473> / i915#4771<https://gitlab.freedesktop.org/drm/intel/issues/4771>)
* igt@gem_exec_fair@basic-pace-share@rcs0:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
* igt@gem_exec_fair@basic-pace@vecs0:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1 other test fail
* igt@gem_exec_fair@basic-throttle:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@gem_exec_fair@basic-throttle.html> (i915#3539<https://gitlab.freedesktop.org/drm/intel/issues/3539>)
* igt@gem_exec_flush@basic-wb-prw-default:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-7/igt@gem_exec_flush@basic-wb-prw-default.html> (i915#3539<https://gitlab.freedesktop.org/drm/intel/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/intel/issues/4852>) +2 other tests skip
* igt@gem_exec_params@secure-non-root:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@gem_exec_params@secure-non-root.html> (fdo#112283<https://bugs.freedesktop.org/show_bug.cgi?id=112283>)
* igt@gem_exec_reloc@basic-cpu:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@gem_exec_reloc@basic-cpu.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +1 other test skip
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +12 other tests skip
* igt@gem_exec_reloc@basic-wc-cpu:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-16/igt@gem_exec_reloc@basic-wc-cpu.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +1 other test skip
* igt@gem_exec_reloc@basic-write-wc-noreloc:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@gem_exec_reloc@basic-write-wc-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +5 other tests skip
* igt@gem_exec_schedule@deep@rcs0:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@gem_exec_schedule@deep@rcs0.html> (i915#4537<https://gitlab.freedesktop.org/drm/intel/issues/4537>)
* igt@gem_exec_schedule@preempt-queue-contexts:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-contexts.html> (i915#4537<https://gitlab.freedesktop.org/drm/intel/issues/4537> / i915#4812<https://gitlab.freedesktop.org/drm/intel/issues/4812>)
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-2/igt@gem_exec_suspend@basic-s4-devices@lmem0.html> (i915#7975<https://gitlab.freedesktop.org/drm/intel/issues/7975> / i915#8213<https://gitlab.freedesktop.org/drm/intel/issues/8213>) +1 other test abort
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-19/igt@gem_exec_suspend@basic-s4-devices@lmem0.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html> (i915#7975<https://gitlab.freedesktop.org/drm/intel/issues/7975> / i915#8213<https://gitlab.freedesktop.org/drm/intel/issues/8213>)
* igt@gem_fence_thrash@bo-write-verify-none:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-15/igt@gem_fence_thrash@bo-write-verify-none.html> (i915#4860<https://gitlab.freedesktop.org/drm/intel/issues/4860>)
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html> (i915#4860<https://gitlab.freedesktop.org/drm/intel/issues/4860>)
* igt@gem_lmem_swapping@heavy-multi:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-2/igt@gem_lmem_swapping@heavy-multi.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-3/igt@gem_lmem_swapping@heavy-multi.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +3 other tests skip
* igt@gem_media_vme:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-2/igt@gem_media_vme.html> (i915#284<https://gitlab.freedesktop.org/drm/intel/issues/284>)
* igt@gem_mmap@bad-size:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@gem_mmap@bad-size.html> (i915#4083<https://gitlab.freedesktop.org/drm/intel/issues/4083>) +6 other tests skip
* igt@gem_mmap_gtt@basic-small-bo-tiledx:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@gem_mmap_gtt@basic-small-bo-tiledx.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>) +4 other tests skip
* igt@gem_mmap_gtt@hang-busy:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@gem_mmap_gtt@hang-busy.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>) +20 other tests skip
* igt@gem_mmap_wc@coherency:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@gem_mmap_wc@coherency.html> (i915#4083<https://gitlab.freedesktop.org/drm/intel/issues/4083>) +4 other tests skip
* igt@gem_partial_pwrite_pread@reads-uncached:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@gem_partial_pwrite_pread@reads-uncached.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) +3 other tests skip
* igt@gem_partial_pwrite_pread@writes-after-reads:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@gem_partial_pwrite_pread@writes-after-reads.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) +6 other tests skip
* igt@gem_pwrite@basic-exhaustion:
* shard-snb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-snb1/igt@gem_pwrite@basic-exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/intel/issues/2658>)
* igt@gem_pxp@create-valid-protected-context:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@gem_pxp@create-valid-protected-context.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +3 other tests skip
* igt@gem_pxp@regular-baseline-src-copy-readible:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@gem_pxp@regular-baseline-src-copy-readible.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +2 other tests skip
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html> (i915#8428<https://gitlab.freedesktop.org/drm/intel/issues/8428>) +8 other tests skip
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html> (i915#4079<https://gitlab.freedesktop.org/drm/intel/issues/4079>)
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html> (i915#4079<https://gitlab.freedesktop.org/drm/intel/issues/4079>)
* igt@gem_softpin@evict-snoop-interruptible:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-7/igt@gem_softpin@evict-snoop-interruptible.html> (i915#4885<https://gitlab.freedesktop.org/drm/intel/issues/4885>)
* igt@gem_tiled_blits@basic:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-15/igt@gem_tiled_blits@basic.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>) +1 other test skip
* igt@gem_userptr_blits@access-control:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-7/igt@gem_userptr_blits@access-control.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>)
* igt@gem_userptr_blits@create-destroy-unsync:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-8/igt@gem_userptr_blits@create-destroy-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) +1 other test skip
* igt@gem_userptr_blits@dmabuf-sync:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) +3 other tests skip
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-busy.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297> / i915#4880<https://gitlab.freedesktop.org/drm/intel/issues/4880>)
* igt@gem_userptr_blits@unsync-unmap:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>)
* igt@gem_userptr_blits@vma-merge:
* shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-6/igt@gem_userptr_blits@vma-merge.html> (i915#3318<https://gitlab.freedesktop.org/drm/intel/issues/3318>)
* shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-3/igt@gem_userptr_blits@vma-merge.html> (i915#3318<https://gitlab.freedesktop.org/drm/intel/issues/3318>)
* igt@gen3_render_mixed_blits:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-12/igt@gen3_render_mixed_blits.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>)
* igt@gen7_exec_parse@basic-allocation:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@gen7_exec_parse@basic-allocation.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +3 other tests skip
* igt@gen9_exec_parse@batch-zero-length:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@gen9_exec_parse@batch-zero-length.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +4 other tests skip
* igt@gen9_exec_parse@bb-start-param:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@gen9_exec_parse@bb-start-param.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 other test skip
* igt@i915_hangman@engine-engine-hang@vcs0:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-6/igt@i915_hangman@engine-engine-hang@vcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@i915_hangman@engine-engine-hang@vcs0.html> (i915#7069<https://gitlab.freedesktop.org/drm/intel/issues/7069>)
* igt@i915_hwmon@hwmon-read:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@i915_hwmon@hwmon-read.html> (i915#7707<https://gitlab.freedesktop.org/drm/intel/issues/7707>)
* igt@i915_module_load@load:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@i915_module_load@load.html> (i915#6227<https://gitlab.freedesktop.org/drm/intel/issues/6227>)
* igt@i915_pm_freq_api@freq-suspend:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-6/igt@i915_pm_freq_api@freq-suspend.html> (i915#8399<https://gitlab.freedesktop.org/drm/intel/issues/8399>)
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#3591<https://gitlab.freedesktop.org/drm/intel/issues/3591>)
* shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#2681<https://gitlab.freedesktop.org/drm/intel/issues/2681> / i915#3591<https://gitlab.freedesktop.org/drm/intel/issues/3591>) +1 other test fail
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
* shard-tglu: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> (i915#2681<https://gitlab.freedesktop.org/drm/intel/issues/2681>) +1 other test warn
* igt@i915_pm_rpm@modeset-lpsp-stress:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>)
* igt@i915_pm_rpm@modeset-non-lpsp:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@i915_pm_rpm@modeset-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>)
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-5/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html> (fdo#111644<https://bugs.freedesktop.org/show_bug.cgi?id=111644> / i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>)
* igt@i915_pm_rps@reset:
* shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@i915_pm_rps@reset.html> (i915#8346<https://gitlab.freedesktop.org/drm/intel/issues/8346>)
* igt@i915_pm_rps@thresholds-idle@gt1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle@gt1.html> (i915#8925<https://gitlab.freedesktop.org/drm/intel/issues/8925>) +1 other test skip
* igt@i915_pm_rps@thresholds-park@gt0:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@i915_pm_rps@thresholds-park@gt0.html> (i915#8925<https://gitlab.freedesktop.org/drm/intel/issues/8925>) +1 other test skip
* igt@i915_query@query-topology-unsupported:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@i915_query@query-topology-unsupported.html> (fdo#109302<https://bugs.freedesktop.org/show_bug.cgi?id=109302>)
* igt@i915_selftest@mock@memory_region:
* shard-mtlp: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-2/igt@i915_selftest@mock@memory_region.html> (i915#9311<https://gitlab.freedesktop.org/drm/intel/issues/9311> / i915#9312<https://gitlab.freedesktop.org/drm/intel/issues/9312>)
* igt@i915_suspend@basic-s3-without-i915:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@i915_suspend@basic-s3-without-i915.html> (i915#6645<https://gitlab.freedesktop.org/drm/intel/issues/6645>)
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html> (i915#4212<https://gitlab.freedesktop.org/drm/intel/issues/4212>) +1 other test skip
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#3826<https://gitlab.freedesktop.org/drm/intel/issues/3826>)
* igt@kms_addfb_basic@tile-pitch-mismatch:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@kms_addfb_basic@tile-pitch-mismatch.html> (i915#4212<https://gitlab.freedesktop.org/drm/intel/issues/4212>)
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html> (i915#8502<https://gitlab.freedesktop.org/drm/intel/issues/8502>) +7 other tests skip
* igt@kms_async_flips@crc@pipe-b-hdmi-a-3:
* shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-13/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html> (i915#8247<https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3 other tests fail
* igt@kms_async_flips@invalid-async-flip:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@kms_async_flips@invalid-async-flip.html> (i915#6228<https://gitlab.freedesktop.org/drm/intel/issues/6228>)
* igt@kms_async_flips@test-cursor:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_async_flips@test-cursor.html> (i915#6229<https://gitlab.freedesktop.org/drm/intel/issues/6229>)
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
* shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>)
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>)
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +1 other test skip
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
* shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> (i915#5138<https://gitlab.freedesktop.org/drm/intel/issues/5138>)
* igt@kms_big_fb@linear-16bpp-rotate-270:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_big_fb@linear-16bpp-rotate-270.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +4 other tests skip
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> (i915#5190<https://gitlab.freedesktop.org/drm/intel/issues/5190>) +11 other tests skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> (i915#6187<https://gitlab.freedesktop.org/drm/intel/issues/6187>) +1 other test skip
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) +1 other test fail
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +12 other tests skip
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
* shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +22 other tests skip
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-16/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html> (i915#4538<https://gitlab.freedesktop.org/drm/intel/issues/4538>)
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +1 other test skip
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html> (fdo#110723<https://bugs.freedesktop.org/show_bug.cgi?id=110723>)
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> (i915#4538<https://gitlab.freedesktop.org/drm/intel/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/intel/issues/5190>) +7 other tests skip
* igt@kms_big_joiner@2x-modeset:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-8/igt@kms_big_joiner@2x-modeset.html> (i915#2705<https://gitlab.freedesktop.org/drm/intel/issues/2705>)
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-9/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-7/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html> (i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>)
* igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_ccs:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_ccs.html> (i915#3734<https://gitlab.freedesktop.org/drm/intel/issues/3734> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>)
* igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +5 other tests skip
* igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs.html> (i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +39 other tests skip
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-2/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 other test skip
* igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +15 other tests skip
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-2/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html> (i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +8 other tests skip
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
* shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl6/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>)
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +4 other tests skip
* igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +2 other tests skip
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-3/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +2 other tests skip
* igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-18/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +2 other tests skip
* igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-19/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 other test skip
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html> (i915#7213<https://gitlab.freedesktop.org/drm/intel/issues/7213> / i915#9010<https://gitlab.freedesktop.org/drm/intel/issues/9010>) +4 other tests skip
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html> (i915#4087<https://gitlab.freedesktop.org/drm/intel/issues/4087> / i915#7213<https://gitlab.freedesktop.org/drm/intel/issues/7213>) +3 other tests skip
* igt@kms_cdclk@plane-scaling:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-18/igt@kms_cdclk@plane-scaling.html> (i915#3742<https://gitlab.freedesktop.org/drm/intel/issues/3742>)
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html> (i915#4087<https://gitlab.freedesktop.org/drm/intel/issues/4087>) +3 other tests skip
* igt@kms_chamelium_color@ctm-0-25:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-6/igt@kms_chamelium_color@ctm-0-25.html> (fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
* igt@kms_chamelium_color@ctm-0-75:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@kms_chamelium_color@ctm-0-75.html> (fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
* igt@kms_chamelium_color@ctm-red-to-blue:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@kms_chamelium_color@ctm-red-to-blue.html> (fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
* igt@kms_chamelium_frames@dp-crc-fast:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@kms_chamelium_frames@dp-crc-fast.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>)
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-3/igt@kms_chamelium_frames@dp-crc-fast.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +1 other test skip
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +12 other tests skip
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-18/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>)
* igt@kms_chamelium_hpd@dp-hpd-storm:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@kms_chamelium_hpd@dp-hpd-storm.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +8 other tests skip
* igt@kms_color@deep-color:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@kms_color@deep-color.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +4 other tests skip
* igt@kms_content_protection@atomic:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-7/igt@kms_content_protection@atomic.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>) +1 other test skip
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-5/igt@kms_content_protection@atomic.html> (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>) +1 other test skip
* igt@kms_content_protection@dp-mst-lic-type-0:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0.html> (i915#3299<https://gitlab.freedesktop.org/drm/intel/issues/3299>)
* igt@kms_content_protection@srm:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@kms_content_protection@srm.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>) +3 other tests skip
* igt@kms_content_protection@uevent:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@kms_content_protection@uevent.html> (i915#6944<https://gitlab.freedesktop.org/drm/intel/issues/6944>) +3 other tests skip
* igt@kms_cursor_crc@cursor-offscreen-512x170:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279> / i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>)
* igt@kms_cursor_crc@cursor-onscreen-32x10:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-32x10.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8814<https://gitlab.freedesktop.org/drm/intel/issues/8814>) +3 other tests skip
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>)
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>)
* igt@kms_cursor_crc@cursor-sliding-512x170:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-512x170.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 other test skip
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> (i915#4213<https://gitlab.freedesktop.org/drm/intel/issues/4213>) +1 other test skip
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +1 other test skip
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>)
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +4 other tests skip
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html> (i915#3546<https://gitlab.freedesktop.org/drm/intel/issues/3546>) +3 other tests skip
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html> (fdo#111767<https://bugs.freedesktop.org/show_bug.cgi?id=111767> / i915#3546<https://gitlab.freedesktop.org/drm/intel/issues/3546>) +1 other test skip
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111767<https://bugs.freedesktop.org/show_bug.cgi?id=111767> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>)
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
* shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>) +1 other test fail
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> (i915#4103<https://gitlab.freedesktop.org/drm/intel/issues/4103> / i915#4213<https://gitlab.freedesktop.org/drm/intel/issues/4213>)
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html> (i915#9227<https://gitlab.freedesktop.org/drm/intel/issues/9227>)
* igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html> (i915#9226<https://gitlab.freedesktop.org/drm/intel/issues/9226> / i915#9261<https://gitlab.freedesktop.org/drm/intel/issues/9261>) +1 other test skip
* igt@kms_dsc@dsc-basic:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@kms_dsc@dsc-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/intel/issues/3840>) +1 other test skip
* igt@kms_dsc@dsc-with-formats:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_dsc@dsc-with-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/intel/issues/3840>)
* igt@kms_fbcon_fbt@psr-suspend:
* shard-mtlp: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@kms_fbcon_fbt@psr-suspend.html> (i915#9262<https://gitlab.freedesktop.org/drm/intel/issues/9262>) +5 other tests abort
* igt@kms_fence_pin_leak:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_fence_pin_leak.html> (i915#4881<https://gitlab.freedesktop.org/drm/intel/issues/4881>)
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111767<https://bugs.freedesktop.org/show_bug.cgi?id=111767>)
* igt@kms_flip@2x-flip-vs-fences-interruptible:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html> (i915#8381<https://gitlab.freedesktop.org/drm/intel/issues/8381>)
* igt@kms_flip@2x-flip-vs-modeset:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-15/igt@kms_flip@2x-flip-vs-modeset.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +2 other tests skip
* igt@kms_flip@2x-flip-vs-suspend:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@kms_flip@2x-flip-vs-suspend.html> (i915#3637<https://gitlab.freedesktop.org/drm/intel/issues/3637>) +9 other tests skip
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
* shard-snb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-snb1/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html> (i915#8841<https://gitlab.freedesktop.org/drm/intel/issues/8841>)
* igt@kms_flip@2x-nonexisting-fb:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-snb2/igt@kms_flip@2x-nonexisting-fb.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +115 other tests skip
* igt@kms_flip@2x-plain-flip:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@kms_flip@2x-plain-flip.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>)
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / i915#3637<https://gitlab.freedesktop.org/drm/intel/issues/3637>) +1 other test skip
* igt@kms_flip@flip-vs-fences-interruptible:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@kms_flip@flip-vs-fences-interruptible.html> (i915#8381<https://gitlab.freedesktop.org/drm/intel/issues/8381>)
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +3 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8810<https://gitlab.freedesktop.org/drm/intel/issues/8810>)
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +4 other tests skip
* igt@kms_force_connector_basic@force-load-detect:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html> (fdo#109285<https://bugs.freedesktop.org/show_bug.cgi?id=109285>)
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +33 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html> (i915#1825<https://gitlab.freedesktop.org/drm/intel/issues/1825>) +45 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-pwrite.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +5 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html> (i915#3458<https://gitlab.freedesktop.org/drm/intel/issues/3458>) +11 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#1825<https://gitlab.freedesktop.org/drm/intel/issues/1825>) +6 other tests skip
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html> (fdo#110189<https://bugs.freedesktop.org/show_bug.cgi?id=110189>) +7 other tests skip
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/intel/issues/8708>) +9 other tests skip
* igt@kms_frontbuffer_tracking@psr-1p-rte:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-rte.html> (i915#3023<https://gitlab.freedesktop.org/drm/intel/issues/3023>) +4 other tests skip
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/intel/issues/8708>)
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/intel/issues/8708>) +19 other tests skip
* igt@kms_hdr@invalid-metadata-sizes:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-7/igt@kms_hdr@invalid-metadata-sizes.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/intel/issues/8228>)
* igt@kms_hdr@static-toggle:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@kms_hdr@static-toggle.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/intel/issues/8228>) +2 other tests skip
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#4816<https://gitlab.freedesktop.org/drm/intel/issues/4816>)
* igt@kms_panel_fitting@atomic-fastset:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@kms_panel_fitting@atomic-fastset.html> (i915#6301<https://gitlab.freedesktop.org/drm/intel/issues/6301>)
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html> (i915#9262<https://gitlab.freedesktop.org/drm/intel/issues/9262>) +1 other test abort
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html> (i915#9262<https://gitlab.freedesktop.org/drm/intel/issues/9262>) +2 other tests dmesg-warn
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-10/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>)
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html> (i915#3582<https://gitlab.freedesktop.org/drm/intel/issues/3582>) +3 other tests skip
* igt@kms_plane_multiple@tiling-yf:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-7/igt@kms_plane_multiple@tiling-yf.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 other test skip
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-5/igt@kms_plane_multiple@tiling-yf.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 other test skip
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
* shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html> (i915#8292<https://gitlab.freedesktop.org/drm/intel/issues/8292>)
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3:
* shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html> (i915#8292<https://gitlab.freedesktop.org/drm/intel/issues/8292>)
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +7 other tests skip
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +3 other tests skip
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d-hdmi-a-1:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d-hdmi-a-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +19 other tests skip
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +5 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 other tests skip
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +7 other tests skip
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +7 other tests skip
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +19 other tests skip
* igt@kms_prime@basic-crc-hybrid:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html> (i915#6524<https://gitlab.freedesktop.org/drm/intel/issues/6524> / i915#6805<https://gitlab.freedesktop.org/drm/intel/issues/6805>)
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
* igt@kms_psr2_su@page_flip-xrgb8888:
* shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl1/igt@kms_psr2_su@page_flip-xrgb8888.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
* igt@kms_psr@cursor_plane_onoff:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@kms_psr@cursor_plane_onoff.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>)
* igt@kms_psr@dpms:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-7/igt@kms_psr@dpms.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) +7 other tests skip
* igt@kms_psr@psr2_cursor_mmap_gtt:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-12/igt@kms_psr@psr2_cursor_mmap_gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>)
* igt@kms_rotation_crc@primary-rotation-90:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-90.html> (i915#4235<https://gitlab.freedesktop.org/drm/intel/issues/4235>)
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (i915#5289<https://gitlab.freedesktop.org/drm/intel/issues/5289>)
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> (i915#4235<https://gitlab.freedesktop.org/drm/intel/issues/4235>) +3 other tests skip
* igt@kms_selftest@drm_cmdline:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@kms_selftest@drm_cmdline.html> (i915#8661<https://gitlab.freedesktop.org/drm/intel/issues/8661>) +2 other tests skip
* igt@kms_selftest@drm_format:
* shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl3/igt@kms_selftest@drm_format.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#8661<https://gitlab.freedesktop.org/drm/intel/issues/8661>)
* igt@kms_setmode@basic-clone-single-crtc:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8809<https://gitlab.freedesktop.org/drm/intel/issues/8809>) +1 other test skip
* igt@kms_tiled_display@basic-test-pattern:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@kms_tiled_display@basic-test-pattern.html> (i915#8623<https://gitlab.freedesktop.org/drm/intel/issues/8623>) +1 other test skip
* igt@kms_universal_plane@cursor-fb-leak-pipe-a:
* shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-snb6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html> (i915#9196<https://gitlab.freedesktop.org/drm/intel/issues/9196>)
* igt@kms_universal_plane@cursor-fb-leak-pipe-d:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html> (i915#9196<https://gitlab.freedesktop.org/drm/intel/issues/9196>)
* igt@kms_vblank@pipe-d-query-forked:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-1/igt@kms_vblank@pipe-d-query-forked.html> (i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533> / i915#6768<https://gitlab.freedesktop.org/drm/intel/issues/6768>)
* igt@kms_writeback@writeback-invalid-parameters:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html> (i915#2437<https://gitlab.freedesktop.org/drm/intel/issues/2437>)
* igt@perf@global-sseu-config-invalid:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html> (i915#7387<https://gitlab.freedesktop.org/drm/intel/issues/7387>)
* igt@perf@mi-rpc:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@perf@mi-rpc.html> (i915#2434<https://gitlab.freedesktop.org/drm/intel/issues/2434>)
* igt@perf@per-context-mode-unprivileged:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@perf@per-context-mode-unprivileged.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +4 other tests skip
* igt@perf_pmu@busy-accuracy-50@ccs0:
* shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-7/igt@perf_pmu@busy-accuracy-50@ccs0.html> (i915#4349<https://gitlab.freedesktop.org/drm/intel/issues/4349>) +5 other tests fail
* igt@perf_pmu@faulting-read@gtt:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@perf_pmu@faulting-read@gtt.html> (i915#8440<https://gitlab.freedesktop.org/drm/intel/issues/8440>)
* igt@prime_vgem@basic-fence-blt:
* shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@prime_vgem@basic-fence-blt.html> (i915#8445<https://gitlab.freedesktop.org/drm/intel/issues/8445>)
* igt@prime_vgem@coherency-gtt:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@prime_vgem@coherency-gtt.html> (i915#3708<https://gitlab.freedesktop.org/drm/intel/issues/3708> / i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>)
* igt@prime_vgem@fence-read-hang:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-7/igt@prime_vgem@fence-read-hang.html> (i915#3708<https://gitlab.freedesktop.org/drm/intel/issues/3708>)
* igt@prime_vgem@fence-write-hang:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-5/igt@prime_vgem@fence-write-hang.html> (i915#3708<https://gitlab.freedesktop.org/drm/intel/issues/3708>)
* igt@runner@aborted:
* shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-6/igt@runner@aborted.html> (i915#7812<https://gitlab.freedesktop.org/drm/intel/issues/7812>)
* igt@sysfs_heartbeat_interval@mixed@rcs0:
* shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-apl4/igt@sysfs_heartbeat_interval@mixed@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl6/igt@sysfs_heartbeat_interval@mixed@rcs0.html> (i915#1731<https://gitlab.freedesktop.org/drm/intel/issues/1731>)
* igt@sysfs_heartbeat_interval@precise@vecs0:
* shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@sysfs_heartbeat_interval@precise@vecs0.html> (i915#8332<https://gitlab.freedesktop.org/drm/intel/issues/8332>)
* igt@v3d/v3d_mmap@mmap-bo:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-3/igt@v3d/v3d_mmap@mmap-bo.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +22 other tests skip
* igt@v3d/v3d_submit_cl@simple-flush-cache:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-10/igt@v3d/v3d_submit_cl@simple-flush-cache.html> (fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315> / i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +2 other tests skip
* igt@v3d/v3d_submit_csd@bad-extension:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-6/igt@v3d/v3d_submit_csd@bad-extension.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +11 other tests skip
* igt@v3d/v3d_wait_bo@bad-bo:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-7/igt@v3d/v3d_wait_bo@bad-bo.html> (fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315>) +2 other tests skip
* igt@vc4/vc4_label_bo@set-kernel-name:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@vc4/vc4_label_bo@set-kernel-name.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>) +4 other tests skip
* igt@vc4/vc4_perfmon@get-values-invalid-pointer:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-9/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +3 other tests skip
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-1/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>) +13 other tests skip
* igt@vc4/vc4_purgeable_bo@mark-willneed:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-4/igt@vc4/vc4_purgeable_bo@mark-willneed.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>) +1 other test skip
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-18/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>)
Possible fixes
* igt@drm_fdinfo@most-busy-check-all@rcs0:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html> (i915#7742<https://gitlab.freedesktop.org/drm/intel/issues/7742>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html>
* igt@gem_exec_fair@basic-deadline:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html> (i915#2846<https://gitlab.freedesktop.org/drm/intel/issues/2846>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html>
* igt@gem_exec_fair@basic-none-share@rcs0:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-7/igt@gem_exec_fair@basic-none-share@rcs0.html>
* igt@gem_exec_fair@basic-pace-share@rcs0:
* shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html>
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
* shard-mtlp: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html> (i915#8962<https://gitlab.freedesktop.org/drm/intel/issues/8962> / i915#9121<https://gitlab.freedesktop.org/drm/intel/issues/9121>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-5/igt@gem_exec_flush@basic-batch-kernel-default-uc.html>
* igt@gem_softpin@noreloc-s3:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-5/igt@gem_softpin@noreloc-s3.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@gem_softpin@noreloc-s3.html>
* igt@gem_sync@basic-each:
* shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-2/igt@gem_sync@basic-each.html> (i915#9262<https://gitlab.freedesktop.org/drm/intel/issues/9262>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-4/igt@gem_sync@basic-each.html> +2 other tests pass
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
* shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html> (i915#3591<https://gitlab.freedesktop.org/drm/intel/issues/3591>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html> +1 other test pass
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html>
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html>
* igt@i915_pm_rpm@i2c:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-2/igt@i915_pm_rpm@i2c.html> (i915#8717<https://gitlab.freedesktop.org/drm/intel/issues/8717>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-11/igt@i915_pm_rpm@i2c.html>
* igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html>
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html>
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
* shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html>
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html> (i915#6880<https://gitlab.freedesktop.org/drm/intel/issues/6880>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html>
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
* shard-apl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html>
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html> (i915#8292<https://gitlab.freedesktop.org/drm/intel/issues/8292>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html>
* {igt@kms_pm_dc@dc6-dpms}:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html> (i915#9295<https://gitlab.freedesktop.org/drm/intel/issues/9295>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html>
* {igt@kms_pm_dc@dc9-dpms}:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html> (i915#4281<https://gitlab.freedesktop.org/drm/intel/issues/4281>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html>
* igt@kms_universal_plane@cursor-fb-leak-pipe-c:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html> (i915#9196<https://gitlab.freedesktop.org/drm/intel/issues/9196>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html>
* igt@kms_vblank@pipe-a-query-busy-hang:
* shard-apl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-apl6/igt@kms_vblank@pipe-a-query-busy-hang.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-apl6/igt@kms_vblank@pipe-a-query-busy-hang.html>
* shard-glk: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-glk8/igt@kms_vblank@pipe-a-query-busy-hang.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-glk9/igt@kms_vblank@pipe-a-query-busy-hang.html>
* igt@syncobj_wait@invalid-single-wait-unsubmitted:
* shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@syncobj_wait@invalid-single-wait-unsubmitted.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982> / i915#4423<https://gitlab.freedesktop.org/drm/intel/issues/4423>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-14/igt@syncobj_wait@invalid-single-wait-unsubmitted.html>
* igt@sysfs_heartbeat_interval@mixed@vecs0:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@vecs0.html> (i915#1731<https://gitlab.freedesktop.org/drm/intel/issues/1731>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-mtlp-2/igt@sysfs_heartbeat_interval@mixed@vecs0.html>
Warnings
* igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs.html> (i915#4423<https://gitlab.freedesktop.org/drm/intel/issues/4423> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-19/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>)
* igt@kms_content_protection@type1:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg2-11/igt@kms_content_protection@type1.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118> / i915#7162<https://gitlab.freedesktop.org/drm/intel/issues/7162>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg2-10/igt@kms_content_protection@type1.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>)
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html> (i915#3458<https://gitlab.freedesktop.org/drm/intel/issues/3458> / i915#4423<https://gitlab.freedesktop.org/drm/intel/issues/4423>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html> (i915#3458<https://gitlab.freedesktop.org/drm/intel/issues/3458>)
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-4:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-14/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-4.html> (i915#4423<https://gitlab.freedesktop.org/drm/intel/issues/4423> / i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-4.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>)
* igt@kms_psr@primary_mmap_gtt:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13623/shard-dg1-13/igt@kms_psr@primary_mmap_gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072> / i915#4078<https://gitlab.freedesktop.org/drm/intel/issues/4078>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/shard-dg1-17/igt@kms_psr@primary_mmap_gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>)
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
Build changes
* CI: CI-20190529 -> None
* IGT: IGT_7480 -> IGTPW_9771
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13623: eb35627e1c4a3781c161cd04944e403ce6df3e1c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9771: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9771/index.html
IGT_7480: a8d38db9ac258d7fd71b2cf7607e259a864f95be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
[-- Attachment #2: Type: text/html, Size: 178669 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2023-09-18 6:47 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-11 10:32 [igt-dev] [PATCH i-g-t 0/2] Idle Residency on Exec Riana Tauro
2023-08-11 10:32 ` [igt-dev] [PATCH i-g-t 1/2] RFC tests/xe: Add a test that validates idle residency on exec Riana Tauro
2023-08-28 16:28 ` Nilawar, Badal
2023-08-30 5:15 ` Riana Tauro
2023-08-28 16:41 ` Belgaumkar, Vinay
2023-08-28 18:18 ` Nilawar, Badal
2023-08-28 18:19 ` Belgaumkar, Vinay
2023-09-05 10:54 ` [igt-dev] [PATCH i-g-t v2 1/2] " Riana Tauro
2023-09-08 13:22 ` Gupta, Anshuman
2023-09-12 6:09 ` Riana Tauro
2023-09-12 9:50 ` [igt-dev] [PATCH i-g-t v3 " Riana Tauro
2023-09-15 8:51 ` Nilawar, Badal
2023-08-11 10:32 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add idle-residency-on-exec to xe-fast-feedback.testlist Riana Tauro
2023-08-11 11:18 ` [igt-dev] ○ CI.xeBAT: info for Idle Residency on Exec Patchwork
2023-08-11 11:20 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-08-12 13:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-09-05 14:41 ` [igt-dev] ✓ Fi.CI.BAT: success for Idle Residency on Exec (rev2) Patchwork
2023-09-05 16:53 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2023-09-12 12:48 ` [igt-dev] ✓ Fi.CI.BAT: success for Idle Residency on Exec (rev3) Patchwork
2023-09-12 13:22 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-09-12 13:59 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-09-18 6:46 ` Gupta, Anshuman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox