* [igt-dev] [PATCH i-g-t v4 0/2] intel/i915_query: Add query-l3-bank-count subtest
@ 2023-09-25 16:48 Jonathan Cavitt
2023-09-25 16:48 ` [igt-dev] [PATCH i-g-t v4 1/2] lib/i915: Add DRM_I915_QUERY_L3BANK_COUNT query Jonathan Cavitt
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Jonathan Cavitt @ 2023-09-25 16:48 UTC (permalink / raw)
To: igt-dev; +Cc: jonathan.cavitt
Add support for the DRM_QUERY_L3BANK_COUNT query and exercise it with
subtests in i915_query.
v2:
- Separate uapi and test changes.
- s/invaild/invalid
v3:
- Move uapi changes to i915_drm_local.h.
v4:
- Reorder some i915_query.c elements.
Janga Rahul Kumar (1):
tests/i915_query.c: Add query-l3-bank-count subtest
Jonathan Cavitt (1):
lib/i915: Add DRM_I915_QUERY_L3BANK_COUNT query
lib/i915/i915_drm_local.h | 13 ++++
tests/intel/i915_query.c | 135 ++++++++++++++++++++++++++++++++++++++
2 files changed, 148 insertions(+)
--
2.25.1
^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t v4 1/2] lib/i915: Add DRM_I915_QUERY_L3BANK_COUNT query
2023-09-25 16:48 [igt-dev] [PATCH i-g-t v4 0/2] intel/i915_query: Add query-l3-bank-count subtest Jonathan Cavitt
@ 2023-09-25 16:48 ` Jonathan Cavitt
2023-10-05 22:11 ` Kamil Konieczny
2023-09-25 16:48 ` [igt-dev] [PATCH i-g-t v4 2/2] tests/i915_query.c: Add query-l3-bank-count subtest Jonathan Cavitt
` (3 subsequent siblings)
4 siblings, 1 reply; 8+ messages in thread
From: Jonathan Cavitt @ 2023-09-25 16:48 UTC (permalink / raw)
To: igt-dev; +Cc: jonathan.cavitt
Add local specifications for DRM_I915_QUERY_L3BANK_COUNT query.
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
lib/i915/i915_drm_local.h | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/lib/i915/i915_drm_local.h b/lib/i915/i915_drm_local.h
index 0f47578c63..0127eef540 100644
--- a/lib/i915/i915_drm_local.h
+++ b/lib/i915/i915_drm_local.h
@@ -22,6 +22,19 @@ extern "C" {
#define I915_ENGINE_CLASS_COMPUTE 4
#define DRM_I915_QUERY_GEOMETRY_SUBSLICES 6
+#define DRM_I915_QUERY_L3BANK_COUNT 7
+
+/**
+ * DOC: L3 Bank Count Query uAPI
+ *
+ * The L3 bank count query called through the query id
+ * DRM_I915_QUERY_L3BANK_COUNT and returns the count of
+ * the available L3 Banks on a given engine.
+ *
+ * The count itself is an integer, and since no additional
+ * data is returned, the count is returned as such.
+ */
+
#define DRM_I915_PERF_PROP_OA_ENGINE_CLASS 9
#define DRM_I915_PERF_PROP_OA_ENGINE_INSTANCE 10
--
2.25.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t v4 2/2] tests/i915_query.c: Add query-l3-bank-count subtest
2023-09-25 16:48 [igt-dev] [PATCH i-g-t v4 0/2] intel/i915_query: Add query-l3-bank-count subtest Jonathan Cavitt
2023-09-25 16:48 ` [igt-dev] [PATCH i-g-t v4 1/2] lib/i915: Add DRM_I915_QUERY_L3BANK_COUNT query Jonathan Cavitt
@ 2023-09-25 16:48 ` Jonathan Cavitt
2023-10-05 22:21 ` Kamil Konieczny
2023-09-25 20:50 ` [igt-dev] ✓ CI.xeBAT: success for intel/i915_query: " Patchwork
` (2 subsequent siblings)
4 siblings, 1 reply; 8+ messages in thread
From: Jonathan Cavitt @ 2023-09-25 16:48 UTC (permalink / raw)
To: igt-dev; +Cc: jonathan.cavitt
From: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
Add a subtest to query L3 Bank count for each engine.
Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
tests/intel/i915_query.c | 135 +++++++++++++++++++++++++++++++++++++++
1 file changed, 135 insertions(+)
diff --git a/tests/intel/i915_query.c b/tests/intel/i915_query.c
index f97379b83b..c0ba31bfe5 100644
--- a/tests/intel/i915_query.c
+++ b/tests/intel/i915_query.c
@@ -25,6 +25,7 @@
#include "intel_hwconfig_types.h"
#include "i915/gem.h"
#include "i915/gem_create.h"
+#include "igt_sysfs.h"
#include <limits.h>
/**
@@ -121,6 +122,18 @@
* SUBTEST: test-query-geometry-subslices
* Description: Test DRM_I915_QUERY_GEOMETRY_SUBSLICES query
* Feature: gem_core
+ *
+ * SUBTEST: query-l3-bank-count
+ * Description: Test DRM_I915_QUERY_L3BANK_COUNT query
+ * Feature: gem_core
+ *
+ * SUBTEST: query-l3-bank-count-invalid
+ * Description: Test DRM_I915_QUERY_L3BANK_COUNT query fails when an invalid engine is passed
+ * Feature: gem_core
+ *
+ * SUBTEST: query-l3-bank-count-support
+ * Description: Test DRM_I915_QUERY_L3BANK_COUNT query fails when it is not supported
+ * Feature: gem_core
*/
IGT_TEST_DESCRIPTION("Testing the i915 query uAPI.");
@@ -1474,6 +1487,107 @@ static void query_parse_and_validate_hwconfig_table(int i915)
free(data);
}
+static int __get_l3_count(int i915, const struct i915_engine_class_instance engine, uint64_t *out)
+{
+ struct drm_i915_query_item item;
+
+ memset(&item, 0, sizeof(item));
+ item.query_id = DRM_I915_QUERY_L3BANK_COUNT;
+ item.flags = ((engine.engine_instance << 8) | engine.engine_class);
+ item.data_ptr = to_user_pointer(out);
+
+ i915_query_items(i915, &item, 1);
+
+ return item.length < 0 ? item.length : 0;
+}
+
+static bool query_l3_count_supported(int i915)
+{
+ struct i915_engine_class_instance *engines;
+ unsigned int engines_count;
+ uint32_t class;
+ uint64_t val;
+ int ret;
+
+ class = 0xFF;
+ engines = gem_list_engines(i915, 1u << 0, class, &engines_count);
+ if (!engines) {
+ igt_warn("Failed to get the engines list per tile\n");
+ return false;
+ }
+
+ ret = __get_l3_count(i915, engines[0], &val);
+ free(engines);
+
+ return ret == 0;
+}
+
+static void test_l3_count_support(int i915)
+{
+ int devid = intel_get_drm_devid(i915);
+ bool supported = intel_graphics_ver(devid) >= IP_VER(12, 0);
+
+ igt_assert(supported == query_l3_count_supported(i915));
+}
+
+static void test_l3_count_invalid(int i915)
+{
+ struct i915_engine_class_instance engine = {
+ .engine_class = 0xDEAD,
+ .engine_instance = 0xBEEF
+ };
+ uint64_t val;
+
+ igt_assert_eq(__get_l3_count(i915, engine, &val), -EINVAL);
+}
+
+static void test_l3_count(int i915)
+{
+ struct i915_engine_class_instance *engines;
+ uint32_t class;
+ unsigned int engines_count;
+ uint64_t expected_bank_count;
+ int num_gts;
+
+ class = 0xFF; // checking for all 8 classes
+ expected_bank_count = 0;
+
+ num_gts = igt_sysfs_get_num_gt(i915);
+
+ for (int gt = 0; gt < num_gts; gt++) {
+ engines = gem_list_engines(i915, 1u << gt, class, &engines_count);
+
+ igt_fail_on_f(!engines, "Failed to get the engines list per tile");
+
+ for (int i = 0 ; i < engines_count ; i++) {
+ uint64_t l3_count;
+
+ igt_assert_eq(__get_l3_count(i915, engines[i], &l3_count), 0);
+ igt_debug("class=%u instance=%u l3 bank count=%lu\n",
+ engines[i].engine_class,
+ engines[i].engine_instance,
+ l3_count);
+
+ if (IS_METEORLAKE(i915)) // ARROWLAKE (ARL) to be added
+ igt_assert((l3_count%2) == 0);
+ else if (IS_PONTEVECCHIO(i915))
+ igt_assert((l3_count%4) == 0);
+ else if (IS_DG2(i915))
+ igt_assert((l3_count%8) == 0);
+
+ if (i == 0) {
+ expected_bank_count = l3_count;
+ continue;
+ }
+
+ igt_assert_eq(l3_count, expected_bank_count);
+
+ }
+
+ free(engines);
+ }
+}
+
igt_main
{
int fd = -1;
@@ -1571,6 +1685,27 @@ igt_main
igt_subtest("hwconfig_table")
query_parse_and_validate_hwconfig_table(fd);
+ igt_describe("Test to check DRM_I915_QUERY_L3BANK_COUNT support.");
+ igt_subtest("query-l3-bank-count-support") {
+ test_l3_count_support(fd);
+ }
+
+ igt_subtest_group {
+ igt_fixture {
+ igt_require(query_l3_count_supported(fd));
+ }
+
+ igt_describe("Basic test to query l3 bank count");
+ igt_subtest("query-l3-bank-count") {
+ test_l3_count(fd);
+ }
+
+ igt_describe("Negative test for DRM_I915_QUERY_L3BANK_COUNT");
+ igt_subtest("query-l3-bank-count-invalid") {
+ test_l3_count_invalid(fd);
+ }
+ }
+
igt_fixture {
drm_close_driver(fd);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for intel/i915_query: Add query-l3-bank-count subtest
2023-09-25 16:48 [igt-dev] [PATCH i-g-t v4 0/2] intel/i915_query: Add query-l3-bank-count subtest Jonathan Cavitt
2023-09-25 16:48 ` [igt-dev] [PATCH i-g-t v4 1/2] lib/i915: Add DRM_I915_QUERY_L3BANK_COUNT query Jonathan Cavitt
2023-09-25 16:48 ` [igt-dev] [PATCH i-g-t v4 2/2] tests/i915_query.c: Add query-l3-bank-count subtest Jonathan Cavitt
@ 2023-09-25 20:50 ` Patchwork
2023-09-25 20:55 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
2023-09-26 1:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-09-25 20:50 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1176 bytes --]
== Series Details ==
Series: intel/i915_query: Add query-l3-bank-count subtest
URL : https://patchwork.freedesktop.org/series/124213/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7502_BAT -> XEIGTPW_9867_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_9867_BAT that come from known issues:
### IGT changes ###
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
Build changes
-------------
* IGT: IGT_7502 -> IGTPW_9867
IGTPW_9867: 9867
IGT_7502: ac56ba97248b33668fbe771882360bd7b274cc9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-395-c5d56214282a4cefba322d69334e00f16c0613a7: c5d56214282a4cefba322d69334e00f16c0613a7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9867/index.html
[-- Attachment #2: Type: text/html, Size: 1651 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for intel/i915_query: Add query-l3-bank-count subtest
2023-09-25 16:48 [igt-dev] [PATCH i-g-t v4 0/2] intel/i915_query: Add query-l3-bank-count subtest Jonathan Cavitt
` (2 preceding siblings ...)
2023-09-25 20:50 ` [igt-dev] ✓ CI.xeBAT: success for intel/i915_query: " Patchwork
@ 2023-09-25 20:55 ` Patchwork
2023-09-26 1:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-09-25 20:55 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1676 bytes --]
== Series Details ==
Series: intel/i915_query: Add query-l3-bank-count subtest
URL : https://patchwork.freedesktop.org/series/124213/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13677 -> IGTPW_9867
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/index.html
Participating hosts (40 -> 38)
------------------------------
Missing (2): fi-hsw-4770 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9867 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [PASS][1] -> [DMESG-FAIL][2] ([i915#5334])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7502 -> IGTPW_9867
CI-20190529: 20190529
CI_DRM_13677: d69432c1f5832c5097d4629e61cabd8bdfc027b2 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9867: 9867
IGT_7502: ac56ba97248b33668fbe771882360bd7b274cc9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@i915_query@query-l3-bank-count
+igt@i915_query@query-l3-bank-count-invalid
+igt@i915_query@query-l3-bank-count-support
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/index.html
[-- Attachment #2: Type: text/html, Size: 2270 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for intel/i915_query: Add query-l3-bank-count subtest
2023-09-25 16:48 [igt-dev] [PATCH i-g-t v4 0/2] intel/i915_query: Add query-l3-bank-count subtest Jonathan Cavitt
` (3 preceding siblings ...)
2023-09-25 20:55 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
@ 2023-09-26 1:35 ` Patchwork
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-09-26 1:35 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 91379 bytes --]
== Series Details ==
Series: intel/i915_query: Add query-l3-bank-count subtest
URL : https://patchwork.freedesktop.org/series/124213/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13677_full -> IGTPW_9867_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9867_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9867_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_9867/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): shard-tglu0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9867_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html
* {igt@i915_query@query-l3-bank-count-invalid} (NEW):
- shard-dg2: NOTRUN -> [SKIP][2] +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-1/igt@i915_query@query-l3-bank-count-invalid.html
- shard-rkl: NOTRUN -> [SKIP][3] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-6/igt@i915_query@query-l3-bank-count-invalid.html
- shard-dg1: NOTRUN -> [SKIP][4] +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-17/igt@i915_query@query-l3-bank-count-invalid.html
- shard-tglu: NOTRUN -> [SKIP][5] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-4/igt@i915_query@query-l3-bank-count-invalid.html
- shard-mtlp: NOTRUN -> [SKIP][6] +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-3/igt@i915_query@query-l3-bank-count-invalid.html
* {igt@i915_query@query-l3-bank-count-support} (NEW):
- shard-dg2: NOTRUN -> [FAIL][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-1/igt@i915_query@query-l3-bank-count-support.html
- shard-rkl: NOTRUN -> [FAIL][8]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-7/igt@i915_query@query-l3-bank-count-support.html
- shard-dg1: NOTRUN -> [FAIL][9]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-12/igt@i915_query@query-l3-bank-count-support.html
- shard-tglu: NOTRUN -> [FAIL][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-6/igt@i915_query@query-l3-bank-count-support.html
- shard-mtlp: NOTRUN -> [FAIL][11]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-4/igt@i915_query@query-l3-bank-count-support.html
* igt@kms_vblank@pipe-b-ts-continuation-suspend:
- shard-dg2: [PASS][12] -> [INCOMPLETE][13] +1 other test incomplete
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-dg2-10/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-5/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_writeback@writeback-check-output-xrgb2101010}:
- shard-mtlp: NOTRUN -> [SKIP][14]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html
New tests
---------
New tests have been introduced between CI_DRM_13677_full and IGTPW_9867_full:
### New IGT tests (3) ###
* igt@i915_query@query-l3-bank-count:
- Statuses : 8 skip(s)
- Exec time: [0.0] s
* igt@i915_query@query-l3-bank-count-invalid:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
* igt@i915_query@query-l3-bank-count-support:
- Statuses : 5 fail(s) 3 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9867_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#6230])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-6/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8411])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-4/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#9318])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-4/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#7701])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-5/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8414]) +21 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-1/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@isolation@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8414]) +13 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-5/igt@drm_fdinfo@isolation@rcs0.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#7697])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-2/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#7697])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-2/igt@gem_basic@multigpu-create-close.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4873])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@gem_caching@read-writes.html
* igt@gem_ccs@block-copy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#3555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#9323]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-6/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][26] -> [INCOMPLETE][27] ([i915#7297])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-dg2-11/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-2/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#6335])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-3/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#8555]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#8555])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#280])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-11/igt@gem_ctx_sseu@engines.html
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#280])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-4/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#280]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-sync:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4771])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4036])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-1/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#6334])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-8/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fair@basic-deadline:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4473] / [i915#4771]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-5/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-flow@rcs0:
- shard-tglu: [PASS][39] -> [FAIL][40] ([i915#2842])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-tglu-8/igt@gem_exec_fair@basic-flow@rcs0.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-8/igt@gem_exec_fair@basic-flow@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4473])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-8/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-rkl: [PASS][42] -> [FAIL][43] ([i915#2842])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-2/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fence@concurrent:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4812]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-6/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-1/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-12/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#7697]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-6/igt@gem_exec_gttfill@multigpu-basic.html
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#7697])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-12/igt@gem_exec_gttfill@multigpu-basic.html
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#7697])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-7/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#5107])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +15 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#3281]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-18/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-range-active:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#3281]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-7/igt@gem_exec_reloc@basic-range-active.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#3281])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-7/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4537])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-4/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@semaphore-power:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-6/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-6/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4860]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-6/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-glk: NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#4613])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-glk3/igt@gem_lmem_evict@dontneed-evict-race.html
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#4613] / [i915#7582])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-random:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-7/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613]) +5 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@random:
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-8/igt@gem_lmem_swapping@random.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8289])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-4/igt@gem_media_fill@media-fill.html
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#8289])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-11/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@bad-size:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4083]) +10 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-3/igt@gem_mmap@bad-size.html
* igt@gem_mmap@short-mmap:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-16/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4077]) +21 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-6/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-2/igt@gem_mmap_wc@bad-object.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-11/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pxp@create-regular-buffer:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4270])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-3/igt@gem_pxp@create-regular-buffer.html
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#4270]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-6/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@create-valid-protected-context:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4270]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3282]) +11 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-5/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428]) +9 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4079])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-rkl: NOTRUN -> [SKIP][78] ([fdo#109312])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-6/igt@gem_softpin@evict-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4885]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-4/igt@gem_softpin@evict-snoop.html
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4885])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-10/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3282]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-1/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_tiled_pread_basic:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4079]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@gem_tiled_pread_basic.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3297]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-5/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-5/igt@gen9_exec_parse@basic-rejected.html
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#2856]) +7 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-3/igt@gen9_exec_parse@basic-rejected.html
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#2527])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-14/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-secure:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-7/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#2856]) +4 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-2/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_hangman@gt-engine-error@vcs0:
- shard-mtlp: [PASS][90] -> [FAIL][91] ([i915#7069])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-mtlp-3/igt@i915_hangman@gt-engine-error@vcs0.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-6/igt@i915_hangman@gt-engine-error@vcs0.html
* igt@i915_module_load@load:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#6227])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-4/igt@i915_module_load@load.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#7091])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-11/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-tglu: NOTRUN -> [SKIP][94] ([fdo#109289])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-7/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle@bcs0:
- shard-dg1: [PASS][95] -> [FAIL][96] ([i915#3591])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [PASS][97] -> [SKIP][98] ([i915#1397])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-dg2: NOTRUN -> [SKIP][99] ([fdo#109506])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#1397])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-2/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][101] -> [SKIP][102] ([i915#1397])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-glk: NOTRUN -> [SKIP][103] ([fdo#109271]) +11 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-glk6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#1397]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-4/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#1397])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
- shard-mtlp: NOTRUN -> [SKIP][106] ([fdo#109293])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][107] ([i915#8346])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-6/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#8925]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#8925])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-1/igt@i915_pm_rps@thresholds-idle@gt0.html
* {igt@i915_query@query-l3-bank-count} (NEW):
- shard-apl: NOTRUN -> [SKIP][110] ([fdo#109271]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-apl2/igt@i915_query@query-l3-bank-count.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-mtlp: NOTRUN -> [SKIP][111] ([fdo#109303])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-5/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-mtlp: NOTRUN -> [SKIP][112] ([fdo#109302])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-6/igt@i915_query@query-topology-unsupported.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][113] ([i915#9311])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-1/igt@i915_selftest@mock@memory_region.html
- shard-rkl: NOTRUN -> [DMESG-WARN][114] ([i915#9311])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-7/igt@i915_selftest@mock@memory_region.html
- shard-mtlp: NOTRUN -> [DMESG-WARN][115] ([i915#9311])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-3/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][116] ([i915#7443])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-9/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-untiled:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4077]) +6 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-11/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@sysfs-reader:
- shard-mtlp: [PASS][118] -> [ABORT][119] ([i915#9262])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-mtlp-8/igt@i915_suspend@sysfs-reader.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-7/igt@i915_suspend@sysfs-reader.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#4212]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#4212])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#5190])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#3826])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][124] ([i915#8247]) +3 other tests fail
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-5/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][125] ([i915#8247]) +3 other tests fail
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-17/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#404])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#1769] / [i915#3555])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#5286]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][129] ([fdo#111614]) +8 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][130] ([fdo#111614])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#5286])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-10/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#5286])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [FAIL][133] ([i915#5138])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538] / [i915#5286])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-tglu: NOTRUN -> [SKIP][135] ([fdo#111615] / [i915#5286])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#3638])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-17/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
- shard-tglu: NOTRUN -> [SKIP][137] ([fdo#111614])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-4/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6187])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [PASS][139] -> [FAIL][140] ([i915#3743]) +1 other test fail
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [FAIL][141] ([i915#3743])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#5190]) +13 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][143] ([fdo#111615]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-17/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][145] ([fdo#111615]) +17 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5190]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#2705]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-4/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3886] / [i915#5354] / [i915#6095]) +19 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#5354] / [i915#6095]) +4 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#5354] / [i915#6095]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-15/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#3734] / [i915#5354] / [i915#6095]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-1/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-15/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#5354] / [i915#6095]) +53 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-yf_tiled_ccs:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-15/igt@kms_ccs@pipe-b-missing-ccs-buffer-yf_tiled_ccs.html
- shard-tglu: NOTRUN -> [SKIP][155] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-10/igt@kms_ccs@pipe-b-missing-ccs-buffer-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-2/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][157] ([fdo#109271] / [i915#3886])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-glk3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#3689] / [i915#3886] / [i915#5354]) +8 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#3689] / [i915#5354] / [i915#6095])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-8/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#5354]) +9 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-4/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#5354] / [i915#6095]) +8 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-6/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#3689] / [i915#5354]) +15 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-11/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
* igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#4087]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-7/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-mtlp: NOTRUN -> [SKIP][164] ([fdo#111827]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-8/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-tglu: NOTRUN -> [SKIP][165] ([fdo#111827])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-6/igt@kms_chamelium_color@ctm-limited-range.html
- shard-dg1: NOTRUN -> [SKIP][166] ([fdo#111827])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-19/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][167] ([fdo#111827]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-7/igt@kms_chamelium_color@ctm-negative.html
- shard-rkl: NOTRUN -> [SKIP][168] ([fdo#111827])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-2/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#7828]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-3/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#7828]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#7828]) +4 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#7828])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#7828]) +11 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#3555]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-1/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3299])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-8/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#3116] / [i915#3299])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-3/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#6944]) +2 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-6/igt@kms_content_protection@lic.html
* igt@kms_content_protection@mei_interface:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#7118]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-5/igt@kms_content_protection@mei_interface.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3359])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#3359])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#3555]) +6 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#3359]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8814]) +4 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#3359])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-512x170.html
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#3359])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-suspend@pipe-b-vga-1:
- shard-snb: NOTRUN -> [DMESG-WARN][186] ([i915#8841]) +2 other tests dmesg-warn
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-snb6/igt@kms_cursor_crc@cursor-suspend@pipe-b-vga-1.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][187] ([fdo#109274] / [i915#5354]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-11/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][188] ([fdo#111767] / [i915#3546])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#4213]) +3 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-tglu: NOTRUN -> [SKIP][190] ([fdo#109274])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#4103] / [i915#4213])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#4103])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#8588])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-3/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-basic:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-16/igt@kms_dsc@dsc-basic.html
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#3840])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-3/igt@kms_dsc@dsc-basic.html
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#3840] / [i915#9159])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@kms_dsc@dsc-basic.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-mtlp: NOTRUN -> [FAIL][197] ([fdo#103375])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#3469])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-3/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][199] ([fdo#109274]) +7 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-3/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-busy-flip:
- shard-rkl: NOTRUN -> [SKIP][200] ([fdo#111825]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-6/igt@kms_flip@2x-busy-flip.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][201] ([fdo#109274] / [i915#3637]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-10/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111767] / [fdo#111825])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][203] ([fdo#111767] / [i915#3637]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#3637]) +11 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][205] ([fdo#111825]) +8 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-12/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#8381]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#2672]) +7 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#2672])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#2672])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-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][210] ([i915#2672] / [i915#3555]) +2 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#2587] / [i915#2672]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#2587] / [i915#2672]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: NOTRUN -> [SKIP][213] ([fdo#109285])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#5274])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#8708]) +17 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#8708]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#5354]) +42 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
- shard-tglu: NOTRUN -> [SKIP][218] ([fdo#109280]) +7 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][219] ([fdo#111825] / [i915#1825]) +14 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#5460])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#3458]) +12 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#1825]) +70 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#3023]) +7 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][224] ([fdo#110189]) +6 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#8708]) +11 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8228])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-18/igt@kms_hdr@static-toggle-dpms.html
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#6403]) +3 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][230] ([fdo#109289]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-10/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][231] ([fdo#109289]) +6 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-3/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1:
- shard-apl: [PASS][232] -> [INCOMPLETE][233] ([i915#180] / [i915#9392])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-apl4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#8806])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3546]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#6953])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#6953])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-4/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#5176]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#5176]) +7 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#5176]) +11 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-upscale-with-modifiers-20x20@pipe-b-hdmi-a-1:
- shard-snb: NOTRUN -> [SKIP][241] ([fdo#109271]) +35 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-snb1/igt@kms_plane_scaling@plane-upscale-with-modifiers-20x20@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#5235]) +23 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#5235]) +15 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-5/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-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#5235]) +7 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#5235]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#5235]) +11 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#6524] / [i915#6805])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-2/igt@kms_prime@basic-crc-hybrid.html
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#6524])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#6524])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][250] ([fdo#109271] / [i915#658])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-glk6/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#658]) +2 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-11/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#658])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#4348]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#1072])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-14/igt@kms_psr@cursor_plane_move.html
* igt@kms_psr@sprite_mmap_cpu:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#1072]) +5 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-11/igt@kms_psr@sprite_mmap_cpu.html
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#1072]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-4/igt@kms_psr@sprite_mmap_cpu.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#5461] / [i915#658])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#5289])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#4235]) +3 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-7/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#4235]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#3555])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8823])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8809])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][264] -> [FAIL][265] ([IGT#2])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-dg2-11/igt@kms_sysfs_edid_timing.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-2/igt@kms_sysfs_edid_timing.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-b:
- shard-rkl: [PASS][266] -> [FAIL][267] ([i915#9196])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-c:
- shard-mtlp: NOTRUN -> [FAIL][268] ([i915#9196])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-d:
- shard-tglu: [PASS][269] -> [FAIL][270] ([i915#9196])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#4070] / [i915#6768])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-6/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-dg2: [PASS][272] -> [FAIL][273] ([fdo#103375])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-dg2-3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-5/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@kms_vblank@pipe-d-query-idle-hang:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#4070] / [i915#533] / [i915#6768])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-6/igt@kms_vblank@pipe-d-query-idle-hang.html
* igt@kms_vrr@flipline:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8808]) +2 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-6/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-fb-id:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#2437]) +2 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-3/igt@kms_writeback@writeback-fb-id.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#7387])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-5/igt@perf@global-sseu-config-invalid.html
* igt@perf@mi-rpc:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#2434])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-3/igt@perf@mi-rpc.html
* igt@perf_pmu@cpu-hotplug:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#8850])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-7/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@rc6-suspend:
- shard-mtlp: NOTRUN -> [ABORT][280] ([i915#9262]) +7 other tests abort
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-5/igt@perf_pmu@rc6-suspend.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [INCOMPLETE][281] ([i915#5493])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-fence-blt:
- shard-mtlp: NOTRUN -> [FAIL][282] ([i915#8445])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-2/igt@prime_vgem@basic-fence-blt.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#3708] / [i915#4077])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-4/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#3708])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-3/igt@prime_vgem@basic-read.html
* igt@runner@aborted:
- shard-snb: NOTRUN -> [FAIL][285] ([i915#7812] / [i915#8848])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-snb7/igt@runner@aborted.html
* igt@sysfs_timeslice_duration@timeout@vecs0:
- shard-mtlp: NOTRUN -> [TIMEOUT][286] ([i915#6950])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-7/igt@sysfs_timeslice_duration@timeout@vecs0.html
* igt@tools_test@sysfs_l3_parity:
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#4818])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-5/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_mmap@mmap-bo:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#2575]) +28 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-3/igt@v3d/v3d_mmap@mmap-bo.html
* igt@v3d/v3d_submit_csd@bad-flag:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#2575]) +13 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-7/igt@v3d/v3d_submit_csd@bad-flag.html
* igt@v3d/v3d_submit_csd@bad-multisync-pad:
- shard-rkl: NOTRUN -> [SKIP][290] ([fdo#109315]) +5 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-1/igt@v3d/v3d_submit_csd@bad-multisync-pad.html
* igt@v3d/v3d_wait_bo@bad-bo:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#2575]) +2 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-17/igt@v3d/v3d_wait_bo@bad-bo.html
- shard-tglu: NOTRUN -> [SKIP][292] ([fdo#109315] / [i915#2575]) +2 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-4/igt@v3d/v3d_wait_bo@bad-bo.html
* igt@vc4/vc4_label_bo@set-bad-name:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#7711])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-4/igt@vc4/vc4_label_bo@set-bad-name.html
* igt@vc4/vc4_purgeable_bo@access-purged-bo-mem:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#7711]) +14 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-1/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html
* igt@vc4/vc4_wait_bo@unused-bo-0ns:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#7711])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-15/igt@vc4/vc4_wait_bo@unused-bo-0ns.html
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#2575]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-10/igt@vc4/vc4_wait_bo@unused-bo-0ns.html
* igt@vc4/vc4_wait_bo@unused-bo-1ns:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#7711]) +4 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-5/igt@vc4/vc4_wait_bo@unused-bo-1ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][298] ([i915#7742]) -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][300] ([i915#6268]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-6/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-dg2: [INCOMPLETE][302] ([i915#9162]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@bcs0.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-6/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_exec_capture@pi@vcs1:
- shard-mtlp: [FAIL][304] ([i915#4475] / [i915#7765]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-mtlp-8/igt@gem_exec_capture@pi@vcs1.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-4/igt@gem_exec_capture@pi@vcs1.html
* igt@gem_exec_capture@pi@vecs0:
- shard-mtlp: [DMESG-WARN][306] ([i915#5591]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-mtlp-8/igt@gem_exec_capture@pi@vecs0.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-4/igt@gem_exec_capture@pi@vecs0.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-rkl: [FAIL][308] ([i915#2842]) -> [PASS][309]
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-rkl-2/igt@gem_exec_fair@basic-none-share@rcs0.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-7/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][310] ([i915#2842]) -> [PASS][311]
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-dg1: [FAIL][312] ([i915#3591]) -> [PASS][313]
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@i915_pm_rpm@i2c:
- shard-dg2: [FAIL][314] ([i915#8717]) -> [PASS][315]
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-dg2-2/igt@i915_pm_rpm@i2c.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-7/igt@i915_pm_rpm@i2c.html
* igt@i915_pm_rpm@system-suspend-modeset:
- shard-mtlp: [ABORT][316] ([i915#9262]) -> [PASS][317] +1 other test pass
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-mtlp-1/igt@i915_pm_rpm@system-suspend-modeset.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-mtlp-4/igt@i915_pm_rpm@system-suspend-modeset.html
* igt@i915_selftest@live@gt_heartbeat:
- shard-apl: [DMESG-FAIL][318] ([i915#5334]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-apl4/igt@i915_selftest@live@gt_heartbeat.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [FAIL][320] ([fdo#103375]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [FAIL][322] ([i915#3743]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][324] ([i915#2346]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
- shard-dg2: [FAIL][326] ([i915#6880]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-a:
- shard-rkl: [FAIL][328] ([i915#9196]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
- shard-dg1: [FAIL][330] ([i915#9196]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-dg1-19/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-12/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-b:
- shard-apl: [FAIL][332] ([i915#9196]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-apl6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-apl2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
* igt@perf@enable-disable@0-rcs0:
- shard-dg2: [FAIL][334] ([i915#8724]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-2/igt@perf@enable-disable@0-rcs0.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-dg2: [FAIL][336] ([i915#5234]) -> [PASS][337] +1 other test pass
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-dg2-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg2-6/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
#### Warnings ####
* igt@kms_content_protection@mei_interface:
- shard-dg1: [SKIP][338] ([i915#7116]) -> [SKIP][339] ([fdo#109300])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-dg1-19/igt@kms_content_protection@mei_interface.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-18/igt@kms_content_protection@mei_interface.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][340] ([fdo#110189] / [i915#3955]) -> [SKIP][341] ([i915#3955]) +1 other test skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_psr@primary_mmap_gtt:
- shard-dg1: [SKIP][342] ([i915#1072] / [i915#4078]) -> [SKIP][343] ([i915#1072])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13677/shard-dg1-16/igt@kms_psr@primary_mmap_gtt.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/shard-dg1-15/igt@kms_psr@primary_mmap_gtt.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#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#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#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#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[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#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[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#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6950]: https://gitlab.freedesktop.org/drm/intel/issues/6950
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069
[i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
[i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7765]: https://gitlab.freedesktop.org/drm/intel/issues/7765
[i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717
[i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8848]: https://gitlab.freedesktop.org/drm/intel/issues/8848
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9162]: https://gitlab.freedesktop.org/drm/intel/issues/9162
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[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
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7502 -> IGTPW_9867
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13677: d69432c1f5832c5097d4629e61cabd8bdfc027b2 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9867: 9867
IGT_7502: ac56ba97248b33668fbe771882360bd7b274cc9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9867/index.html
[-- Attachment #2: Type: text/html, Size: 112363 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4 1/2] lib/i915: Add DRM_I915_QUERY_L3BANK_COUNT query
2023-09-25 16:48 ` [igt-dev] [PATCH i-g-t v4 1/2] lib/i915: Add DRM_I915_QUERY_L3BANK_COUNT query Jonathan Cavitt
@ 2023-10-05 22:11 ` Kamil Konieczny
0 siblings, 0 replies; 8+ messages in thread
From: Kamil Konieczny @ 2023-10-05 22:11 UTC (permalink / raw)
To: igt-dev; +Cc: Jonathan Cavitt
Hi Jonathan,
On 2023-09-25 at 09:48:51 -0700, Jonathan Cavitt wrote:
> Add local specifications for DRM_I915_QUERY_L3BANK_COUNT query.
>
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> lib/i915/i915_drm_local.h | 13 +++++++++++++
> 1 file changed, 13 insertions(+)
>
> diff --git a/lib/i915/i915_drm_local.h b/lib/i915/i915_drm_local.h
> index 0f47578c63..0127eef540 100644
> --- a/lib/i915/i915_drm_local.h
> +++ b/lib/i915/i915_drm_local.h
> @@ -22,6 +22,19 @@ extern "C" {
> #define I915_ENGINE_CLASS_COMPUTE 4
>
> #define DRM_I915_QUERY_GEOMETRY_SUBSLICES 6
> +#define DRM_I915_QUERY_L3BANK_COUNT 7
> +
> +/**
> + * DOC: L3 Bank Count Query uAPI
> + *
> + * The L3 bank count query called through the query id
> + * DRM_I915_QUERY_L3BANK_COUNT and returns the count of
> + * the available L3 Banks on a given engine.
> + *
> + * The count itself is an integer, and since no additional
> + * data is returned, the count is returned as such.
> + */
> +
>
> #define DRM_I915_PERF_PROP_OA_ENGINE_CLASS 9
> #define DRM_I915_PERF_PROP_OA_ENGINE_INSTANCE 10
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4 2/2] tests/i915_query.c: Add query-l3-bank-count subtest
2023-09-25 16:48 ` [igt-dev] [PATCH i-g-t v4 2/2] tests/i915_query.c: Add query-l3-bank-count subtest Jonathan Cavitt
@ 2023-10-05 22:21 ` Kamil Konieczny
0 siblings, 0 replies; 8+ messages in thread
From: Kamil Konieczny @ 2023-10-05 22:21 UTC (permalink / raw)
To: igt-dev; +Cc: Jonathan Cavitt
Hi Jonathan,
just spotted this in subject:
[PATCH i-g-t v4 2/2] tests/i915_query.c: Add query-l3-bank-count subtest
------------------------------------ ^^
s/.c//
On 2023-09-25 at 09:48:52 -0700, Jonathan Cavitt wrote:
> From: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
>
> Add a subtest to query L3 Bank count for each engine.
>
> Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> ---
> tests/intel/i915_query.c | 135 +++++++++++++++++++++++++++++++++++++++
> 1 file changed, 135 insertions(+)
>
> diff --git a/tests/intel/i915_query.c b/tests/intel/i915_query.c
> index f97379b83b..c0ba31bfe5 100644
> --- a/tests/intel/i915_query.c
> +++ b/tests/intel/i915_query.c
> @@ -25,6 +25,7 @@
> #include "intel_hwconfig_types.h"
> #include "i915/gem.h"
> #include "i915/gem_create.h"
> +#include "igt_sysfs.h"
>
> #include <limits.h>
> /**
> @@ -121,6 +122,18 @@
> * SUBTEST: test-query-geometry-subslices
> * Description: Test DRM_I915_QUERY_GEOMETRY_SUBSLICES query
> * Feature: gem_core
> + *
> + * SUBTEST: query-l3-bank-count
> + * Description: Test DRM_I915_QUERY_L3BANK_COUNT query
> + * Feature: gem_core
> + *
> + * SUBTEST: query-l3-bank-count-invalid
> + * Description: Test DRM_I915_QUERY_L3BANK_COUNT query fails when an invalid engine is passed
> + * Feature: gem_core
> + *
> + * SUBTEST: query-l3-bank-count-support
> + * Description: Test DRM_I915_QUERY_L3BANK_COUNT query fails when it is not supported
> + * Feature: gem_core
> */
>
> IGT_TEST_DESCRIPTION("Testing the i915 query uAPI.");
> @@ -1474,6 +1487,107 @@ static void query_parse_and_validate_hwconfig_table(int i915)
> free(data);
> }
>
> +static int __get_l3_count(int i915, const struct i915_engine_class_instance engine, uint64_t *out)
> +{
> + struct drm_i915_query_item item;
> +
> + memset(&item, 0, sizeof(item));
> + item.query_id = DRM_I915_QUERY_L3BANK_COUNT;
> + item.flags = ((engine.engine_instance << 8) | engine.engine_class);
> + item.data_ptr = to_user_pointer(out);
> +
> + i915_query_items(i915, &item, 1);
> +
> + return item.length < 0 ? item.length : 0;
> +}
> +
> +static bool query_l3_count_supported(int i915)
> +{
> + struct i915_engine_class_instance *engines;
> + unsigned int engines_count;
> + uint32_t class;
> + uint64_t val;
> + int ret;
> +
> + class = 0xFF;
> + engines = gem_list_engines(i915, 1u << 0, class, &engines_count);
> + if (!engines) {
> + igt_warn("Failed to get the engines list per tile\n");
> + return false;
> + }
> +
> + ret = __get_l3_count(i915, engines[0], &val);
> + free(engines);
> +
> + return ret == 0;
> +}
> +
> +static void test_l3_count_support(int i915)
> +{
> + int devid = intel_get_drm_devid(i915);
> + bool supported = intel_graphics_ver(devid) >= IP_VER(12, 0);
> +
> + igt_assert(supported == query_l3_count_supported(i915));
> +}
> +
> +static void test_l3_count_invalid(int i915)
> +{
> + struct i915_engine_class_instance engine = {
> + .engine_class = 0xDEAD,
> + .engine_instance = 0xBEEF
> + };
> + uint64_t val;
> +
> + igt_assert_eq(__get_l3_count(i915, engine, &val), -EINVAL);
> +}
> +
> +static void test_l3_count(int i915)
> +{
> + struct i915_engine_class_instance *engines;
> + uint32_t class;
> + unsigned int engines_count;
> + uint64_t expected_bank_count;
> + int num_gts;
> +
> + class = 0xFF; // checking for all 8 classes
> + expected_bank_count = 0;
> +
> + num_gts = igt_sysfs_get_num_gt(i915);
> +
> + for (int gt = 0; gt < num_gts; gt++) {
> + engines = gem_list_engines(i915, 1u << gt, class, &engines_count);
> +
> + igt_fail_on_f(!engines, "Failed to get the engines list per tile");
> +
> + for (int i = 0 ; i < engines_count ; i++) {
> + uint64_t l3_count;
> +
> + igt_assert_eq(__get_l3_count(i915, engines[i], &l3_count), 0);
> + igt_debug("class=%u instance=%u l3 bank count=%lu\n",
> + engines[i].engine_class,
> + engines[i].engine_instance,
> + l3_count);
> +
> + if (IS_METEORLAKE(i915)) // ARROWLAKE (ARL) to be added
> + igt_assert((l3_count%2) == 0);
> + else if (IS_PONTEVECCHIO(i915))
> + igt_assert((l3_count%4) == 0);
> + else if (IS_DG2(i915))
> + igt_assert((l3_count%8) == 0);
imho add here:
else
unchecked = true;
> +
> + if (i == 0) {
> + expected_bank_count = l3_count;
> + continue;
> + }
> +
> + igt_assert_eq(l3_count, expected_bank_count);
> +
> + }
> +
> + free(engines);
> + }
and here igt_warn_on(unchecked);
> +}
> +
> igt_main
> {
> int fd = -1;
> @@ -1571,6 +1685,27 @@ igt_main
> igt_subtest("hwconfig_table")
> query_parse_and_validate_hwconfig_table(fd);
>
> + igt_describe("Test to check DRM_I915_QUERY_L3BANK_COUNT support.");
> + igt_subtest("query-l3-bank-count-support") {
Add require here (see below).
> + test_l3_count_support(fd);
> + }
> +
> + igt_subtest_group {
> + igt_fixture {
> + igt_require(query_l3_count_supported(fd));
It is a little missplaced here, as other tests on older hardware
will be spilling logs with this. It is better to place it in
few places before actual test, maybe with the help of macro:
#define REQUIRE_L3_COUNT igt_require(query_l3_count_supported(fd));
So imho move these tests outside of subtest_group and delete fixture.
> + }
> +
> + igt_describe("Basic test to query l3 bank count");
> + igt_subtest("query-l3-bank-count") {
Add REQUIRE_L3_COUNT or copy require.
> + test_l3_count(fd);
> + }
> +
> + igt_describe("Negative test for DRM_I915_QUERY_L3BANK_COUNT");
> + igt_subtest("query-l3-bank-count-invalid") {
Add REQUIRE_L3_COUNT or copy require.
Rest looks ok.
Regards,
Kamil
> + test_l3_count_invalid(fd);
> + }
> + }
> +
> igt_fixture {
> drm_close_driver(fd);
> }
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-10-05 22:21 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-25 16:48 [igt-dev] [PATCH i-g-t v4 0/2] intel/i915_query: Add query-l3-bank-count subtest Jonathan Cavitt
2023-09-25 16:48 ` [igt-dev] [PATCH i-g-t v4 1/2] lib/i915: Add DRM_I915_QUERY_L3BANK_COUNT query Jonathan Cavitt
2023-10-05 22:11 ` Kamil Konieczny
2023-09-25 16:48 ` [igt-dev] [PATCH i-g-t v4 2/2] tests/i915_query.c: Add query-l3-bank-count subtest Jonathan Cavitt
2023-10-05 22:21 ` Kamil Konieczny
2023-09-25 20:50 ` [igt-dev] ✓ CI.xeBAT: success for intel/i915_query: " Patchwork
2023-09-25 20:55 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
2023-09-26 1:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox