* [PATCH i-g-t] tests/intel/xe_gt_freq: re-introduce exec tests of xe_gt_freq
@ 2024-02-22 5:45 Riana Tauro
2024-02-22 6:33 ` ✓ CI.xeBAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Riana Tauro @ 2024-02-22 5:45 UTC (permalink / raw)
To: igt-dev
Cc: riana.tauro, anshuman.gupta, aravind.iddamsetty, badal.nilawar,
sujaritha.sundaresan
The tests freq_range_exec, freq_fixed_exec were removed due
to a design flaw which caused failure in tests. The workload execution
finished earlier before the frequency validation when gt was set to
run at a higher frequency.
These tests are being reintroduced with a spinner based approach
in this patch to avoid such failures.
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
---
tests/intel/xe_gt_freq.c | 106 ++++++++++++++++++++++++++++++++++++++-
1 file changed, 105 insertions(+), 1 deletion(-)
diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c
index bf63e4298..f0de341cb 100644
--- a/tests/intel/xe_gt_freq.c
+++ b/tests/intel/xe_gt_freq.c
@@ -17,6 +17,7 @@
#include "xe_drm.h"
#include "xe/xe_ioctl.h"
+#include "xe/xe_spin.h"
#include "xe/xe_query.h"
#include "xe/xe_util.h"
@@ -153,6 +154,9 @@ static void test_freq_basic_api(int fd, int gt_id)
/**
* SUBTEST: freq_fixed_idle
* Description: Test fixed frequency request with exec_queue in idle state
+ *
+ * SUBTEST: freq_fixed_exec
+ * Description: Test fixed frequency request when spinner is run
*/
static void test_freq_fixed(int fd, int gt_id, bool gt_idle)
@@ -217,8 +221,10 @@ static void test_freq_fixed(int fd, int gt_id, bool gt_idle)
/**
* SUBTEST: freq_range_idle
* Description: Test range frequency request with exec_queue in idle state
+ *
+ * SUBTEST: freq_range_exec
+ * Description: Test range frequency request when spinner is run
*/
-
static void test_freq_range(int fd, int gt_id, bool gt_idle)
{
uint32_t rpn = get_freq(fd, gt_id, "rpn");
@@ -319,10 +325,88 @@ static void test_reset(int fd, int gt_id, int cycles)
}
}
+static void test_spin(int fd, struct drm_xe_engine_class_instance *eci, bool fixed)
+{
+ struct drm_xe_sync sync[2] = {
+ { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
+ { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
+ };
+ struct drm_xe_exec exec = {
+ .num_batch_buffer = 1,
+ .num_syncs = 2,
+ .syncs = to_user_pointer(sync),
+ };
+ uint64_t addr = 0x1a0000;
+ struct xe_spin_opts spin_opts = {
+ .addr = addr,
+ .preempt = false
+ };
+ struct xe_spin *spin;
+ uint32_t exec_queue;
+ uint32_t syncobj;
+ size_t bo_size;
+ uint32_t bo;
+ uint32_t vm;
+
+ vm = xe_vm_create(fd, 0, 0);
+ bo_size = sizeof(*spin);
+ bo_size = xe_bb_size(fd, bo_size);
+
+ bo = xe_bo_create(fd, vm, bo_size,
+ vram_if_possible(fd, eci->gt_id), 0);
+ spin = xe_bo_map(fd, bo, bo_size);
+
+ exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
+ syncobj = syncobj_create(fd, 0);
+
+ sync[0].handle = syncobj_create(fd, 0);
+ xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
+
+ xe_spin_init(spin, &spin_opts);
+
+ sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL;
+ sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
+ sync[1].handle = syncobj;
+
+ exec.exec_queue_id = exec_queue;
+ exec.address = addr;
+ xe_exec(fd, &exec);
+
+ xe_spin_wait_started(spin);
+ usleep(50000);
+ igt_assert(!syncobj_wait(fd, &syncobj, 1, 1, 0, NULL));
+
+ igt_info("Running on GT %d Engine %s:%d\n", eci->gt_id,
+ xe_engine_class_string(eci->engine_class), eci->engine_instance);
+
+ if (fixed)
+ test_freq_fixed(fd, eci->gt_id, false);
+ else
+ test_freq_range(fd, eci->gt_id, false);
+
+ xe_spin_end(spin);
+
+ igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
+ igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
+
+ sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
+ xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1);
+ igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
+
+ syncobj_destroy(fd, sync[0].handle);
+ syncobj_destroy(fd, syncobj);
+ xe_exec_queue_destroy(fd, exec_queue);
+
+ munmap(spin, bo_size);
+ gem_close(fd, bo);
+ xe_vm_destroy(fd, vm);
+}
+
igt_main
{
int fd;
int gt;
+ struct drm_xe_engine_class_instance *hwe;
uint32_t stash_min;
uint32_t stash_max;
@@ -352,6 +436,16 @@ igt_main
}
}
+ igt_subtest("freq_fixed_exec") {
+ xe_for_each_gt(fd, gt) {
+ xe_for_each_engine(fd, hwe) {
+ if (hwe->gt_id != gt)
+ continue;
+ test_spin(fd, hwe, true);
+ }
+ }
+ }
+
igt_subtest("freq_range_idle") {
xe_for_each_gt(fd, gt) {
igt_require_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 10),
@@ -360,6 +454,16 @@ igt_main
}
}
+ igt_subtest("freq_range_exec") {
+ xe_for_each_gt(fd, gt) {
+ xe_for_each_engine(fd, hwe) {
+ if (hwe->gt_id != gt)
+ continue;
+ test_spin(fd, hwe, false);
+ }
+ }
+ }
+
igt_subtest("freq_low_max") {
xe_for_each_gt(fd, gt) {
test_freq_low_max(fd, gt);
--
2.40.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ CI.xeBAT: success for tests/intel/xe_gt_freq: re-introduce exec tests of xe_gt_freq
2024-02-22 5:45 [PATCH i-g-t] tests/intel/xe_gt_freq: re-introduce exec tests of xe_gt_freq Riana Tauro
@ 2024-02-22 6:33 ` Patchwork
2024-02-22 6:50 ` ✓ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-02-22 6:33 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1081 bytes --]
== Series Details ==
Series: tests/intel/xe_gt_freq: re-introduce exec tests of xe_gt_freq
URL : https://patchwork.freedesktop.org/series/130238/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7722_BAT -> XEIGTPW_10715_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_7722 -> IGTPW_10715
* Linux: xe-820-697ccb3f98ba621b7de9f67b0a4352da767963aa -> xe-821-1768e55dc2d1f56be030d4cb2374cf7c43182ffe
IGTPW_10715: 10715
IGT_7722: 48196ef379a77675ea6af82a82da62b2ad2d9ded @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-820-697ccb3f98ba621b7de9f67b0a4352da767963aa: 697ccb3f98ba621b7de9f67b0a4352da767963aa
xe-821-1768e55dc2d1f56be030d4cb2374cf7c43182ffe: 1768e55dc2d1f56be030d4cb2374cf7c43182ffe
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10715/index.html
[-- Attachment #2: Type: text/html, Size: 1640 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/xe_gt_freq: re-introduce exec tests of xe_gt_freq
2024-02-22 5:45 [PATCH i-g-t] tests/intel/xe_gt_freq: re-introduce exec tests of xe_gt_freq Riana Tauro
2024-02-22 6:33 ` ✓ CI.xeBAT: success for " Patchwork
@ 2024-02-22 6:50 ` Patchwork
2024-02-22 13:32 ` ✓ Fi.CI.IGT: " Patchwork
2024-02-26 11:08 ` [PATCH i-g-t] " Sundaresan, Sujaritha
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-02-22 6:50 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5053 bytes --]
== Series Details ==
Series: tests/intel/xe_gt_freq: re-introduce exec tests of xe_gt_freq
URL : https://patchwork.freedesktop.org/series/130238/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14313 -> IGTPW_10715
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/index.html
Participating hosts (35 -> 34)
------------------------------
Additional (1): bat-arls-2
Missing (2): fi-cfl-8109u fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10715 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- fi-tgl-1115g4: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/fi-tgl-1115g4/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- fi-tgl-1115g4: NOTRUN -> [SKIP][2] ([i915#2190])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/fi-tgl-1115g4/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-tgl-1115g4: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/fi-tgl-1115g4/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-tgl-1115g4: NOTRUN -> [SKIP][4] ([i915#4103]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dsc@dsc-basic:
- fi-tgl-1115g4: NOTRUN -> [SKIP][5] ([i915#3555] / [i915#3840])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/fi-tgl-1115g4/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- fi-tgl-1115g4: NOTRUN -> [SKIP][6] ([fdo#109285])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/fi-tgl-1115g4/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- fi-tgl-1115g4: NOTRUN -> [SKIP][7] ([i915#9812])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/fi-tgl-1115g4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_setmode@basic-clone-single-crtc:
- fi-tgl-1115g4: NOTRUN -> [SKIP][8] ([i915#3555])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/fi-tgl-1115g4/igt@kms_setmode@basic-clone-single-crtc.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- {bat-adls-6}: [DMESG-WARN][9] ([i915#5591]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/bat-adls-6/igt@i915_selftest@live@hangcheck.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/bat-adls-6/igt@i915_selftest@live@hangcheck.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#10194]: https://gitlab.freedesktop.org/drm/intel/issues/10194
[i915#10196]: https://gitlab.freedesktop.org/drm/intel/issues/10196
[i915#10197]: https://gitlab.freedesktop.org/drm/intel/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/intel/issues/10200
[i915#10202]: https://gitlab.freedesktop.org/drm/intel/issues/10202
[i915#10206]: https://gitlab.freedesktop.org/drm/intel/issues/10206
[i915#10211]: https://gitlab.freedesktop.org/drm/intel/issues/10211
[i915#10262]: https://gitlab.freedesktop.org/drm/intel/issues/10262
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7722 -> IGTPW_10715
CI-20190529: 20190529
CI_DRM_14313: 1768e55dc2d1f56be030d4cb2374cf7c43182ffe @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10715: 10715
IGT_7722: 48196ef379a77675ea6af82a82da62b2ad2d9ded @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@xe_gt_freq@freq_fixed_exec
+igt@xe_gt_freq@freq_range_exec
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/index.html
[-- Attachment #2: Type: text/html, Size: 5118 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Fi.CI.IGT: success for tests/intel/xe_gt_freq: re-introduce exec tests of xe_gt_freq
2024-02-22 5:45 [PATCH i-g-t] tests/intel/xe_gt_freq: re-introduce exec tests of xe_gt_freq Riana Tauro
2024-02-22 6:33 ` ✓ CI.xeBAT: success for " Patchwork
2024-02-22 6:50 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-02-22 13:32 ` Patchwork
2024-02-26 11:08 ` [PATCH i-g-t] " Sundaresan, Sujaritha
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-02-22 13:32 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 83269 bytes --]
== Series Details ==
Series: tests/intel/xe_gt_freq: re-introduce exec tests of xe_gt_freq
URL : https://patchwork.freedesktop.org/series/130238/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14313_full -> IGTPW_10715_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/index.html
Participating hosts (8 -> 9)
------------------------------
Additional (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10715_full:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3} (NEW):
- shard-dg2: NOTRUN -> [SKIP][1] +38 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1}:
- shard-dg2: NOTRUN -> [SKIP][2] +96 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-10/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
New tests
---------
New tests have been introduced between CI_DRM_14313_full and IGTPW_10715_full:
### New IGT tests (83) ###
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-a-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [2.65] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [1.47] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [1.60] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [1.42] s
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.42] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.37] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.35] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.35] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 0.40] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 0.36] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 0.36] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 0.36] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [11.02] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [10.82] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [10.69] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [11.02] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.48] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.16] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.14] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_10715_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-4/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-5/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@drm_fdinfo@busy@rcs0:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +20 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-5/igt@drm_fdinfo@busy@rcs0.html
* igt@drm_fdinfo@isolation@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414]) +5 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-1/igt@drm_fdinfo@isolation@rcs0.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [PASS][7] -> [FAIL][8] ([i915#7742])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-7/igt@drm_fdinfo@virtual-idle.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#9323]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-7/igt@gem_ccs@suspend-resume.html
* igt@gem_ctx_sseu@invalid-args:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#280])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-6/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][12] ([i915#10030] / [i915#7975] / [i915#8213])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-2/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#4812]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-10/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#4525])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-5/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [FAIL][15] ([i915#6117])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-4/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#6334])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-glk3/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-glk: NOTRUN -> [FAIL][17] ([i915#9606])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-glk7/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-rkl: NOTRUN -> [FAIL][18] ([i915#2842])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][19] -> [FAIL][20] ([i915#2842]) +1 other test fail
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [PASS][21] -> [FAIL][22] ([i915#2842]) +2 other tests fail
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html
- shard-tglu: [PASS][23] -> [FAIL][24] ([i915#2842]) +1 other test fail
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-8/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#3539] / [i915#4852]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-rkl: NOTRUN -> [SKIP][26] ([fdo#109313])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#7697])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-5/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_reloc@basic-gtt:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#3281]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-4/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#3281]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-2/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#3281]) +5 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-6/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#7276])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-tglu: [PASS][34] -> [ABORT][35] ([i915#7975] / [i915#8213])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-tglu-5/igt@gem_exec_suspend@basic-s4-devices@smem.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#4613] / [i915#7582])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-2/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4613]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@random-engines:
- shard-tglu: NOTRUN -> [SKIP][38] ([i915#4613])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-2/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@smem-oom:
- shard-glk: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#4613]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-glk9/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-5/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_mmap_gtt@cpuset-big-copy-xy:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4077]) +6 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4083]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-8/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4083]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-7/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#3282]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-4/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#3282]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-3/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][46] ([i915#2658])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-glk1/igt@gem_pread@exhaustion.html
* igt@gem_pread@self:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#3282]) +4 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-1/igt@gem_pread@self.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4270]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-4/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4270]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-5/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-tglu: NOTRUN -> [SKIP][50] ([i915#4270])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-4/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4270]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-3/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#8428]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-7/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#5190]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-1/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4079])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-6/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_gtt:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4079]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-6/igt@gem_set_tiling_vs_gtt.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][56] ([i915#5889])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-7/igt@gem_spin_batch@spin-all-new.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4077]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-7/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#3297])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-5/igt@gem_userptr_blits@coherency-unsync.html
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#3297])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-7/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3297]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-7/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][61] ([i915#3297])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen7_exec_parse@basic-allowed:
- shard-mtlp: NOTRUN -> [SKIP][62] ([fdo#109289]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-1/igt@gen7_exec_parse@basic-allowed.html
* igt@gen7_exec_parse@basic-rejected:
- shard-rkl: NOTRUN -> [SKIP][63] ([fdo#109289])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-5/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#2527]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-4/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-without-end:
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#2527] / [i915#2856])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-8/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#2856]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-1/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#2856]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-1/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4881])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-5/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][69] -> [INCOMPLETE][70] ([i915#10137] / [i915#9820] / [i915#9849])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][71] -> [ABORT][72] ([i915#10131] / [i915#9820])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#6621])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-6/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8925])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-3/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_rps@thresholds@gt1:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3555] / [i915#8925])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-3/igt@i915_pm_rps@thresholds@gt1.html
* igt@i915_query@query-topology-unsupported:
- shard-rkl: NOTRUN -> [SKIP][76] ([fdo#109302])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-2/igt@i915_query@query-topology-unsupported.html
* igt@i915_suspend@forcewake:
- shard-tglu: [PASS][77] -> [INCOMPLETE][78] ([i915#8797])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-tglu-10/igt@i915_suspend@forcewake.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-5/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4212]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4212])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-1/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#8709]) +7 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg1-16/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#9531])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#1769] / [i915#3555])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#5286]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][85] ([fdo#111615] / [i915#5286])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][86] ([fdo#111614]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-3/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][87] ([fdo#111614] / [i915#3638]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][88] ([fdo#111614]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-1/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#4538] / [i915#5190]) +7 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-5/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][90] -> [FAIL][91] ([i915#3743])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][92] ([fdo#111615]) +5 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][93] ([fdo#110723])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][94] ([fdo#111615])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-rkl: NOTRUN -> [SKIP][95] ([fdo#111615])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#6187])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* {igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3} (NEW):
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#6095]) +15 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#7213]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2: NOTRUN -> [SKIP][99] ([fdo#111827])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-10/igt@kms_chamelium_color@ctm-0-25.html
- shard-rkl: NOTRUN -> [SKIP][100] ([fdo#111827]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-4/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#7828]) +5 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#7828]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-8/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#7828]) +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-5/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#7828]) +5 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_content_protection@content-type-change:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6944] / [i915#9424])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-7/igt@kms_content_protection@content-type-change.html
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#9424])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-6/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@srm:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6944])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#7118] / [i915#9424]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-5/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#8814]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#3359])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#3555] / [i915#8814]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-glk: NOTRUN -> [SKIP][112] ([fdo#109271]) +71 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-glk9/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#3555]) +7 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#3555]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#3359])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#9809]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
- shard-dg2: NOTRUN -> [SKIP][117] ([fdo#109274] / [i915#5354])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][118] ([fdo#111825]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-tglu: NOTRUN -> [SKIP][119] ([fdo#109274])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-rkl: NOTRUN -> [SKIP][120] ([fdo#111767] / [fdo#111825]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][121] -> [FAIL][122] ([i915#2346])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#9067])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#9067])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#4103] / [i915#4213]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][126] ([fdo#110189] / [i915#9723])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg1-12/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1:
- shard-snb: NOTRUN -> [SKIP][127] ([fdo#109271] / [fdo#110189])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#8812])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#1839])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-5/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#1839])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-4/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#9337])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-7/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#8381])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#3637]) +6 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend.html
- shard-dg2: NOTRUN -> [SKIP][134] ([fdo#109274]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-1/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-tglu: NOTRUN -> [SKIP][135] ([fdo#109274] / [i915#3637]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-6/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#2672]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#2672]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#8810])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#2587] / [i915#2672])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#3555] / [i915#8810])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [FAIL][141] ([i915#6880])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#8708]) +13 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#8708]) +9 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-snb: [PASS][144] -> [SKIP][145] ([fdo#109271]) +10 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][146] ([fdo#111825] / [i915#1825]) +18 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][147] ([fdo#111767] / [i915#1825]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][148] ([fdo#109280]) +8 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-snb: NOTRUN -> [SKIP][149] ([fdo#109271]) +16 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#1825]) +16 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#5354]) +20 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#9766])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#3458]) +14 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][154] ([fdo#110189]) +4 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][155] ([fdo#111767] / [i915#5354]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#3023]) +15 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#6118])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-5/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#8228])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-6/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#1839])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-dg2: NOTRUN -> [SKIP][160] ([fdo#109289]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-1/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
- shard-tglu: NOTRUN -> [SKIP][161] ([fdo#109289]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-3/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3555] / [i915#8821])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-3/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#9423]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#9423]) +7 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#9423]) +7 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#5176]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#5176] / [i915#9423]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#5235]) +3 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#5235]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-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][170] ([i915#5235] / [i915#9423]) +11 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#5235]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg1-13/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#5235]) +2 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#5235])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d-edp-1.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#9685])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#9685])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [PASS][176] -> [FAIL][177] ([i915#9295])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#4281])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#9340])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: [PASS][180] -> [SKIP][181] ([i915#9519])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-rkl-1/igt@kms_pm_rpm@dpms-non-lpsp.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@pc8-residency:
- shard-rkl: NOTRUN -> [SKIP][182] ([fdo#109293] / [fdo#109506])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-7/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#6524] / [i915#6805])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-7/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#6524])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-7/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#9683])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-6/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][186] ([fdo#111068] / [i915#9683])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-5/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#4235])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-5/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#4235])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#5289])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][190] ([fdo#111615] / [i915#5289])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8809])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-8/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#8623])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#9906])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-10/igt@kms_vrr@flip-basic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#9906])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#2437])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-1/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#2437] / [i915#9412])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#2437])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-1/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#2437] / [i915#9412])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-5/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#2437] / [i915#9412])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-6/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@global-sseu-config:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#7387])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-3/igt@perf@global-sseu-config.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#2433])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [PASS][202] -> [FAIL][203] ([i915#4349]) +1 other test fail
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-mtlp-7/igt@perf_pmu@busy-double-start@rcs0.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@event-wait@rcs0:
- shard-tglu: NOTRUN -> [SKIP][204] ([fdo#112283])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-6/igt@perf_pmu@event-wait@rcs0.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][205] ([fdo#109291])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-7/igt@prime_udl.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#3708])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-6/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3708] / [i915#4077])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#3291] / [i915#3708]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-10/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- shard-rkl: NOTRUN -> [SKIP][209] ([fdo#109295] / [i915#3291] / [i915#3708])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-4/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#3708] / [i915#4077])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-10/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#9917])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#9917])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-tglu: NOTRUN -> [FAIL][213] ([i915#9779])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-7/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-rkl: NOTRUN -> [SKIP][214] ([fdo#109315]) +7 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-7/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_mmap@mmap-bo:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2575]) +8 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-1/igt@v3d/v3d_mmap@mmap-bo.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#2575]) +7 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-10/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@v3d/v3d_submit_cl@valid-multisync-submission:
- shard-tglu: NOTRUN -> [SKIP][217] ([fdo#109315] / [i915#2575]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-6/igt@v3d/v3d_submit_cl@valid-multisync-submission.html
* igt@vc4/vc4_perfmon@get-values-valid-perfmon:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#7711]) +3 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-4/igt@vc4/vc4_perfmon@get-values-valid-perfmon.html
* igt@vc4/vc4_purgeable_bo@access-purged-bo-mem:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#7711]) +4 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-3/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html
* igt@vc4/vc4_purgeable_bo@mark-purgeable:
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#2575])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-2/igt@vc4/vc4_purgeable_bo@mark-purgeable.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#7711]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-2/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [FAIL][222] ([i915#6268]) -> [PASS][223]
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@reset-stress:
- shard-dg2: [FAIL][224] ([i915#5784]) -> [PASS][225]
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-dg2-6/igt@gem_eio@reset-stress.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-5/igt@gem_eio@reset-stress.html
- shard-dg1: [FAIL][226] ([i915#5784]) -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-dg1-13/igt@gem_eio@reset-stress.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg1-13/igt@gem_eio@reset-stress.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [FAIL][228] ([i915#2842]) -> [PASS][229] +3 other tests pass
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-rkl-1/igt@gem_exec_fair@basic-none@vcs0.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-1/igt@gem_exec_fair@basic-none@vcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [INCOMPLETE][230] ([i915#10137] / [i915#9200] / [i915#9849]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [INCOMPLETE][232] ([i915#10137] / [i915#9200]) -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [FAIL][234] ([i915#10031]) -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-2/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][236] ([i915#5138]) -> [PASS][237] +1 other test pass
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [FAIL][238] ([i915#3743]) -> [PASS][239]
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-tglu: [DMESG-WARN][240] ([i915#10166] / [i915#1982]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-tglu-3/igt@kms_cursor_legacy@torture-move@pipe-a.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-8/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1:
- shard-snb: [INCOMPLETE][242] -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-snb6/igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-snb7/igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [FAIL][244] ([i915#6880]) -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite:
- shard-snb: [SKIP][246] ([fdo#109271]) -> [PASS][247] +18 other tests pass
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-snb: [SKIP][248] ([fdo#109271] / [fdo#111767]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][250] ([i915#9519]) -> [PASS][251] +2 other tests pass
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][252] ([i915#9519]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [FAIL][254] ([i915#9196]) -> [PASS][255] +1 other test pass
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
#### Warnings ####
* igt@kms_content_protection@mei-interface:
- shard-snb: [SKIP][256] ([fdo#109271]) -> [INCOMPLETE][257] ([i915#9878])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-snb6/igt@kms_content_protection@mei-interface.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-snb7/igt@kms_content_protection@mei-interface.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][258] ([fdo#110189] / [i915#3955]) -> [SKIP][259] ([i915#3955])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-rkl-2/igt@kms_fbcon_fbt@psr.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-snb: [SKIP][260] ([fdo#109271]) -> [SKIP][261] ([fdo#109271] / [fdo#111767])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-snb: [SKIP][262] ([fdo#109271] / [fdo#111767]) -> [SKIP][263] ([fdo#109271]) +2 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14313/shard-snb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10715/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[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#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[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#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#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030
[i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031
[i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131
[i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137
[i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166
[i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[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#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#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#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#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#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
[i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[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#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
[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#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#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#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766
[i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9878]: https://gitlab.freedesktop.org/drm/intel/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7722 -> IGTPW_10715
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14313: 1768e55dc2d1f56be030d4cb2374cf7c43182ffe @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10715: 10715
IGT_7722: 48196ef379a77675ea6af82a82da62b2ad2d9ded @ 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_10715/index.html
[-- Attachment #2: Type: text/html, Size: 101050 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_gt_freq: re-introduce exec tests of xe_gt_freq
2024-02-22 5:45 [PATCH i-g-t] tests/intel/xe_gt_freq: re-introduce exec tests of xe_gt_freq Riana Tauro
` (2 preceding siblings ...)
2024-02-22 13:32 ` ✓ Fi.CI.IGT: " Patchwork
@ 2024-02-26 11:08 ` Sundaresan, Sujaritha
2024-02-26 13:48 ` Riana Tauro
3 siblings, 1 reply; 6+ messages in thread
From: Sundaresan, Sujaritha @ 2024-02-26 11:08 UTC (permalink / raw)
To: Riana Tauro, igt-dev; +Cc: anshuman.gupta, aravind.iddamsetty, badal.nilawar
On 2/22/2024 11:15 AM, Riana Tauro wrote:
> The tests freq_range_exec, freq_fixed_exec were removed due
> to a design flaw which caused failure in tests. The workload execution
> finished earlier before the frequency validation when gt was set to
> run at a higher frequency.
>
> These tests are being reintroduced with a spinner based approach
> in this patch to avoid such failures.
>
> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
> ---
> tests/intel/xe_gt_freq.c | 106 ++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 105 insertions(+), 1 deletion(-)
>
> diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c
> index bf63e4298..f0de341cb 100644
> --- a/tests/intel/xe_gt_freq.c
> +++ b/tests/intel/xe_gt_freq.c
> @@ -17,6 +17,7 @@
>
> #include "xe_drm.h"
> #include "xe/xe_ioctl.h"
> +#include "xe/xe_spin.h"
> #include "xe/xe_query.h"
> #include "xe/xe_util.h"
>
> @@ -153,6 +154,9 @@ static void test_freq_basic_api(int fd, int gt_id)
> /**
> * SUBTEST: freq_fixed_idle
> * Description: Test fixed frequency request with exec_queue in idle state
> + *
> + * SUBTEST: freq_fixed_exec
> + * Description: Test fixed frequency request when spinner is run
> */
>
> static void test_freq_fixed(int fd, int gt_id, bool gt_idle)
> @@ -217,8 +221,10 @@ static void test_freq_fixed(int fd, int gt_id, bool gt_idle)
> /**
> * SUBTEST: freq_range_idle
> * Description: Test range frequency request with exec_queue in idle state
> + *
> + * SUBTEST: freq_range_exec
> + * Description: Test range frequency request when spinner is run
> */
> -
> static void test_freq_range(int fd, int gt_id, bool gt_idle)
> {
> uint32_t rpn = get_freq(fd, gt_id, "rpn");
> @@ -319,10 +325,88 @@ static void test_reset(int fd, int gt_id, int cycles)
> }
> }
>
> +static void test_spin(int fd, struct drm_xe_engine_class_instance *eci, bool fixed)
> +{
> + struct drm_xe_sync sync[2] = {
> + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
> + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
> + };
> + struct drm_xe_exec exec = {
> + .num_batch_buffer = 1,
> + .num_syncs = 2,
> + .syncs = to_user_pointer(sync),
> + };
> + uint64_t addr = 0x1a0000;
> + struct xe_spin_opts spin_opts = {
> + .addr = addr,
> + .preempt = false
> + };
> + struct xe_spin *spin;
> + uint32_t exec_queue;
> + uint32_t syncobj;
> + size_t bo_size;
> + uint32_t bo;
> + uint32_t vm;
> +
> + vm = xe_vm_create(fd, 0, 0);
> + bo_size = sizeof(*spin);
> + bo_size = xe_bb_size(fd, bo_size);
> +
> + bo = xe_bo_create(fd, vm, bo_size,
> + vram_if_possible(fd, eci->gt_id), 0);
> + spin = xe_bo_map(fd, bo, bo_size);
> +
> + exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
> + syncobj = syncobj_create(fd, 0);
> +
> + sync[0].handle = syncobj_create(fd, 0);
> + xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
> +
> + xe_spin_init(spin, &spin_opts);
> +
> + sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL;
> + sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
> + sync[1].handle = syncobj;
> +
> + exec.exec_queue_id = exec_queue;
> + exec.address = addr;
> + xe_exec(fd, &exec);
> +
> + xe_spin_wait_started(spin);
> + usleep(50000);
> + igt_assert(!syncobj_wait(fd, &syncobj, 1, 1, 0, NULL));
> +
> + igt_info("Running on GT %d Engine %s:%d\n", eci->gt_id,
> + xe_engine_class_string(eci->engine_class), eci->engine_instance);
> +
> + if (fixed)
> + test_freq_fixed(fd, eci->gt_id, false);
> + else
> + test_freq_range(fd, eci->gt_id, false);
> +
> + xe_spin_end(spin);
> +
> + igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
> + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
> +
> + sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
> + xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1);
> + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
> +
> + syncobj_destroy(fd, sync[0].handle);
> + syncobj_destroy(fd, syncobj);
> + xe_exec_queue_destroy(fd, exec_queue);
> +
> + munmap(spin, bo_size);
> + gem_close(fd, bo);
> + xe_vm_destroy(fd, vm);
> +}
> +
> igt_main
> {
> int fd;
> int gt;
> + struct drm_xe_engine_class_instance *hwe;
> uint32_t stash_min;
> uint32_t stash_max;
>
> @@ -352,6 +436,16 @@ igt_main
> }
> }
>
> + igt_subtest("freq_fixed_exec") {
> + xe_for_each_gt(fd, gt) {
> + xe_for_each_engine(fd, hwe) {
> + if (hwe->gt_id != gt)
> + continue;
> + test_spin(fd, hwe, true);
> + }
> + }
> + }
> +
> igt_subtest("freq_range_idle") {
> xe_for_each_gt(fd, gt) {
> igt_require_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 10),
> @@ -360,6 +454,16 @@ igt_main
> }
> }
>
> + igt_subtest("freq_range_exec") {
> + xe_for_each_gt(fd, gt) {
> + xe_for_each_engine(fd, hwe) {
> + if (hwe->gt_id != gt)
> + continue;
> + test_spin(fd, hwe, false);
> + }
> + }
> + }
> +
> igt_subtest("freq_low_max") {
> xe_for_each_gt(fd, gt) {
> test_freq_low_max(fd, gt);
Functionally lgtm. This test had to be revised due to existing design
flaws.
I'm not sure but there were some naming suggestions for the subtests
during the initial discussions.
Do we have the tests passing in pre-merge ?
Thanks,
Suja
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_gt_freq: re-introduce exec tests of xe_gt_freq
2024-02-26 11:08 ` [PATCH i-g-t] " Sundaresan, Sujaritha
@ 2024-02-26 13:48 ` Riana Tauro
0 siblings, 0 replies; 6+ messages in thread
From: Riana Tauro @ 2024-02-26 13:48 UTC (permalink / raw)
To: Sundaresan, Sujaritha, igt-dev
Cc: anshuman.gupta, aravind.iddamsetty, badal.nilawar
Hi Suja
On 2/26/2024 4:38 PM, Sundaresan, Sujaritha wrote:
>
> On 2/22/2024 11:15 AM, Riana Tauro wrote:
>> The tests freq_range_exec, freq_fixed_exec were removed due
>> to a design flaw which caused failure in tests. The workload execution
>> finished earlier before the frequency validation when gt was set to
>> run at a higher frequency.
>>
>> These tests are being reintroduced with a spinner based approach
>> in this patch to avoid such failures.
>>
>> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
>> ---
>> tests/intel/xe_gt_freq.c | 106 ++++++++++++++++++++++++++++++++++++++-
>> 1 file changed, 105 insertions(+), 1 deletion(-)
>>
>> diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c
>> index bf63e4298..f0de341cb 100644
>> --- a/tests/intel/xe_gt_freq.c
>> +++ b/tests/intel/xe_gt_freq.c
>> @@ -17,6 +17,7 @@
>> #include "xe_drm.h"
>> #include "xe/xe_ioctl.h"
>> +#include "xe/xe_spin.h"
>> #include "xe/xe_query.h"
>> #include "xe/xe_util.h"
>> @@ -153,6 +154,9 @@ static void test_freq_basic_api(int fd, int gt_id)
>> /**
>> * SUBTEST: freq_fixed_idle
>> * Description: Test fixed frequency request with exec_queue in idle
>> state
>> + *
>> + * SUBTEST: freq_fixed_exec
>> + * Description: Test fixed frequency request when spinner is run
>> */
>> static void test_freq_fixed(int fd, int gt_id, bool gt_idle)
>> @@ -217,8 +221,10 @@ static void test_freq_fixed(int fd, int gt_id,
>> bool gt_idle)
>> /**
>> * SUBTEST: freq_range_idle
>> * Description: Test range frequency request with exec_queue in idle
>> state
>> + *
>> + * SUBTEST: freq_range_exec
>> + * Description: Test range frequency request when spinner is run
>> */
>> -
>> static void test_freq_range(int fd, int gt_id, bool gt_idle)
>> {
>> uint32_t rpn = get_freq(fd, gt_id, "rpn");
>> @@ -319,10 +325,88 @@ static void test_reset(int fd, int gt_id, int
>> cycles)
>> }
>> }
>> +static void test_spin(int fd, struct drm_xe_engine_class_instance
>> *eci, bool fixed)
>> +{
>> + struct drm_xe_sync sync[2] = {
>> + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags =
>> DRM_XE_SYNC_FLAG_SIGNAL, },
>> + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags =
>> DRM_XE_SYNC_FLAG_SIGNAL, },
>> + };
>> + struct drm_xe_exec exec = {
>> + .num_batch_buffer = 1,
>> + .num_syncs = 2,
>> + .syncs = to_user_pointer(sync),
>> + };
>> + uint64_t addr = 0x1a0000;
>> + struct xe_spin_opts spin_opts = {
>> + .addr = addr,
>> + .preempt = false
>> + };
>> + struct xe_spin *spin;
>> + uint32_t exec_queue;
>> + uint32_t syncobj;
>> + size_t bo_size;
>> + uint32_t bo;
>> + uint32_t vm;
>> +
>> + vm = xe_vm_create(fd, 0, 0);
>> + bo_size = sizeof(*spin);
>> + bo_size = xe_bb_size(fd, bo_size);
>> +
>> + bo = xe_bo_create(fd, vm, bo_size,
>> + vram_if_possible(fd, eci->gt_id), 0);
>> + spin = xe_bo_map(fd, bo, bo_size);
>> +
>> + exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
>> + syncobj = syncobj_create(fd, 0);
>> +
>> + sync[0].handle = syncobj_create(fd, 0);
>> + xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
>> +
>> + xe_spin_init(spin, &spin_opts);
>> +
>> + sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL;
>> + sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
>> + sync[1].handle = syncobj;
>> +
>> + exec.exec_queue_id = exec_queue;
>> + exec.address = addr;
>> + xe_exec(fd, &exec);
>> +
>> + xe_spin_wait_started(spin);
>> + usleep(50000);
>> + igt_assert(!syncobj_wait(fd, &syncobj, 1, 1, 0, NULL));
>> +
>> + igt_info("Running on GT %d Engine %s:%d\n", eci->gt_id,
>> + xe_engine_class_string(eci->engine_class),
>> eci->engine_instance);
>> +
>> + if (fixed)
>> + test_freq_fixed(fd, eci->gt_id, false);
>> + else
>> + test_freq_range(fd, eci->gt_id, false);
>> +
>> + xe_spin_end(spin);
>> +
>> + igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL));
>> + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0,
>> NULL));
>> +
>> + sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
>> + xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1);
>> + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0,
>> NULL));
>> +
>> + syncobj_destroy(fd, sync[0].handle);
>> + syncobj_destroy(fd, syncobj);
>> + xe_exec_queue_destroy(fd, exec_queue);
>> +
>> + munmap(spin, bo_size);
>> + gem_close(fd, bo);
>> + xe_vm_destroy(fd, vm);
>> +}
>> +
>> igt_main
>> {
>> int fd;
>> int gt;
>> + struct drm_xe_engine_class_instance *hwe;
>> uint32_t stash_min;
>> uint32_t stash_max;
>> @@ -352,6 +436,16 @@ igt_main
>> }
>> }
>> + igt_subtest("freq_fixed_exec") {
>> + xe_for_each_gt(fd, gt) {
>> + xe_for_each_engine(fd, hwe) {
>> + if (hwe->gt_id != gt)
>> + continue;
>> + test_spin(fd, hwe, true);
>> + }
>> + }
>> + }
>> +
>> igt_subtest("freq_range_idle") {
>> xe_for_each_gt(fd, gt) {
>> igt_require_f(igt_wait(xe_is_gt_in_c6(fd, gt), 1000, 10),
>> @@ -360,6 +454,16 @@ igt_main
>> }
>> }
>> + igt_subtest("freq_range_exec") {
>> + xe_for_each_gt(fd, gt) {
>> + xe_for_each_engine(fd, hwe) {
>> + if (hwe->gt_id != gt)
>> + continue;
>> + test_spin(fd, hwe, false);
>> + }
>> + }
>> + }
>> +
>> igt_subtest("freq_low_max") {
>> xe_for_each_gt(fd, gt) {
>> test_freq_low_max(fd, gt);
>
> Functionally lgtm. This test had to be revised due to existing design
> flaws.
>
> I'm not sure but there were some naming suggestions for the subtests
> during the initial discussions.
spinner uses exec too. So the names should be okay.
If there are any other suggestions, i will change it.
>
> Do we have the tests passing in pre-merge ?
Will add it to fast-feedback list and resend to check results.
Thanks,
Riana Tauro
>
> Thanks,
>
> Suja
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-02-26 13:49 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-22 5:45 [PATCH i-g-t] tests/intel/xe_gt_freq: re-introduce exec tests of xe_gt_freq Riana Tauro
2024-02-22 6:33 ` ✓ CI.xeBAT: success for " Patchwork
2024-02-22 6:50 ` ✓ Fi.CI.BAT: " Patchwork
2024-02-22 13:32 ` ✓ Fi.CI.IGT: " Patchwork
2024-02-26 11:08 ` [PATCH i-g-t] " Sundaresan, Sujaritha
2024-02-26 13:48 ` Riana Tauro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox