* [PATCH i-g-t v2 0/2] Add CMRR subtests
@ 2026-08-10 19:17 Naladala Ramanaidu
2026-08-10 19:17 ` [PATCH i-g-t v2 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing Naladala Ramanaidu
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Naladala Ramanaidu @ 2026-08-10 19:17 UTC (permalink / raw)
To: igt-dev
Cc: chaitanya.kumar.borah, mitulkumar.ajitkumar.golani,
Naladala Ramanaidu
Add a subtests to validate CMRR with video mode and fixed mode.
Naladala Ramanaidu (2):
lib/igt_vrr:Add VRR helper library for display refresh rate testing
tests/kms_vrr: add CMRR fixed and video mode subtests
lib/igt_vrr.c | 118 +++++++++++++++++++++++++++++
lib/igt_vrr.h | 46 ++++++++++++
lib/meson.build | 1 +
tests/kms_vrr.c | 194 ++++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 359 insertions(+)
create mode 100644 lib/igt_vrr.c
create mode 100644 lib/igt_vrr.h
--
2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t v2 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing
2026-08-10 19:17 [PATCH i-g-t v2 0/2] Add CMRR subtests Naladala Ramanaidu
@ 2026-08-10 19:17 ` Naladala Ramanaidu
2026-08-11 5:31 ` Golani, Mitulkumar Ajitkumar
2026-08-10 19:17 ` [PATCH i-g-t v2 2/2] tests/kms_vrr: add CMRR fixed and video mode subtests Naladala Ramanaidu
` (4 subsequent siblings)
5 siblings, 1 reply; 10+ messages in thread
From: Naladala Ramanaidu @ 2026-08-10 19:17 UTC (permalink / raw)
To: igt-dev
Cc: chaitanya.kumar.borah, mitulkumar.ajitkumar.golani,
Naladala Ramanaidu
Introduce a new helper library for Variable Refresh Rate (VRR).
Add helpers to validate targeted refresh-rate testing.
v2: Modify debugfs with helpers.
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
lib/igt_vrr.c | 118 ++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_vrr.h | 46 +++++++++++++++++++
lib/meson.build | 1 +
3 files changed, 165 insertions(+)
create mode 100644 lib/igt_vrr.c
create mode 100644 lib/igt_vrr.h
diff --git a/lib/igt_vrr.c b/lib/igt_vrr.c
new file mode 100644
index 000000000..09b008933
--- /dev/null
+++ b/lib/igt_vrr.c
@@ -0,0 +1,118 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#include <inttypes.h>
+
+#include "igt_vrr.h"
+#include "igt_sysfs.h"
+
+/**
+ * igt_target_rr_debugfs_write:
+ * @fd: DRM file descriptor.
+ * @crtc_index: Index of the CRTC.
+ * @vrefresh: Target refresh rate to program.
+ * @numerator: Numerator component of the target refresh rate fraction.
+ * @denominator: Denominator component of the target refresh rate fraction.
+ *
+ * Write the target refresh rate configuration to the per-CRTC
+ * VRR debugfs interface.
+ *
+ * Returns: None.
+ */
+void
+igt_target_rr_debugfs_write(int fd, int crtc_index,
+ uint32_t vrefresh,
+ uint32_t numerator,
+ uint32_t denominator)
+{
+ char buf[32];
+ uint32_t ret, dir;
+ uint64_t val;
+
+ val = vrefresh * numerator;
+
+ snprintf(buf, sizeof(buf), "%" PRIu64 "/%u",
+ val, denominator);
+
+ dir = igt_debugfs_crtc_dir(fd, crtc_index);
+ igt_require_fd(dir);
+
+ ret = igt_sysfs_write(dir, "intel_vrr_target_refresh_rate",
+ buf, sizeof(buf) - 1);
+ close(dir);
+ igt_assert_f(ret == (sizeof(buf) - 1), "debugfs_write failed");
+}
+
+/**
+ * igt_cmrr_debugfs_read:
+ * @fd: DRM file descriptor.
+ * @crtc_index: Index of the CRTC.
+ *
+ * Read the configured refresh rate from the per-CRTC VRR debugfs node.
+ *
+ * Return: None.
+ */
+void
+igt_target_rr_debugfs_read(int fd, int crtc_index)
+{
+ char buf[32];
+ uint32_t ret, dir;
+
+ dir = igt_debugfs_crtc_dir(fd, crtc_index);
+ igt_require_fd(dir);
+
+ ret = igt_sysfs_read(dir, "intel_vrr_target_refresh_rate",
+ buf, sizeof(buf) - 1);
+ igt_assert_f(ret >= 0,
+ "Failed to read intel_vrr_target_refresh_rate.\n");
+
+ buf[ret] = '\0';
+
+ igt_info("%s\n", buf);
+}
+
+/**
+ * igt_vrr_mode_line_refresh_hz:
+ * @mode: DRM display mode used for the calculation
+ *
+ * Compute the refresh rate directly from the mode timing parameters.
+ *
+ * Returns: Refresh rate in Hz as a floating-point value.
+ */
+double igt_vrr_mode_line_refresh_hz(const drmModeModeInfo *mode)
+{
+ return (double)mode->clock * 1000.0 / ((double)mode->htotal * (double)mode->vtotal);
+}
+
+/**
+ * igt_vrr_get_mode_with_video_timeing:
+ * @output: Display output containing connector mode list
+ * @fps: Requested integer refresh rate in Hz
+ * @matched_mode: Returned mode that matches @fps
+ *
+ * Find and return a connector mode that matches the requested
+ * video timing refresh rate in Hz.
+ *
+ * Returns: true when a mode is found, false otherwise
+ */
+
+bool igt_vrr_get_mode_with_video_timeing(igt_output_t *output,
+ uint32_t fps,
+ drmModeModeInfo *matched_mode)
+{
+ drmModeConnectorPtr connector;
+
+ connector = output->config.connector;
+ if (!connector)
+ return false;
+
+ for (int i = 0; i < connector->count_modes; i++) {
+ if (connector->modes[i].vrefresh == fps) {
+ *matched_mode = connector->modes[i];
+ return true;
+ }
+ }
+ return false;
+}
diff --git a/lib/igt_vrr.h b/lib/igt_vrr.h
new file mode 100644
index 000000000..abea32a07
--- /dev/null
+++ b/lib/igt_vrr.h
@@ -0,0 +1,46 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#ifndef IGT_VRR_H
+#define IGT_VRR_H
+
+#include <stdbool.h>
+#include <stdint.h>
+#include "igt.h"
+#include "igt_kms.h"
+
+#define CMRR_NUMERATOR 1000ULL
+#define CMRR_DENOMINATOR 1000ULL
+#define CMRR_VIDEO_MODE_DENOMINATOR 1001ULL
+#define TARGET_RR_SAMP_COUNT 100
+
+enum {
+ CMRR_VIDEO_MODE,
+ CMRR_NON_VIDEO_MODE,
+ CMRR_DISABLE,
+};
+
+const uint32_t igt_vrr_standard_video_timing_fps[] = {
+ 24, 25, 30, 48, 50, 60, 75, 90, 96, 100, 120, 144, 165, 180, 200, 240,
+};
+
+const uint32_t igt_vrr_standard_video_timing_fps_count =
+ ARRAY_SIZE(igt_vrr_standard_video_timing_fps);
+
+void
+igt_target_rr_debugfs_write(int fd, int crtc_index,
+ uint32_t vrefresh,
+ uint32_t numerator,
+ uint32_t denominator);
+void
+igt_target_rr_debugfs_read(int fd, int crtc_index);
+
+double igt_vrr_mode_line_refresh_hz(const drmModeModeInfo *mode);
+
+bool igt_vrr_get_mode_with_video_timeing(igt_output_t *output,
+ uint32_t fps,
+ drmModeModeInfo *matched_mode);
+
+#endif
diff --git a/lib/meson.build b/lib/meson.build
index 3001b473e..8675bd4a6 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -22,6 +22,7 @@ lib_sources = [
'igt_configfs.c',
'igt_facts.c',
'igt_crc.c',
+ 'igt_vrr.c',
'igt_debugfs.c',
'igt_device.c',
'igt_device_scan.c',
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t v2 2/2] tests/kms_vrr: add CMRR fixed and video mode subtests
2026-08-10 19:17 [PATCH i-g-t v2 0/2] Add CMRR subtests Naladala Ramanaidu
2026-08-10 19:17 ` [PATCH i-g-t v2 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing Naladala Ramanaidu
@ 2026-08-10 19:17 ` Naladala Ramanaidu
2026-08-11 5:31 ` Golani, Mitulkumar Ajitkumar
2026-08-10 20:13 ` ✗ i915.CI.BAT: failure for Add CMRR subtests (rev2) Patchwork
` (3 subsequent siblings)
5 siblings, 1 reply; 10+ messages in thread
From: Naladala Ramanaidu @ 2026-08-10 19:17 UTC (permalink / raw)
To: igt-dev
Cc: chaitanya.kumar.borah, mitulkumar.ajitkumar.golani,
Naladala Ramanaidu
Add test coverage to validate Content Match Refresh Rate (CMRR)
behavior across both fixed and video timing display modes.
This introduces a shared helper library to support refresh-rate
mode selection and parsing, along with two new test cases covering
fixed-mode and video-mode scenarios.
The new tests measure actual display refresh timing during CMRR
operation and compare it against the expected target rate to
verify correctness. Video mode coverage validates behavior across
standard video timing rates, while fixed mode coverage targets
display modes that fall outside the standard video timing set.
Each test cycles through the relevant refresh configurations,
applying and resetting the appropriate settings between
measurement passes to ensure consistent and isolated test results.
v2: Fix test issue.
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/kms_vrr.c | 194 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 194 insertions(+)
diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
index 27f18e8d0..102998498 100644
--- a/tests/kms_vrr.c
+++ b/tests/kms_vrr.c
@@ -32,6 +32,7 @@
#include "igt_pm.h"
#include "igt_psr.h"
#include "i915/intel_drrs.h"
+#include "igt_vrr.h"
#include "sw_sync.h"
#include <fcntl.h>
#include <signal.h>
@@ -80,6 +81,12 @@
*
* SUBTEST: lobf-dc3co
* Description: Test DC3CO entry during LOBF.
+ *
+ * SUBTEST: cmrr-fixed-mode
+ * Description:
+ *
+ * SUBTEST: cmrr-video-mode
+ * Description:
*/
#define NSECS_PER_SEC (1000000000ull)
@@ -103,6 +110,8 @@ enum {
TEST_LINK_OFF = 1 << 10,
TEST_NEGATIVE = 1 << 11,
TEST_FORCE_RR = 1 << 12,
+ TEST_CMRR_FIXED_MODE = 1 << 13,
+ TEST_CMRR_VIDEO_MODE = 1 << 14,
};
enum {
@@ -580,6 +589,177 @@ flip_and_measure(data_t *data, igt_output_t *output,
return 0;
}
+static
+uint64_t wait_next_vblank_ts_ns(data_t *data, igt_crtc_t *crtc)
+{
+ union drm_wait_vblank vbl = {};
+
+ vbl.request.type = DRM_VBLANK_RELATIVE | igt_crtc_get_vbl_flag(crtc);
+ vbl.request.sequence = 1;
+ do_or_die(igt_ioctl(data->drm_fd, DRM_IOCTL_WAIT_VBLANK, &vbl));
+
+ return vbl.reply.tval_sec * NSECS_PER_SEC + vbl.reply.tval_usec * 1000ull;
+}
+
+static void
+flip_and_measure_target_rr(data_t *data, igt_crtc_t *crtc,
+ uint32_t vrefresh, uint32_t cmrr_mode)
+{
+ uint32_t i;
+ bool front = false;
+ uint64_t last_vblank_ns, vblank_ns;
+ uint32_t err_frames = 0;
+ uint64_t frame_times_ns[TARGET_RR_SAMP_COUNT];
+ uint64_t exp_time_ns;
+ uint64_t total_frame_time_ns = 0;
+ uint64_t avg_frame_time_ns;
+ float avg_refresh_rate;
+ float expected_rr;
+
+ exp_time_ns = igt_kms_frame_time_from_vrefresh(vrefresh);
+
+ do_flip(data, &data->fb[0]);
+ (void)get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
+ last_vblank_ns = wait_next_vblank_ts_ns(data, crtc);
+
+ for (i = 0; i < TARGET_RR_SAMP_COUNT; i++) {
+ front = !front;
+
+ do_flip(data, front ? &data->fb[1] : &data->fb[0]);
+ vblank_ns = wait_next_vblank_ts_ns(data, crtc);
+ (void)get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
+
+ frame_times_ns[i] = vblank_ns - last_vblank_ns;
+
+ if (frame_times_ns[i] > (exp_time_ns + (exp_time_ns / 2))) {
+ err_frames++;
+ last_vblank_ns = vblank_ns;
+ continue;
+ }
+
+ last_vblank_ns = vblank_ns;
+ total_frame_time_ns += frame_times_ns[i];
+ }
+
+ avg_frame_time_ns = total_frame_time_ns / (TARGET_RR_SAMP_COUNT - err_frames);
+ avg_refresh_rate = (float)NSECS_PER_SEC / (float)avg_frame_time_ns;
+
+ if (cmrr_mode == CMRR_VIDEO_MODE) {
+ expected_rr = (double)(vrefresh * CMRR_NUMERATOR) /
+ (double)CMRR_VIDEO_MODE_DENOMINATOR;
+ igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02,
+ "CMRR refresh rate mismatch: "
+ "measured avg_rr = %.3f Hz, "
+ "expected_rr = %.3f Hz\n",
+ avg_refresh_rate, expected_rr);
+ }
+
+ if (cmrr_mode == CMRR_NON_VIDEO_MODE) {
+ expected_rr = (double)(vrefresh * CMRR_NUMERATOR) /
+ (double)CMRR_DENOMINATOR;
+ igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02,
+ "CMRR refresh rate mismatch: "
+ "measured avg_rr = %.3f Hz, "
+ "expected_rr = %.3f Hz\n",
+ avg_refresh_rate, expected_rr);
+ }
+
+ if (cmrr_mode == CMRR_DISABLE) {
+ expected_rr = (float)vrefresh;
+ igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02,
+ "CMRR refresh rate mismatch: "
+ "measured avg_rr = %.3f Hz, "
+ "expected_rr = %.3f Hz\n",
+ avg_refresh_rate, expected_rr);
+ }
+
+ igt_info("Average RR (Hz): %.2f , Expected RR (Hz): %.2f, error frames = %d\n",
+ avg_refresh_rate, expected_rr, err_frames);
+}
+
+static
+void test_cmrr(data_t *data, igt_crtc_t *crtc,
+ igt_output_t *output, uint32_t flags)
+{
+ uint32_t found;
+ double rr_from_mode;
+ drmModeModeInfo mode;
+ drmModeConnectorPtr connector;
+ int j;
+
+ prepare_test(data, output, crtc);
+ set_vrr_on_crtc(data, crtc, true, false);
+
+ if (flags == TEST_CMRR_VIDEO_MODE) {
+ for (j = 0; j < igt_vrr_standard_video_timing_fps_count; j++) {
+ found = igt_vrr_get_mode_with_video_timeing(output,
+ igt_vrr_standard_video_timing_fps[j],
+ &mode);
+ if (found) {
+ rr_from_mode = igt_vrr_mode_line_refresh_hz(&mode);
+ igt_output_override_mode(output, &mode);
+ igt_info("Override mode:");
+ kmstest_dump_mode(&mode);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+ igt_target_rr_debugfs_write(data->drm_fd,
+ crtc->crtc_index,
+ mode.vrefresh,
+ CMRR_NUMERATOR,
+ CMRR_VIDEO_MODE_DENOMINATOR);
+
+ flip_and_measure_target_rr(data, crtc,
+ mode.vrefresh,
+ CMRR_VIDEO_MODE);
+
+ igt_target_rr_debugfs_write(data->drm_fd,
+ crtc->crtc_index,
+ mode.vrefresh,
+ 0, 0);
+
+ flip_and_measure_target_rr(data, crtc,
+ rr_from_mode,
+ CMRR_DISABLE);
+ }
+ }
+ }
+
+ if (flags == TEST_CMRR_FIXED_MODE) {
+ found = 0;
+ connector = output->config.connector;
+ for (j = 0; j < connector->count_modes; j++) {
+ mode = connector->modes[j];
+ rr_from_mode = igt_vrr_mode_line_refresh_hz(&mode);
+
+ if (rr_from_mode - mode.vrefresh > 0.04) {
+ found = 1;
+ igt_output_override_mode(output, &mode);
+ igt_info("Override mode:");
+ kmstest_dump_mode(&mode);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+ igt_target_rr_debugfs_write(data->drm_fd,
+ crtc->crtc_index,
+ mode.vrefresh,
+ CMRR_NUMERATOR,
+ CMRR_DENOMINATOR);
+
+ flip_and_measure_target_rr(data, crtc,
+ mode.vrefresh,
+ CMRR_NON_VIDEO_MODE);
+
+ igt_target_rr_debugfs_write(data->drm_fd,
+ crtc->crtc_index,
+ mode.vrefresh,
+ 0, 0);
+
+ flip_and_measure_target_rr(data, crtc,
+ rr_from_mode,
+ CMRR_DISABLE);
+ }
+ }
+ igt_require_f(found, "No non-video-timing mode found.\n");
+ }
+}
+
/* Basic VRR flip functionality test - enable, measure, disable, measure */
static void
test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
@@ -1147,6 +1327,20 @@ int igt_main_args("drs:", long_opts, help_str, opt_handler, &data)
}
}
+ igt_subtest_group() {
+ igt_fixture()
+ igt_require_intel(data.drm_fd);
+
+ igt_describe("Test to validate CMRR in fixed mode.");
+ igt_subtest_with_dynamic("cmrr-fixed-mode") {
+ run_vrr_test(&data, test_cmrr, TEST_CMRR_FIXED_MODE);
+ }
+
+ igt_describe("Test to validate CMRR in video mode.");
+ igt_subtest_with_dynamic("cmrr-video-mode") {
+ run_vrr_test(&data, test_cmrr, TEST_CMRR_VIDEO_MODE);
+ }
+ }
igt_fixture() {
close(data.debugfs_fd);
igt_display_fini(&data.display);
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✗ i915.CI.BAT: failure for Add CMRR subtests (rev2)
2026-08-10 19:17 [PATCH i-g-t v2 0/2] Add CMRR subtests Naladala Ramanaidu
2026-08-10 19:17 ` [PATCH i-g-t v2 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing Naladala Ramanaidu
2026-08-10 19:17 ` [PATCH i-g-t v2 2/2] tests/kms_vrr: add CMRR fixed and video mode subtests Naladala Ramanaidu
@ 2026-08-10 20:13 ` Patchwork
2026-08-10 23:35 ` ✓ Xe.CI.FULL: success " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-08-10 20:13 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2954 bytes --]
== Series Details ==
Series: Add CMRR subtests (rev2)
URL : https://patchwork.freedesktop.org/series/171615/
State : failure
== Summary ==
CI Bug Log - changes from IGT_9049 -> IGTPW_15651
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15651 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15651, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_15651/index.html
Participating hosts (37 -> 35)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15651:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_fence@basic-await:
- bat-atsm-1: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9049/bat-atsm-1/igt@gem_exec_fence@basic-await.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/bat-atsm-1/igt@gem_exec_fence@basic-await.html
Known issues
------------
Here are the changes found in IGTPW_15651 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@ring_submission:
- fi-cfl-8109u: [PASS][3] -> [DMESG-WARN][4] ([i915#13735]) +80 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9049/fi-cfl-8109u/igt@i915_selftest@live@ring_submission.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/fi-cfl-8109u/igt@i915_selftest@live@ring_submission.html
* igt@kms_pipe_crc_basic@read-crc:
- fi-cfl-8109u: [PASS][5] -> [DMESG-WARN][6] ([i915#13735] / [i915#15673]) +49 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9049/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9049 -> IGTPW_15651
* Linux: CI_DRM_18974 -> CI_DRM_18975
CI-20190529: 20190529
CI_DRM_18974: 3cfddba17e303f0af0f4f49885f1586dd126b093 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18975: d6fed6030d92c5ea118c12464a48ee41db1b6916 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15651: 9909a06329155914b8f0a2b057db32d80345cbba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9049: 9049
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/index.html
[-- Attachment #2: Type: text/html, Size: 3706 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.FULL: success for Add CMRR subtests (rev2)
2026-08-10 19:17 [PATCH i-g-t v2 0/2] Add CMRR subtests Naladala Ramanaidu
` (2 preceding siblings ...)
2026-08-10 20:13 ` ✗ i915.CI.BAT: failure for Add CMRR subtests (rev2) Patchwork
@ 2026-08-10 23:35 ` Patchwork
2026-08-11 6:49 ` ✓ i915.CI.BAT: " Patchwork
2026-08-11 10:21 ` ✓ i915.CI.Full: " Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-08-10 23:35 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 38442 bytes --]
== Series Details ==
Series: Add CMRR subtests (rev2)
URL : https://patchwork.freedesktop.org/series/171615/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_9049_FULL -> XEIGTPW_15651_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15651_FULL:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_vrr@cmrr-fixed-mode} (NEW):
- shard-lnl: NOTRUN -> [SKIP][1] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-2/igt@kms_vrr@cmrr-fixed-mode.html
* {igt@kms_vrr@cmrr-video-mode} (NEW):
- shard-bmg: NOTRUN -> [SKIP][2] +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-4/igt@kms_vrr@cmrr-video-mode.html
* {igt@kms_vrr@cmrr-video-mode@pipe-a-edp-1} (NEW):
- shard-lnl: NOTRUN -> [FAIL][3] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-6/igt@kms_vrr@cmrr-video-mode@pipe-a-edp-1.html
New tests
---------
New tests have been introduced between XEIGT_9049_FULL and XEIGTPW_15651_FULL:
### New IGT tests (4) ###
* igt@kms_vrr@cmrr-fixed-mode:
- Statuses : 2 skip(s)
- Exec time: [0.01, 1.61] s
* igt@kms_vrr@cmrr-fixed-mode@pipe-a-edp-1:
- Statuses : 1 skip(s)
- Exec time: [1.26] s
* igt@kms_vrr@cmrr-video-mode:
- Statuses : 1 fail(s) 1 skip(s)
- Exec time: [0.01, 2.72] s
* igt@kms_vrr@cmrr-video-mode@pipe-a-edp-1:
- Statuses : 1 fail(s)
- Exec time: [2.34] s
Known issues
------------
Here are the changes found in XEIGTPW_15651_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: NOTRUN -> [FAIL][4] ([Intel XE#8583])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#3658] / [Intel XE#7360])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#7059] / [Intel XE#7085]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#607] / [Intel XE#7361])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +5 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7679])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-target-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#8365])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-2/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#3432]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +7 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-max:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#306] / [Intel XE#7358])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-4/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-1/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2252]) +4 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#373])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-3/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_content_protection@lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#7642]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2320]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2286] / [Intel XE#6035])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#8265])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#8265])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-9/igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#1138] / [Intel XE#7344])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-6/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1421]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-6/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1397] / [Intel XE#7385])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#7178] / [Intel XE#7349])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7179]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-10/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#352])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-rte:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#6312] / [Intel XE#651])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-rte.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-indfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#6312]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-2/igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#7905]) +9 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-6/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#4141]) +9 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2311]) +30 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#7061]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-3/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#656] / [Intel XE#7905]) +8 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1469] / [Intel XE#7399])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#7865]) +4 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2313]) +31 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-1/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7061])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-4/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#3374] / [Intel XE#3544])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-a-plane-5:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#8303]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#7283])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7283]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#5021] / [Intel XE#7377])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b.html
* igt@kms_pm_dc@dc3co-framedrop-check@pr-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#8395] / [Intel XE#8396]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-10/igt@kms_pm_dc@dc3co-framedrop-check@pr-xrgb8888.html
* igt@kms_pm_dc@dc3co-framedrop-check@psr2-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#8396]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-10/igt@kms_pm_dc@dc3co-framedrop-check@psr2-xrgb8888.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#1489]) +5 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2893] / [Intel XE#7304])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2387] / [Intel XE#7429])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-6/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_sharpness_filter@filter-tap:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#6503]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-1/igt@kms_sharpness_filter@filter-tap.html
* igt@sriov_basic@pf-unbind-with-vf-probed:
- shard-bmg: NOTRUN -> [ABORT][57] ([Intel XE#8868])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-10/igt@sriov_basic@pf-unbind-with-vf-probed.html
* igt@xe_compute@ccs-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1447] / [Intel XE#7471])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-1/igt@xe_compute@ccs-mode-basic.html
* igt@xe_evict@evict-large-external-cm:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-4/igt@xe_evict@evict-large-external-cm.html
* igt@xe_evict@evict-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#8370])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-9/igt@xe_evict@evict-threads-small-multi-queue.html
* igt@xe_exec_balancer@twice-parallel-basic:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#7482]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-1/igt@xe_exec_balancer@twice-parallel-basic.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1392]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-invalid-fault:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#8374]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-8/igt@xe_exec_fault_mode@once-multi-queue-invalid-fault.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#8374]) +5 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-3/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#8364]) +5 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-6/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#8364]) +20 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-2/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html
* igt@xe_exec_reset@long-spin-reuse-many-preempt-threads:
- shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#7850]) +1 other test fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9049/shard-bmg-6/igt@xe_exec_reset@long-spin-reuse-many-preempt-threads.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-4/igt@xe_exec_reset@long-spin-reuse-many-preempt-threads.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#8378]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr.html
* igt@xe_exec_threads@threads-multi-queue-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#8378]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: [PASS][72] -> [ABORT][73] ([Intel XE#8007])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9049/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_multigpu_svm@mgpu-latency-basic:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#6964]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-2/igt@xe_multigpu_svm@mgpu-latency-basic.html
* igt@xe_multigpu_svm@mgpu-latency-copy-basic:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#6964])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-1/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html
* igt@xe_page_reclaim@pat-index-xd:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#7793])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-7/igt@xe_page_reclaim@pat-index-xd.html
* igt@xe_page_reclaim@pde-vs-pd:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#7793])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-10/igt@xe_page_reclaim@pde-vs-pd.html
* igt@xe_pm@d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-5/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3hot-i2c:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-9/igt@xe_pm@d3hot-i2c.html
* igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-9/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#944]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-oa-units:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#944])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-8/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-bmg: [PASS][83] -> [FAIL][84] ([Intel XE#7992]) +3 other tests fail
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9049/shard-bmg-8/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-5/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#3342])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-6/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#8339])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority.html
#### Possible fixes ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][87] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][88] +1 other test pass
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9049/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][89] ([Intel XE#301]) -> [PASS][90] +1 other test pass
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9049/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][91] ([Intel XE#7308]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9049/shard-bmg-3/igt@kms_hdmi_inject@inject-audio.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-6/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: [SKIP][93] ([Intel XE#8361]) -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9049/shard-lnl-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][95] ([Intel XE#7397]) -> [PASS][96] +1 other test pass
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9049/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][97] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][98]
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9049/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-lnl: [ABORT][99] ([Intel XE#8007]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9049/shard-lnl-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-lnl-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-bmg: [ABORT][101] ([Intel XE#8007]) -> [PASS][102] +1 other test pass
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9049/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [FAIL][103] ([Intel XE#6569]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9049/shard-bmg-8/igt@xe_sriov_flr@flr-vf1-clear.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-10/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0:
- shard-bmg: [FAIL][105] ([Intel XE#7992]) -> [PASS][106] +2 other tests pass
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9049/shard-bmg-6/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-2/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0:
- shard-bmg: [FAIL][107] ([Intel XE#8340]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9049/shard-bmg-6/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-2/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0.html
#### Warnings ####
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][109] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][110] ([Intel XE#3544])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9049/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][111] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][112] ([Intel XE#2426] / [Intel XE#5848])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9049/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
[Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7471
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
[Intel XE#8339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8339
[Intel XE#8340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8340
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#8361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8361
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
[Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
[Intel XE#8583]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8583
[Intel XE#8868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8868
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_9049 -> IGTPW_15651
* Linux: xe-5572-3cfddba17e303f0af0f4f49885f1586dd126b093 -> xe-5573-d6fed6030d92c5ea118c12464a48ee41db1b6916
IGTPW_15651: 9909a06329155914b8f0a2b057db32d80345cbba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9049: 9049
xe-5572-3cfddba17e303f0af0f4f49885f1586dd126b093: 3cfddba17e303f0af0f4f49885f1586dd126b093
xe-5573-d6fed6030d92c5ea118c12464a48ee41db1b6916: d6fed6030d92c5ea118c12464a48ee41db1b6916
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15651/index.html
[-- Attachment #2: Type: text/html, Size: 42835 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH i-g-t v2 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing
2026-08-10 19:17 ` [PATCH i-g-t v2 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing Naladala Ramanaidu
@ 2026-08-11 5:31 ` Golani, Mitulkumar Ajitkumar
2026-08-11 19:23 ` Naladala, Ramanaidu
0 siblings, 1 reply; 10+ messages in thread
From: Golani, Mitulkumar Ajitkumar @ 2026-08-11 5:31 UTC (permalink / raw)
To: Naladala, Ramanaidu, igt-dev@lists.freedesktop.org; +Cc: Borah, Chaitanya Kumar
> -----Original Message-----
> From: Naladala, Ramanaidu <ramanaidu.naladala@intel.com>
> Sent: 11 August 2026 00:48
> To: igt-dev@lists.freedesktop.org
> Cc: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>; Golani,
> Mitulkumar Ajitkumar <mitulkumar.ajitkumar.golani@intel.com>; Naladala,
> Ramanaidu <ramanaidu.naladala@intel.com>
> Subject: [PATCH i-g-t v2 1/2] lib/igt_vrr:Add VRR helper library for display
> refresh rate testing
>
> Introduce a new helper library for Variable Refresh Rate (VRR).
>
> Add helpers to validate targeted refresh-rate testing.
>
> v2: Modify debugfs with helpers.
>
> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
> ---
> lib/igt_vrr.c | 118
> ++++++++++++++++++++++++++++++++++++++++++++++++
> lib/igt_vrr.h | 46 +++++++++++++++++++
> lib/meson.build | 1 +
> 3 files changed, 165 insertions(+)
> create mode 100644 lib/igt_vrr.c
> create mode 100644 lib/igt_vrr.h
>
> diff --git a/lib/igt_vrr.c b/lib/igt_vrr.c new file mode 100644 index
> 000000000..09b008933
> --- /dev/null
> +++ b/lib/igt_vrr.c
> @@ -0,0 +1,118 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2026 Intel Corporation
> + */
> +
> +#include <inttypes.h>
> +
> +#include "igt_vrr.h"
> +#include "igt_sysfs.h"
> +
> +/**
> + * igt_target_rr_debugfs_write:
> + * @fd: DRM file descriptor.
> + * @crtc_index: Index of the CRTC.
> + * @vrefresh: Target refresh rate to program.
> + * @numerator: Numerator component of the target refresh rate fraction.
> + * @denominator: Denominator component of the target refresh rate
> fraction.
> + *
> + * Write the target refresh rate configuration to the per-CRTC
> + * VRR debugfs interface.
> + *
> + * Returns: None.
> + */
> +void
> +igt_target_rr_debugfs_write(int fd, int crtc_index,
> + uint32_t vrefresh,
> + uint32_t numerator,
> + uint32_t denominator)
> +{
> + char buf[32];
> + uint32_t ret, dir;
> + uint64_t val;
> +
> + val = vrefresh * numerator;
> +
> + snprintf(buf, sizeof(buf), "%" PRIu64 "/%u",
> + val, denominator);
> +
> + dir = igt_debugfs_crtc_dir(fd, crtc_index);
> + igt_require_fd(dir);
> +
> + ret = igt_sysfs_write(dir, "intel_vrr_target_refresh_rate",
> + buf, sizeof(buf) - 1);
> + close(dir);
> + igt_assert_f(ret == (sizeof(buf) - 1), "debugfs_write failed"); }
NIT: Line 43 to 45, check for tab/space
> +
> +/**
> + * igt_cmrr_debugfs_read:
> + * @fd: DRM file descriptor.
> + * @crtc_index: Index of the CRTC.
> + *
> + * Read the configured refresh rate from the per-CRTC VRR debugfs node.
> + *
> + * Return: None.
> + */
> +void
> +igt_target_rr_debugfs_read(int fd, int crtc_index) {
> + char buf[32];
> + uint32_t ret, dir;
> +
> + dir = igt_debugfs_crtc_dir(fd, crtc_index);
> + igt_require_fd(dir);
> +
> + ret = igt_sysfs_read(dir, "intel_vrr_target_refresh_rate",
> + buf, sizeof(buf) - 1);
> + igt_assert_f(ret >= 0,
> + "Failed to read intel_vrr_target_refresh_rate.\n");
dir/ret are uint32_t; igt_require_fd(dir) (dir >= 0) can never fail, and igt_sysfs_write(..., sizeof(buf)-1) writes 31 uninitialized bytes and asserts the handler consumed exactly 31. Use int for the fd/return, and write strlen(buf) asserting the return equals that. Also, dead ret >= 0 check + OOB buf[ret]
> +
> + buf[ret] = '\0';
> +
> + igt_info("%s\n", buf);
> +}
> +
> +/**
> + * igt_vrr_mode_line_refresh_hz:
> + * @mode: DRM display mode used for the calculation
> + *
> + * Compute the refresh rate directly from the mode timing parameters.
> + *
> + * Returns: Refresh rate in Hz as a floating-point value.
> + */
> +double igt_vrr_mode_line_refresh_hz(const drmModeModeInfo *mode) {
> + return (double)mode->clock * 1000.0 / ((double)mode->htotal *
> +(double)mode->vtotal); }
> +
> +/**
> + * igt_vrr_get_mode_with_video_timeing:
typo "timing" -> "timing"
> + * @output: Display output containing connector mode list
> + * @fps: Requested integer refresh rate in Hz
> + * @matched_mode: Returned mode that matches @fps
> + *
> + * Find and return a connector mode that matches the requested
> + * video timing refresh rate in Hz.
> + *
> + * Returns: true when a mode is found, false otherwise */
> +
> +bool igt_vrr_get_mode_with_video_timeing(igt_output_t *output,
> + uint32_t fps,
> + drmModeModeInfo
> *matched_mode)
> +{
> + drmModeConnectorPtr connector;
> +
> + connector = output->config.connector;
> + if (!connector)
> + return false;
> +
> + for (int i = 0; i < connector->count_modes; i++) {
> + if (connector->modes[i].vrefresh == fps) {
> + *matched_mode = connector->modes[i];
> + return true;
> + }
> + }
> + return false;
> +}
> diff --git a/lib/igt_vrr.h b/lib/igt_vrr.h new file mode 100644 index
> 000000000..abea32a07
> --- /dev/null
> +++ b/lib/igt_vrr.h
> @@ -0,0 +1,46 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2026 Intel Corporation
> + */
> +
> +#ifndef IGT_VRR_H
> +#define IGT_VRR_H
> +
> +#include <stdbool.h>
> +#include <stdint.h>
> +#include "igt.h"
> +#include "igt_kms.h"
> +
> +#define CMRR_NUMERATOR 1000ULL
> +#define CMRR_DENOMINATOR 1000ULL
> +#define CMRR_VIDEO_MODE_DENOMINATOR 1001ULL #define
> +TARGET_RR_SAMP_COUNT 100
> +
> +enum {
> + CMRR_VIDEO_MODE,
> + CMRR_NON_VIDEO_MODE,
> + CMRR_DISABLE,
> +};
> +
> +const uint32_t igt_vrr_standard_video_timing_fps[] = {
> + 24, 25, 30, 48, 50, 60, 75, 90, 96, 100, 120, 144, 165, 180, 200, 240,
> +};
const uint32_t igt_vrr_standard_video_timing_fps[] (and its count) have external linkage and will cause a multiple-definition link error as soon as a second .c includes this header. Define them once in igt_vrr.c and expose extern declarations here.
> +
> +const uint32_t igt_vrr_standard_video_timing_fps_count =
> + ARRAY_SIZE(igt_vrr_standard_video_timing_fps);
> +
> +void
> +igt_target_rr_debugfs_write(int fd, int crtc_index,
> + uint32_t vrefresh,
> + uint32_t numerator,
> + uint32_t denominator);
> +void
> +igt_target_rr_debugfs_read(int fd, int crtc_index);
> +
> +double igt_vrr_mode_line_refresh_hz(const drmModeModeInfo *mode);
> +
> +bool igt_vrr_get_mode_with_video_timeing(igt_output_t *output,
> + uint32_t fps,
> + drmModeModeInfo
> *matched_mode);
> +
> +#endif
> diff --git a/lib/meson.build b/lib/meson.build index 3001b473e..8675bd4a6
> 100644
> --- a/lib/meson.build
> +++ b/lib/meson.build
> @@ -22,6 +22,7 @@ lib_sources = [
> 'igt_configfs.c',
> 'igt_facts.c',
> 'igt_crc.c',
> + 'igt_vrr.c',
> 'igt_debugfs.c',
> 'igt_device.c',
> 'igt_device_scan.c',
> --
> 2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH i-g-t v2 2/2] tests/kms_vrr: add CMRR fixed and video mode subtests
2026-08-10 19:17 ` [PATCH i-g-t v2 2/2] tests/kms_vrr: add CMRR fixed and video mode subtests Naladala Ramanaidu
@ 2026-08-11 5:31 ` Golani, Mitulkumar Ajitkumar
0 siblings, 0 replies; 10+ messages in thread
From: Golani, Mitulkumar Ajitkumar @ 2026-08-11 5:31 UTC (permalink / raw)
To: Naladala, Ramanaidu, igt-dev@lists.freedesktop.org; +Cc: Borah, Chaitanya Kumar
> -----Original Message-----
> From: Naladala, Ramanaidu <ramanaidu.naladala@intel.com>
> Sent: 11 August 2026 00:48
> To: igt-dev@lists.freedesktop.org
> Cc: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>; Golani,
> Mitulkumar Ajitkumar <mitulkumar.ajitkumar.golani@intel.com>; Naladala,
> Ramanaidu <ramanaidu.naladala@intel.com>
> Subject: [PATCH i-g-t v2 2/2] tests/kms_vrr: add CMRR fixed and video mode
> subtests
>
> Add test coverage to validate Content Match Refresh Rate (CMRR) behavior
> across both fixed and video timing display modes.
>
> This introduces a shared helper library to support refresh-rate mode selection
> and parsing, along with two new test cases covering fixed-mode and video-
> mode scenarios.
>
> The new tests measure actual display refresh timing during CMRR operation
> and compare it against the expected target rate to verify correctness. Video
> mode coverage validates behavior across standard video timing rates, while
> fixed mode coverage targets display modes that fall outside the standard
> video timing set.
>
> Each test cycles through the relevant refresh configurations, applying and
> resetting the appropriate settings between measurement passes to ensure
> consistent and isolated test results.
>
> v2: Fix test issue.
>
> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
> ---
> tests/kms_vrr.c | 194
> ++++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 194 insertions(+)
>
> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index 27f18e8d0..102998498
> 100644
> --- a/tests/kms_vrr.c
> +++ b/tests/kms_vrr.c
> @@ -32,6 +32,7 @@
> #include "igt_pm.h"
> #include "igt_psr.h"
> #include "i915/intel_drrs.h"
> +#include "igt_vrr.h"
> #include "sw_sync.h"
> #include <fcntl.h>
> #include <signal.h>
> @@ -80,6 +81,12 @@
> *
> * SUBTEST: lobf-dc3co
> * Description: Test DC3CO entry during LOBF.
> + *
> + * SUBTEST: cmrr-fixed-mode
> + * Description:
Add description
> + *
> + * SUBTEST: cmrr-video-mode
> + * Description:
> */
>
> #define NSECS_PER_SEC (1000000000ull)
> @@ -103,6 +110,8 @@ enum {
> TEST_LINK_OFF = 1 << 10,
> TEST_NEGATIVE = 1 << 11,
> TEST_FORCE_RR = 1 << 12,
> + TEST_CMRR_FIXED_MODE = 1 << 13,
> + TEST_CMRR_VIDEO_MODE = 1 << 14,
> };
>
> enum {
> @@ -580,6 +589,177 @@ flip_and_measure(data_t *data, igt_output_t
> *output,
> return 0;
> }
>
> +static
> +uint64_t wait_next_vblank_ts_ns(data_t *data, igt_crtc_t *crtc) {
> + union drm_wait_vblank vbl = {};
> +
> + vbl.request.type = DRM_VBLANK_RELATIVE |
> igt_crtc_get_vbl_flag(crtc);
> + vbl.request.sequence = 1;
> + do_or_die(igt_ioctl(data->drm_fd, DRM_IOCTL_WAIT_VBLANK,
> &vbl));
> +
> + return vbl.reply.tval_sec * NSECS_PER_SEC + vbl.reply.tval_usec *
> +1000ull; }
> +
> +static void
> +flip_and_measure_target_rr(data_t *data, igt_crtc_t *crtc,
> + uint32_t vrefresh, uint32_t cmrr_mode) {
> + uint32_t i;
> + bool front = false;
> + uint64_t last_vblank_ns, vblank_ns;
> + uint32_t err_frames = 0;
> + uint64_t frame_times_ns[TARGET_RR_SAMP_COUNT];
> + uint64_t exp_time_ns;
> + uint64_t total_frame_time_ns = 0;
> + uint64_t avg_frame_time_ns;
> + float avg_refresh_rate;
> + float expected_rr;
> +
> + exp_time_ns = igt_kms_frame_time_from_vrefresh(vrefresh);
> +
> + do_flip(data, &data->fb[0]);
> + (void)get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
> + last_vblank_ns = wait_next_vblank_ts_ns(data, crtc);
> +
> + for (i = 0; i < TARGET_RR_SAMP_COUNT; i++) {
> + front = !front;
> +
> + do_flip(data, front ? &data->fb[1] : &data->fb[0]);
> + vblank_ns = wait_next_vblank_ts_ns(data, crtc);
> + (void)get_kernel_event_ns(data,
> DRM_EVENT_FLIP_COMPLETE);
> +
> + frame_times_ns[i] = vblank_ns - last_vblank_ns;
> +
> + if (frame_times_ns[i] > (exp_time_ns + (exp_time_ns / 2))) {
> + err_frames++;
> + last_vblank_ns = vblank_ns;
> + continue;
> + }
> +
> + last_vblank_ns = vblank_ns;
> + total_frame_time_ns += frame_times_ns[i];
> + }
> +
> + avg_frame_time_ns = total_frame_time_ns /
> (TARGET_RR_SAMP_COUNT - err_frames);
Guard TARGET_RR_SAMP_COUNT - err_frames == 0 before dividing.
> + avg_refresh_rate = (float)NSECS_PER_SEC / (float)avg_frame_time_ns;
> +
> + if (cmrr_mode == CMRR_VIDEO_MODE) {
> + expected_rr = (double)(vrefresh * CMRR_NUMERATOR) /
> + (double)CMRR_VIDEO_MODE_DENOMINATOR;
> + igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02,
> + "CMRR refresh rate mismatch: "
> + "measured avg_rr = %.3f Hz, "
> + "expected_rr = %.3f Hz\n",
> + avg_refresh_rate, expected_rr);
The flat tolerance can fall below vblank-timestamp resolution at high refresh (≥ ~180 Hz), risking false negatives, and contradicts the rate-bucketed tolerance_table already in this file. Derive tolerance from the rate (and state the measurement-precision rationale).
> + }
> +
> + if (cmrr_mode == CMRR_NON_VIDEO_MODE) {
> + expected_rr = (double)(vrefresh * CMRR_NUMERATOR) /
> + (double)CMRR_DENOMINATOR;
> + igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02,
> + "CMRR refresh rate mismatch: "
> + "measured avg_rr = %.3f Hz, "
> + "expected_rr = %.3f Hz\n",
> + avg_refresh_rate, expected_rr);
> + }
> +
> + if (cmrr_mode == CMRR_DISABLE) {
> + expected_rr = (float)vrefresh;
> + igt_assert_f(fabs(avg_refresh_rate - expected_rr) <= 0.02,
> + "CMRR refresh rate mismatch: "
> + "measured avg_rr = %.3f Hz, "
> + "expected_rr = %.3f Hz\n",
> + avg_refresh_rate, expected_rr);
> + }
> +
> + igt_info("Average RR (Hz): %.2f , Expected RR (Hz): %.2f, error frames
> = %d\n",
> + avg_refresh_rate, expected_rr, err_frames); }
> +
> +static
> +void test_cmrr(data_t *data, igt_crtc_t *crtc,
> + igt_output_t *output, uint32_t flags) {
> + uint32_t found;
> + double rr_from_mode;
> + drmModeModeInfo mode;
> + drmModeConnectorPtr connector;
> + int j;
On platforms without intel_vrr_target_refresh_rate, igt_target_rr_debugfs_write asserts. Probe the node and igt_require CMRR support in a fixture/skip path so unsupported hardware skips cleanly.
> +
> + prepare_test(data, output, crtc);
> + set_vrr_on_crtc(data, crtc, true, false);
> +
> + if (flags == TEST_CMRR_VIDEO_MODE) {
Use bitmask check flags & TEST_* instead of flags == TEST_* to follow the existing convention and keep this logic correct if multiple flags are combined in future.
> + for (j = 0; j < igt_vrr_standard_video_timing_fps_count; j++) {
> + found =
> igt_vrr_get_mode_with_video_timeing(output,
> +
> igt_vrr_standard_video_timing_fps[j],
> + &mode);
> + if (found) {
> + rr_from_mode =
> igt_vrr_mode_line_refresh_hz(&mode);
> + igt_output_override_mode(output, &mode);
> + igt_info("Override mode:");
> + kmstest_dump_mode(&mode);
> + igt_display_commit2(&data->display,
> COMMIT_ATOMIC);
> + igt_target_rr_debugfs_write(data->drm_fd,
> + crtc->crtc_index,
> + mode.vrefresh,
> +
> CMRR_NUMERATOR,
> +
> CMRR_VIDEO_MODE_DENOMINATOR);
> +
> + flip_and_measure_target_rr(data, crtc,
> + mode.vrefresh,
> +
> CMRR_VIDEO_MODE);
> +
> + igt_target_rr_debugfs_write(data->drm_fd,
> + crtc->crtc_index,
> + mode.vrefresh,
> + 0, 0);
> +
> + flip_and_measure_target_rr(data, crtc,
> + rr_from_mode,
> + CMRR_DISABLE);
rr_from_mode (double) is passed into the uint32_t vrefresh parameter and the CMRR_DISABLE branch then compares against (float)vrefresh. For any non-integer native rate the expected value is truncated (e.g. 60.05→60, 59.94→59) while the tolerance is 0.02 Hz, so the disable check fails deterministically on exactly the modes the test selects. Pass the expected rate as a float/double end-to-end and compare against the real native rr_from_mode.
> + }
> + }
> + }
> +
> + if (flags == TEST_CMRR_FIXED_MODE) {
> + found = 0;
> + connector = output->config.connector;
> + for (j = 0; j < connector->count_modes; j++) {
> + mode = connector->modes[j];
> + rr_from_mode =
> igt_vrr_mode_line_refresh_hz(&mode);
> +
> + if (rr_from_mode - mode.vrefresh > 0.04) {
> + found = 1;
> + igt_output_override_mode(output, &mode);
> + igt_info("Override mode:");
> + kmstest_dump_mode(&mode);
> + igt_display_commit2(&data->display,
> COMMIT_ATOMIC);
> + igt_target_rr_debugfs_write(data->drm_fd,
> + crtc->crtc_index,
> + mode.vrefresh,
> +
> CMRR_NUMERATOR,
> +
> CMRR_DENOMINATOR);
> +
> + flip_and_measure_target_rr(data, crtc,
> + mode.vrefresh,
> +
> CMRR_NON_VIDEO_MODE);
> +
> + igt_target_rr_debugfs_write(data->drm_fd,
> + crtc->crtc_index,
> + mode.vrefresh,
> + 0, 0);
> +
> + flip_and_measure_target_rr(data, crtc,
> + rr_from_mode,
> + CMRR_DISABLE);
> + }
> + }
> + igt_require_f(found, "No non-video-timing mode found.\n");
> + }
> +}
> +
> /* Basic VRR flip functionality test - enable, measure, disable, measure */
> static void test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output, @@
> -1147,6 +1327,20 @@ int igt_main_args("drs:", long_opts, help_str,
> opt_handler, &data)
> }
> }
>
> + igt_subtest_group() {
> + igt_fixture()
> + igt_require_intel(data.drm_fd);
> +
> + igt_describe("Test to validate CMRR in fixed mode.");
> + igt_subtest_with_dynamic("cmrr-fixed-mode") {
> + run_vrr_test(&data, test_cmrr,
> TEST_CMRR_FIXED_MODE);
> + }
> +
> + igt_describe("Test to validate CMRR in video mode.");
> + igt_subtest_with_dynamic("cmrr-video-mode") {
> + run_vrr_test(&data, test_cmrr,
> TEST_CMRR_VIDEO_MODE);
> + }
> + }
> igt_fixture() {
> close(data.debugfs_fd);
> igt_display_fini(&data.display);
> --
> 2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for Add CMRR subtests (rev2)
2026-08-10 19:17 [PATCH i-g-t v2 0/2] Add CMRR subtests Naladala Ramanaidu
` (3 preceding siblings ...)
2026-08-10 23:35 ` ✓ Xe.CI.FULL: success " Patchwork
@ 2026-08-11 6:49 ` Patchwork
2026-08-11 10:21 ` ✓ i915.CI.Full: " Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-08-11 6:49 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2541 bytes --]
== Series Details ==
Series: Add CMRR subtests (rev2)
URL : https://patchwork.freedesktop.org/series/171615/
State : success
== Summary ==
CI Bug Log - changes from IGT_9049 -> IGTPW_15651
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/index.html
Participating hosts (37 -> 35)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15651 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_fence@basic-await:
- bat-atsm-1: [PASS][1] -> [ABORT][2] ([i915#16794]) +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9049/bat-atsm-1/igt@gem_exec_fence@basic-await.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/bat-atsm-1/igt@gem_exec_fence@basic-await.html
* igt@i915_selftest@live@ring_submission:
- fi-cfl-8109u: [PASS][3] -> [DMESG-WARN][4] ([i915#13735]) +80 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9049/fi-cfl-8109u/igt@i915_selftest@live@ring_submission.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/fi-cfl-8109u/igt@i915_selftest@live@ring_submission.html
* igt@kms_pipe_crc_basic@read-crc:
- fi-cfl-8109u: [PASS][5] -> [DMESG-WARN][6] ([i915#13735] / [i915#15673]) +49 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9049/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
[i915#16794]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16794
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9049 -> IGTPW_15651
* Linux: CI_DRM_18974 -> CI_DRM_18975
CI-20190529: 20190529
CI_DRM_18974: 3cfddba17e303f0af0f4f49885f1586dd126b093 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18975: d6fed6030d92c5ea118c12464a48ee41db1b6916 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15651: 9909a06329155914b8f0a2b057db32d80345cbba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9049: 9049
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/index.html
[-- Attachment #2: Type: text/html, Size: 3280 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.Full: success for Add CMRR subtests (rev2)
2026-08-10 19:17 [PATCH i-g-t v2 0/2] Add CMRR subtests Naladala Ramanaidu
` (4 preceding siblings ...)
2026-08-11 6:49 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-08-11 10:21 ` Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-08-11 10:21 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 146703 bytes --]
== Series Details ==
Series: Add CMRR subtests (rev2)
URL : https://patchwork.freedesktop.org/series/171615/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_18975_full -> IGTPW_15651_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_15651_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@cold-reset-bound:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#11078])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@device_reset@cold-reset-bound.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][2] ([i915#7697])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu: NOTRUN -> [SKIP][3] ([i915#3555] / [i915#9323])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-8/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#13008])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-19/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [FAIL][5] ([i915#15454])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#6335])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8562])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#14544] / [i915#8562])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#8562])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-12/igt@gem_create@create-ext-set-pat.html
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#8562])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-4/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8555])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-7/igt@gem_ctx_persistence@hang.html
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#8555])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-12/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8555]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][14] ([i915#1099]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-snb1/igt@gem_ctx_persistence@processes.html
* igt@gem_ctx_sseu@engines:
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#280])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-4/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#280])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@gem_ctx_sseu@invalid-sseu.html
- shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#280]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@kms:
- shard-rkl: NOTRUN -> [DMESG-WARN][18] ([i915#13363])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@gem_eio@kms.html
- shard-tglu: NOTRUN -> [DMESG-WARN][19] ([i915#13363])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-10/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress@blt:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#15314])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-4/igt@gem_eio@reset-stress@blt.html
* igt@gem_eio@reset-stress@bsd:
- shard-snb: NOTRUN -> [FAIL][21] ([i915#8898]) +1 other test fail
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-snb5/igt@gem_eio@reset-stress@bsd.html
* igt@gem_exec_balancer@bonded-dual:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#4771])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-3/igt@gem_exec_balancer@bonded-dual.html
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#4771])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#4771]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-16/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#4525]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-5/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-4/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-16/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#3281]) +5 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#3281]) +12 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-wc-cpu-active:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#14544] / [i915#3281]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu-active.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#3281]) +5 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-18/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#3281]) +4 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-3/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_suspend@basic-s0:
- shard-rkl: [PASS][34] -> [INCOMPLETE][35] ([i915#13356]) +1 other test incomplete
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-8/igt@gem_exec_suspend@basic-s0.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4860]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-4/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#4860]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4860]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][39] ([i915#2190])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu-1: NOTRUN -> [SKIP][40] ([i915#4613] / [i915#7582])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-random:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#14544] / [i915#4613])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#4613]) +5 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@massive-random:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4613])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-6/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#4613]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk2/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613]) +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-9/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#8289])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-4/igt@gem_media_fill@media-fill.html
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#8289])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#284])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-read-write-distinct:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4077]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-3/igt@gem_mmap_gtt@basic-read-write-distinct.html
* igt@gem_mmap_gtt@flink-race:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-19/igt@gem_mmap_gtt@flink-race.html
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4077]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-7/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4083]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-3/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4083]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-16/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4083])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-6/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_pread@exhaustion:
- shard-tglu-1: NOTRUN -> [WARN][56] ([i915#2658]) +1 other test warn
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#3282]) +8 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@gem_pread@snoop.html
* igt@gem_pxp@create-regular-context-2:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4270]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-5/igt@gem_pxp@create-regular-context-2.html
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4270]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-14/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#13717] / [i915#14544])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@gem_readwrite@beyond-eob.html
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-18/igt@gem_readwrite@beyond-eob.html
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-4/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#8428]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-8/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#5190] / [i915#8428]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#8411])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: NOTRUN -> [INCOMPLETE][67] ([i915#13809] / [i915#16226])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282] / [i915#3297])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#3297])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#3297])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@gem_userptr_blits@readonly-pwrite-unsync.html
- shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#3297])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-18/igt@gem_userptr_blits@readonly-pwrite-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3297]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#3281] / [i915#3297])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-7/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#3297])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-6/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][76] ([i915#13356] / [i915#14586])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk1/igt@gem_workarounds@suspend-resume.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk11: NOTRUN -> [INCOMPLETE][77] ([i915#13356])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk11/igt@gem_workarounds@suspend-resume-context.html
* igt@gen3_render_linear_blits:
- shard-dg2: NOTRUN -> [SKIP][78] +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@gen3_render_linear_blits.html
* igt@gen9_exec_parse@basic-rejected:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#2856]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-4/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#2856]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@gen9_exec_parse@secure-batches.html
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#2527]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-18/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@valid-registers:
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-9/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
- shard-dg1: NOTRUN -> [INCOMPLETE][85] ([i915#15481])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-19/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
* igt@i915_module_load@reload-no-display:
- shard-dg2: [PASS][86] -> [DMESG-WARN][87] ([i915#13029] / [i915#14545])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg2-7/igt@i915_module_load@reload-no-display.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@i915_module_load@reload-no-display.html
- shard-dg1: [PASS][88] -> [DMESG-WARN][89] ([i915#13029] / [i915#14545])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-15/igt@i915_module_load@reload-no-display.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-14/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@resize-bar:
- shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#6412])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#8399])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#7984])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@i915_power@sanity.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#16109])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu-1: NOTRUN -> [INCOMPLETE][94] ([i915#4817] / [i915#7443])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#4212]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#4212]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-3/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#4212]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-12/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#1769] / [i915#3555])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#1769] / [i915#3555])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#1769] / [i915#3555])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-snb: NOTRUN -> [SKIP][101] ([i915#1769])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#14544] / [i915#5286]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#4538] / [i915#5286]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-15/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#5286]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#5286]) +4 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-3/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#5286]) +4 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#3828])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4538] / [i915#5190]) +9 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#3638]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [SKIP][111] +7 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][112] +53 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#4538]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#6095]) +63 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#14544] / [i915#6095]) +7 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#6095]) +24 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-glk: NOTRUN -> [SKIP][118] +354 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#6095]) +4 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#10307] / [i915#6095]) +105 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#6095]) +79 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][122] +33 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk11/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#12313])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#12313]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#12313])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-17/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#12313])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-9/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#12313])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#14098] / [i915#6095]) +44 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#6095]) +29 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#6095]) +207 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#13783]) +4 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#11151] / [i915#14544] / [i915#7828])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_audio@hdmi-audio-after-suspend:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#11151])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html
* igt@kms_chamelium_color_pipeline@plane-ctm3x4:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#14544] / [i915#16471])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#16471]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html
* igt@kms_chamelium_color_pipeline@plane-lut3d-green-only:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#16471]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-5/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#16471])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-17/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#16471]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-6/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#16464] / [i915#16471])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-5/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#11151] / [i915#7828]) +4 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) +8 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828]) +4 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@kms_chamelium_hpd@dp-hpd-storm.html
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-storm.html
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-5/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +6 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-8/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#15330] / [i915#3116])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#15330] / [i915#3299]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-5/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#15865])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-4/igt@kms_content_protection@legacy.html
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#15865])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-5/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#15865]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@mei-interface:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#15865]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-8/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#15865]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#3555] / [i915#8814])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#13049])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#13049])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#13049])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-19/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#13049]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-3/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#13049]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-rkl: [PASS][160] -> [FAIL][161] ([i915#13566]) +1 other test fail
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-128x42.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][162] -> [FAIL][163] ([i915#13566]) +1 other test fail
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][164] ([i915#13566]) +5 other tests fail
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#3555]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][166] +111 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#4103])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#4103]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#13046] / [i915#5354]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][170] ([i915#15804])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#4103])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#9723])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-10/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#13691])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#3804])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev@basic:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#1257])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-5/igt@kms_dp_aux_dev@basic.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#13749]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-1/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#13748])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#13707])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic-ultrajoiner:
- shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#16361]) +3 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_dsc@dsc-basic-ultrajoiner.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#14544] / [i915#16361])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner.html
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#16361]) +2 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner.html
* igt@kms_dsc@dsc-with-bpc-formats-bigjoiner:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#16361]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-18/igt@kms_dsc@dsc-with-bpc-formats-bigjoiner.html
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#16361]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-4/igt@kms_dsc@dsc-with-bpc-formats-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#16361]) +6 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#16361]) +3 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#16680]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#16081])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-3/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#16081])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#14544] / [i915#16599])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#658])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#4881])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-3/igt@kms_fence_pin_leak.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#4881])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-13/igt@kms_fence_pin_leak.html
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#4881])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-5/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#3637] / [i915#9934]) +4 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#9934])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-10/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#9934])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-8/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#3637] / [i915#9934]) +5 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#9934]) +4 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-12/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#9934]) +3 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-1/igt@kms_flip@2x-wf_vblank-ts-check.html
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#9934]) +8 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@kms_flip@2x-wf_vblank-ts-check.html
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3637] / [i915#9934]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-2/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][202] ([i915#12745] / [i915#4839])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk11/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][203] ([i915#12745] / [i915#4839] / [i915#6113])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-rkl: [PASS][204] -> [INCOMPLETE][205] ([i915#16276] / [i915#6113])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-5/igt@kms_flip@flip-vs-suspend-interruptible.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][206] ([i915#12745])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
- shard-rkl: NOTRUN -> [INCOMPLETE][207] ([i915#16276] / [i915#6113])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk11: NOTRUN -> [INCOMPLETE][208] ([i915#12745])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk11/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#15643]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#15643]) +5 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#15643] / [i915#5190]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#15643]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#15643]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling:
- shard-glk10: NOTRUN -> [SKIP][215] +107 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#15643]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#15643]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-13/igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile.html
* igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#15990] / [i915#8708]) +16 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][219] +33 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#15991] / [i915#1825]) +14 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [PASS][221] -> [INCOMPLETE][222] ([i915#10056])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-suspend.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][223] ([i915#10056] / [i915#16593])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk1/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#15989]) +25 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#15989]) +8 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt:
- shard-tglu: NOTRUN -> [SKIP][226] +113 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#15990]) +3 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#14544]) +10 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-stridechange:
- shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#15989]) +7 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-stridechange.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#5439])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#5439])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-8/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#14544] / [i915#15102]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][233] +198 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-snb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#15104] / [i915#15990])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#15104] / [i915#15990])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#15990] / [i915#8708]) +3 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#15991] / [i915#5354]) +16 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#10055])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#10055])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#15102]) +29 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#15102]) +20 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#15990]) +15 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#15990]) +8 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#15989]) +13 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#15989]) +5 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-16/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#15989]) +20 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#15991]) +15 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-3/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc:
- shard-rkl: [PASS][249] -> [SKIP][250] ([i915#15989]) +6 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#9766])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#15102]) +50 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#15102]) +21 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#15102] / [i915#3023]) +21 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#15102]) +25 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#14544] / [i915#1825]) +2 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#1825]) +9 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#15990] / [i915#8708]) +8 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#15991]) +23 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-7/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: [PASS][260] -> [SKIP][261] ([i915#16644] / [i915#3555] / [i915#8228])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@kms_hdr@invalid-metadata-sizes.html
- shard-tglu: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8228]) +2 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-8/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#16644] / [i915#3555] / [i915#8228])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8228]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-16/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#15459])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@kms_joiner@basic-force-big-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#15459])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#15458])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#15458])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-19/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#15815])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#15815])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#14544] / [i915#15815])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#15815])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-12/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#15815])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#6301])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#6301]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-8/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-xtiled:
- shard-glk10: NOTRUN -> [DMESG-WARN][276] ([i915#118])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk10/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#13705])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#15709]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-14/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier@pipe-a-plane-5:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#16386]) +3 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#15709]) +3 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#16386]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-9/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#16386]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-5/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#15709]) +3 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-10/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#15709]) +3 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#15709]) +3 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#16386]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#15709])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#16112])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-12/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk10: NOTRUN -> [FAIL][289] ([i915#12178])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][290] ([i915#7862]) +1 other test fail
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][291] ([i915#10647] / [i915#12177])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk1/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][292] ([i915#10647]) +1 other test fail
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk1/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#13958])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-3/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#13958])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-4/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#14259])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#15329]) +4 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#15329] / [i915#3555])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#15329]) +3 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#15329] / [i915#3555] / [i915#6953])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][300] ([i915#15329]) +3 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#12343] / [i915#5354]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@kms_pm_backlight@bad-brightness.html
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#12343] / [i915#5354])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-14/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu: NOTRUN -> [SKIP][303] ([i915#12343] / [i915#9812])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-5/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#12343])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#12343] / [i915#5354]) +2 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#3828])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-9/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#15948])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-10/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#15739])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: [PASS][309] -> [SKIP][310] ([i915#15073])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-15/igt@kms_pm_rpm@dpms-lpsp.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-13/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][311] -> [SKIP][312] ([i915#15073]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#15073])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#15073])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#15073])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][316] -> [SKIP][317] ([i915#15073])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#15073])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu: NOTRUN -> [SKIP][319] ([i915#15403])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-5/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk10: NOTRUN -> [INCOMPLETE][320] ([i915#10553])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk10/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#6524])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-16/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#11520]) +3 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
- shard-dg1: NOTRUN -> [SKIP][323] ([i915#11520]) +3 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
- shard-snb: NOTRUN -> [SKIP][324] ([i915#11520]) +6 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-snb5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#11520]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-glk11: NOTRUN -> [SKIP][326] ([i915#11520])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][327] ([i915#11520]) +7 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#12316]) +2 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
- shard-glk10: NOTRUN -> [SKIP][329] ([i915#11520])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][330] ([i915#11520]) +10 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#11520]) +6 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#9683])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][333] ([i915#9683])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#9683]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-15/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#9683]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-9/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-mtlp: NOTRUN -> [SKIP][336] ([i915#4348]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#1072] / [i915#9732]) +28 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-sprite-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][338] ([i915#1072] / [i915#9732]) +10 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#1072] / [i915#9732]) +7 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-13/igt@kms_psr@pr-sprite-plane-onoff.html
- shard-mtlp: NOTRUN -> [SKIP][340] ([i915#9688]) +3 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-5/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#9732]) +10 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][342] ([i915#9732]) +12 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-9/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#15949])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#4235])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@kms_rotation_crc@exhaust-fences.html
- shard-dg1: NOTRUN -> [SKIP][345] ([i915#4884])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-17/igt@kms_rotation_crc@exhaust-fences.html
- shard-mtlp: NOTRUN -> [SKIP][346] ([i915#4235])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-5/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#5190])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#14544] / [i915#5289])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#5289])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][350] ([i915#12755] / [i915#15867]) +2 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@kms_rotation_crc@sprite-rotation-270.html
- shard-mtlp: NOTRUN -> [SKIP][351] ([i915#12755] / [i915#15867]) +1 other test skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-8/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg1: NOTRUN -> [DMESG-WARN][352] ([i915#4423])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-16/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][353] ([i915#3555]) +3 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: NOTRUN -> [SKIP][354] ([i915#3555]) +3 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][355] ([i915#3555]) +2 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-1/igt@kms_setmode@basic-clone-single-crtc.html
- shard-dg1: NOTRUN -> [SKIP][356] ([i915#3555]) +2 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-15/igt@kms_setmode@basic-clone-single-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][357] ([i915#3555] / [i915#8809])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-snb: [PASS][358] -> [FAIL][359] ([i915#15106]) +1 other test fail
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-snb5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-snb5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][360] ([i915#8623])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flipline:
- shard-rkl: NOTRUN -> [SKIP][361] ([i915#15243] / [i915#3555]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@kms_vrr@flipline.html
* igt@kms_vrr@negative-basic:
- shard-rkl: NOTRUN -> [SKIP][362] ([i915#3555] / [i915#9906])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][363] ([i915#9906])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-5/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu-1: NOTRUN -> [SKIP][364] ([i915#9906]) +1 other test skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-dg1: NOTRUN -> [SKIP][365] ([i915#9906])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-19/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-mtlp: NOTRUN -> [SKIP][366] ([i915#8808] / [i915#9906])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-7/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#7387])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html
- shard-dg2: NOTRUN -> [SKIP][368] ([i915#7387])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-3/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#14544] / [i915#8516])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [SKIP][370] ([i915#14121]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@prime_mmap@test_aperture_limit.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg1: NOTRUN -> [SKIP][371] ([i915#14121]) +1 other test skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-13/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
- shard-mtlp: NOTRUN -> [SKIP][372] ([i915#14121]) +1 other test skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-8/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_udl@share-import:
- shard-dg2: NOTRUN -> [SKIP][373] ([i915#16420])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-1/igt@prime_udl@share-import.html
- shard-rkl: NOTRUN -> [SKIP][374] ([i915#16420])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@prime_udl@share-import.html
- shard-dg1: NOTRUN -> [SKIP][375] ([i915#16420])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-19/igt@prime_udl@share-import.html
- shard-tglu: NOTRUN -> [SKIP][376] ([i915#16420])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-10/igt@prime_udl@share-import.html
- shard-mtlp: NOTRUN -> [SKIP][377] ([i915#16420])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-2/igt@prime_udl@share-import.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][378] ([i915#3291] / [i915#3708])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][379] ([i915#3708])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-5/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-mtlp: NOTRUN -> [SKIP][380] ([i915#3708])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-2/igt@prime_vgem@fence-write-hang.html
- shard-dg2: NOTRUN -> [SKIP][381] ([i915#3708])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@prime_vgem@fence-write-hang.html
- shard-dg1: NOTRUN -> [SKIP][382] ([i915#3708])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-13/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][383] ([i915#9917]) +1 other test skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@bind-unbind-vf@vf-1:
- shard-tglu-1: NOTRUN -> [SKIP][384] ([i915#16066]) +9 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu: NOTRUN -> [SKIP][385] ([i915#16066]) +9 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-9/igt@sriov_basic@enable-vfs-autoprobe-on.html
- shard-mtlp: NOTRUN -> [SKIP][386] ([i915#16066]) +9 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-mtlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
- shard-dg2: NOTRUN -> [SKIP][387] ([i915#9917])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][388] ([i915#9917]) +1 other test skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-13/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@sriov_basic@pf-unbind-with-vf-probed:
- shard-rkl: NOTRUN -> [SKIP][389] ([i915#16785])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@sriov_basic@pf-unbind-with-vf-probed.html
* igt@sriov_basic@pf-unbind-with-vfs-enabled-numvfs-all:
- shard-dg2: NOTRUN -> [SKIP][390] ([i915#16785])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-3/igt@sriov_basic@pf-unbind-with-vfs-enabled-numvfs-all.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][391] ([i915#13356] / [i915#16348]) -> [PASS][392] +1 other test pass
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg2-5/igt@gem_ccs@suspend-resume.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-1/igt@gem_ccs@suspend-resume.html
* igt@gem_eio@throttle:
- shard-dg1: [DMESG-WARN][393] ([i915#4423]) -> [PASS][394] +2 other tests pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-16/igt@gem_eio@throttle.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-18/igt@gem_eio@throttle.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [INCOMPLETE][395] ([i915#13356]) -> [PASS][396]
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html
* igt@i915_module_load@resize-bar:
- shard-dg2: [DMESG-WARN][397] ([i915#14545]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg2-5/igt@i915_module_load@resize-bar.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [INCOMPLETE][399] ([i915#13356] / [i915#13820]) -> [PASS][400] +1 other test pass
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: [INCOMPLETE][401] ([i915#13356]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-glk2/igt@i915_pm_rpm@system-suspend.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk4/igt@i915_pm_rpm@system-suspend.html
* igt@i915_selftest@live:
- shard-dg1: [ABORT][403] ([i915#16436]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-14/igt@i915_selftest@live.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-13/igt@i915_selftest@live.html
* igt@i915_selftest@live@gem_contexts:
- shard-dg1: [ABORT][405] ([i915#15433]) -> [PASS][406]
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-14/igt@i915_selftest@live@gem_contexts.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-13/igt@i915_selftest@live@gem_contexts.html
* igt@i915_selftest@mock:
- shard-dg1: [DMESG-WARN][407] ([i915#14545]) -> [PASS][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-12/igt@i915_selftest@mock.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-14/igt@i915_selftest@mock.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-dg1: [DMESG-WARN][409] ([i915#4391] / [i915#4423]) -> [PASS][410]
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-19/igt@i915_suspend@basic-s2idle-without-i915.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-14/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: [INCOMPLETE][411] ([i915#16182] / [i915#4817]) -> [PASS][412]
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-glk1/igt@i915_suspend@fence-restore-tiled2untiled.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-glk2/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@fence-restore-untiled:
- shard-snb: [ABORT][413] ([i915#15840]) -> [PASS][414]
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-snb5/igt@i915_suspend@fence-restore-untiled.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-snb4/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [INCOMPLETE][415] ([i915#12761]) -> [PASS][416]
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][417] ([i915#15662]) -> [PASS][418] +1 other test pass
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-tglu-9/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-tglu-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: [INCOMPLETE][419] ([i915#9878]) -> [PASS][420]
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-rkl: [FAIL][421] ([i915#13027]) -> [PASS][422] +1 other test pass
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][423] ([i915#15989]) -> [PASS][424] +3 other tests pass
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_hdr@static-toggle:
- shard-rkl: [SKIP][425] ([i915#16644] / [i915#3555] / [i915#8228]) -> [PASS][426]
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-5/igt@kms_hdr@static-toggle.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_hdr@static-toggle.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][427] ([i915#15073]) -> [PASS][428] +1 other test pass
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][429] ([i915#15073]) -> [PASS][430]
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-dg1: [SKIP][431] ([i915#15073]) -> [PASS][432] +1 other test pass
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2:
- shard-rkl: [INCOMPLETE][433] ([i915#12276]) -> [PASS][434] +1 other test pass
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][435] ([i915#4349]) -> [PASS][436] +4 other tests pass
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: [SKIP][437] ([i915#14544] / [i915#8411]) -> [SKIP][438] ([i915#8411])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: [SKIP][439] ([i915#8411]) -> [SKIP][440] ([i915#14544] / [i915#8411])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-5/igt@api_intel_bb@blit-reloc-purge-cache.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: [SKIP][441] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][442] ([i915#3555] / [i915#9323])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: [SKIP][443] ([i915#14544] / [i915#9323]) -> [SKIP][444] ([i915#9323])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: [SKIP][445] ([i915#280]) -> [SKIP][446] ([i915#14544] / [i915#280])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-5/igt@gem_ctx_sseu@mmap-args.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: [SKIP][447] ([i915#14544] / [i915#4525]) -> [SKIP][448] ([i915#4525])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_reloc@basic-wc-gtt-active:
- shard-rkl: [SKIP][449] ([i915#14544] / [i915#3281]) -> [SKIP][450] ([i915#3281])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt-active.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@gem_exec_reloc@basic-wc-gtt-active.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-rkl: [SKIP][451] ([i915#3281]) -> [SKIP][452] ([i915#14544] / [i915#3281]) +1 other test skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-4/igt@gem_exec_reloc@basic-write-wc-noreloc.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: [SKIP][453] ([i915#4613]) -> [SKIP][454] ([i915#14544] / [i915#4613])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-7/igt@gem_lmem_swapping@verify.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@gem_lmem_swapping@verify.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-rkl: [SKIP][455] ([i915#14544] / [i915#4613]) -> [SKIP][456] ([i915#4613])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-rkl: [SKIP][457] ([i915#14544] / [i915#3282]) -> [SKIP][458] ([i915#3282]) +1 other test skip
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@gem_partial_pwrite_pread@write-display.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][459] ([i915#3282]) -> [SKIP][460] ([i915#14544] / [i915#3282]) +2 other tests skip
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: [SKIP][461] ([i915#14544] / [i915#3297] / [i915#3323]) -> [SKIP][462] ([i915#3297] / [i915#3323])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_workarounds@suspend-resume:
- shard-rkl: [INCOMPLETE][463] ([i915#13356]) -> [ABORT][464] ([i915#15152])
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-3/igt@gem_workarounds@suspend-resume.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-1/igt@gem_workarounds@suspend-resume.html
* igt@i915_module_load@fault-injection:
- shard-dg1: [ABORT][465] ([i915#11814]) -> [ABORT][466] ([i915#11814] / [i915#15481]) +1 other test abort
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-14/igt@i915_module_load@fault-injection.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-19/igt@i915_module_load@fault-injection.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: [SKIP][467] ([i915#7707]) -> [SKIP][468] ([i915#14544] / [i915#7707])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-8/igt@intel_hwmon@hwmon-write.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: [SKIP][469] ([i915#5286]) -> [SKIP][470] ([i915#14544] / [i915#5286]) +1 other test skip
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][471] ([i915#14544] / [i915#5286]) -> [SKIP][472] ([i915#5286]) +1 other test skip
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg1: [SKIP][473] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][474] ([i915#4538] / [i915#5286])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: [SKIP][475] ([i915#3638]) -> [SKIP][476] ([i915#14544] / [i915#3638])
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-90.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: [SKIP][477] ([i915#14544] / [i915#3638]) -> [SKIP][478] ([i915#3638]) +2 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][479] ([i915#14098] / [i915#6095]) -> [SKIP][480] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][481] ([i915#12313] / [i915#14544]) -> [SKIP][482] ([i915#12313])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][483] ([i915#6095]) -> [SKIP][484] ([i915#14544] / [i915#6095]) +3 other tests skip
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][485] ([i915#14544] / [i915#6095]) -> [SKIP][486] ([i915#6095]) +2 other tests skip
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][487] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][488] ([i915#14098] / [i915#6095]) +5 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: [SKIP][489] ([i915#14544] / [i915#3742]) -> [SKIP][490] ([i915#3742])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_cdclk@mode-transition.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-rkl: [SKIP][491] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][492] ([i915#11151] / [i915#7828]) +1 other test skip
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-5/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: [SKIP][493] ([i915#11151] / [i915#7828]) -> [SKIP][494] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-rkl: [SKIP][495] ([i915#14544] / [i915#15330]) -> [SKIP][496] ([i915#15330])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: [SKIP][497] ([i915#14544] / [i915#15865]) -> [SKIP][498] ([i915#15865]) +1 other test skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_content_protection@lic-type-1.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][499] ([i915#9433]) -> [SKIP][500] ([i915#15865])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-13/igt@kms_content_protection@mei-interface.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-16/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: [SKIP][501] ([i915#13049] / [i915#14544]) -> [SKIP][502] ([i915#13049])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: [SKIP][503] ([i915#13691] / [i915#14544]) -> [SKIP][504] ([i915#13691])
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: [SKIP][505] ([i915#13748]) -> [SKIP][506] ([i915#13748] / [i915#14544])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-2/igt@kms_dp_link_training@uhbr-mst.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-with-formats-bigjoiner:
- shard-rkl: [SKIP][507] ([i915#16361]) -> [SKIP][508] ([i915#14544] / [i915#16361]) +1 other test skip
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-2/igt@kms_dsc@dsc-with-formats-bigjoiner.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_dsc@dsc-with-formats-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-ultrajoiner:
- shard-rkl: [SKIP][509] ([i915#14544] / [i915#16361]) -> [SKIP][510] ([i915#16361])
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-rkl: [SKIP][511] ([i915#14544] / [i915#9934]) -> [SKIP][512] ([i915#9934]) +1 other test skip
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: [SKIP][513] ([i915#9934]) -> [SKIP][514] ([i915#14544] / [i915#9934]) +4 other tests skip
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-7/igt@kms_flip@2x-plain-flip-interruptible.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [ABORT][515] ([i915#15132]) -> [INCOMPLETE][516] ([i915#16276] / [i915#6113]) +1 other test incomplete
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-1/igt@kms_flip@flip-vs-suspend.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg1: [SKIP][517] ([i915#15643]) -> [SKIP][518] ([i915#15643] / [i915#4423])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-rkl: [SKIP][519] ([i915#14544] / [i915#15643]) -> [SKIP][520] ([i915#15643]) +2 other tests skip
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][521] ([i915#15990] / [i915#8708]) -> [SKIP][522] ([i915#15990] / [i915#4423] / [i915#8708]) +1 other test skip
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][523] ([i915#14544] / [i915#1825]) -> [SKIP][524] ([i915#1825]) +2 other tests skip
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][525] ([i915#15102]) -> [SKIP][526] ([i915#10433] / [i915#15102])
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-rkl: [SKIP][527] ([i915#15102] / [i915#3023]) -> [SKIP][528] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: [SKIP][529] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][530] ([i915#15102] / [i915#3023]) +4 other tests skip
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][531] ([i915#15102]) -> [SKIP][532] ([i915#14544] / [i915#15102]) +7 other tests skip
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-pgflip-blt:
- shard-dg1: [SKIP][533] ([i915#15102] / [i915#4423]) -> [SKIP][534] ([i915#15102])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-pgflip-blt.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-render:
- shard-rkl: [SKIP][535] -> [SKIP][536] ([i915#14544]) +23 other tests skip
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-render.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][537] ([i915#10433] / [i915#15102]) -> [SKIP][538] ([i915#15102])
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][539] ([i915#1825]) -> [SKIP][540] ([i915#14544] / [i915#1825]) +2 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg1: [SKIP][541] ([i915#15102]) -> [SKIP][542] ([i915#15102] / [i915#4423])
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-18/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-blt.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-18/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move:
- shard-rkl: [SKIP][543] ([i915#14544] / [i915#15102]) -> [SKIP][544] ([i915#15102]) +9 other tests skip
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-indfb-plflip-blt:
- shard-dg1: [SKIP][545] -> [SKIP][546] ([i915#4423]) +2 other tests skip
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-indfb-plflip-blt.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-18/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move:
- shard-rkl: [SKIP][547] ([i915#14544]) -> [SKIP][548] +37 other tests skip
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: [SKIP][549] ([i915#14544] / [i915#3555]) -> [SKIP][550] ([i915#3555]) +2 other tests skip
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-rkl: [SKIP][551] ([i915#13958]) -> [SKIP][552] ([i915#13958] / [i915#14544])
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-x.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: [SKIP][553] ([i915#14544] / [i915#15329]) -> [SKIP][554] ([i915#15329]) +6 other tests skip
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: [SKIP][555] ([i915#14544] / [i915#15329] / [i915#3555]) -> [SKIP][556] ([i915#15329] / [i915#3555])
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: [SKIP][557] ([i915#14544] / [i915#3828]) -> [SKIP][558] ([i915#3828])
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][559] ([i915#3828]) -> [SKIP][560] ([i915#9340])
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
- shard-dg1: [SKIP][561] ([i915#9340]) -> [SKIP][562] ([i915#3828])
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-17/igt@kms_pm_lpsp@kms-lpsp.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-rkl: [SKIP][563] ([i915#14544] / [i915#15403]) -> [SKIP][564] ([i915#15403])
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_pm_rpm@package-g7.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][565] ([i915#11520]) -> [SKIP][566] ([i915#11520] / [i915#14544]) +2 other tests skip
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][567] ([i915#11520] / [i915#14544]) -> [SKIP][568] ([i915#11520]) +3 other tests skip
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: [SKIP][569] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][570] ([i915#1072] / [i915#9732]) +5 other tests skip
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-rkl: [SKIP][571] ([i915#1072] / [i915#9732]) -> [SKIP][572] ([i915#1072] / [i915#14544] / [i915#9732]) +8 other tests skip
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-5/igt@kms_psr@pr-cursor-mmap-cpu.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-6/igt@kms_psr@pr-cursor-mmap-cpu.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: [SKIP][573] ([i915#14544] / [i915#9906]) -> [SKIP][574] ([i915#9906])
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-4/igt@kms_vrr@flip-basic-fastset.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: [SKIP][575] ([i915#14544] / [i915#2435]) -> [SKIP][576] ([i915#2435])
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@module-unload:
- shard-dg1: [ABORT][577] ([i915#15778]) -> [ABORT][578] ([i915#13029] / [i915#15778])
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-dg1-17/igt@perf_pmu@module-unload.html
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-dg1-14/igt@perf_pmu@module-unload.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: [SKIP][579] ([i915#14544] / [i915#3708]) -> [SKIP][580] ([i915#3708])
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18975/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/shard-rkl-3/igt@prime_vgem@coherency-gtt.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15314
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15433
[i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
[i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066
[i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
[i915#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109
[i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112
[i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
[i915#16226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16226
[i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276
[i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386
[i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420
[i915#16436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16436
[i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464
[i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471
[i915#16593]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16593
[i915#16599]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16599
[i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644
[i915#16680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16680
[i915#16785]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16785
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9049 -> IGTPW_15651
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18975: d6fed6030d92c5ea118c12464a48ee41db1b6916 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15651: 9909a06329155914b8f0a2b057db32d80345cbba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9049: 9049
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15651/index.html
[-- Attachment #2: Type: text/html, Size: 195994 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t v2 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing
2026-08-11 5:31 ` Golani, Mitulkumar Ajitkumar
@ 2026-08-11 19:23 ` Naladala, Ramanaidu
0 siblings, 0 replies; 10+ messages in thread
From: Naladala, Ramanaidu @ 2026-08-11 19:23 UTC (permalink / raw)
To: Golani, Mitulkumar Ajitkumar, igt-dev@lists.freedesktop.org
Cc: Borah, Chaitanya Kumar
Hi Mitul,
Thanks for the feedback.
I will fix review comments in next revision.
On 8/11/2026 11:01 AM, Golani, Mitulkumar Ajitkumar wrote:
>
>> -----Original Message-----
>> From: Naladala, Ramanaidu <ramanaidu.naladala@intel.com>
>> Sent: 11 August 2026 00:48
>> To: igt-dev@lists.freedesktop.org
>> Cc: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>; Golani,
>> Mitulkumar Ajitkumar <mitulkumar.ajitkumar.golani@intel.com>; Naladala,
>> Ramanaidu <ramanaidu.naladala@intel.com>
>> Subject: [PATCH i-g-t v2 1/2] lib/igt_vrr:Add VRR helper library for display
>> refresh rate testing
>>
>> Introduce a new helper library for Variable Refresh Rate (VRR).
>>
>> Add helpers to validate targeted refresh-rate testing.
>>
>> v2: Modify debugfs with helpers.
>>
>> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
>> ---
>> lib/igt_vrr.c | 118
>> ++++++++++++++++++++++++++++++++++++++++++++++++
>> lib/igt_vrr.h | 46 +++++++++++++++++++
>> lib/meson.build | 1 +
>> 3 files changed, 165 insertions(+)
>> create mode 100644 lib/igt_vrr.c
>> create mode 100644 lib/igt_vrr.h
>>
>> diff --git a/lib/igt_vrr.c b/lib/igt_vrr.c new file mode 100644 index
>> 000000000..09b008933
>> --- /dev/null
>> +++ b/lib/igt_vrr.c
>> @@ -0,0 +1,118 @@
>> +// SPDX-License-Identifier: MIT
>> +/*
>> + * Copyright © 2026 Intel Corporation
>> + */
>> +
>> +#include <inttypes.h>
>> +
>> +#include "igt_vrr.h"
>> +#include "igt_sysfs.h"
>> +
>> +/**
>> + * igt_target_rr_debugfs_write:
>> + * @fd: DRM file descriptor.
>> + * @crtc_index: Index of the CRTC.
>> + * @vrefresh: Target refresh rate to program.
>> + * @numerator: Numerator component of the target refresh rate fraction.
>> + * @denominator: Denominator component of the target refresh rate
>> fraction.
>> + *
>> + * Write the target refresh rate configuration to the per-CRTC
>> + * VRR debugfs interface.
>> + *
>> + * Returns: None.
>> + */
>> +void
>> +igt_target_rr_debugfs_write(int fd, int crtc_index,
>> + uint32_t vrefresh,
>> + uint32_t numerator,
>> + uint32_t denominator)
>> +{
>> + char buf[32];
>> + uint32_t ret, dir;
>> + uint64_t val;
>> +
>> + val = vrefresh * numerator;
>> +
>> + snprintf(buf, sizeof(buf), "%" PRIu64 "/%u",
>> + val, denominator);
>> +
>> + dir = igt_debugfs_crtc_dir(fd, crtc_index);
>> + igt_require_fd(dir);
>> +
>> + ret = igt_sysfs_write(dir, "intel_vrr_target_refresh_rate",
>> + buf, sizeof(buf) - 1);
>> + close(dir);
>> + igt_assert_f(ret == (sizeof(buf) - 1), "debugfs_write failed"); }
> NIT: Line 43 to 45, check for tab/space
>
>> +
>> +/**
>> + * igt_cmrr_debugfs_read:
>> + * @fd: DRM file descriptor.
>> + * @crtc_index: Index of the CRTC.
>> + *
>> + * Read the configured refresh rate from the per-CRTC VRR debugfs node.
>> + *
>> + * Return: None.
>> + */
>> +void
>> +igt_target_rr_debugfs_read(int fd, int crtc_index) {
>> + char buf[32];
>> + uint32_t ret, dir;
>> +
>> + dir = igt_debugfs_crtc_dir(fd, crtc_index);
>> + igt_require_fd(dir);
>> +
>> + ret = igt_sysfs_read(dir, "intel_vrr_target_refresh_rate",
>> + buf, sizeof(buf) - 1);
>> + igt_assert_f(ret >= 0,
>> + "Failed to read intel_vrr_target_refresh_rate.\n");
> dir/ret are uint32_t; igt_require_fd(dir) (dir >= 0) can never fail, and igt_sysfs_write(..., sizeof(buf)-1) writes 31 uninitialized bytes and asserts the handler consumed exactly 31. Use int for the fd/return, and write strlen(buf) asserting the return equals that. Also, dead ret >= 0 check + OOB buf[ret]
>
>> +
>> + buf[ret] = '\0';
>> +
>> + igt_info("%s\n", buf);
>> +}
>> +
>> +/**
>> + * igt_vrr_mode_line_refresh_hz:
>> + * @mode: DRM display mode used for the calculation
>> + *
>> + * Compute the refresh rate directly from the mode timing parameters.
>> + *
>> + * Returns: Refresh rate in Hz as a floating-point value.
>> + */
>> +double igt_vrr_mode_line_refresh_hz(const drmModeModeInfo *mode) {
>> + return (double)mode->clock * 1000.0 / ((double)mode->htotal *
>> +(double)mode->vtotal); }
>> +
>> +/**
>> + * igt_vrr_get_mode_with_video_timeing:
> typo "timing" -> "timing"
>
>> + * @output: Display output containing connector mode list
>> + * @fps: Requested integer refresh rate in Hz
>> + * @matched_mode: Returned mode that matches @fps
>> + *
>> + * Find and return a connector mode that matches the requested
>> + * video timing refresh rate in Hz.
>> + *
>> + * Returns: true when a mode is found, false otherwise */
>> +
>> +bool igt_vrr_get_mode_with_video_timeing(igt_output_t *output,
>> + uint32_t fps,
>> + drmModeModeInfo
>> *matched_mode)
>> +{
>> + drmModeConnectorPtr connector;
>> +
>> + connector = output->config.connector;
>> + if (!connector)
>> + return false;
>> +
>> + for (int i = 0; i < connector->count_modes; i++) {
>> + if (connector->modes[i].vrefresh == fps) {
>> + *matched_mode = connector->modes[i];
>> + return true;
>> + }
>> + }
>> + return false;
>> +}
>> diff --git a/lib/igt_vrr.h b/lib/igt_vrr.h new file mode 100644 index
>> 000000000..abea32a07
>> --- /dev/null
>> +++ b/lib/igt_vrr.h
>> @@ -0,0 +1,46 @@
>> +/* SPDX-License-Identifier: MIT */
>> +/*
>> + * Copyright © 2026 Intel Corporation
>> + */
>> +
>> +#ifndef IGT_VRR_H
>> +#define IGT_VRR_H
>> +
>> +#include <stdbool.h>
>> +#include <stdint.h>
>> +#include "igt.h"
>> +#include "igt_kms.h"
>> +
>> +#define CMRR_NUMERATOR 1000ULL
>> +#define CMRR_DENOMINATOR 1000ULL
>> +#define CMRR_VIDEO_MODE_DENOMINATOR 1001ULL #define
>> +TARGET_RR_SAMP_COUNT 100
>> +
>> +enum {
>> + CMRR_VIDEO_MODE,
>> + CMRR_NON_VIDEO_MODE,
>> + CMRR_DISABLE,
>> +};
>> +
>> +const uint32_t igt_vrr_standard_video_timing_fps[] = {
>> + 24, 25, 30, 48, 50, 60, 75, 90, 96, 100, 120, 144, 165, 180, 200, 240,
>> +};
> const uint32_t igt_vrr_standard_video_timing_fps[] (and its count) have external linkage and will cause a multiple-definition link error as soon as a second .c includes this header. Define them once in igt_vrr.c and expose extern declarations here.
>
>> +
>> +const uint32_t igt_vrr_standard_video_timing_fps_count =
>> + ARRAY_SIZE(igt_vrr_standard_video_timing_fps);
>> +
>> +void
>> +igt_target_rr_debugfs_write(int fd, int crtc_index,
>> + uint32_t vrefresh,
>> + uint32_t numerator,
>> + uint32_t denominator);
>> +void
>> +igt_target_rr_debugfs_read(int fd, int crtc_index);
>> +
>> +double igt_vrr_mode_line_refresh_hz(const drmModeModeInfo *mode);
>> +
>> +bool igt_vrr_get_mode_with_video_timeing(igt_output_t *output,
>> + uint32_t fps,
>> + drmModeModeInfo
>> *matched_mode);
>> +
>> +#endif
>> diff --git a/lib/meson.build b/lib/meson.build index 3001b473e..8675bd4a6
>> 100644
>> --- a/lib/meson.build
>> +++ b/lib/meson.build
>> @@ -22,6 +22,7 @@ lib_sources = [
>> 'igt_configfs.c',
>> 'igt_facts.c',
>> 'igt_crc.c',
>> + 'igt_vrr.c',
>> 'igt_debugfs.c',
>> 'igt_device.c',
>> 'igt_device_scan.c',
>> --
>> 2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-08-11 19:24 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-10 19:17 [PATCH i-g-t v2 0/2] Add CMRR subtests Naladala Ramanaidu
2026-08-10 19:17 ` [PATCH i-g-t v2 1/2] lib/igt_vrr:Add VRR helper library for display refresh rate testing Naladala Ramanaidu
2026-08-11 5:31 ` Golani, Mitulkumar Ajitkumar
2026-08-11 19:23 ` Naladala, Ramanaidu
2026-08-10 19:17 ` [PATCH i-g-t v2 2/2] tests/kms_vrr: add CMRR fixed and video mode subtests Naladala Ramanaidu
2026-08-11 5:31 ` Golani, Mitulkumar Ajitkumar
2026-08-10 20:13 ` ✗ i915.CI.BAT: failure for Add CMRR subtests (rev2) Patchwork
2026-08-10 23:35 ` ✓ Xe.CI.FULL: success " Patchwork
2026-08-11 6:49 ` ✓ i915.CI.BAT: " Patchwork
2026-08-11 10:21 ` ✓ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox