* [igt-dev] [PATCH i-g-t 0/2] Add freq_power test
@ 2023-09-07 6:06 Riana Tauro
2023-09-07 6:06 ` [igt-dev] [PATCH i-g-t 1/2] tests/intel/xe_guc_pc: " Riana Tauro
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Riana Tauro @ 2023-09-07 6:06 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
This test runs a spinner and sets the min and max frequencies
to rp0 and rpn respectively. It then checks if power measured
at lower frequencies is lesser.
Riana Tauro (2):
test/intel/xe_guc_pc: Add freq_power test
HAX: Add freq_power to xe-fast-feedback.testlist
tests/intel-ci/xe-fast-feedback.testlist | 1 +
tests/intel/xe_guc_pc.c | 88 ++++++++++++++++++++++++
2 files changed, 89 insertions(+)
--
2.40.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 1/2] tests/intel/xe_guc_pc: Add freq_power test
2023-09-07 6:06 [igt-dev] [PATCH i-g-t 0/2] Add freq_power test Riana Tauro
@ 2023-09-07 6:06 ` Riana Tauro
2023-09-18 16:31 ` Belgaumkar, Vinay
2023-09-07 6:06 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add freq_power to xe-fast-feedback.testlist Riana Tauro
` (3 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Riana Tauro @ 2023-09-07 6:06 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
An assumption is that at lower frequencies,
not only do we run slower, but we save power compared to
higher frequencies.
This test runs a spinner and sets the min and max frequencies
to rp0 and rpn respectively. It then checks if power measured
at lower frequencies is lesser.
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
---
tests/intel/xe_guc_pc.c | 88 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 88 insertions(+)
diff --git a/tests/intel/xe_guc_pc.c b/tests/intel/xe_guc_pc.c
index 032816921..cea7b56fd 100644
--- a/tests/intel/xe_guc_pc.c
+++ b/tests/intel/xe_guc_pc.c
@@ -13,6 +13,7 @@
#include "igt.h"
#include "lib/igt_syncobj.h"
+#include "igt_power.h"
#include "igt_sysfs.h"
#include "xe_drm.h"
@@ -387,6 +388,82 @@ static void test_reset(int fd, int gt_id, int cycles)
}
}
+static int cmp_u64(const void *a, const void *b)
+{
+ return (*(u64 *)a - *(u64 *)b);
+}
+
+static uint64_t measure_power(int fd, struct igt_power *gpu)
+{
+ struct power_sample sample[2];
+ uint64_t power[5];
+
+ for (int i = 0; i < 5; i++) {
+ igt_power_get_energy(gpu, &sample[0]);
+ usleep(10000); /* 10 ms */
+ igt_power_get_energy(gpu, &sample[1]);
+
+ power[i] = igt_power_get_mW(gpu, &sample[0], &sample[1]);
+ }
+ /* Sort in ascending order and use a triangular filter */
+ qsort(power, 5, sizeof(*power), cmp_u64);
+ return DIV_ROUND_UP(power[1] + 2 * power[2] + power[3], 4);
+}
+
+/**
+ * SUBTEST: freq_power
+ * Description: Validates if running at lower frequencies saves power
+ * Run type: FULL
+ */
+static void test_freq_power(int fd, int gt_id, struct drm_xe_engine_class_instance *hwe)
+{
+ uint32_t rp0, rpn, vm;
+ uint64_t ahnd;
+ struct igt_power gpu;
+ struct {
+ uint64_t power;
+ uint32_t freq;
+ } min, max;
+ igt_spin_t *spin;
+
+ /* Run for engines belonging to the gt */
+ if (gt_id != hwe->gt_id)
+ return;
+
+ igt_power_open(fd, &gpu, "gpu");
+
+ rpn = get_freq(fd, gt_id, "rpn");
+ rp0 = get_freq(fd, gt_id, "rp0");
+
+ vm = xe_vm_create(fd, 0, 0);
+ ahnd = intel_allocator_open(fd, vm, INTEL_ALLOCATOR_RELOC);
+ spin = igt_spin_new(fd, .ahnd = ahnd, .vm = vm, .hwe = hwe);
+
+ igt_assert(set_freq(fd, gt_id, "min", rpn) > 0);
+ igt_assert(set_freq(fd, gt_id, "max", rpn) > 0);
+ min.freq = get_freq(fd, gt_id, "act");
+ min.power = measure_power(fd, &gpu);
+
+ igt_assert(set_freq(fd, gt_id, "min", rp0) > 0);
+ igt_assert(set_freq(fd, gt_id, "max", rp0) > 0);
+ max.freq = get_freq(fd, gt_id, "act");
+ max.power = measure_power(fd, &gpu);
+
+ igt_info("Engine %s:%d min:%lumW @ %uMHz, max:%lumW @ %uMHz\n",
+ xe_engine_class_string(hwe->engine_class), hwe->engine_instance,
+ min.power, min.freq, max.power, max.freq);
+
+ igt_spin_free(fd, spin);
+ put_ahnd(ahnd);
+ xe_vm_destroy(fd, vm);
+ igt_power_close(&gpu);
+
+ /* Max power should be greater than min power + 10% of min power */
+ igt_assert_f((11 * min.power < 10 * max.power),
+ "%s:%d did not conserve power when setting lower frequency!\n",
+ xe_engine_class_string(hwe->engine_class), hwe->engine_instance);
+}
+
igt_main
{
struct drm_xe_engine_class_instance *hwe;
@@ -475,6 +552,17 @@ igt_main
}
}
+ igt_describe("Validates power measured at lower frequencies");
+ igt_subtest("freq_power") {
+ /* FIXME: Remove skip once hwmon is added */
+ igt_skip_on(xe_has_vram(fd));
+ xe_for_each_gt(fd, gt) {
+ xe_for_each_hw_engine(fd, hwe) {
+ test_freq_power(fd, gt, hwe);
+ }
+ }
+ }
+
igt_fixture {
xe_for_each_gt(fd, gt) {
set_freq(fd, gt, "min", stash_min);
--
2.40.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] HAX: Add freq_power to xe-fast-feedback.testlist
2023-09-07 6:06 [igt-dev] [PATCH i-g-t 0/2] Add freq_power test Riana Tauro
2023-09-07 6:06 ` [igt-dev] [PATCH i-g-t 1/2] tests/intel/xe_guc_pc: " Riana Tauro
@ 2023-09-07 6:06 ` Riana Tauro
2023-09-07 8:20 ` [igt-dev] ✓ Fi.CI.BAT: success for Add freq_power test Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Riana Tauro @ 2023-09-07 6:06 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
Add freq_power to xe-fast-feedback.testlist
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
---
tests/intel-ci/xe-fast-feedback.testlist | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index a395fa8c3..1ffbadc11 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -114,6 +114,7 @@ igt@xe_exec_threads@threads-mixed-fd-basic
igt@xe_exec_threads@threads-mixed-userptr-invalidate
igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race
igt@xe_gpgpu_fill@basic
+igt@xe_guc_pc@freq_power
igt@xe_guc_pc@freq_basic_api
igt@xe_guc_pc@freq_fixed_idle
igt@xe_guc_pc@freq_range_idle
--
2.40.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add freq_power test
2023-09-07 6:06 [igt-dev] [PATCH i-g-t 0/2] Add freq_power test Riana Tauro
2023-09-07 6:06 ` [igt-dev] [PATCH i-g-t 1/2] tests/intel/xe_guc_pc: " Riana Tauro
2023-09-07 6:06 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add freq_power to xe-fast-feedback.testlist Riana Tauro
@ 2023-09-07 8:20 ` Patchwork
2023-09-07 9:09 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-09-07 9:58 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-09-07 8:20 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4269 bytes --]
== Series Details ==
Series: Add freq_power test
URL : https://patchwork.freedesktop.org/series/123376/
State : success
== Summary ==
CI Bug Log - changes from IGT_7474 -> IGTPW_9738
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/index.html
Participating hosts (40 -> 38)
------------------------------
Additional (1): fi-bsw-n3050
Missing (3): fi-kbl-soraka fi-hsw-4770 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9738 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@random-engines:
- fi-bsw-n3050: NOTRUN -> [SKIP][1] ([fdo#109271]) +18 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [PASS][2] -> [DMESG-FAIL][3] ([i915#5334])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_frontbuffer_tracking@basic:
- fi-bsw-nick: [PASS][4] -> [FAIL][5] ([i915#9276])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_hdmi_inject@inject-audio:
- fi-kbl-guc: [PASS][6] -> [FAIL][7] ([IGT#3] / [i915#6121])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
- fi-bsw-n3050: NOTRUN -> [FAIL][8] ([IGT#3])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/fi-bsw-n3050/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][9] ([i915#1845]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_psr@primary_mmap_gtt:
- bat-rplp-1: NOTRUN -> [ABORT][10] ([i915#8442] / [i915#8469] / [i915#8668])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html
#### Warnings ####
* igt@kms_psr@sprite_plane_onoff:
- bat-rplp-1: [ABORT][11] ([i915#8442] / [i915#8668] / [i915#8712]) -> [SKIP][12] ([i915#1072])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html
[IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
[i915#8469]: https://gitlab.freedesktop.org/drm/intel/issues/8469
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712
[i915#9276]: https://gitlab.freedesktop.org/drm/intel/issues/9276
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7474 -> IGTPW_9738
CI-20190529: 20190529
CI_DRM_13605: 5008076127a9599704e98fb4de3761743d943dd0 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9738: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/index.html
IGT_7474: 9d91cf2c6e7bb64d60c2030d1535e40ca0ad53ee @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@xe_guc_pc@freq_power
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/index.html
[-- Attachment #2: Type: text/html, Size: 5244 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Add freq_power test
2023-09-07 6:06 [igt-dev] [PATCH i-g-t 0/2] Add freq_power test Riana Tauro
` (2 preceding siblings ...)
2023-09-07 8:20 ` [igt-dev] ✓ Fi.CI.BAT: success for Add freq_power test Patchwork
@ 2023-09-07 9:09 ` Patchwork
2023-09-07 9:58 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-09-07 9:09 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1767 bytes --]
== Series Details ==
Series: Add freq_power test
URL : https://patchwork.freedesktop.org/series/123376/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7474_BAT -> XEIGTPW_9738_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_9738_BAT:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@xe_guc_pc@freq_power}:
- {bat-pvc-2}: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9738/bat-pvc-2/igt@xe_guc_pc@freq_power.html
- bat-dg2-oem2: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9738/bat-dg2-oem2/igt@xe_guc_pc@freq_power.html
- bat-atsm-2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9738/bat-atsm-2/igt@xe_guc_pc@freq_power.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
Build changes
-------------
* IGT: IGT_7474 -> IGTPW_9738
IGTPW_9738: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/index.html
IGT_7474: 9d91cf2c6e7bb64d60c2030d1535e40ca0ad53ee @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-357-bae46e59a7f667734376ddb0d2451967dfb264f1: bae46e59a7f667734376ddb0d2451967dfb264f1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9738/index.html
[-- Attachment #2: Type: text/html, Size: 2397 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Add freq_power test
2023-09-07 6:06 [igt-dev] [PATCH i-g-t 0/2] Add freq_power test Riana Tauro
` (3 preceding siblings ...)
2023-09-07 9:09 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
@ 2023-09-07 9:58 ` Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-09-07 9:58 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 86350 bytes --]
== Series Details ==
Series: Add freq_power test
URL : https://patchwork.freedesktop.org/series/123376/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7474_full -> IGTPW_9738_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9738_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9738_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/index.html
Participating hosts (10 -> 10)
------------------------------
Additional (1): shard-tglu0
Missing (1): shard-rkl0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9738_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_eio@suspend:
- shard-mtlp: NOTRUN -> [DMESG-WARN][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-4/igt@gem_eio@suspend.html
* igt@kms_draw_crc@draw-method-blt@xrgb8888-ytiled:
- shard-glk: [PASS][2] -> [DMESG-WARN][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-glk3/igt@kms_draw_crc@draw-method-blt@xrgb8888-ytiled.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-glk5/igt@kms_draw_crc@draw-method-blt@xrgb8888-ytiled.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-tglu: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-tglu-9/igt@kms_fbcon_fbt@fbc-suspend.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-tglu-7/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@perf_pmu@module-unload:
- shard-rkl: [PASS][6] -> [WARN][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-rkl-6/igt@perf_pmu@module-unload.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-7/igt@perf_pmu@module-unload.html
* igt@sysfs_heartbeat_interval@mixed@ccs3:
- shard-dg2: [PASS][8] -> [FAIL][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg2-11/igt@sysfs_heartbeat_interval@mixed@ccs3.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-5/igt@sysfs_heartbeat_interval@mixed@ccs3.html
* igt@sysfs_heartbeat_interval@mixed@vecs1:
- shard-dg2: [PASS][10] -> [INCOMPLETE][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg2-11/igt@sysfs_heartbeat_interval@mixed@vecs1.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-5/igt@sysfs_heartbeat_interval@mixed@vecs1.html
New tests
---------
New tests have been introduced between IGT_7474_full and IGTPW_9738_full:
### New IGT tests (2) ###
* igt@kms_cursor_crc@cursor-rapid-movement-256x85@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_cursor_crc@cursor-rapid-movement-256x85@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9738_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8411])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-1/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#7701])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-7/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_buddy@drm_buddy_test:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8661])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-6/igt@drm_buddy@drm_buddy_test.html
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#8661])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-6/igt@drm_buddy@drm_buddy_test.html
* igt@drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8414]) +18 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-8/igt@drm_fdinfo@busy-check-all@ccs0.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#8414]) +20 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-10/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: [PASS][18] -> [FAIL][19] ([i915#7742])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-7/igt@drm_fdinfo@idle@rcs0.html
* igt@feature_discovery@chamelium:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#4854])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-4/igt@feature_discovery@chamelium.html
* igt@feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#1839])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-7/igt@feature_discovery@display-2x.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#3936])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-10/igt@gem_busy@semaphore.html
* igt@gem_caching@reads:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4873])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-4/igt@gem_caching@reads.html
* igt@gem_ccs@block-copy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#3555] / [i915#5325]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-7/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#5325])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_close_race@multigpu-basic-process:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#7697]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@gem_close_race@multigpu-basic-process.html
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#7697])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][28] -> [FAIL][29] ([i915#6268])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_isolation@preservation-s3@vcs0:
- shard-mtlp: [PASS][30] -> [DMESG-WARN][31] ([i915#9262]) +2 other tests dmesg-warn
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-mtlp-2/igt@gem_ctx_isolation@preservation-s3@vcs0.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-4/igt@gem_ctx_isolation@preservation-s3@vcs0.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#8555])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#1099])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-snb2/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#280])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-6/igt@gem_ctx_sseu@engines.html
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#280])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-7/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@in-flight-suspend:
- shard-mtlp: NOTRUN -> [ABORT][36] ([i915#7892] / [i915#9262])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-3/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-dg1: [PASS][37] -> [FAIL][38] ([i915#5784])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg1-17/igt@gem_eio@kms.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-14/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-sync:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4771])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-3/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][40] -> [FAIL][41] ([i915#2846])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-vip:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4473] / [i915#4771]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@gem_exec_fair@basic-none-vip.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [PASS][43] -> [FAIL][44] ([i915#2842]) +1 other test fail
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-6/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fence@concurrent:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4812])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-4/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4812]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-7/igt@gem_exec_fence@submit3.html
* igt@gem_exec_fence@syncobj-backward-timeline-chain-engines:
- shard-snb: NOTRUN -> [SKIP][47] ([fdo#109271]) +137 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-snb1/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-2/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-2/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#5107])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-1/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][51] ([fdo#112283]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-7/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_params@secure-non-root:
- shard-mtlp: NOTRUN -> [SKIP][52] ([fdo#112283])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-8/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#3281]) +11 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-10/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3281]) +9 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-noreloc.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4537])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-4/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-rkl: NOTRUN -> [ABORT][58] ([i915#7975] / [i915#8213])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-2/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4860])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4860]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-6/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@random:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-7/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][63] -> [TIMEOUT][64] ([i915#5493])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) +14 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4077])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-12/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4077]) +14 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-3/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@copy:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4083]) +6 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-6/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4083]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-5/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#3282]) +5 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +7 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-2/igt@gem_pread@snoop.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4270]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-7/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4270]) +4 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-7/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#4270])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3282]) +7 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-8/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428]) +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-2/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4079])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-10/igt@gem_set_tiling_vs_gtt.html
* igt@gem_set_tiling_vs_pwrite:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4079]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-7/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4885])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-6/igt@gem_softpin@evict-snoop.html
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4885])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-7/igt@gem_softpin@evict-snoop.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][81] ([i915#5889])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-11/igt@gem_spin_batch@spin-all-new.html
* igt@gem_unfence_active_buffers:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4879])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-4/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-2/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4880])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#3297]) +6 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-8/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#3281]) +7 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-7/igt@gem_userptr_blits@relocations.html
* igt@gen7_exec_parse@basic-offset:
- shard-rkl: NOTRUN -> [SKIP][89] ([fdo#109289]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-4/igt@gen7_exec_parse@basic-offset.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][90] ([fdo#109289]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-6/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@allowed-single:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#2527])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#2527])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-17/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#2856]) +6 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-8/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-1/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_pm_backlight@fade-with-suspend:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#5354] / [i915#7561])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-16/igt@i915_pm_backlight@fade-with-suspend.html
* igt@i915_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#658]) +4 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-1/igt@i915_pm_dc@dc5-psr.html
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#658]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-1/igt@i915_pm_dc@dc5-psr.html
* igt@i915_pm_dc@dc6-dpms:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#3361])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-4/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [FAIL][99] ([i915#8599])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-6/igt@i915_pm_dc@dc6-psr.html
* igt@i915_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#1902])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-5/igt@i915_pm_lpsp@screens-disabled.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#8403])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-mtlp: [PASS][102] -> [SKIP][103] ([i915#8403])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-mtlp-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-dg1: [PASS][104] -> [FAIL][105] ([i915#3591])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#1397])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-4/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@i915_pm_rpm@gem-mmap-type@gtt-smem0:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#8431])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-1/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html
* igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#1397]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][109] -> [SKIP][110] ([i915#1397])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg2-11/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_pm_rpm@pc8-residency:
- shard-mtlp: NOTRUN -> [SKIP][111] ([fdo#109293]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-2/igt@i915_pm_rpm@pc8-residency.html
* igt@i915_pm_rpm@system-suspend-modeset:
- shard-mtlp: [PASS][112] -> [ABORT][113] ([i915#9262]) +1 other test abort
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-mtlp-3/igt@i915_pm_rpm@system-suspend-modeset.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-8/igt@i915_pm_rpm@system-suspend-modeset.html
* igt@i915_pm_rps@basic-api:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#6621]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-4/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#6621])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-7/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@reset:
- shard-snb: NOTRUN -> [INCOMPLETE][116] ([i915#7790])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-snb1/igt@i915_pm_rps@reset.html
- shard-mtlp: NOTRUN -> [FAIL][117] ([i915#8346])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds@gt1:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#8925]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-4/igt@i915_pm_rps@thresholds@gt1.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#6188])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-3/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#6188])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-1/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@query-topology-unsupported:
- shard-mtlp: NOTRUN -> [SKIP][121] ([fdo#109302])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-8/igt@i915_query@query-topology-unsupported.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#4212])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4212])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-15/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#4215] / [i915#5190])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#4212]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#3826])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#8502]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#8709]) +11 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][129] ([i915#8247]) +3 other tests fail
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-3/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [FAIL][130] ([i915#8247]) +3 other tests fail
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-19/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#404])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#404])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#1769] / [i915#3555])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538] / [i915#5286])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-15/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
- shard-mtlp: NOTRUN -> [SKIP][135] ([fdo#111614]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#5286]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][137] ([fdo#111614]) +7 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-10/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#3638])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-17/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#5190]) +12 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-10/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][140] ([fdo#111614] / [i915#3638]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][141] ([fdo#111615]) +16 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#4538] / [i915#5190]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-11/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6187]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][144] ([fdo#110723]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_joiner@basic:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#2705])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-7/igt@kms_big_joiner@basic.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#5354] / [i915#6095])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#3689] / [i915#3886] / [i915#5354]) +14 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-11/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#6095]) +53 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-1/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-b-bad-aux-stride-4_tiled_mtl_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#5354] / [i915#6095])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-tglu-7/igt@kms_ccs@pipe-b-bad-aux-stride-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#3734] / [i915#5354] / [i915#6095]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-4/igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#5354] / [i915#6095]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-4/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#3886] / [i915#5354] / [i915#6095]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#5354] / [i915#6095]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-18/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#3689] / [i915#5354]) +20 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-2/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3886] / [i915#6095]) +11 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#5354]) +13 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-7/igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#7213] / [i915#9010])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#7213]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#4087]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-4/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-rkl: NOTRUN -> [SKIP][160] ([fdo#111827]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-1/igt@kms_chamelium_color@ctm-0-50.html
- shard-tglu: NOTRUN -> [SKIP][161] ([fdo#111827])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-tglu-9/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][162] ([fdo#111827]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-8/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][163] ([fdo#111827]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-6/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#7828]) +10 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-2/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#7828]) +4 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-2/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#7828]) +11 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#3555]) +4 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-7/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#3299])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#6944]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-2/igt@kms_content_protection@lic.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3359]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#3359]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-3/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#8814]) +5 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#3359])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-snb: NOTRUN -> [DMESG-WARN][174] ([i915#8841]) +3 other tests dmesg-warn
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-snb1/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][175] ([fdo#103375])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3546]) +4 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#4103] / [i915#4213])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-snb: [PASS][178] -> [ABORT][179] ([i915#8865])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-snb4/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-snb7/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][180] ([fdo#111825]) +5 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][181] ([fdo#109274] / [i915#5354]) +6 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][182] ([fdo#111767] / [i915#3546]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][183] -> [FAIL][184] ([i915#2346])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#4213])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#9227])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-10/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html
* igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#9226] / [i915#9261]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-10/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html
* igt@kms_display_modes@extended-mode-basic:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8827])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#8588])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-7/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#8588])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-6/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555]) +4 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-8/igt@kms_dsc@dsc-with-formats.html
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-1/igt@kms_dsc@dsc-with-formats.html
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-1/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][195] ([fdo#111767] / [i915#3637]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#8381])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3637]) +7 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][198] ([fdo#109274]) +6 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#2672]) +3 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8810])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#2672]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/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-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#8810]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#2672] / [i915#3555]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#2672]) +7 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: NOTRUN -> [SKIP][205] ([fdo#109285])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#5354]) +52 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#1825]) +45 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#8708]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
- shard-dg2: [PASS][209] -> [FAIL][210] ([i915#6880])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg2: [PASS][211] -> [INCOMPLETE][212] ([i915#8912])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-suspend.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-suspend.html
- shard-mtlp: NOTRUN -> [ABORT][213] ([i915#9262]) +5 other tests abort
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#5460]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][215] ([fdo#111825] / [i915#1825]) +13 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][216] ([fdo#110189])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#3458]) +20 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#8708]) +16 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg1: NOTRUN -> [SKIP][219] ([fdo#111825]) +3 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#8708]) +24 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#3023]) +15 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#6118])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-3/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#4816])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#4816])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#4070] / [i915#4816])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][226] ([fdo#109289]) +6 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1:
- shard-apl: [PASS][227] -> [INCOMPLETE][228] ([i915#180])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#8821])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-3/igt@kms_plane_lowres@tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#8821])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-1/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#8806])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][232] ([i915#8292])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#5176]) +3 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#5176]) +3 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-dp-4.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#5176]) +11 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#5176]) +23 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#5235]) +11 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#5235]) +23 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#5235]) +3 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-dp-4:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#5235]) +7 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-dp-4.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#6524] / [i915#6805])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#6524])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#6524])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-3/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][244] ([fdo#111068] / [i915#658])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#4348])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-4/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@dpms:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#1072]) +8 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-1/igt@kms_psr@dpms.html
* igt@kms_psr@primary_render:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#1072]) +4 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-7/igt@kms_psr@primary_render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#5461] / [i915#658])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#4235]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-8/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#4235]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-1/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#5289])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#4235] / [i915#5190]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_selftest@drm_format:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#8661]) +2 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-6/igt@kms_selftest@drm_format.html
* igt@kms_tv_load_detect@load-detect:
- shard-mtlp: NOTRUN -> [SKIP][254] ([fdo#109309])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-8/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@universal-plane-pipe-d-functional:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#4070] / [i915#533] / [i915#6768]) +2 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-6/igt@kms_universal_plane@universal-plane-pipe-d-functional.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#2437])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-10/igt@kms_writeback@writeback-check-output.html
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#2437])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-17/igt@kms_writeback@writeback-check-output.html
* igt@perf@blocking@1-vcs1:
- shard-mtlp: NOTRUN -> [FAIL][258] ([i915#9259])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@perf@blocking@1-vcs1.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-mtlp: NOTRUN -> [FAIL][259] ([i915#5234])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-8/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@busy-idle-check-all@bcs0:
- shard-mtlp: NOTRUN -> [FAIL][260] ([i915#4521]) +2 other tests fail
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-3/igt@perf_pmu@busy-idle-check-all@bcs0.html
* igt@perf_pmu@busy@rcs0:
- shard-mtlp: NOTRUN -> [FAIL][261] ([i915#4349]) +5 other tests fail
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@perf_pmu@busy@rcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#8850])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-7/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@rc6-suspend:
- shard-mtlp: NOTRUN -> [INCOMPLETE][263] ([i915#9268])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-6/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@coherency-blt:
- shard-mtlp: NOTRUN -> [FAIL][264] ([i915#8445])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-1/igt@prime_vgem@coherency-blt.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#3708])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-7/igt@prime_vgem@fence-write-hang.html
* igt@v3d/v3d_create_bo@create-bo-zeroed:
- shard-rkl: NOTRUN -> [SKIP][266] ([fdo#109315]) +4 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-2/igt@v3d/v3d_create_bo@create-bo-zeroed.html
* igt@v3d/v3d_mmap@mmap-bo:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#2575]) +20 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-5/igt@v3d/v3d_mmap@mmap-bo.html
* igt@v3d/v3d_submit_cl@valid-multisync-submission:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#2575]) +11 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-11/igt@v3d/v3d_submit_cl@valid-multisync-submission.html
* igt@v3d/v3d_submit_csd@bad-in-sync:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#2575])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-14/igt@v3d/v3d_submit_csd@bad-in-sync.html
* igt@vc4/vc4_perfmon@get-values-invalid-pointer:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#7711]) +12 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-3/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#7711]) +11 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-7/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#7711]) +3 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-6/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][273] ([i915#7297]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-11/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_exec_fair@basic-flow@rcs0:
- shard-tglu: [FAIL][275] ([i915#2842]) -> [PASS][276] +1 other test pass
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-tglu-5/igt@gem_exec_fair@basic-flow@rcs0.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-tglu-2/igt@gem_exec_fair@basic-flow@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [FAIL][277] ([i915#2842]) -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-rkl-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-glk: [FAIL][279] ([i915#2842]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-glk1/igt@gem_exec_fair@basic-pace@vecs0.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-glk6/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_suspend@basic-s0@smem:
- shard-dg2: [INCOMPLETE][281] -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg2-1/igt@gem_exec_suspend@basic-s0@smem.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-7/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_ppgtt@blt-vs-render-ctx0:
- shard-snb: [DMESG-FAIL][283] ([i915#8295]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-snb6/igt@gem_ppgtt@blt-vs-render-ctx0.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-snb1/igt@gem_ppgtt@blt-vs-render-ctx0.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
- shard-dg1: [SKIP][285] ([i915#1937]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg1-18/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-dg1: [FAIL][287] ([i915#3591]) -> [PASS][288] +1 other test pass
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][289] ([i915#1397]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp.html
- shard-dg1: [SKIP][291] ([i915#1397]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [SKIP][293] ([i915#1397]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-5/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2:
- shard-glk: [FAIL][295] ([i915#2521]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-glk7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][297] ([i915#2346]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][299] ([i915#2346]) -> [PASS][300] +1 other test pass
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2:
- shard-glk: [FAIL][301] ([i915#79]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-glk5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
- shard-dg2: [FAIL][303] ([i915#6880]) -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-rkl: [INCOMPLETE][305] -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-4/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@perf@i915-ref-count:
- shard-tglu: [FAIL][307] -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-tglu-4/igt@perf@i915-ref-count.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-tglu-4/igt@perf@i915-ref-count.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][309] ([i915#7484]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@render-node-busy-idle@ccs0:
- shard-mtlp: [FAIL][311] ([i915#4349]) -> [PASS][312] +2 other tests pass
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-mtlp-7/igt@perf_pmu@render-node-busy-idle@ccs0.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle@ccs0.html
#### Warnings ####
* igt@kms_content_protection@mei_interface:
- shard-dg2: [SKIP][313] ([i915#7118] / [i915#7162]) -> [SKIP][314] ([i915#7118])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg2-11/igt@kms_content_protection@mei_interface.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg2-6/igt@kms_content_protection@mei_interface.html
- shard-dg1: [SKIP][315] ([i915#7116]) -> [SKIP][316] ([fdo#109300])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg1-19/igt@kms_content_protection@mei_interface.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-12/igt@kms_content_protection@mei_interface.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][317] ([i915#3955]) -> [SKIP][318] ([fdo#110189] / [i915#3955])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@flip-vs-suspend@a-vga1:
- shard-snb: [INCOMPLETE][319] ([i915#4839]) -> [DMESG-WARN][320] ([i915#8841])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-snb7/igt@kms_flip@flip-vs-suspend@a-vga1.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-snb5/igt@kms_flip@flip-vs-suspend@a-vga1.html
* igt@kms_psr@primary_mmap_gtt:
- shard-dg1: [SKIP][321] ([i915#1072]) -> [SKIP][322] ([i915#1072] / [i915#4078])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7474/shard-dg1-17/igt@kms_psr@primary_mmap_gtt.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/shard-dg1-16/igt@kms_psr@primary_mmap_gtt.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[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#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8295]: https://gitlab.freedesktop.org/drm/intel/issues/8295
[i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431
[i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8599]: https://gitlab.freedesktop.org/drm/intel/issues/8599
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865
[i915#8912]: https://gitlab.freedesktop.org/drm/intel/issues/8912
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010
[i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9259]: https://gitlab.freedesktop.org/drm/intel/issues/9259
[i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9268]: https://gitlab.freedesktop.org/drm/intel/issues/9268
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7474 -> IGTPW_9738
CI-20190529: 20190529
CI_DRM_13605: 5008076127a9599704e98fb4de3761743d943dd0 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9738: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/index.html
IGT_7474: 9d91cf2c6e7bb64d60c2030d1535e40ca0ad53ee @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9738/index.html
[-- Attachment #2: Type: text/html, Size: 103844 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] tests/intel/xe_guc_pc: Add freq_power test
2023-09-07 6:06 ` [igt-dev] [PATCH i-g-t 1/2] tests/intel/xe_guc_pc: " Riana Tauro
@ 2023-09-18 16:31 ` Belgaumkar, Vinay
2023-09-19 13:16 ` Kamil Konieczny
0 siblings, 1 reply; 9+ messages in thread
From: Belgaumkar, Vinay @ 2023-09-18 16:31 UTC (permalink / raw)
To: Riana Tauro, igt-dev; +Cc: badal.nilawar
On 9/6/2023 11:06 PM, Riana Tauro wrote:
> An assumption is that at lower frequencies,
> not only do we run slower, but we save power compared to
> higher frequencies.
>
> This test runs a spinner and sets the min and max frequencies
> to rp0 and rpn respectively. It then checks if power measured
> at lower frequencies is lesser.
>
> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
> ---
> tests/intel/xe_guc_pc.c | 88 +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 88 insertions(+)
>
> diff --git a/tests/intel/xe_guc_pc.c b/tests/intel/xe_guc_pc.c
> index 032816921..cea7b56fd 100644
> --- a/tests/intel/xe_guc_pc.c
> +++ b/tests/intel/xe_guc_pc.c
> @@ -13,6 +13,7 @@
>
> #include "igt.h"
> #include "lib/igt_syncobj.h"
> +#include "igt_power.h"
> #include "igt_sysfs.h"
>
> #include "xe_drm.h"
> @@ -387,6 +388,82 @@ static void test_reset(int fd, int gt_id, int cycles)
> }
> }
>
> +static int cmp_u64(const void *a, const void *b)
> +{
> + return (*(u64 *)a - *(u64 *)b);
> +}
> +
> +static uint64_t measure_power(int fd, struct igt_power *gpu)
> +{
> + struct power_sample sample[2];
> + uint64_t power[5];
> +
> + for (int i = 0; i < 5; i++) {
> + igt_power_get_energy(gpu, &sample[0]);
> + usleep(10000); /* 10 ms */
> + igt_power_get_energy(gpu, &sample[1]);
> +
> + power[i] = igt_power_get_mW(gpu, &sample[0], &sample[1]);
> + }
> + /* Sort in ascending order and use a triangular filter */
> + qsort(power, 5, sizeof(*power), cmp_u64);
> + return DIV_ROUND_UP(power[1] + 2 * power[2] + power[3], 4);
> +}
> +
> +/**
> + * SUBTEST: freq_power
> + * Description: Validates if running at lower frequencies saves power
> + * Run type: FULL
> + */
> +static void test_freq_power(int fd, int gt_id, struct drm_xe_engine_class_instance *hwe)
> +{
> + uint32_t rp0, rpn, vm;
> + uint64_t ahnd;
> + struct igt_power gpu;
> + struct {
> + uint64_t power;
> + uint32_t freq;
> + } min, max;
> + igt_spin_t *spin;
> +
> + /* Run for engines belonging to the gt */
> + if (gt_id != hwe->gt_id)
> + return;
> +
> + igt_power_open(fd, &gpu, "gpu");
> +
> + rpn = get_freq(fd, gt_id, "rpn");
> + rp0 = get_freq(fd, gt_id, "rp0");
> +
> + vm = xe_vm_create(fd, 0, 0);
> + ahnd = intel_allocator_open(fd, vm, INTEL_ALLOCATOR_RELOC);
> + spin = igt_spin_new(fd, .ahnd = ahnd, .vm = vm, .hwe = hwe);
> +
> + igt_assert(set_freq(fd, gt_id, "min", rpn) > 0);
> + igt_assert(set_freq(fd, gt_id, "max", rpn) > 0);
> + min.freq = get_freq(fd, gt_id, "act");
> + min.power = measure_power(fd, &gpu);
> +
> + igt_assert(set_freq(fd, gt_id, "min", rp0) > 0);
> + igt_assert(set_freq(fd, gt_id, "max", rp0) > 0);
> + max.freq = get_freq(fd, gt_id, "act");
> + max.power = measure_power(fd, &gpu);
> +
> + igt_info("Engine %s:%d min:%lumW @ %uMHz, max:%lumW @ %uMHz\n",
> + xe_engine_class_string(hwe->engine_class), hwe->engine_instance,
> + min.power, min.freq, max.power, max.freq);
> +
> + igt_spin_free(fd, spin);
> + put_ahnd(ahnd);
> + xe_vm_destroy(fd, vm);
> + igt_power_close(&gpu);
> +
> + /* Max power should be greater than min power + 10% of min power */
nit: reword: power@max_freq should be at least 10% greater than
power@min_freq?
> + igt_assert_f((11 * min.power < 10 * max.power),
> + "%s:%d did not conserve power when setting lower frequency!\n",
> + xe_engine_class_string(hwe->engine_class), hwe->engine_instance);
> +}
> +
> igt_main
> {
> struct drm_xe_engine_class_instance *hwe;
> @@ -475,6 +552,17 @@ igt_main
> }
> }
>
> + igt_describe("Validates power measured at lower frequencies");
nit: reword? Validate more power is consumed at higher frequencies?
> + igt_subtest("freq_power") {
> + /* FIXME: Remove skip once hwmon is added */
> + igt_skip_on(xe_has_vram(fd));
> + xe_for_each_gt(fd, gt) {
> + xe_for_each_hw_engine(fd, hwe) {
> + test_freq_power(fd, gt, hwe);
> + }
> + }
> + }
> +
LGTM,
Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> igt_fixture {
> xe_for_each_gt(fd, gt) {
> set_freq(fd, gt, "min", stash_min);
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] tests/intel/xe_guc_pc: Add freq_power test
2023-09-18 16:31 ` Belgaumkar, Vinay
@ 2023-09-19 13:16 ` Kamil Konieczny
2023-09-21 7:06 ` Riana Tauro
0 siblings, 1 reply; 9+ messages in thread
From: Kamil Konieczny @ 2023-09-19 13:16 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
Hi,
On 2023-09-18 at 09:31:02 -0700, Belgaumkar, Vinay wrote:
>
> On 9/6/2023 11:06 PM, Riana Tauro wrote:
> > An assumption is that at lower frequencies,
> > not only do we run slower, but we save power compared to
> > higher frequencies.
> >
> > This test runs a spinner and sets the min and max frequencies
> > to rp0 and rpn respectively. It then checks if power measured
> > at lower frequencies is lesser.
> >
> > Signed-off-by: Riana Tauro <riana.tauro@intel.com>
> > ---
> > tests/intel/xe_guc_pc.c | 88 +++++++++++++++++++++++++++++++++++++++++
> > 1 file changed, 88 insertions(+)
> >
> > diff --git a/tests/intel/xe_guc_pc.c b/tests/intel/xe_guc_pc.c
> > index 032816921..cea7b56fd 100644
> > --- a/tests/intel/xe_guc_pc.c
> > +++ b/tests/intel/xe_guc_pc.c
> > @@ -13,6 +13,7 @@
> > #include "igt.h"
> > #include "lib/igt_syncobj.h"
> > +#include "igt_power.h"
> > #include "igt_sysfs.h"
> > #include "xe_drm.h"
> > @@ -387,6 +388,82 @@ static void test_reset(int fd, int gt_id, int cycles)
> > }
> > }
> > +static int cmp_u64(const void *a, const void *b)
> > +{
> > + return (*(u64 *)a - *(u64 *)b);
> > +}
> > +
> > +static uint64_t measure_power(int fd, struct igt_power *gpu)
> > +{
> > + struct power_sample sample[2];
> > + uint64_t power[5];
> > +
> > + for (int i = 0; i < 5; i++) {
> > + igt_power_get_energy(gpu, &sample[0]);
> > + usleep(10000); /* 10 ms */
> > + igt_power_get_energy(gpu, &sample[1]);
> > +
> > + power[i] = igt_power_get_mW(gpu, &sample[0], &sample[1]);
> > + }
> > + /* Sort in ascending order and use a triangular filter */
> > + qsort(power, 5, sizeof(*power), cmp_u64);
> > + return DIV_ROUND_UP(power[1] + 2 * power[2] + power[3], 4);
> > +}
> > +
> > +/**
> > + * SUBTEST: freq_power
-------------------- ^
Test names should use '-' as separator but testplan expects spaces:
* SUBTEST: freq power
> > + * Description: Validates if running at lower frequencies saves power
> > + * Run type: FULL
------- ^^^^^^^^
We dropped 'Run type' field, see patch by Mauro:
("commit ada49eb7de576858b63e231ebfd850cfe864cefe")
tests: Intel Xe: drop Run type field
> > + */
> > +static void test_freq_power(int fd, int gt_id, struct drm_xe_engine_class_instance *hwe)
> > +{
> > + uint32_t rp0, rpn, vm;
> > + uint64_t ahnd;
> > + struct igt_power gpu;
> > + struct {
> > + uint64_t power;
> > + uint32_t freq;
> > + } min, max;
> > + igt_spin_t *spin;
> > +
> > + /* Run for engines belonging to the gt */
> > + if (gt_id != hwe->gt_id)
> > + return;
> > +
> > + igt_power_open(fd, &gpu, "gpu");
> > +
> > + rpn = get_freq(fd, gt_id, "rpn");
> > + rp0 = get_freq(fd, gt_id, "rp0");
> > +
> > + vm = xe_vm_create(fd, 0, 0);
> > + ahnd = intel_allocator_open(fd, vm, INTEL_ALLOCATOR_RELOC);
> > + spin = igt_spin_new(fd, .ahnd = ahnd, .vm = vm, .hwe = hwe);
> > +
> > + igt_assert(set_freq(fd, gt_id, "min", rpn) > 0);
> > + igt_assert(set_freq(fd, gt_id, "max", rpn) > 0);
> > + min.freq = get_freq(fd, gt_id, "act");
> > + min.power = measure_power(fd, &gpu);
> > +
> > + igt_assert(set_freq(fd, gt_id, "min", rp0) > 0);
> > + igt_assert(set_freq(fd, gt_id, "max", rp0) > 0);
> > + max.freq = get_freq(fd, gt_id, "act");
> > + max.power = measure_power(fd, &gpu);
> > +
> > + igt_info("Engine %s:%d min:%lumW @ %uMHz, max:%lumW @ %uMHz\n",
> > + xe_engine_class_string(hwe->engine_class), hwe->engine_instance,
> > + min.power, min.freq, max.power, max.freq);
> > +
> > + igt_spin_free(fd, spin);
> > + put_ahnd(ahnd);
> > + xe_vm_destroy(fd, vm);
> > + igt_power_close(&gpu);
> > +
> > + /* Max power should be greater than min power + 10% of min power */
> nit: reword: power@max_freq should be at least 10% greater than
> power@min_freq?
> > + igt_assert_f((11 * min.power < 10 * max.power),
> > + "%s:%d did not conserve power when setting lower frequency!\n",
> > + xe_engine_class_string(hwe->engine_class), hwe->engine_instance);
> > +}
> > +
> > igt_main
> > {
> > struct drm_xe_engine_class_instance *hwe;
> > @@ -475,6 +552,17 @@ igt_main
> > }
> > }
> > + igt_describe("Validates power measured at lower frequencies");
> nit: reword? Validate more power is consumed at higher frequencies?
> > + igt_subtest("freq_power") {
------------------------ ^
imho better: low-freq-power
Regards,
Kamil
> > + /* FIXME: Remove skip once hwmon is added */
> > + igt_skip_on(xe_has_vram(fd));
> > + xe_for_each_gt(fd, gt) {
> > + xe_for_each_hw_engine(fd, hwe) {
> > + test_freq_power(fd, gt, hwe);
> > + }
> > + }
> > + }
> > +
>
> LGTM,
>
> Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
>
>
> > igt_fixture {
> > xe_for_each_gt(fd, gt) {
> > set_freq(fd, gt, "min", stash_min);
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] tests/intel/xe_guc_pc: Add freq_power test
2023-09-19 13:16 ` Kamil Konieczny
@ 2023-09-21 7:06 ` Riana Tauro
0 siblings, 0 replies; 9+ messages in thread
From: Riana Tauro @ 2023-09-21 7:06 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Belgaumkar, Vinay, badal.nilawar
Hi Kamil
Thanks for the review
On 9/19/2023 6:46 PM, Kamil Konieczny wrote:
> Hi,
>
> On 2023-09-18 at 09:31:02 -0700, Belgaumkar, Vinay wrote:
>>
>> On 9/6/2023 11:06 PM, Riana Tauro wrote:
>>> An assumption is that at lower frequencies,
>>> not only do we run slower, but we save power compared to
>>> higher frequencies.
>>>
>>> This test runs a spinner and sets the min and max frequencies
>>> to rp0 and rpn respectively. It then checks if power measured
>>> at lower frequencies is lesser.
>>>
>>> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
>>> ---
>>> tests/intel/xe_guc_pc.c | 88 +++++++++++++++++++++++++++++++++++++++++
>>> 1 file changed, 88 insertions(+)
>>>
>>> diff --git a/tests/intel/xe_guc_pc.c b/tests/intel/xe_guc_pc.c
>>> index 032816921..cea7b56fd 100644
>>> --- a/tests/intel/xe_guc_pc.c
>>> +++ b/tests/intel/xe_guc_pc.c
>>> @@ -13,6 +13,7 @@
>>> #include "igt.h"
>>> #include "lib/igt_syncobj.h"
>>> +#include "igt_power.h"
>>> #include "igt_sysfs.h"
>>> #include "xe_drm.h"
>>> @@ -387,6 +388,82 @@ static void test_reset(int fd, int gt_id, int cycles)
>>> }
>>> }
>>> +static int cmp_u64(const void *a, const void *b)
>>> +{
>>> + return (*(u64 *)a - *(u64 *)b);
>>> +}
>>> +
>>> +static uint64_t measure_power(int fd, struct igt_power *gpu)
>>> +{
>>> + struct power_sample sample[2];
>>> + uint64_t power[5];
>>> +
>>> + for (int i = 0; i < 5; i++) {
>>> + igt_power_get_energy(gpu, &sample[0]);
>>> + usleep(10000); /* 10 ms */
>>> + igt_power_get_energy(gpu, &sample[1]);
>>> +
>>> + power[i] = igt_power_get_mW(gpu, &sample[0], &sample[1]);
>>> + }
>>> + /* Sort in ascending order and use a triangular filter */
>>> + qsort(power, 5, sizeof(*power), cmp_u64);
>>> + return DIV_ROUND_UP(power[1] + 2 * power[2] + power[3], 4);
>>> +}
>>> +
>>> +/**
>>> + * SUBTEST: freq_power
> -------------------- ^
> Test names should use '-' as separator but testplan expects spaces:
>
> * SUBTEST: freq power
Adding space instead of '-' in test documentation throws a warning
Warning: Missing documentation for igt@xe_guc_pc@freq-power
>
>>> + * Description: Validates if running at lower frequencies saves power
>>> + * Run type: FULL
> ------- ^^^^^^^^
> We dropped 'Run type' field, see patch by Mauro:
> ("commit ada49eb7de576858b63e231ebfd850cfe864cefe")
> tests: Intel Xe: drop Run type field
Will remove this
>
>>> + */
>>> +static void test_freq_power(int fd, int gt_id, struct drm_xe_engine_class_instance *hwe)
>>> +{
>>> + uint32_t rp0, rpn, vm;
>>> + uint64_t ahnd;
>>> + struct igt_power gpu;
>>> + struct {
>>> + uint64_t power;
>>> + uint32_t freq;
>>> + } min, max;
>>> + igt_spin_t *spin;
>>> +
>>> + /* Run for engines belonging to the gt */
>>> + if (gt_id != hwe->gt_id)
>>> + return;
>>> +
>>> + igt_power_open(fd, &gpu, "gpu");
>>> +
>>> + rpn = get_freq(fd, gt_id, "rpn");
>>> + rp0 = get_freq(fd, gt_id, "rp0");
>>> +
>>> + vm = xe_vm_create(fd, 0, 0);
>>> + ahnd = intel_allocator_open(fd, vm, INTEL_ALLOCATOR_RELOC);
>>> + spin = igt_spin_new(fd, .ahnd = ahnd, .vm = vm, .hwe = hwe);
>>> +
>>> + igt_assert(set_freq(fd, gt_id, "min", rpn) > 0);
>>> + igt_assert(set_freq(fd, gt_id, "max", rpn) > 0);
>>> + min.freq = get_freq(fd, gt_id, "act");
>>> + min.power = measure_power(fd, &gpu);
>>> +
>>> + igt_assert(set_freq(fd, gt_id, "min", rp0) > 0);
>>> + igt_assert(set_freq(fd, gt_id, "max", rp0) > 0);
>>> + max.freq = get_freq(fd, gt_id, "act");
>>> + max.power = measure_power(fd, &gpu);
>>> +
>>> + igt_info("Engine %s:%d min:%lumW @ %uMHz, max:%lumW @ %uMHz\n",
>>> + xe_engine_class_string(hwe->engine_class), hwe->engine_instance,
>>> + min.power, min.freq, max.power, max.freq);
>>> +
>>> + igt_spin_free(fd, spin);
>>> + put_ahnd(ahnd);
>>> + xe_vm_destroy(fd, vm);
>>> + igt_power_close(&gpu);
>>> +
>>> + /* Max power should be greater than min power + 10% of min power */
>> nit: reword: power@max_freq should be at least 10% greater than
>> power@min_freq?
>>> + igt_assert_f((11 * min.power < 10 * max.power),
>>> + "%s:%d did not conserve power when setting lower frequency!\n",
>>> + xe_engine_class_string(hwe->engine_class), hwe->engine_instance);
>>> +}
>>> +
>>> igt_main
>>> {
>>> struct drm_xe_engine_class_instance *hwe;
>>> @@ -475,6 +552,17 @@ igt_main
>>> }
>>> }
>>> + igt_describe("Validates power measured at lower frequencies");
>> nit: reword? Validate more power is consumed at higher frequencies?
>>> + igt_subtest("freq_power") {
> ------------------------ ^
> imho better: low-freq-power
This test checks power at both low and high frequencies and compares them.
Since there is review comment to change the description. will retain
freq-power
Thanks
Riana Tauro
>
> Regards,
> Kamil
>
>>> + /* FIXME: Remove skip once hwmon is added */
>>> + igt_skip_on(xe_has_vram(fd));
>>> + xe_for_each_gt(fd, gt) {
>>> + xe_for_each_hw_engine(fd, hwe) {
>>> + test_freq_power(fd, gt, hwe);
>>> + }
>>> + }
>>> + }
>>> +
>>
>> LGTM,
>>
>> Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
>>
>>
>>> igt_fixture {
>>> xe_for_each_gt(fd, gt) {
>>> set_freq(fd, gt, "min", stash_min);
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-09-21 7:06 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-07 6:06 [igt-dev] [PATCH i-g-t 0/2] Add freq_power test Riana Tauro
2023-09-07 6:06 ` [igt-dev] [PATCH i-g-t 1/2] tests/intel/xe_guc_pc: " Riana Tauro
2023-09-18 16:31 ` Belgaumkar, Vinay
2023-09-19 13:16 ` Kamil Konieczny
2023-09-21 7:06 ` Riana Tauro
2023-09-07 6:06 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add freq_power to xe-fast-feedback.testlist Riana Tauro
2023-09-07 8:20 ` [igt-dev] ✓ Fi.CI.BAT: success for Add freq_power test Patchwork
2023-09-07 9:09 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-09-07 9:58 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox