* [igt-dev] [PATCH] tests/amdgpu: add stable pstate test
@ 2023-09-26 2:50 Jesse Zhang
2023-09-26 4:03 ` [igt-dev] ✓ CI.xeBAT: success for tests/amdgpu: add stable pstate test (rev3) Patchwork
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Jesse Zhang @ 2023-09-26 2:50 UTC (permalink / raw)
To: igt-dev; +Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
In order to verify gfx power and clock, add pstate test.
v2:
- restricted build for pstate tests due to build failure
for drmlib <= 2.4.109 (Vitaly)
- Optimize some code (Luben)
Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
Signed-off-by: Tim Huang <tim.huang@amd.com>
Reviewed-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
---
include/drm-uapi/amdgpu_drm.h | 9 +++++
tests/amdgpu/amd_pstate.c | 69 +++++++++++++++++++++++++++++++++++
tests/amdgpu/meson.build | 6 +++
3 files changed, 84 insertions(+)
create mode 100644 tests/amdgpu/amd_pstate.c
diff --git a/include/drm-uapi/amdgpu_drm.h b/include/drm-uapi/amdgpu_drm.h
index 323137f42..3f10e45ef 100644
--- a/include/drm-uapi/amdgpu_drm.h
+++ b/include/drm-uapi/amdgpu_drm.h
@@ -206,6 +206,8 @@ union drm_amdgpu_bo_list {
#define AMDGPU_CTX_OP_FREE_CTX 2
#define AMDGPU_CTX_OP_QUERY_STATE 3
#define AMDGPU_CTX_OP_QUERY_STATE2 4
+#define AMDGPU_CTX_OP_GET_STABLE_PSTATE 5
+#define AMDGPU_CTX_OP_SET_STABLE_PSTATE 6
/* GPU reset status */
#define AMDGPU_CTX_NO_RESET 0
@@ -239,6 +241,13 @@ union drm_amdgpu_bo_list {
*/
#define AMDGPU_CTX_PRIORITY_HIGH 512
#define AMDGPU_CTX_PRIORITY_VERY_HIGH 1023
+/* select a stable profiling pstate for perfmon tools */
+#define AMDGPU_CTX_STABLE_PSTATE_FLAGS_MASK 0xf
+#define AMDGPU_CTX_STABLE_PSTATE_NONE 0
+#define AMDGPU_CTX_STABLE_PSTATE_STANDARD 1
+#define AMDGPU_CTX_STABLE_PSTATE_MIN_SCLK 2
+#define AMDGPU_CTX_STABLE_PSTATE_MIN_MCLK 3
+#define AMDGPU_CTX_STABLE_PSTATE_PEAK 4
struct drm_amdgpu_ctx_in {
/** AMDGPU_CTX_OP_* */
diff --git a/tests/amdgpu/amd_pstate.c b/tests/amdgpu/amd_pstate.c
new file mode 100644
index 000000000..40fdc32cc
--- /dev/null
+++ b/tests/amdgpu/amd_pstate.c
@@ -0,0 +1,69 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright 2014 Advanced Micro Devices, Inc.
+ * Copyright 2022 Advanced Micro Devices, Inc.
+ * Copyright 2023 Advanced Micro Devices, Inc.
+ */
+#include <amdgpu.h>
+#include <amdgpu_drm.h>
+#include "drmtest.h"
+#include "igt.h"
+
+static void
+amdgpu_stable_pstate_test(amdgpu_device_handle device_handle)
+{
+ int r;
+ amdgpu_context_handle context_handle;
+ uint32_t current_pstate, new_pstate;
+
+ r = amdgpu_cs_ctx_create(device_handle, &context_handle);
+ igt_assert_eq(r, 0);
+
+ r = amdgpu_cs_ctx_stable_pstate(context_handle,
+ AMDGPU_CTX_OP_GET_STABLE_PSTATE,
+ 0, ¤t_pstate);
+ igt_assert_eq(r, 0);
+ igt_assert_eq(new_pstate, AMDGPU_CTX_STABLE_PSTATE_NONE);
+ r = amdgpu_cs_ctx_stable_pstate(context_handle,
+ AMDGPU_CTX_OP_SET_STABLE_PSTATE,
+ AMDGPU_CTX_STABLE_PSTATE_PEAK, NULL);
+ igt_assert_eq(r, 0);
+
+ r = amdgpu_cs_ctx_stable_pstate(context_handle,
+ AMDGPU_CTX_OP_GET_STABLE_PSTATE,
+ 0, &new_pstate);
+ igt_assert_eq(r, 0);
+ igt_assert_eq(new_pstate, AMDGPU_CTX_STABLE_PSTATE_PEAK);
+
+ r = amdgpu_cs_ctx_free(context_handle);
+ igt_assert_eq(r, 0);
+
+}
+
+igt_main
+{
+ amdgpu_device_handle device;
+ int fd = -1;
+
+ igt_fixture {
+ uint32_t major, minor;
+ int err;
+
+ fd = drm_open_driver(DRIVER_AMDGPU);
+
+ err = amdgpu_device_initialize(fd, &major, &minor, &device);
+ igt_require(err == 0);
+
+ igt_info("Initialized amdgpu, driver version %d.%d\n",
+ major, minor);
+ }
+
+ igt_subtest("amdgpu_pstate")
+ amdgpu_stable_pstate_test(device);
+
+ igt_fixture {
+ amdgpu_device_deinitialize(device);
+ drm_close_driver(fd);
+ }
+}
+
diff --git a/tests/amdgpu/meson.build b/tests/amdgpu/meson.build
index 2949249a4..f52fc3645 100644
--- a/tests/amdgpu/meson.build
+++ b/tests/amdgpu/meson.build
@@ -47,6 +47,12 @@ if libdrm_amdgpu.found()
else
warning('libdrm <= 2.4.99 found, amdgpu_cs_query_reset_state2 not applicable')
endif
+ if libdrm_amdgpu.version().version_compare('> 2.4.109')
+ amdgpu_progs +=[ 'amd_pstate', ]
+ else
+ warning('libdrm <= 2.4.109 found, amd_pstate test not applicable')
+ endif
+
amdgpu_deps += libdrm_amdgpu
endif
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* [igt-dev] ✓ CI.xeBAT: success for tests/amdgpu: add stable pstate test (rev3)
2023-09-26 2:50 [igt-dev] [PATCH] tests/amdgpu: add stable pstate test Jesse Zhang
@ 2023-09-26 4:03 ` Patchwork
2023-09-26 4:07 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
2023-09-26 12:41 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-09-26 4:03 UTC (permalink / raw)
To: Jesse Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 765 bytes --]
== Series Details ==
Series: tests/amdgpu: add stable pstate test (rev3)
URL : https://patchwork.freedesktop.org/series/124092/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7503_BAT -> XEIGTPW_9869_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_7503 -> IGTPW_9869
IGTPW_9869: 9869
IGT_7503: 7503
xe-396-fc8ec3c56efa5c15b630ddc17c89100440fe03ef: fc8ec3c56efa5c15b630ddc17c89100440fe03ef
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9869/index.html
[-- Attachment #2: Type: text/html, Size: 1309 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/amdgpu: add stable pstate test (rev3)
2023-09-26 2:50 [igt-dev] [PATCH] tests/amdgpu: add stable pstate test Jesse Zhang
2023-09-26 4:03 ` [igt-dev] ✓ CI.xeBAT: success for tests/amdgpu: add stable pstate test (rev3) Patchwork
@ 2023-09-26 4:07 ` Patchwork
2023-09-26 12:41 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-09-26 4:07 UTC (permalink / raw)
To: Jesse Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4365 bytes --]
== Series Details ==
Series: tests/amdgpu: add stable pstate test (rev3)
URL : https://patchwork.freedesktop.org/series/124092/
State : success
== Summary ==
CI Bug Log - changes from IGT_7503 -> IGTPW_9869
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/index.html
Participating hosts (37 -> 36)
------------------------------
Additional (2): fi-kbl-soraka fi-pnv-d510
Missing (3): fi-hsw-4770 bat-kbl-2 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9869 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@i915_selftest@live@dmabuf:
- fi-bsw-nick: [PASS][3] -> [DMESG-FAIL][4] ([i915#7562] / [i915#7913])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/fi-bsw-nick/igt@i915_selftest@live@dmabuf.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/fi-bsw-nick/igt@i915_selftest@live@dmabuf.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][5] ([i915#1886] / [i915#7913])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@slpc:
- fi-kbl-soraka: NOTRUN -> [ABORT][6] ([i915#7913])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/fi-kbl-soraka/igt@i915_selftest@live@slpc.html
* igt@kms_dsc@dsc-basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][7] ([fdo#109271]) +9 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][8] ([i915#1845]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_psr@primary_page_flip:
- fi-pnv-d510: NOTRUN -> [SKIP][9] ([fdo#109271]) +31 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/fi-pnv-d510/igt@kms_psr@primary_page_flip.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s0@smem:
- bat-dg2-9: [INCOMPLETE][10] ([i915#9275]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html
* igt@i915_selftest@live@dmabuf:
- fi-bsw-n3050: [DMESG-FAIL][12] ([i915#7562] / [i915#7913]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/fi-bsw-n3050/igt@i915_selftest@live@dmabuf.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/fi-bsw-n3050/igt@i915_selftest@live@dmabuf.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#7562]: https://gitlab.freedesktop.org/drm/intel/issues/7562
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7503 -> IGTPW_9869
CI-20190529: 20190529
CI_DRM_13679: 6dad88365b6dfbe68e8b527c421369d2c6620049 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9869: 9869
IGT_7503: 7503
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/index.html
[-- Attachment #2: Type: text/html, Size: 5685 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread* [igt-dev] ✗ Fi.CI.IGT: failure for tests/amdgpu: add stable pstate test (rev3)
2023-09-26 2:50 [igt-dev] [PATCH] tests/amdgpu: add stable pstate test Jesse Zhang
2023-09-26 4:03 ` [igt-dev] ✓ CI.xeBAT: success for tests/amdgpu: add stable pstate test (rev3) Patchwork
2023-09-26 4:07 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
@ 2023-09-26 12:41 ` Patchwork
2 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-09-26 12:41 UTC (permalink / raw)
To: Jesse Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 88893 bytes --]
== Series Details ==
Series: tests/amdgpu: add stable pstate test (rev3)
URL : https://patchwork.freedesktop.org/series/124092/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7503_full -> IGTPW_9869_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9869_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9869_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_9869/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9869_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-mtlp: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-mtlp-1/igt@gem_ctx_exec@basic-nohangcheck.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-8/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-2/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@kms_flip@dpms-off-confusion-interruptible@a-vga1:
- shard-snb: [PASS][4] -> [ABORT][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-snb4/igt@kms_flip@dpms-off-confusion-interruptible@a-vga1.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-snb4/igt@kms_flip@dpms-off-confusion-interruptible@a-vga1.html
Known issues
------------
Here are the changes found in IGTPW_9869_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-7/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-7/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#9318])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#7701]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-2/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#7701])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-1/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@isolation@bcs0:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +10 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@drm_fdinfo@isolation@bcs0.html
* igt@drm_fdinfo@most-busy-check-all@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-8/igt@drm_fdinfo@most-busy-check-all@vcs0.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3555])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-7/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#9323]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-4/igt@gem_ccs@suspend-resume.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-mtlp: NOTRUN -> [SKIP][16] ([fdo#109314])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-2/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8555]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@legacy-engines-queued:
- shard-snb: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#1099]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html
* igt@gem_eio@hibernate:
- shard-dg1: [PASS][20] -> [ABORT][21] ([i915#7975] / [i915#8213])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-dg1-17/igt@gem_eio@hibernate.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-14/igt@gem_eio@hibernate.html
- shard-dg2: NOTRUN -> [ABORT][22] ([i915#7975] / [i915#8213])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-3/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-dual:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4771]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-3/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#4771]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-2/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_capture@pi@vcs0:
- shard-mtlp: NOTRUN -> [FAIL][25] ([i915#4475])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-5/igt@gem_exec_capture@pi@vcs0.html
* igt@gem_exec_capture@pi@vcs1:
- shard-mtlp: NOTRUN -> [FAIL][26] ([i915#4475] / [i915#7765])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-5/igt@gem_exec_capture@pi@vcs1.html
* igt@gem_exec_capture@pi@vecs0:
- shard-mtlp: NOTRUN -> [DMESG-WARN][27] ([i915#5591])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-5/igt@gem_exec_capture@pi@vecs0.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-19/igt@gem_exec_fair@basic-none-rrul.html
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4473] / [i915#4771]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-5/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-solo:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4473]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-2/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-rkl: NOTRUN -> [FAIL][31] ([i915#2842])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-6/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][32] -> [FAIL][33] ([i915#2842])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fence@submit3:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4812]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-5/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-10/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#7697]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@gem_exec_gttfill@multigpu-basic.html
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#7697]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-10/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@secure-non-root:
- shard-mtlp: NOTRUN -> [SKIP][39] ([fdo#112283])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-6/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3281]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-19/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#3281]) +14 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +11 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-3/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@noreorder-priority@rcs0:
- shard-mtlp: [PASS][44] -> [DMESG-WARN][45] ([i915#9121]) +1 other test dmesg-warn
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-mtlp-7/igt@gem_exec_schedule@noreorder-priority@rcs0.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-4/igt@gem_exec_schedule@noreorder-priority@rcs0.html
* igt@gem_exec_schedule@preemptive-hang@vcs0:
- shard-mtlp: NOTRUN -> [FAIL][46] ([i915#9051])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-8/igt@gem_exec_schedule@preemptive-hang@vcs0.html
* igt@gem_exec_suspend@basic-s3@lmem0:
- shard-dg1: [PASS][47] -> [FAIL][48] ([fdo#103375]) +1 other test fail
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-dg1-14/igt@gem_exec_suspend@basic-s3@lmem0.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-19/igt@gem_exec_suspend@basic-s3@lmem0.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-8/igt@gem_fence_thrash@bo-write-verify-none.html
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4860])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4860])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-14/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-apl: NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#2190])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-apl7/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613]) +6 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3282]) +5 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-6/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_mmap_gtt@basic-read-write:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4077]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-16/igt@gem_mmap_gtt@basic-read-write.html
* igt@gem_mmap_gtt@coherency:
- shard-rkl: NOTRUN -> [SKIP][57] ([fdo#111656])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-4/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +12 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-1/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4077]) +25 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +5 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@read-write:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) +6 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-4/igt@gem_mmap_wc@read-write.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-14/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pxp@create-valid-protected-context:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4270]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-2/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-10/igt@gem_pxp@reject-modify-context-protection-off-1.html
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#4270])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-tglu-7/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4270])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#4270])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#3282]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-1/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#8428]) +12 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#5190]) +12 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-10/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4079])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-17/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4079])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-10/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-rkl: NOTRUN -> [SKIP][74] ([fdo#109312])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-1/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_pread_basic:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4079]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@gem_tiled_pread_basic.html
* igt@gem_unfence_active_buffers:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4879])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@access-control:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3297]) +7 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-7/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-6/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-15/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4880])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3297])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-2/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@vma-merge:
- shard-mtlp: NOTRUN -> [FAIL][82] ([i915#3318])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-3/igt@gem_userptr_blits@vma-merge.html
* igt@gen3_render_linear_blits:
- shard-dg2: NOTRUN -> [SKIP][83] ([fdo#109289]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-7/igt@gen3_render_linear_blits.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#2856]) +5 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-6/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#2856]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-10/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#7707])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-7/igt@i915_hwmon@hwmon-read.html
* igt@i915_hwmon@hwmon-write:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#7707])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-3/igt@i915_hwmon@hwmon-write.html
* igt@i915_module_load@load:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#6227])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-8/igt@i915_module_load@load.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#8436])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#6590]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-6/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: [PASS][91] -> [SKIP][92] ([i915#1397])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [PASS][93] -> [SKIP][94] ([i915#1397])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][95] -> [SKIP][96] ([i915#1397])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#1397])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#1397])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#1397])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_rpm@pc8-residency:
- shard-dg2: NOTRUN -> [SKIP][100] ([fdo#109506]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-7/igt@i915_pm_rpm@pc8-residency.html
- shard-mtlp: NOTRUN -> [SKIP][101] ([fdo#109293])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-8/igt@i915_pm_rpm@pc8-residency.html
* igt@i915_pm_rpm@system-suspend-modeset:
- shard-mtlp: [PASS][102] -> [ABORT][103] ([i915#9262]) +1 other test abort
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-mtlp-3/igt@i915_pm_rpm@system-suspend-modeset.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-5/igt@i915_pm_rpm@system-suspend-modeset.html
* igt@i915_pm_rps@basic-api:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#6621])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@thresholds@gt1:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#8925]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-6/igt@i915_pm_rps@thresholds@gt1.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#4387])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-10/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-dg1: NOTRUN -> [SKIP][107] ([fdo#109303])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-17/igt@i915_query@query-topology-known-pci-ids.html
- shard-mtlp: NOTRUN -> [SKIP][108] ([fdo#109303])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-5/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-dg1: NOTRUN -> [SKIP][109] ([fdo#109302])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-17/igt@i915_query@query-topology-unsupported.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#6645])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-6/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#5190])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4212]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#4212]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-6/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#8709]) +11 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#8502]) +7 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][116] ([i915#8247]) +3 other tests fail
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-7/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][117] ([i915#8247]) +3 other tests fail
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-7/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][118] ([i915#8247]) +3 other tests fail
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-15/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#6229])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-2/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#1769] / [i915#3555])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-19/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5286])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-17/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#5286])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [PASS][123] -> [FAIL][124] ([i915#5138])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#3638])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-17/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][126] ([fdo#111614]) +9 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-3/igt@kms_big_fb@linear-64bpp-rotate-270.html
- shard-dg2: NOTRUN -> [SKIP][127] ([fdo#111614]) +4 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][128] ([fdo#111614] / [i915#3638])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][129] -> [FAIL][130] ([i915#3743])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +5 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6187]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-rkl: NOTRUN -> [SKIP][133] ([fdo#111615])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][135] ([fdo#111615]) +24 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_joiner@basic:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#2705])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-14/igt@kms_big_joiner@basic.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#3689] / [i915#5354]) +12 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3886] / [i915#5354] / [i915#6095])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#5354] / [i915#6095]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-4/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][140] ([fdo#109271])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-glk3/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#5354]) +54 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#3689] / [i915#5354] / [i915#6095])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-tglu-6/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-yf_tiled_ccs:
- shard-snb: NOTRUN -> [SKIP][143] ([fdo#109271]) +250 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-snb4/igt@kms_ccs@pipe-c-ccs-on-another-bo-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#3689] / [i915#3886] / [i915#5354]) +7 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#5354] / [i915#6095]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-17/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#3886] / [i915#5354] / [i915#6095]) +17 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-7/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#5354]) +8 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-1/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#3689] / [i915#5354] / [i915#6095]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-14/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_ccs:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#5354] / [i915#6095]) +65 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-3/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#4087] / [i915#7213])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-6/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#3742])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@dp-audio:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#7828]) +16 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-3/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][153] ([fdo#111827]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@kms_chamelium_color@ctm-blue-to-red.html
- shard-tglu: NOTRUN -> [SKIP][154] ([fdo#111827])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-tglu-9/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2: NOTRUN -> [SKIP][155] ([fdo#111827])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-10/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#7828]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-18/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#7828]) +4 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-10/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#7828])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_color@degamma@pipe-a:
- shard-mtlp: NOTRUN -> [FAIL][159] ([i915#9257]) +3 other tests fail
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-6/igt@kms_color@degamma@pipe-a.html
* igt@kms_content_protection@atomic-dpms:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#6944])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][161] ([i915#7173])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3299])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#3359]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#3359])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#3359])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][166] ([fdo#109279] / [i915#3359])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#3555])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-17/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#8814]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][169] ([fdo#103375])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-4.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][170] ([fdo#111825]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#4103])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- shard-snb: [PASS][172] -> [ABORT][173] ([i915#8865])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-snb4/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-snb7/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3546]) +9 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][175] ([fdo#109274] / [i915#5354]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][176] ([fdo#109274] / [fdo#111767] / [i915#5354])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][177] ([fdo#111767] / [i915#3546])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [PASS][178] -> [FAIL][179] ([i915#2346])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@forked-bo@all-pipes:
- shard-mtlp: NOTRUN -> [DMESG-WARN][180] ([i915#2017])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-4/igt@kms_cursor_legacy@forked-bo@all-pipes.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#4103] / [i915#4213])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#4213]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_cursor_legacy@torture-move@all-pipes:
- shard-glk: [PASS][183] -> [DMESG-WARN][184] ([i915#118])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-glk3/igt@kms_cursor_legacy@torture-move@all-pipes.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-glk3/igt@kms_cursor_legacy@torture-move@all-pipes.html
* igt@kms_display_modes@extended-mode-basic:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#8827])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#8812])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#3469])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-10/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][189] ([fdo#111767] / [i915#3637]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3637]) +14 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-dg2: NOTRUN -> [SKIP][191] ([fdo#109274]) +6 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-2/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8810])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#2672]) +4 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555]) +2 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#8810])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#2672]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#2672])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#8708]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#8708]) +13 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-tglu: NOTRUN -> [SKIP][201] ([fdo#109280])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111825] / [i915#1825]) +9 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2: [PASS][203] -> [FAIL][204] ([i915#6880]) +1 other test fail
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#5460])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#3458]) +16 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#3023]) +3 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#1825]) +56 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][209] ([fdo#111825]) +5 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#8708]) +17 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][211] ([fdo#110189])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#3458]) +4 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8228])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-2/igt@kms_hdr@bpc-switch-dpms.html
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-7/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228]) +2 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-4/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-rkl: NOTRUN -> [SKIP][216] ([fdo#109289]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-7/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1:
- shard-apl: NOTRUN -> [ABORT][217] ([i915#180])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html
* igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3582]) +7 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-2/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8821])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-8/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#8806])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#5176]) +7 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-c-edp-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#5176]) +3 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#5176]) +19 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#5176]) +5 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#5235]) +5 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#5235]) +7 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#5235]) +11 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#5235]) +35 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html
* igt@kms_prime@basic-crc-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#6524])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#6524] / [i915#6805])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#6524])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-tglu-5/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#658])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#658]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#4348]) +2 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@no_drrs:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#1072])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-17/igt@kms_psr@no_drrs.html
* igt@kms_psr@primary_render:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#1072]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-2/igt@kms_psr@primary_render.html
* igt@kms_psr@psr2_sprite_mmap_gtt:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#1072]) +8 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-10/igt@kms_psr@psr2_sprite_mmap_gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#5461] / [i915#658])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#5289])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-14/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#5289])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#4235]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#4235])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#3555]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-1/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][244] ([i915#5465]) +1 other test fail
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-snb6/igt@kms_setmode@basic@pipe-a-vga-1.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#8623])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-a:
- shard-snb: [PASS][246] -> [FAIL][247] ([i915#9196])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-snb1/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-snb6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-b:
- shard-snb: NOTRUN -> [FAIL][248] ([i915#9196])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-snb7/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
* igt@kms_universal_plane@universal-plane-pipe-d-functional:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#4070] / [i915#533] / [i915#6768])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-4/igt@kms_universal_plane@universal-plane-pipe-d-functional.html
* igt@kms_vblank@pipe-b-ts-continuation-suspend:
- shard-snb: NOTRUN -> [DMESG-WARN][250] ([i915#8841]) +1 other test dmesg-warn
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-snb5/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
* igt@kms_vrr@flip-suspend:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#3555])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-4/igt@kms_vrr@flip-suspend.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#2437]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: NOTRUN -> [SKIP][253] ([fdo#109289]) +6 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-1/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#7387])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-4/igt@perf@global-sseu-config.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#2434])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@perf@mi-rpc.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-tglu: NOTRUN -> [SKIP][256] ([fdo#109289])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-tglu-7/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#8850])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-1/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@event-wait@rcs0:
- shard-dg2: NOTRUN -> [SKIP][258] ([fdo#112283])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-2/igt@perf_pmu@event-wait@rcs0.html
- shard-rkl: NOTRUN -> [SKIP][259] ([fdo#112283])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-7/igt@perf_pmu@event-wait@rcs0.html
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#8807])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-7/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@faulting-read@gtt:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#8440])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-4/igt@perf_pmu@faulting-read@gtt.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: [PASS][262] -> [FAIL][263] ([i915#6806])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-dg2-3/igt@perf_pmu@frequency@gt0.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-7/igt@perf_pmu@frequency@gt0.html
- shard-dg1: [PASS][264] -> [FAIL][265] ([i915#6806])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-dg1-14/igt@perf_pmu@frequency@gt0.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-17/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6-suspend:
- shard-mtlp: NOTRUN -> [ABORT][266] ([i915#9262]) +7 other tests abort
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-6/igt@perf_pmu@rc6-suspend.html
* igt@perf_pmu@render-node-busy-idle@ccs0:
- shard-mtlp: [PASS][267] -> [FAIL][268] ([i915#4349]) +3 other tests fail
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-mtlp-8/igt@perf_pmu@render-node-busy-idle@ccs0.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-8/igt@perf_pmu@render-node-busy-idle@ccs0.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][269] ([fdo#109291])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-1/igt@prime_udl.html
- shard-mtlp: NOTRUN -> [SKIP][270] ([fdo#109291])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-6/igt@prime_udl.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#3708] / [i915#4077])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][272] ([i915#3708] / [i915#4077]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-5/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#3708]) +2 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-4/igt@prime_vgem@basic-read.html
* igt@sysfs_preempt_timeout@timeout@vecs0:
- shard-mtlp: NOTRUN -> [ABORT][274] ([i915#8521] / [i915#8865])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-7/igt@sysfs_preempt_timeout@timeout@vecs0.html
* igt@v3d/v3d_perfmon@create-perfmon-exceed:
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#2575]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-17/igt@v3d/v3d_perfmon@create-perfmon-exceed.html
* igt@v3d/v3d_submit_cl@bad-multisync-extension:
- shard-apl: NOTRUN -> [SKIP][276] ([fdo#109271]) +45 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-apl2/igt@v3d/v3d_submit_cl@bad-multisync-extension.html
* igt@v3d/v3d_submit_cl@bad-multisync-out-sync:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#2575]) +12 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-7/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html
* igt@v3d/v3d_submit_csd@bad-flag:
- shard-tglu: NOTRUN -> [SKIP][278] ([fdo#109315] / [i915#2575]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-tglu-8/igt@v3d/v3d_submit_csd@bad-flag.html
* igt@v3d/v3d_submit_csd@bad-multisync-out-sync:
- shard-rkl: NOTRUN -> [SKIP][279] ([fdo#109315]) +4 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-1/igt@v3d/v3d_submit_csd@bad-multisync-out-sync.html
* igt@v3d/v3d_wait_bo@used-bo:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#2575]) +25 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-8/igt@v3d/v3d_wait_bo@used-bo.html
* igt@vc4/vc4_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#7711]) +18 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-5/igt@vc4/vc4_perfmon@create-perfmon-exceed.html
* igt@vc4/vc4_tiling@get-bad-modifier:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#7711]) +10 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-10/igt@vc4/vc4_tiling@get-bad-modifier.html
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#7711]) +3 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-7/igt@vc4/vc4_tiling@get-bad-modifier.html
* igt@vc4/vc4_wait_bo@used-bo-1ns:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#7711]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-17/igt@vc4/vc4_wait_bo@used-bo-1ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][285] ([i915#7742]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][287] ([i915#5784]) -> [PASS][288]
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-dg1-14/igt@gem_eio@unwedge-stress.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-17/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-rkl: [FAIL][289] ([i915#2842]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-rkl-6/igt@gem_exec_fair@basic-pace@vcs0.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-2/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [DMESG-WARN][291] ([i915#4936] / [i915#5493]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gen9_exec_parse@allowed-single:
- shard-apl: [INCOMPLETE][293] ([i915#5566]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-apl4/igt@gen9_exec_parse@allowed-single.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-apl3/igt@gen9_exec_parse@allowed-single.html
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-dg1: [FAIL][295] ([i915#3591]) -> [PASS][296] +1 other test pass
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@i915_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][297] ([i915#1397]) -> [PASS][298] +1 other test pass
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-rkl-2/igt@i915_pm_rpm@dpms-lpsp.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-dg1: [SKIP][299] ([i915#1397]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-dg1-18/igt@i915_pm_rpm@modeset-lpsp.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rps@reset:
- shard-dg1: [FAIL][301] -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-dg1-12/igt@i915_pm_rps@reset.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-15/igt@i915_pm_rps@reset.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [FAIL][303] ([i915#3743]) -> [PASS][304] +1 other test pass
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][305] ([i915#2346]) -> [PASS][306] +1 other test pass
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@forked-bo@pipe-a:
- shard-snb: [ABORT][307] ([i915#8865]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-snb7/igt@kms_cursor_legacy@forked-bo@pipe-a.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-snb1/igt@kms_cursor_legacy@forked-bo@pipe-a.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
- shard-apl: [INCOMPLETE][309] ([i915#9392]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
* igt@kms_plane_alpha_blend@constant-alpha-min@pipe-a-dp-1:
- shard-apl: [FAIL][311] ([i915#4573]) -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-apl3/igt@kms_plane_alpha_blend@constant-alpha-min@pipe-a-dp-1.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-apl3/igt@kms_plane_alpha_blend@constant-alpha-min@pipe-a-dp-1.html
* igt@kms_psr@psr2_cursor_plane_onoff:
- shard-mtlp: [DMESG-WARN][313] ([i915#1982] / [i915#9157]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-mtlp-8/igt@kms_psr@psr2_cursor_plane_onoff.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-2/igt@kms_psr@psr2_cursor_plane_onoff.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-a:
- shard-tglu: [FAIL][315] ([i915#9196]) -> [PASS][316] +1 other test pass
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-dg1: [FAIL][317] ([fdo#103375]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-dg1-19/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-17/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][319] ([i915#7484]) -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-apl: [SKIP][321] ([fdo#109271]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-apl4/igt@perf_pmu@frequency@gt0.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-apl6/igt@perf_pmu@frequency@gt0.html
- shard-glk: [SKIP][323] ([fdo#109271]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-glk8/igt@perf_pmu@frequency@gt0.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-glk5/igt@perf_pmu@frequency@gt0.html
- shard-snb: [SKIP][325] ([fdo#109271]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-snb4/igt@perf_pmu@frequency@gt0.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-snb6/igt@perf_pmu@frequency@gt0.html
#### Warnings ####
* igt@gem_softpin@noreloc-s3:
- shard-mtlp: [ABORT][327] ([i915#9262]) -> [FAIL][328] ([fdo#103375]) +1 other test fail
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-mtlp-6/igt@gem_softpin@noreloc-s3.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-mtlp-5/igt@gem_softpin@noreloc-s3.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][329] ([i915#3955]) -> [SKIP][330] ([fdo#110189] / [i915#3955])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][331] ([i915#4070] / [i915#4816]) -> [SKIP][332] ([i915#4816])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@sprite_plane_onoff:
- shard-dg1: [SKIP][333] ([i915#1072] / [i915#4078]) -> [SKIP][334] ([i915#1072])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7503/shard-dg1-12/igt@kms_psr@sprite_plane_onoff.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/shard-dg1-19/igt@kms_psr@sprite_plane_onoff.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[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#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[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#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7765]: https://gitlab.freedesktop.org/drm/intel/issues/7765
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#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#8436]: https://gitlab.freedesktop.org/drm/intel/issues/8436
[i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#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#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121
[i915#9157]: https://gitlab.freedesktop.org/drm/intel/issues/9157
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9257]: https://gitlab.freedesktop.org/drm/intel/issues/9257
[i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7503 -> IGTPW_9869
CI-20190529: 20190529
CI_DRM_13679: 6dad88365b6dfbe68e8b527c421369d2c6620049 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9869: 9869
IGT_7503: 7503
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9869/index.html
[-- Attachment #2: Type: text/html, Size: 107861 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH] tests/amdgpu: add stable pstate test
@ 2023-09-25 6:05 Jesse Zhang
2023-09-26 1:14 ` vitaly prosyak
0 siblings, 1 reply; 9+ messages in thread
From: Jesse Zhang @ 2023-09-25 6:05 UTC (permalink / raw)
To: igt-dev; +Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
In order to verify gfx power and clock, add pstate test.
v2:
- restricted build for pstate tests due to build failure
for drmlib <= 2.4.109 (Vitaly)
- Optimize some code (Luben)
Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
Signed-off-by: Tim Huang <tim.huang@amd.com>
---
include/drm-uapi/amdgpu_drm.h | 9 +++++
tests/amdgpu/amd_pstate.c | 69 +++++++++++++++++++++++++++++++++++
tests/amdgpu/meson.build | 6 +++
3 files changed, 84 insertions(+)
create mode 100644 tests/amdgpu/amd_pstate.c
diff --git a/include/drm-uapi/amdgpu_drm.h b/include/drm-uapi/amdgpu_drm.h
index 0cbd1540a..6240ae5ea 100644
--- a/include/drm-uapi/amdgpu_drm.h
+++ b/include/drm-uapi/amdgpu_drm.h
@@ -206,6 +206,8 @@ union drm_amdgpu_bo_list {
#define AMDGPU_CTX_OP_FREE_CTX 2
#define AMDGPU_CTX_OP_QUERY_STATE 3
#define AMDGPU_CTX_OP_QUERY_STATE2 4
+#define AMDGPU_CTX_OP_GET_STABLE_PSTATE 5
+#define AMDGPU_CTX_OP_SET_STABLE_PSTATE 6
/* GPU reset status */
#define AMDGPU_CTX_NO_RESET 0
@@ -237,6 +239,13 @@ union drm_amdgpu_bo_list {
*/
#define AMDGPU_CTX_PRIORITY_HIGH 512
#define AMDGPU_CTX_PRIORITY_VERY_HIGH 1023
+/* select a stable profiling pstate for perfmon tools */
+#define AMDGPU_CTX_STABLE_PSTATE_FLAGS_MASK 0xf
+#define AMDGPU_CTX_STABLE_PSTATE_NONE 0
+#define AMDGPU_CTX_STABLE_PSTATE_STANDARD 1
+#define AMDGPU_CTX_STABLE_PSTATE_MIN_SCLK 2
+#define AMDGPU_CTX_STABLE_PSTATE_MIN_MCLK 3
+#define AMDGPU_CTX_STABLE_PSTATE_PEAK 4
struct drm_amdgpu_ctx_in {
/** AMDGPU_CTX_OP_* */
diff --git a/tests/amdgpu/amd_pstate.c b/tests/amdgpu/amd_pstate.c
new file mode 100644
index 000000000..40fdc32cc
--- /dev/null
+++ b/tests/amdgpu/amd_pstate.c
@@ -0,0 +1,69 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright 2014 Advanced Micro Devices, Inc.
+ * Copyright 2022 Advanced Micro Devices, Inc.
+ * Copyright 2023 Advanced Micro Devices, Inc.
+ */
+#include <amdgpu.h>
+#include <amdgpu_drm.h>
+#include "drmtest.h"
+#include "igt.h"
+
+static void
+amdgpu_stable_pstate_test(amdgpu_device_handle device_handle)
+{
+ int r;
+ amdgpu_context_handle context_handle;
+ uint32_t current_pstate, new_pstate;
+
+ r = amdgpu_cs_ctx_create(device_handle, &context_handle);
+ igt_assert_eq(r, 0);
+
+ r = amdgpu_cs_ctx_stable_pstate(context_handle,
+ AMDGPU_CTX_OP_GET_STABLE_PSTATE,
+ 0, ¤t_pstate);
+ igt_assert_eq(r, 0);
+ igt_assert_eq(new_pstate, AMDGPU_CTX_STABLE_PSTATE_NONE);
+ r = amdgpu_cs_ctx_stable_pstate(context_handle,
+ AMDGPU_CTX_OP_SET_STABLE_PSTATE,
+ AMDGPU_CTX_STABLE_PSTATE_PEAK, NULL);
+ igt_assert_eq(r, 0);
+
+ r = amdgpu_cs_ctx_stable_pstate(context_handle,
+ AMDGPU_CTX_OP_GET_STABLE_PSTATE,
+ 0, &new_pstate);
+ igt_assert_eq(r, 0);
+ igt_assert_eq(new_pstate, AMDGPU_CTX_STABLE_PSTATE_PEAK);
+
+ r = amdgpu_cs_ctx_free(context_handle);
+ igt_assert_eq(r, 0);
+
+}
+
+igt_main
+{
+ amdgpu_device_handle device;
+ int fd = -1;
+
+ igt_fixture {
+ uint32_t major, minor;
+ int err;
+
+ fd = drm_open_driver(DRIVER_AMDGPU);
+
+ err = amdgpu_device_initialize(fd, &major, &minor, &device);
+ igt_require(err == 0);
+
+ igt_info("Initialized amdgpu, driver version %d.%d\n",
+ major, minor);
+ }
+ igt_subtest("amdgpu_pstate")
+ amdgpu_stable_pstate_test(device);
+
+ igt_fixture {
+ amdgpu_device_deinitialize(device);
+ drm_close_driver(fd);
+ }
+}
+
diff --git a/tests/amdgpu/meson.build b/tests/amdgpu/meson.build
index ebf52bf38..4a522386d 100644
--- a/tests/amdgpu/meson.build
+++ b/tests/amdgpu/meson.build
@@ -42,6 +42,12 @@ if libdrm_amdgpu.found()
else
warning('libdrm <= 2.4.97 found, amd_syncobj test not applicable')
endif
+
+ if libdrm_amdgpu.version().version_compare('> 2.4.109')
+ amdgpu_progs +=[ 'amd_pstate', ]
+ else
+ warning('libdrm <= 2.4.109 found, amd_pstate test not applicable')
+ endif
amdgpu_deps += libdrm_amdgpu
endif
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [igt-dev] [PATCH] tests/amdgpu: add stable pstate test
2023-09-25 6:05 [igt-dev] [PATCH] tests/amdgpu: add stable pstate test Jesse Zhang
@ 2023-09-26 1:14 ` vitaly prosyak
0 siblings, 0 replies; 9+ messages in thread
From: vitaly prosyak @ 2023-09-26 1:14 UTC (permalink / raw)
To: Jesse Zhang, igt-dev
Cc: Alex Deucher, Tim Huang, Luben Tuikov, Christian Koenig
The patch looks good to me.
However there is kind of issue there:
https://patchwork.freedesktop.org/series/124092/
I am not sure , did you use 'git fetch' and then 'git pull --rebase' just before the patch was locally created and then sent to igt-dev?
After the fix , please, use:
Reviewed-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
Thanks, Vitaly
On 2023-09-25 02:05, Jesse Zhang wrote:
> In order to verify gfx power and clock, add pstate test.
>
> v2:
> - restricted build for pstate tests due to build failure
> for drmlib <= 2.4.109 (Vitaly)
> - Optimize some code (Luben)
>
> Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
> Signed-off-by: Tim Huang <tim.huang@amd.com>
> ---
> include/drm-uapi/amdgpu_drm.h | 9 +++++
> tests/amdgpu/amd_pstate.c | 69 +++++++++++++++++++++++++++++++++++
> tests/amdgpu/meson.build | 6 +++
> 3 files changed, 84 insertions(+)
> create mode 100644 tests/amdgpu/amd_pstate.c
>
> diff --git a/include/drm-uapi/amdgpu_drm.h b/include/drm-uapi/amdgpu_drm.h
> index 0cbd1540a..6240ae5ea 100644
> --- a/include/drm-uapi/amdgpu_drm.h
> +++ b/include/drm-uapi/amdgpu_drm.h
> @@ -206,6 +206,8 @@ union drm_amdgpu_bo_list {
> #define AMDGPU_CTX_OP_FREE_CTX 2
> #define AMDGPU_CTX_OP_QUERY_STATE 3
> #define AMDGPU_CTX_OP_QUERY_STATE2 4
> +#define AMDGPU_CTX_OP_GET_STABLE_PSTATE 5
> +#define AMDGPU_CTX_OP_SET_STABLE_PSTATE 6
>
> /* GPU reset status */
> #define AMDGPU_CTX_NO_RESET 0
> @@ -237,6 +239,13 @@ union drm_amdgpu_bo_list {
> */
> #define AMDGPU_CTX_PRIORITY_HIGH 512
> #define AMDGPU_CTX_PRIORITY_VERY_HIGH 1023
> +/* select a stable profiling pstate for perfmon tools */
> +#define AMDGPU_CTX_STABLE_PSTATE_FLAGS_MASK 0xf
> +#define AMDGPU_CTX_STABLE_PSTATE_NONE 0
> +#define AMDGPU_CTX_STABLE_PSTATE_STANDARD 1
> +#define AMDGPU_CTX_STABLE_PSTATE_MIN_SCLK 2
> +#define AMDGPU_CTX_STABLE_PSTATE_MIN_MCLK 3
> +#define AMDGPU_CTX_STABLE_PSTATE_PEAK 4
>
> struct drm_amdgpu_ctx_in {
> /** AMDGPU_CTX_OP_* */
> diff --git a/tests/amdgpu/amd_pstate.c b/tests/amdgpu/amd_pstate.c
> new file mode 100644
> index 000000000..40fdc32cc
> --- /dev/null
> +++ b/tests/amdgpu/amd_pstate.c
> @@ -0,0 +1,69 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright 2014 Advanced Micro Devices, Inc.
> + * Copyright 2022 Advanced Micro Devices, Inc.
> + * Copyright 2023 Advanced Micro Devices, Inc.
> + */
> +#include <amdgpu.h>
> +#include <amdgpu_drm.h>
> +#include "drmtest.h"
> +#include "igt.h"
> +
> +static void
> +amdgpu_stable_pstate_test(amdgpu_device_handle device_handle)
> +{
> + int r;
> + amdgpu_context_handle context_handle;
> + uint32_t current_pstate, new_pstate;
> +
> + r = amdgpu_cs_ctx_create(device_handle, &context_handle);
> + igt_assert_eq(r, 0);
> +
> + r = amdgpu_cs_ctx_stable_pstate(context_handle,
> + AMDGPU_CTX_OP_GET_STABLE_PSTATE,
> + 0, ¤t_pstate);
> + igt_assert_eq(r, 0);
> + igt_assert_eq(new_pstate, AMDGPU_CTX_STABLE_PSTATE_NONE);
> + r = amdgpu_cs_ctx_stable_pstate(context_handle,
> + AMDGPU_CTX_OP_SET_STABLE_PSTATE,
> + AMDGPU_CTX_STABLE_PSTATE_PEAK, NULL);
> + igt_assert_eq(r, 0);
> +
> + r = amdgpu_cs_ctx_stable_pstate(context_handle,
> + AMDGPU_CTX_OP_GET_STABLE_PSTATE,
> + 0, &new_pstate);
> + igt_assert_eq(r, 0);
> + igt_assert_eq(new_pstate, AMDGPU_CTX_STABLE_PSTATE_PEAK);
> +
> + r = amdgpu_cs_ctx_free(context_handle);
> + igt_assert_eq(r, 0);
> +
> +}
> +
> +igt_main
> +{
> + amdgpu_device_handle device;
> + int fd = -1;
> +
> + igt_fixture {
> + uint32_t major, minor;
> + int err;
> +
> + fd = drm_open_driver(DRIVER_AMDGPU);
> +
> + err = amdgpu_device_initialize(fd, &major, &minor, &device);
> + igt_require(err == 0);
> +
> + igt_info("Initialized amdgpu, driver version %d.%d\n",
> + major, minor);
> + }
>
> + igt_subtest("amdgpu_pstate")
> + amdgpu_stable_pstate_test(device);
> +
> + igt_fixture {
> + amdgpu_device_deinitialize(device);
> + drm_close_driver(fd);
> + }
> +}
> +
> diff --git a/tests/amdgpu/meson.build b/tests/amdgpu/meson.build
> index ebf52bf38..4a522386d 100644
> --- a/tests/amdgpu/meson.build
> +++ b/tests/amdgpu/meson.build
> @@ -42,6 +42,12 @@ if libdrm_amdgpu.found()
> else
> warning('libdrm <= 2.4.97 found, amd_syncobj test not applicable')
> endif
> +
> + if libdrm_amdgpu.version().version_compare('> 2.4.109')
> + amdgpu_progs +=[ 'amd_pstate', ]
> + else
> + warning('libdrm <= 2.4.109 found, amd_pstate test not applicable')
> + endif
> amdgpu_deps += libdrm_amdgpu
> endif
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH] tests/amdgpu: add stable pstate test
@ 2023-09-22 5:52 Jesse Zhang
2023-09-22 21:03 ` Luben Tuikov
2023-09-23 0:24 ` vitaly prosyak
0 siblings, 2 replies; 9+ messages in thread
From: Jesse Zhang @ 2023-09-22 5:52 UTC (permalink / raw)
To: igt-dev; +Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
Signed-off-by: Tim Huang <tim.huang@amd.com>
---
tests/amdgpu/amd_basic.c | 43 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c
index 24c70a9f7..f23a13343 100644
--- a/tests/amdgpu/amd_basic.c
+++ b/tests/amdgpu/amd_basic.c
@@ -612,6 +612,39 @@ amdgpu_sync_dependency_test(amdgpu_device_handle device_handle)
free_cmd_base(base);
}
+#ifdef AMDGPU_CTX_OP_GET_STABLE_PSTATE
+static void
+amdgpu_stable_pstate_test(amdgpu_device_handle device_handle)
+{
+ int r;
+ amdgpu_context_handle context_handle;
+ uint32_t current_pstate = 0, new_pstate = 0;
+
+ r = amdgpu_cs_ctx_create(device_handle, &context_handle);
+ igt_assert_eq(r, 0);
+
+ r = amdgpu_cs_ctx_stable_pstate(context_handle,
+ AMDGPU_CTX_OP_GET_STABLE_PSTATE,
+ 0, ¤t_pstate);
+ igt_assert_eq(r, 0);
+ igt_assert_eq(new_pstate, AMDGPU_CTX_STABLE_PSTATE_NONE);
+ r = amdgpu_cs_ctx_stable_pstate(context_handle,
+ AMDGPU_CTX_OP_SET_STABLE_PSTATE,
+ AMDGPU_CTX_STABLE_PSTATE_PEAK, NULL);
+ igt_assert_eq(r, 0);
+
+ r = amdgpu_cs_ctx_stable_pstate(context_handle,
+ AMDGPU_CTX_OP_GET_STABLE_PSTATE,
+ 0, &new_pstate);
+ igt_assert_eq(r, 0);
+ igt_assert_eq(new_pstate, AMDGPU_CTX_STABLE_PSTATE_PEAK);
+
+ r = amdgpu_cs_ctx_free(context_handle);
+ igt_assert_eq(r, 0);
+
+}
+#endif
+
static void
amdgpu_gfx_dispatch_test_gfx(amdgpu_device_handle device_handle)
{
@@ -739,6 +772,16 @@ igt_main
}
}
+#ifdef AMDGPU_CTX_OP_GET_STABLE_PSTATE
+ igt_describe("Check-pstate-for-gfx-power-and-clock");
+ igt_subtest_with_dynamic("stable-pstate-test-with-IP-SMU") {
+ if (arr_cap[AMD_IP_GFX]) {
+ igt_dynamic_f("stable-pstate-test")
+ amdgpu_stable_pstate_test(device);
+ }
+ }
+#endif
+
igt_fixture {
amdgpu_device_deinitialize(device);
drm_close_driver(fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [igt-dev] [PATCH] tests/amdgpu: add stable pstate test
2023-09-22 5:52 Jesse Zhang
@ 2023-09-22 21:03 ` Luben Tuikov
2023-09-23 0:24 ` vitaly prosyak
1 sibling, 0 replies; 9+ messages in thread
From: Luben Tuikov @ 2023-09-22 21:03 UTC (permalink / raw)
To: Jesse Zhang, igt-dev; +Cc: Alex Deucher, Tim Huang, Christian Koenig
On 2023-09-22 01:52, Jesse Zhang wrote:
Add a one-liner description in the body of the commit.
Add a stable p-state test.
> Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
> Signed-off-by: Tim Huang <tim.huang@amd.com>
> ---
> tests/amdgpu/amd_basic.c | 43 ++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 43 insertions(+)
>
> diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c
> index 24c70a9f7..f23a13343 100644
> --- a/tests/amdgpu/amd_basic.c
> +++ b/tests/amdgpu/amd_basic.c
> @@ -612,6 +612,39 @@ amdgpu_sync_dependency_test(amdgpu_device_handle device_handle)
> free_cmd_base(base);
> }
>
> +#ifdef AMDGPU_CTX_OP_GET_STABLE_PSTATE
> +static void
> +amdgpu_stable_pstate_test(amdgpu_device_handle device_handle)
> +{
> + int r;
> + amdgpu_context_handle context_handle;
> + uint32_t current_pstate = 0, new_pstate = 0;
Don't initialize them to 0 here. Just do,
uint32_t current_pstate, new_pstate;
If you used them without them being initialized, that would
be an error, the compiler would catch this and you want that,
so you can revisit the code. But if you initialize them,
this would hide this error. So don't initialize them
when you define them.
> +
> + r = amdgpu_cs_ctx_create(device_handle, &context_handle);
> + igt_assert_eq(r, 0);
> +
> + r = amdgpu_cs_ctx_stable_pstate(context_handle,
> + AMDGPU_CTX_OP_GET_STABLE_PSTATE,
> + 0, ¤t_pstate);
> + igt_assert_eq(r, 0);
> + igt_assert_eq(new_pstate, AMDGPU_CTX_STABLE_PSTATE_NONE);
> + r = amdgpu_cs_ctx_stable_pstate(context_handle,
> + AMDGPU_CTX_OP_SET_STABLE_PSTATE,
> + AMDGPU_CTX_STABLE_PSTATE_PEAK, NULL);
> + igt_assert_eq(r, 0);
> +
> + r = amdgpu_cs_ctx_stable_pstate(context_handle,
> + AMDGPU_CTX_OP_GET_STABLE_PSTATE,
> + 0, &new_pstate);
> + igt_assert_eq(r, 0);
> + igt_assert_eq(new_pstate, AMDGPU_CTX_STABLE_PSTATE_PEAK);
> +
> + r = amdgpu_cs_ctx_free(context_handle);
> + igt_assert_eq(r, 0);
> +
> +}
> +#endif
> +
> static void
> amdgpu_gfx_dispatch_test_gfx(amdgpu_device_handle device_handle)
> {
> @@ -739,6 +772,16 @@ igt_main
> }
> }
>
> +#ifdef AMDGPU_CTX_OP_GET_STABLE_PSTATE
> + igt_describe("Check-pstate-for-gfx-power-and-clock");
> + igt_subtest_with_dynamic("stable-pstate-test-with-IP-SMU") {
> + if (arr_cap[AMD_IP_GFX]) {
> + igt_dynamic_f("stable-pstate-test")
> + amdgpu_stable_pstate_test(device);
> + }
> + }
> +#endif
> +
> igt_fixture {
> amdgpu_device_deinitialize(device);
> drm_close_driver(fd);
--
Regards,
Luben
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [igt-dev] [PATCH] tests/amdgpu: add stable pstate test
2023-09-22 5:52 Jesse Zhang
2023-09-22 21:03 ` Luben Tuikov
@ 2023-09-23 0:24 ` vitaly prosyak
1 sibling, 0 replies; 9+ messages in thread
From: vitaly prosyak @ 2023-09-23 0:24 UTC (permalink / raw)
To: Jesse Zhang, igt-dev
Cc: Alex Deucher, Tim Huang, Luben Tuikov, Christian Koenig
Hi Jesse,
Please, do not add pstate test to the basic tests.
Please, create a separate file amd_pstate.c, and use conditional compilation which depends on when such' ioctl' was added to drmlib ,
for example, into meson.build we have this approach already.
if libdrm_amdgpu.version().version_compare('> 2.4.99')
amdgpu_progs +=[ 'amd_dispatch',]
else
warning('libdrm <= 2.4.99 found, amdgpu_cs_query_reset_state2 not applicable')
endif
Thanks, Vitaly
On 2023-09-22 01:52, Jesse Zhang wrote:
> Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
> Signed-off-by: Tim Huang <tim.huang@amd.com>
> ---
> tests/amdgpu/amd_basic.c | 43 ++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 43 insertions(+)
>
> diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c
> index 24c70a9f7..f23a13343 100644
> --- a/tests/amdgpu/amd_basic.c
> +++ b/tests/amdgpu/amd_basic.c
> @@ -612,6 +612,39 @@ amdgpu_sync_dependency_test(amdgpu_device_handle device_handle)
> free_cmd_base(base);
> }
>
> +#ifdef AMDGPU_CTX_OP_GET_STABLE_PSTATE
> +static void
> +amdgpu_stable_pstate_test(amdgpu_device_handle device_handle)
> +{
> + int r;
> + amdgpu_context_handle context_handle;
> + uint32_t current_pstate = 0, new_pstate = 0;
> +
> + r = amdgpu_cs_ctx_create(device_handle, &context_handle);
> + igt_assert_eq(r, 0);
> +
> + r = amdgpu_cs_ctx_stable_pstate(context_handle,
> + AMDGPU_CTX_OP_GET_STABLE_PSTATE,
> + 0, ¤t_pstate);
> + igt_assert_eq(r, 0);
> + igt_assert_eq(new_pstate, AMDGPU_CTX_STABLE_PSTATE_NONE);
> + r = amdgpu_cs_ctx_stable_pstate(context_handle,
> + AMDGPU_CTX_OP_SET_STABLE_PSTATE,
> + AMDGPU_CTX_STABLE_PSTATE_PEAK, NULL);
> + igt_assert_eq(r, 0);
> +
> + r = amdgpu_cs_ctx_stable_pstate(context_handle,
> + AMDGPU_CTX_OP_GET_STABLE_PSTATE,
> + 0, &new_pstate);
> + igt_assert_eq(r, 0);
> + igt_assert_eq(new_pstate, AMDGPU_CTX_STABLE_PSTATE_PEAK);
> +
> + r = amdgpu_cs_ctx_free(context_handle);
> + igt_assert_eq(r, 0);
> +
> +}
> +#endif
> +
> static void
> amdgpu_gfx_dispatch_test_gfx(amdgpu_device_handle device_handle)
> {
> @@ -739,6 +772,16 @@ igt_main
> }
> }
>
> +#ifdef AMDGPU_CTX_OP_GET_STABLE_PSTATE
> + igt_describe("Check-pstate-for-gfx-power-and-clock");
> + igt_subtest_with_dynamic("stable-pstate-test-with-IP-SMU") {
> + if (arr_cap[AMD_IP_GFX]) {
> + igt_dynamic_f("stable-pstate-test")
> + amdgpu_stable_pstate_test(device);
> + }
> + }
> +#endif
> +
> igt_fixture {
> amdgpu_device_deinitialize(device);
> drm_close_driver(fd);
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-09-26 12:41 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-26 2:50 [igt-dev] [PATCH] tests/amdgpu: add stable pstate test Jesse Zhang
2023-09-26 4:03 ` [igt-dev] ✓ CI.xeBAT: success for tests/amdgpu: add stable pstate test (rev3) Patchwork
2023-09-26 4:07 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
2023-09-26 12:41 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2023-09-25 6:05 [igt-dev] [PATCH] tests/amdgpu: add stable pstate test Jesse Zhang
2023-09-26 1:14 ` vitaly prosyak
2023-09-22 5:52 Jesse Zhang
2023-09-22 21:03 ` Luben Tuikov
2023-09-23 0:24 ` vitaly prosyak
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox