* [igt-dev] [PATCH i-g-t] tests/kms_dirtyfb: Add missing files
@ 2023-08-08 11:44 Jouni Högander
0 siblings, 0 replies; 5+ messages in thread
From: Jouni Högander @ 2023-08-08 11:44 UTC (permalink / raw)
To: igt-dev
Previously applied patches:
tests/i915/kms_frontbuffer_tracking: Split drrs into library
tests/i915/kms_frontbuffer_tracking: Split fbc into library
tests/kms_dirtyfb: Add new test for dirtyfb ioctl
were missing new files. Fix current build breakage by adding these
missing files.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
lib/i915/intel_drrs.c | 133 +++++++++++++++++
lib/i915/intel_drrs.h | 17 +++
lib/i915/intel_fbc.c | 96 +++++++++++++
lib/i915/intel_fbc.h | 19 +++
tests/i915/kms_dirtyfb.c | 303 +++++++++++++++++++++++++++++++++++++++
5 files changed, 568 insertions(+)
create mode 100644 lib/i915/intel_drrs.c
create mode 100644 lib/i915/intel_drrs.h
create mode 100644 lib/i915/intel_fbc.c
create mode 100644 lib/i915/intel_fbc.h
create mode 100644 tests/i915/kms_dirtyfb.c
diff --git a/lib/i915/intel_drrs.c b/lib/i915/intel_drrs.c
new file mode 100644
index 000000000..2f83e1394
--- /dev/null
+++ b/lib/i915/intel_drrs.c
@@ -0,0 +1,133 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#include <fcntl.h>
+
+#include "igt.h"
+#include "igt_sysfs.h"
+
+#include "intel_drrs.h"
+
+/**
+ * intel_is_drrs_supported:
+ * @device: fd of the device
+ * @pipe: Display pipe
+ *
+ * Check if DRRS is supported on given pipe.
+ *
+ * Returns:
+ * true if DRRS is supported and false otherwise.
+ */
+bool intel_is_drrs_supported(int device, enum pipe pipe)
+{
+ char buf[256];
+ int dir;
+
+ dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY);
+ igt_require_fd(dir);
+ igt_debugfs_simple_read(dir, "i915_drrs_status", buf, sizeof(buf));
+ close(dir);
+ if (*buf == '\0')
+ return false;
+
+ return !strcasestr(buf, "DRRS enabled:");
+}
+
+/**
+ * intel_output_has_drrs
+ * @device: fd of the device
+ * @output: Display output
+ *
+ * Check if drrs used on given output.
+ *
+ * Returns:
+ * true if DRRS is used and false otherwise.
+ */
+bool intel_output_has_drrs(int device, igt_output_t *output)
+{
+ char buf[256];
+ int dir;
+
+ dir = igt_debugfs_connector_dir(device, output->name, O_DIRECTORY);
+ igt_require_fd(dir);
+ igt_debugfs_simple_read(dir, "i915_drrs_type", buf, sizeof(buf));
+ close(dir);
+
+ return strstr(buf, "seamless");
+}
+
+static void drrs_set(int device, enum pipe pipe, unsigned int val)
+{
+ char buf[2];
+ int dir, ret;
+
+ igt_debug("Manually %sabling DRRS. %u\n", val ? "en" : "dis", val);
+ snprintf(buf, sizeof(buf), "%d", val);
+
+ dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY);
+ igt_require_fd(dir);
+ ret = igt_sysfs_write(dir, "i915_drrs_ctl", buf, sizeof(buf) - 1);
+
+ /*
+ * drrs_enable() is called on DRRS capable platform only,
+ * whereas drrs_disable() is called on all platforms.
+ * So handle the failure of debugfs_write only for drrs_enable().
+ */
+ if (val)
+ igt_assert_f(ret == (sizeof(buf) - 1), "debugfs_write failed");
+}
+
+/**
+ * intel_drrs_enable:
+ * @device: fd of the device
+ * @pipe: Display pipe
+ *
+ * Enable DRRS on given pipe
+ *
+ * Returns:
+ * none
+ */
+void intel_drrs_enable(int device, enum pipe pipe)
+{
+ drrs_set(device, pipe, 1);
+}
+
+/**
+ * intel_drrs_disable:
+ * @device: fd of the device
+ * @pipe: Display pipe
+ *
+ * Disable DRRS on given pipe
+ *
+ * Returns:
+ * none
+ */
+void intel_drrs_disable(int device, enum pipe pipe)
+{
+ drrs_set(device, pipe, 0);
+}
+
+/**
+ * intel_is_drrs_inactive:
+ * @device: fd of the device
+ * @pipe: Display pipe
+ *
+ * Check if drrs is inactive on given pipe
+ *
+ * Returns:
+ * true if inactive and false otherwise
+ */
+bool intel_is_drrs_inactive(int device, enum pipe pipe)
+{
+ char buf[256];
+ int dir;
+
+ dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY);
+ igt_require_fd(dir);
+ igt_debugfs_simple_read(dir, "i915_drrs_status", buf, sizeof(buf));
+ close(dir);
+
+ return strstr(buf, "DRRS active: no");
+}
diff --git a/lib/i915/intel_drrs.h b/lib/i915/intel_drrs.h
new file mode 100644
index 000000000..d4d27a5f9
--- /dev/null
+++ b/lib/i915/intel_drrs.h
@@ -0,0 +1,17 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2022 Intel Corporation
+ */
+
+#ifndef INTEL_DRRS_H
+#define INTEL_DRRS_H
+
+#include "igt.h"
+
+bool intel_is_drrs_supported(int device, enum pipe pipe);
+bool intel_output_has_drrs(int device, igt_output_t *output);
+void intel_drrs_enable(int device, enum pipe pipe);
+void intel_drrs_disable(int device, enum pipe pipe);
+bool intel_is_drrs_inactive(int device, enum pipe pipe);
+
+#endif
diff --git a/lib/i915/intel_fbc.c b/lib/i915/intel_fbc.c
new file mode 100644
index 000000000..a885b2f97
--- /dev/null
+++ b/lib/i915/intel_fbc.c
@@ -0,0 +1,96 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#include <fcntl.h>
+
+#include "igt.h"
+
+#include "intel_fbc.h"
+
+#define FBC_STATUS_BUF_LEN 128
+
+/**
+ * intel_fbc_supported_on_chipset:
+ * @device: fd of the device
+ * @pipe: Display pipe
+ *
+ * Check if FBC is supported by chipset on given pipe.
+ *
+ * Returns:
+ * true if FBC is supported and false otherwise.
+ */
+bool intel_fbc_supported_on_chipset(int device, enum pipe pipe)
+{
+ char buf[FBC_STATUS_BUF_LEN];
+ int dir;
+
+ dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY);
+ igt_require_fd(dir);
+ igt_debugfs_simple_read(dir, "i915_fbc_status", buf, sizeof(buf));
+ close(dir);
+ if (*buf == '\0')
+ return false;
+
+ return !strstr(buf, "FBC unsupported on this chipset\n");
+}
+
+static bool _intel_fbc_is_enabled(int device, enum pipe pipe, int log_level, char *last_fbc_buf)
+{
+ char buf[FBC_STATUS_BUF_LEN];
+ bool print = true;
+ int dir;
+
+ dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY);
+ igt_require_fd(dir);
+ igt_debugfs_simple_read(dir, "i915_fbc_status", buf, sizeof(buf));
+ close(dir);
+ if (log_level != IGT_LOG_DEBUG)
+ last_fbc_buf[0] = '\0';
+ else if (strcmp(last_fbc_buf, buf))
+ strcpy(last_fbc_buf, buf);
+ else
+ print = false;
+
+ if (print)
+ igt_log(IGT_LOG_DOMAIN, log_level, "fbc_is_enabled():\n%s\n", buf);
+
+ return strstr(buf, "FBC enabled\n");
+}
+
+/**
+ * intel_fbc_is_enabled:
+ * @device: fd of the device
+ * @pipe: Display pipe
+ * @log_level: Wanted loglevel
+ *
+ * Check if FBC is enabled on given pipe. Loglevel can be used to
+ * control at which loglevel current state is printed out.
+ *
+ * Returns:
+ * true if FBC is enabled.
+ */
+bool intel_fbc_is_enabled(int device, enum pipe pipe, int log_level)
+{
+ char last_fbc_buf[FBC_STATUS_BUF_LEN] = {'\0'};
+
+ return _intel_fbc_is_enabled(device, pipe, log_level, last_fbc_buf);
+}
+
+/**
+ * intel_fbc_wait_until_enabled:
+ * @device: fd of the device
+ * @pipe: Display pipe
+ *
+ * Wait until fbc is enabled. Used timeout is constant 2 seconds.
+ *
+ * Returns:
+ * true if FBC got enabled.
+ */
+bool intel_fbc_wait_until_enabled(int device, enum pipe pipe)
+{
+ char last_fbc_buf[FBC_STATUS_BUF_LEN] = {'\0'};
+
+ return igt_wait(_intel_fbc_is_enabled(device, pipe, IGT_LOG_DEBUG, last_fbc_buf), 2000, 1);
+}
diff --git a/lib/i915/intel_fbc.h b/lib/i915/intel_fbc.h
new file mode 100644
index 000000000..901bf984b
--- /dev/null
+++ b/lib/i915/intel_fbc.h
@@ -0,0 +1,19 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2022 Intel Corporation
+ */
+
+#ifndef INTEL_FBC_H
+#define INTEL_FBC_H
+
+#include "igt.h"
+
+#define intel_fbc_enable(device) igt_set_module_param_int(device, "enable_fbc", 1)
+#define intel_fbc_disable(device) igt_set_module_param_int(device, "enable_fbc", 0)
+
+bool intel_fbc_supported_on_chipset(int device, enum pipe pipe);
+bool intel_fbc_wait_until_enabled(int device, enum pipe pipe);
+bool intel_fbc_is_enabled(int device, enum pipe pipe, int log_level);
+
+#endif
+
diff --git a/tests/i915/kms_dirtyfb.c b/tests/i915/kms_dirtyfb.c
new file mode 100644
index 000000000..4e49574a2
--- /dev/null
+++ b/tests/i915/kms_dirtyfb.c
@@ -0,0 +1,303 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#include <sys/types.h>
+
+#include "igt.h"
+#include "igt_psr.h"
+
+#include "i915/intel_drrs.h"
+#include "i915/intel_fbc.h"
+
+#include "xe/xe_query.h"
+
+IGT_TEST_DESCRIPTION("Test the DIRTYFB ioctl is working properly with "
+ "its related features: FBC, PSR and DRRS");
+
+#ifndef PAGE_ALIGN
+#ifndef PAGE_SIZE
+#define PAGE_SIZE 4096
+#endif
+#define PAGE_ALIGN(x) ALIGN(x, PAGE_SIZE)
+#endif
+
+typedef struct {
+ int drm_fd;
+ int debugfs_fd;
+ igt_display_t display;
+ drmModeModeInfo *mode;
+ igt_output_t *output;
+ igt_pipe_crc_t *pipe_crc;
+ enum pipe pipe;
+
+ struct igt_fb fbs[3];
+
+ igt_crc_t ref_crc;
+
+ struct buf_ops *bops;
+ enum {
+ FEATURE_NONE = 0,
+ FEATURE_PSR = 1,
+ FEATURE_FBC = 2,
+ FEATURE_DRRS = 4,
+ FEATURE_COUNT = 8,
+ FEATURE_DEFAULT = 8,
+ } feature;
+} data_t;
+
+static const char *feature_str(int feature)
+{
+ switch (feature) {
+ case FEATURE_NONE:
+ return "nop";
+ case FEATURE_FBC:
+ return "fbc";
+ case FEATURE_PSR:
+ return "psr";
+ case FEATURE_DRRS:
+ return "drrs";
+ case FEATURE_DEFAULT:
+ return "default";
+ default:
+ igt_assert(false);
+ }
+}
+
+static bool check_support(data_t *data)
+{
+ switch (data->feature) {
+ case FEATURE_NONE:
+ return true;
+ case FEATURE_FBC:
+ return intel_fbc_supported_on_chipset(data->drm_fd, data->pipe);
+ case FEATURE_PSR:
+ if (data->output->config.connector->connector_type !=
+ DRM_MODE_CONNECTOR_eDP)
+ return false;
+ return psr_sink_support(data->drm_fd, data->debugfs_fd,
+ PSR_MODE_1);
+ case FEATURE_DRRS:
+ return intel_is_drrs_supported(data->drm_fd, data->pipe) &&
+ intel_output_has_drrs(data->drm_fd, data->output);
+ case FEATURE_DEFAULT:
+ return true;
+ default:
+ igt_assert(false);
+ }
+}
+
+static void enable_feature(data_t *data)
+{
+ switch (data->feature) {
+ case FEATURE_NONE:
+ break;
+ case FEATURE_FBC:
+ intel_fbc_enable(data->drm_fd);
+ break;
+ case FEATURE_PSR:
+ psr_enable(data->drm_fd, data->debugfs_fd, PSR_MODE_1);
+ break;
+ case FEATURE_DRRS:
+ intel_drrs_enable(data->drm_fd, data->pipe);
+ break;
+ case FEATURE_DEFAULT:
+ break;
+ default:
+ igt_assert(false);
+ }
+}
+
+static void check_feature(data_t *data)
+{
+ switch (data->feature) {
+ case FEATURE_NONE:
+ break;
+ case FEATURE_FBC:
+ igt_assert_f(intel_fbc_wait_until_enabled(data->drm_fd,
+ data->pipe),
+ "FBC still disabled");
+ break;
+ case FEATURE_PSR:
+ igt_assert_f(psr_wait_entry(data->debugfs_fd, PSR_MODE_1),
+ "PSR still disabled\n");
+ break;
+ case FEATURE_DRRS:
+ igt_assert_f(intel_is_drrs_inactive(data->drm_fd, data->pipe),
+ "DRRS INACTIVE\n");
+ break;
+ case FEATURE_DEFAULT:
+ break;
+ default:
+ igt_assert(false);
+ }
+}
+
+static void disable_features(data_t *data)
+{
+ intel_fbc_disable(data->drm_fd);
+ psr_disable(data->drm_fd, data->debugfs_fd);
+ intel_drrs_disable(data->drm_fd, data->pipe);
+}
+
+static void prepare(data_t *data)
+{
+ igt_plane_t *primary;
+
+ igt_skip_on(!check_support(data));
+
+ igt_display_reset(&data->display);
+
+ data->mode = igt_output_get_mode(data->output);
+
+ igt_output_set_pipe(data->output, data->pipe);
+
+ data->pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe,
+ IGT_PIPE_CRC_SOURCE_AUTO);
+
+ igt_create_color_fb(data->drm_fd, data->mode->hdisplay,
+ data->mode->vdisplay, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0,
+ &data->fbs[0]);
+
+ igt_draw_rect_fb(data->drm_fd, data->bops, 0, &data->fbs[0],
+ IGT_DRAW_RENDER, 0, 0, data->fbs[0].width,
+ data->fbs[0].height, 0xFF);
+
+ primary = igt_output_get_plane_type(data->output,
+ DRM_PLANE_TYPE_PRIMARY);
+
+ igt_plane_set_fb(primary, &data->fbs[0]);
+
+ if (data->feature != FEATURE_DEFAULT)
+ disable_features(data);
+
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ igt_pipe_crc_collect_crc(data->pipe_crc, &data->ref_crc);
+
+ igt_create_color_fb(data->drm_fd, data->mode->hdisplay,
+ data->mode->vdisplay, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0,
+ &data->fbs[1]);
+ igt_draw_rect_fb(data->drm_fd, data->bops, 0, &data->fbs[1],
+ IGT_DRAW_RENDER, 0, 0, data->fbs[1].width,
+ data->fbs[1].height, 0xFF);
+
+ igt_create_color_fb(data->drm_fd, data->mode->hdisplay,
+ data->mode->vdisplay, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0,
+ &data->fbs[2]);
+
+ igt_plane_set_fb(primary, &data->fbs[2]);
+
+ enable_feature(data);
+
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ check_feature(data);
+}
+
+static void cleanup(data_t *data)
+{
+ igt_remove_fb(data->drm_fd, &data->fbs[0]);
+ igt_remove_fb(data->drm_fd, &data->fbs[1]);
+ igt_remove_fb(data->drm_fd, &data->fbs[2]);
+
+ igt_pipe_crc_free(data->pipe_crc);
+
+ igt_output_set_pipe(data->output, PIPE_NONE);
+
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+static void run_test(data_t *data)
+{
+ igt_crc_t crc;
+ struct intel_buf *src, *dst;
+ struct intel_bb *ibb;
+ igt_spin_t *spin;
+ uint32_t devid = intel_get_drm_devid(data->drm_fd);
+ igt_render_copyfunc_t rendercopy = igt_get_render_copyfunc(devid);
+ int r;
+
+ igt_skip_on(!rendercopy);
+
+ src = intel_buf_create_full(data->bops, data->fbs[1].gem_handle,
+ data->fbs[1].width,
+ data->fbs[1].height,
+ igt_drm_format_to_bpp(data->fbs[1].drm_format),
+ 0,
+ igt_fb_mod_to_tiling(data->fbs[1].modifier),
+ 0, 0, 0, is_xe_device(data->drm_fd) ?
+ system_memory(data->drm_fd) : 0);
+ dst = intel_buf_create_full(data->bops, data->fbs[2].gem_handle,
+ data->fbs[2].width,
+ data->fbs[2].height,
+ igt_drm_format_to_bpp(data->fbs[2].drm_format),
+ 0, igt_fb_mod_to_tiling(data->fbs[2].modifier),
+ 0, 0, 0, is_xe_device(data->drm_fd) ?
+ system_memory(data->drm_fd) : 0);
+ ibb = intel_bb_create(data->drm_fd, PAGE_SIZE);
+
+ spin = igt_spin_new(data->drm_fd, .ahnd = ibb->allocator_handle);
+ igt_spin_set_timeout(spin, NSEC_PER_SEC);
+
+ rendercopy(ibb, src, 0, 0, data->fbs[2].width, data->fbs[2].height, dst, 0, 0);
+
+ /* Perfom dirtyfb right after initiating rendercopy */
+ r = drmModeDirtyFB(data->drm_fd, data->fbs[2].fb_id, NULL, 0);
+ igt_assert(r == 0 || r == -ENOSYS);
+
+ /* Ensure rendercopy is complete */
+ intel_bb_sync(ibb);
+
+ igt_pipe_crc_collect_crc(data->pipe_crc, &crc);
+ igt_assert_crc_equal(&crc, &data->ref_crc);
+
+ igt_spin_free(data->drm_fd, spin);
+ intel_bb_destroy(ibb);
+ intel_buf_destroy(src);
+ intel_buf_destroy(dst);
+}
+
+igt_main
+{
+ data_t data = {};
+
+ igt_fixture {
+ data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
+ data.debugfs_fd = igt_debugfs_dir(data.drm_fd);
+ kmstest_set_vt_graphics_mode();
+
+ igt_display_require(&data.display, data.drm_fd);
+
+ data.bops = buf_ops_create(data.drm_fd);
+
+ igt_display_reset(&data.display);
+ }
+
+ igt_describe("Test dirtyFB ioctl");
+ igt_subtest_with_dynamic("dirtyfb-ioctl") {
+ data.pipe = PIPE_A;
+ for_each_valid_output_on_pipe(&data.display, data.pipe,
+ data.output) {
+ for (data.feature = FEATURE_DEFAULT; data.feature > 0;
+ data.feature = data.feature >> 1) {
+ igt_dynamic_f("%s-%s", feature_str(data.feature),
+ igt_output_name(data.output)) {
+ prepare(&data);
+ run_test(&data);
+ cleanup(&data);
+ }
+ }
+ }
+ }
+
+ igt_fixture {
+ buf_ops_destroy(data.bops);
+ igt_display_fini(&data.display);
+ close(data.drm_fd);
+ }
+}
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [igt-dev] [PATCH i-g-t] tests/kms_dirtyfb: Add missing files
@ 2023-08-08 12:17 Jouni Högander
2023-08-08 15:15 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_dirtyfb: Add missing files (rev2) Patchwork
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Jouni Högander @ 2023-08-08 12:17 UTC (permalink / raw)
To: igt-dev
Previously applied patches:
tests/i915/kms_frontbuffer_tracking: Split drrs into library
tests/i915/kms_frontbuffer_tracking: Split fbc into library
tests/kms_dirtyfb: Add new test for dirtyfb ioctl
were missing new files. Fix current build breakage by adding these
missing files.
v2:
- Add Fixes tags
- Remove added blank line
Fixes: 784af2df476f ("tests/i915/kms_frontbuffer_tracking: Split fbc into library")
Fixes: bc3b24882550 ("tests/i915/kms_frontbuffer_tracking: Split drrs into library")
Fixes: 832d4f87d9fd ("tests/kms_dirtyfb: Add new test for dirtyfb ioctl")
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
lib/i915/intel_drrs.c | 133 +++++++++++++++++
lib/i915/intel_drrs.h | 17 +++
lib/i915/intel_fbc.c | 96 +++++++++++++
lib/i915/intel_fbc.h | 18 +++
tests/i915/kms_dirtyfb.c | 303 +++++++++++++++++++++++++++++++++++++++
5 files changed, 567 insertions(+)
create mode 100644 lib/i915/intel_drrs.c
create mode 100644 lib/i915/intel_drrs.h
create mode 100644 lib/i915/intel_fbc.c
create mode 100644 lib/i915/intel_fbc.h
create mode 100644 tests/i915/kms_dirtyfb.c
diff --git a/lib/i915/intel_drrs.c b/lib/i915/intel_drrs.c
new file mode 100644
index 000000000..2f83e1394
--- /dev/null
+++ b/lib/i915/intel_drrs.c
@@ -0,0 +1,133 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#include <fcntl.h>
+
+#include "igt.h"
+#include "igt_sysfs.h"
+
+#include "intel_drrs.h"
+
+/**
+ * intel_is_drrs_supported:
+ * @device: fd of the device
+ * @pipe: Display pipe
+ *
+ * Check if DRRS is supported on given pipe.
+ *
+ * Returns:
+ * true if DRRS is supported and false otherwise.
+ */
+bool intel_is_drrs_supported(int device, enum pipe pipe)
+{
+ char buf[256];
+ int dir;
+
+ dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY);
+ igt_require_fd(dir);
+ igt_debugfs_simple_read(dir, "i915_drrs_status", buf, sizeof(buf));
+ close(dir);
+ if (*buf == '\0')
+ return false;
+
+ return !strcasestr(buf, "DRRS enabled:");
+}
+
+/**
+ * intel_output_has_drrs
+ * @device: fd of the device
+ * @output: Display output
+ *
+ * Check if drrs used on given output.
+ *
+ * Returns:
+ * true if DRRS is used and false otherwise.
+ */
+bool intel_output_has_drrs(int device, igt_output_t *output)
+{
+ char buf[256];
+ int dir;
+
+ dir = igt_debugfs_connector_dir(device, output->name, O_DIRECTORY);
+ igt_require_fd(dir);
+ igt_debugfs_simple_read(dir, "i915_drrs_type", buf, sizeof(buf));
+ close(dir);
+
+ return strstr(buf, "seamless");
+}
+
+static void drrs_set(int device, enum pipe pipe, unsigned int val)
+{
+ char buf[2];
+ int dir, ret;
+
+ igt_debug("Manually %sabling DRRS. %u\n", val ? "en" : "dis", val);
+ snprintf(buf, sizeof(buf), "%d", val);
+
+ dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY);
+ igt_require_fd(dir);
+ ret = igt_sysfs_write(dir, "i915_drrs_ctl", buf, sizeof(buf) - 1);
+
+ /*
+ * drrs_enable() is called on DRRS capable platform only,
+ * whereas drrs_disable() is called on all platforms.
+ * So handle the failure of debugfs_write only for drrs_enable().
+ */
+ if (val)
+ igt_assert_f(ret == (sizeof(buf) - 1), "debugfs_write failed");
+}
+
+/**
+ * intel_drrs_enable:
+ * @device: fd of the device
+ * @pipe: Display pipe
+ *
+ * Enable DRRS on given pipe
+ *
+ * Returns:
+ * none
+ */
+void intel_drrs_enable(int device, enum pipe pipe)
+{
+ drrs_set(device, pipe, 1);
+}
+
+/**
+ * intel_drrs_disable:
+ * @device: fd of the device
+ * @pipe: Display pipe
+ *
+ * Disable DRRS on given pipe
+ *
+ * Returns:
+ * none
+ */
+void intel_drrs_disable(int device, enum pipe pipe)
+{
+ drrs_set(device, pipe, 0);
+}
+
+/**
+ * intel_is_drrs_inactive:
+ * @device: fd of the device
+ * @pipe: Display pipe
+ *
+ * Check if drrs is inactive on given pipe
+ *
+ * Returns:
+ * true if inactive and false otherwise
+ */
+bool intel_is_drrs_inactive(int device, enum pipe pipe)
+{
+ char buf[256];
+ int dir;
+
+ dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY);
+ igt_require_fd(dir);
+ igt_debugfs_simple_read(dir, "i915_drrs_status", buf, sizeof(buf));
+ close(dir);
+
+ return strstr(buf, "DRRS active: no");
+}
diff --git a/lib/i915/intel_drrs.h b/lib/i915/intel_drrs.h
new file mode 100644
index 000000000..d4d27a5f9
--- /dev/null
+++ b/lib/i915/intel_drrs.h
@@ -0,0 +1,17 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2022 Intel Corporation
+ */
+
+#ifndef INTEL_DRRS_H
+#define INTEL_DRRS_H
+
+#include "igt.h"
+
+bool intel_is_drrs_supported(int device, enum pipe pipe);
+bool intel_output_has_drrs(int device, igt_output_t *output);
+void intel_drrs_enable(int device, enum pipe pipe);
+void intel_drrs_disable(int device, enum pipe pipe);
+bool intel_is_drrs_inactive(int device, enum pipe pipe);
+
+#endif
diff --git a/lib/i915/intel_fbc.c b/lib/i915/intel_fbc.c
new file mode 100644
index 000000000..a885b2f97
--- /dev/null
+++ b/lib/i915/intel_fbc.c
@@ -0,0 +1,96 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#include <fcntl.h>
+
+#include "igt.h"
+
+#include "intel_fbc.h"
+
+#define FBC_STATUS_BUF_LEN 128
+
+/**
+ * intel_fbc_supported_on_chipset:
+ * @device: fd of the device
+ * @pipe: Display pipe
+ *
+ * Check if FBC is supported by chipset on given pipe.
+ *
+ * Returns:
+ * true if FBC is supported and false otherwise.
+ */
+bool intel_fbc_supported_on_chipset(int device, enum pipe pipe)
+{
+ char buf[FBC_STATUS_BUF_LEN];
+ int dir;
+
+ dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY);
+ igt_require_fd(dir);
+ igt_debugfs_simple_read(dir, "i915_fbc_status", buf, sizeof(buf));
+ close(dir);
+ if (*buf == '\0')
+ return false;
+
+ return !strstr(buf, "FBC unsupported on this chipset\n");
+}
+
+static bool _intel_fbc_is_enabled(int device, enum pipe pipe, int log_level, char *last_fbc_buf)
+{
+ char buf[FBC_STATUS_BUF_LEN];
+ bool print = true;
+ int dir;
+
+ dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY);
+ igt_require_fd(dir);
+ igt_debugfs_simple_read(dir, "i915_fbc_status", buf, sizeof(buf));
+ close(dir);
+ if (log_level != IGT_LOG_DEBUG)
+ last_fbc_buf[0] = '\0';
+ else if (strcmp(last_fbc_buf, buf))
+ strcpy(last_fbc_buf, buf);
+ else
+ print = false;
+
+ if (print)
+ igt_log(IGT_LOG_DOMAIN, log_level, "fbc_is_enabled():\n%s\n", buf);
+
+ return strstr(buf, "FBC enabled\n");
+}
+
+/**
+ * intel_fbc_is_enabled:
+ * @device: fd of the device
+ * @pipe: Display pipe
+ * @log_level: Wanted loglevel
+ *
+ * Check if FBC is enabled on given pipe. Loglevel can be used to
+ * control at which loglevel current state is printed out.
+ *
+ * Returns:
+ * true if FBC is enabled.
+ */
+bool intel_fbc_is_enabled(int device, enum pipe pipe, int log_level)
+{
+ char last_fbc_buf[FBC_STATUS_BUF_LEN] = {'\0'};
+
+ return _intel_fbc_is_enabled(device, pipe, log_level, last_fbc_buf);
+}
+
+/**
+ * intel_fbc_wait_until_enabled:
+ * @device: fd of the device
+ * @pipe: Display pipe
+ *
+ * Wait until fbc is enabled. Used timeout is constant 2 seconds.
+ *
+ * Returns:
+ * true if FBC got enabled.
+ */
+bool intel_fbc_wait_until_enabled(int device, enum pipe pipe)
+{
+ char last_fbc_buf[FBC_STATUS_BUF_LEN] = {'\0'};
+
+ return igt_wait(_intel_fbc_is_enabled(device, pipe, IGT_LOG_DEBUG, last_fbc_buf), 2000, 1);
+}
diff --git a/lib/i915/intel_fbc.h b/lib/i915/intel_fbc.h
new file mode 100644
index 000000000..995dc7f1e
--- /dev/null
+++ b/lib/i915/intel_fbc.h
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2022 Intel Corporation
+ */
+
+#ifndef INTEL_FBC_H
+#define INTEL_FBC_H
+
+#include "igt.h"
+
+#define intel_fbc_enable(device) igt_set_module_param_int(device, "enable_fbc", 1)
+#define intel_fbc_disable(device) igt_set_module_param_int(device, "enable_fbc", 0)
+
+bool intel_fbc_supported_on_chipset(int device, enum pipe pipe);
+bool intel_fbc_wait_until_enabled(int device, enum pipe pipe);
+bool intel_fbc_is_enabled(int device, enum pipe pipe, int log_level);
+
+#endif
diff --git a/tests/i915/kms_dirtyfb.c b/tests/i915/kms_dirtyfb.c
new file mode 100644
index 000000000..4e49574a2
--- /dev/null
+++ b/tests/i915/kms_dirtyfb.c
@@ -0,0 +1,303 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#include <sys/types.h>
+
+#include "igt.h"
+#include "igt_psr.h"
+
+#include "i915/intel_drrs.h"
+#include "i915/intel_fbc.h"
+
+#include "xe/xe_query.h"
+
+IGT_TEST_DESCRIPTION("Test the DIRTYFB ioctl is working properly with "
+ "its related features: FBC, PSR and DRRS");
+
+#ifndef PAGE_ALIGN
+#ifndef PAGE_SIZE
+#define PAGE_SIZE 4096
+#endif
+#define PAGE_ALIGN(x) ALIGN(x, PAGE_SIZE)
+#endif
+
+typedef struct {
+ int drm_fd;
+ int debugfs_fd;
+ igt_display_t display;
+ drmModeModeInfo *mode;
+ igt_output_t *output;
+ igt_pipe_crc_t *pipe_crc;
+ enum pipe pipe;
+
+ struct igt_fb fbs[3];
+
+ igt_crc_t ref_crc;
+
+ struct buf_ops *bops;
+ enum {
+ FEATURE_NONE = 0,
+ FEATURE_PSR = 1,
+ FEATURE_FBC = 2,
+ FEATURE_DRRS = 4,
+ FEATURE_COUNT = 8,
+ FEATURE_DEFAULT = 8,
+ } feature;
+} data_t;
+
+static const char *feature_str(int feature)
+{
+ switch (feature) {
+ case FEATURE_NONE:
+ return "nop";
+ case FEATURE_FBC:
+ return "fbc";
+ case FEATURE_PSR:
+ return "psr";
+ case FEATURE_DRRS:
+ return "drrs";
+ case FEATURE_DEFAULT:
+ return "default";
+ default:
+ igt_assert(false);
+ }
+}
+
+static bool check_support(data_t *data)
+{
+ switch (data->feature) {
+ case FEATURE_NONE:
+ return true;
+ case FEATURE_FBC:
+ return intel_fbc_supported_on_chipset(data->drm_fd, data->pipe);
+ case FEATURE_PSR:
+ if (data->output->config.connector->connector_type !=
+ DRM_MODE_CONNECTOR_eDP)
+ return false;
+ return psr_sink_support(data->drm_fd, data->debugfs_fd,
+ PSR_MODE_1);
+ case FEATURE_DRRS:
+ return intel_is_drrs_supported(data->drm_fd, data->pipe) &&
+ intel_output_has_drrs(data->drm_fd, data->output);
+ case FEATURE_DEFAULT:
+ return true;
+ default:
+ igt_assert(false);
+ }
+}
+
+static void enable_feature(data_t *data)
+{
+ switch (data->feature) {
+ case FEATURE_NONE:
+ break;
+ case FEATURE_FBC:
+ intel_fbc_enable(data->drm_fd);
+ break;
+ case FEATURE_PSR:
+ psr_enable(data->drm_fd, data->debugfs_fd, PSR_MODE_1);
+ break;
+ case FEATURE_DRRS:
+ intel_drrs_enable(data->drm_fd, data->pipe);
+ break;
+ case FEATURE_DEFAULT:
+ break;
+ default:
+ igt_assert(false);
+ }
+}
+
+static void check_feature(data_t *data)
+{
+ switch (data->feature) {
+ case FEATURE_NONE:
+ break;
+ case FEATURE_FBC:
+ igt_assert_f(intel_fbc_wait_until_enabled(data->drm_fd,
+ data->pipe),
+ "FBC still disabled");
+ break;
+ case FEATURE_PSR:
+ igt_assert_f(psr_wait_entry(data->debugfs_fd, PSR_MODE_1),
+ "PSR still disabled\n");
+ break;
+ case FEATURE_DRRS:
+ igt_assert_f(intel_is_drrs_inactive(data->drm_fd, data->pipe),
+ "DRRS INACTIVE\n");
+ break;
+ case FEATURE_DEFAULT:
+ break;
+ default:
+ igt_assert(false);
+ }
+}
+
+static void disable_features(data_t *data)
+{
+ intel_fbc_disable(data->drm_fd);
+ psr_disable(data->drm_fd, data->debugfs_fd);
+ intel_drrs_disable(data->drm_fd, data->pipe);
+}
+
+static void prepare(data_t *data)
+{
+ igt_plane_t *primary;
+
+ igt_skip_on(!check_support(data));
+
+ igt_display_reset(&data->display);
+
+ data->mode = igt_output_get_mode(data->output);
+
+ igt_output_set_pipe(data->output, data->pipe);
+
+ data->pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe,
+ IGT_PIPE_CRC_SOURCE_AUTO);
+
+ igt_create_color_fb(data->drm_fd, data->mode->hdisplay,
+ data->mode->vdisplay, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0,
+ &data->fbs[0]);
+
+ igt_draw_rect_fb(data->drm_fd, data->bops, 0, &data->fbs[0],
+ IGT_DRAW_RENDER, 0, 0, data->fbs[0].width,
+ data->fbs[0].height, 0xFF);
+
+ primary = igt_output_get_plane_type(data->output,
+ DRM_PLANE_TYPE_PRIMARY);
+
+ igt_plane_set_fb(primary, &data->fbs[0]);
+
+ if (data->feature != FEATURE_DEFAULT)
+ disable_features(data);
+
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ igt_pipe_crc_collect_crc(data->pipe_crc, &data->ref_crc);
+
+ igt_create_color_fb(data->drm_fd, data->mode->hdisplay,
+ data->mode->vdisplay, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0,
+ &data->fbs[1]);
+ igt_draw_rect_fb(data->drm_fd, data->bops, 0, &data->fbs[1],
+ IGT_DRAW_RENDER, 0, 0, data->fbs[1].width,
+ data->fbs[1].height, 0xFF);
+
+ igt_create_color_fb(data->drm_fd, data->mode->hdisplay,
+ data->mode->vdisplay, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0,
+ &data->fbs[2]);
+
+ igt_plane_set_fb(primary, &data->fbs[2]);
+
+ enable_feature(data);
+
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ check_feature(data);
+}
+
+static void cleanup(data_t *data)
+{
+ igt_remove_fb(data->drm_fd, &data->fbs[0]);
+ igt_remove_fb(data->drm_fd, &data->fbs[1]);
+ igt_remove_fb(data->drm_fd, &data->fbs[2]);
+
+ igt_pipe_crc_free(data->pipe_crc);
+
+ igt_output_set_pipe(data->output, PIPE_NONE);
+
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+static void run_test(data_t *data)
+{
+ igt_crc_t crc;
+ struct intel_buf *src, *dst;
+ struct intel_bb *ibb;
+ igt_spin_t *spin;
+ uint32_t devid = intel_get_drm_devid(data->drm_fd);
+ igt_render_copyfunc_t rendercopy = igt_get_render_copyfunc(devid);
+ int r;
+
+ igt_skip_on(!rendercopy);
+
+ src = intel_buf_create_full(data->bops, data->fbs[1].gem_handle,
+ data->fbs[1].width,
+ data->fbs[1].height,
+ igt_drm_format_to_bpp(data->fbs[1].drm_format),
+ 0,
+ igt_fb_mod_to_tiling(data->fbs[1].modifier),
+ 0, 0, 0, is_xe_device(data->drm_fd) ?
+ system_memory(data->drm_fd) : 0);
+ dst = intel_buf_create_full(data->bops, data->fbs[2].gem_handle,
+ data->fbs[2].width,
+ data->fbs[2].height,
+ igt_drm_format_to_bpp(data->fbs[2].drm_format),
+ 0, igt_fb_mod_to_tiling(data->fbs[2].modifier),
+ 0, 0, 0, is_xe_device(data->drm_fd) ?
+ system_memory(data->drm_fd) : 0);
+ ibb = intel_bb_create(data->drm_fd, PAGE_SIZE);
+
+ spin = igt_spin_new(data->drm_fd, .ahnd = ibb->allocator_handle);
+ igt_spin_set_timeout(spin, NSEC_PER_SEC);
+
+ rendercopy(ibb, src, 0, 0, data->fbs[2].width, data->fbs[2].height, dst, 0, 0);
+
+ /* Perfom dirtyfb right after initiating rendercopy */
+ r = drmModeDirtyFB(data->drm_fd, data->fbs[2].fb_id, NULL, 0);
+ igt_assert(r == 0 || r == -ENOSYS);
+
+ /* Ensure rendercopy is complete */
+ intel_bb_sync(ibb);
+
+ igt_pipe_crc_collect_crc(data->pipe_crc, &crc);
+ igt_assert_crc_equal(&crc, &data->ref_crc);
+
+ igt_spin_free(data->drm_fd, spin);
+ intel_bb_destroy(ibb);
+ intel_buf_destroy(src);
+ intel_buf_destroy(dst);
+}
+
+igt_main
+{
+ data_t data = {};
+
+ igt_fixture {
+ data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
+ data.debugfs_fd = igt_debugfs_dir(data.drm_fd);
+ kmstest_set_vt_graphics_mode();
+
+ igt_display_require(&data.display, data.drm_fd);
+
+ data.bops = buf_ops_create(data.drm_fd);
+
+ igt_display_reset(&data.display);
+ }
+
+ igt_describe("Test dirtyFB ioctl");
+ igt_subtest_with_dynamic("dirtyfb-ioctl") {
+ data.pipe = PIPE_A;
+ for_each_valid_output_on_pipe(&data.display, data.pipe,
+ data.output) {
+ for (data.feature = FEATURE_DEFAULT; data.feature > 0;
+ data.feature = data.feature >> 1) {
+ igt_dynamic_f("%s-%s", feature_str(data.feature),
+ igt_output_name(data.output)) {
+ prepare(&data);
+ run_test(&data);
+ cleanup(&data);
+ }
+ }
+ }
+ }
+
+ igt_fixture {
+ buf_ops_destroy(data.bops);
+ igt_display_fini(&data.display);
+ close(data.drm_fd);
+ }
+}
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_dirtyfb: Add missing files (rev2)
2023-08-08 12:17 [igt-dev] [PATCH i-g-t] tests/kms_dirtyfb: Add missing files Jouni Högander
@ 2023-08-08 15:15 ` Patchwork
2023-08-08 18:34 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
2023-08-09 0:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2023-08-08 15:15 UTC (permalink / raw)
To: Hogander, Jouni; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9872 bytes --]
== Series Details ==
Series: tests/kms_dirtyfb: Add missing files (rev2)
URL : https://patchwork.freedesktop.org/series/122151/
State : success
== Summary ==
CI Bug Log - changes from IGT_7422 -> IGTPW_9540
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/index.html
Participating hosts (42 -> 42)
------------------------------
Additional (1): bat-adlp-6
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9540 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-adlp-6: NOTRUN -> [SKIP][1] ([i915#7456])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-adlp-6/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adlp-9: NOTRUN -> [SKIP][2] ([i915#4613]) +3 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-adlp-9/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic:
- bat-adlp-6: NOTRUN -> [SKIP][3] ([i915#3282])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-adlp-6/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- bat-adlp-9: [PASS][4] -> [FAIL][5] ([i915#7940])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@module-reload:
- bat-adlp-9: NOTRUN -> [FAIL][6] ([i915#7940])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-adlp-9/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-adlp-9: NOTRUN -> [SKIP][7] ([i915#6621])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-adlp-9/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_mocs:
- bat-mtlp-8: [PASS][8] -> [DMESG-FAIL][9] ([i915#7059])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
- bat-mtlp-6: [PASS][10] -> [DMESG-FAIL][11] ([i915#7059])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@requests:
- bat-rpls-1: [PASS][12] -> [ABORT][13] ([i915#7911] / [i915#7920] / [i915#7982])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/bat-rpls-1/igt@i915_selftest@live@requests.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-rpls-1/igt@i915_selftest@live@requests.html
- bat-rpls-2: [PASS][14] -> [ABORT][15] ([i915#7913])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/bat-rpls-2/igt@i915_selftest@live@requests.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-rpls-2/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@slpc:
- bat-mtlp-6: [PASS][16] -> [DMESG-WARN][17] ([i915#6367])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/bat-mtlp-6/igt@i915_selftest@live@slpc.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-mtlp-6/igt@i915_selftest@live@slpc.html
- bat-mtlp-8: [PASS][18] -> [DMESG-WARN][19] ([i915#6367])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/bat-mtlp-8/igt@i915_selftest@live@slpc.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-mtlp-8/igt@i915_selftest@live@slpc.html
* igt@i915_selftest@live@workarounds:
- bat-adlm-1: [PASS][20] -> [INCOMPLETE][21] ([i915#4983] / [i915#7677])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/bat-adlm-1/igt@i915_selftest@live@workarounds.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-adlm-1/igt@i915_selftest@live@workarounds.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- bat-adlp-9: NOTRUN -> [SKIP][22] ([i915#7828])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-adlp-9/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
- fi-apl-guc: NOTRUN -> [SKIP][23] ([fdo#109271])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/fi-apl-guc/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- bat-adlp-6: NOTRUN -> [SKIP][24] ([i915#7828]) +7 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-adlp-6/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adlp-6: NOTRUN -> [SKIP][25] ([i915#4103]) +1 similar issue
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-adlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adlp-6: NOTRUN -> [SKIP][26] ([fdo#109285])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-adlp-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1:
- bat-adlp-6: NOTRUN -> [ABORT][27] ([i915#7977] / [i915#8434] / [i915#8668])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-adlp-6/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1.html
* igt@prime_vgem@basic-fence-read:
- bat-adlp-9: NOTRUN -> [SKIP][28] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-adlp-9/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@i915_pm_rpm@basic-rte:
- fi-cfl-8109u: [FAIL][29] ([i915#7940]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html
- bat-adlp-9: [ABORT][31] ([i915#7977] / [i915#8668]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/bat-adlp-9/igt@i915_pm_rpm@basic-rte.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-adlp-9/igt@i915_pm_rpm@basic-rte.html
- fi-kbl-7567u: [FAIL][33] ([i915#7940]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/fi-kbl-7567u/igt@i915_pm_rpm@basic-rte.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/fi-kbl-7567u/igt@i915_pm_rpm@basic-rte.html
* igt@i915_pm_rpm@module-reload:
- fi-apl-guc: [DMESG-FAIL][35] ([i915#8585]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/fi-apl-guc/igt@i915_pm_rpm@module-reload.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/fi-apl-guc/igt@i915_pm_rpm@module-reload.html
#### Warnings ####
* igt@kms_psr@sprite_plane_onoff:
- bat-rplp-1: [ABORT][37] ([i915#8712]) -> [ABORT][38] ([i915#8442] / [i915#8668] / [i915#8712])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7677]: https://gitlab.freedesktop.org/drm/intel/issues/7677
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977
[i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982
[i915#8434]: https://gitlab.freedesktop.org/drm/intel/issues/8434
[i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
[i915#8585]: https://gitlab.freedesktop.org/drm/intel/issues/8585
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7422 -> IGTPW_9540
CI-20190529: 20190529
CI_DRM_13491: 91b8ce32dffefc8f644e9ef0838dc108a776002a @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9540: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/index.html
IGT_7422: a7b9e93b67f02d17b99f9331fdcda14e21172c8c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
-igt@xe_pm@vram-d3cold-threshold
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/index.html
[-- Attachment #2: Type: text/html, Size: 11697 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for tests/kms_dirtyfb: Add missing files (rev2)
2023-08-08 12:17 [igt-dev] [PATCH i-g-t] tests/kms_dirtyfb: Add missing files Jouni Högander
2023-08-08 15:15 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_dirtyfb: Add missing files (rev2) Patchwork
@ 2023-08-08 18:34 ` Patchwork
2023-08-09 0:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2023-08-08 18:34 UTC (permalink / raw)
To: Hogander, Jouni; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 365 bytes --]
== Series Details ==
Series: tests/kms_dirtyfb: Add missing files (rev2)
URL : https://patchwork.freedesktop.org/series/122151/
State : info
== Summary ==
Participating hosts:
bat-pvc-2
bat-atsm-2
bat-dg2-oem2
bat-adlp-7
Missing hosts results[2]:
bat-dg2-oem2
bat-adlp-7
Results: [IGTPW_9540](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9540/index.html)
[-- Attachment #2: Type: text/html, Size: 893 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_dirtyfb: Add missing files (rev2)
2023-08-08 12:17 [igt-dev] [PATCH i-g-t] tests/kms_dirtyfb: Add missing files Jouni Högander
2023-08-08 15:15 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_dirtyfb: Add missing files (rev2) Patchwork
2023-08-08 18:34 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
@ 2023-08-09 0:04 ` Patchwork
2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2023-08-09 0:04 UTC (permalink / raw)
To: Hogander, Jouni; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 79651 bytes --]
== Series Details ==
Series: tests/kms_dirtyfb: Add missing files (rev2)
URL : https://patchwork.freedesktop.org/series/122151/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7422_full -> IGTPW_9540_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9540_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9540_full, please notify your bug team 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_9540/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9540_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-1/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html
Known issues
------------
Here are the changes found in IGTPW_9540_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][2] ([i915#8411])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-1/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@drm_buddy@drm_buddy_test:
- shard-snb: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#8661]) +1 similar issue
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-snb5/igt@drm_buddy@drm_buddy_test.html
* igt@drm_fdinfo@all-busy-check-all:
- shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8414]) +6 similar issues
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-7/igt@drm_fdinfo@all-busy-check-all.html
* igt@drm_fdinfo@virtual-busy-hang-all:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-8/igt@drm_fdinfo@virtual-busy-hang-all.html
* igt@gem_basic@multigpu-create-close:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#7697])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-11/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#5325])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-4/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#7697])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-17/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-mtlp: NOTRUN -> [FAIL][9] ([i915#6121])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-1/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@engines-hang@vcs0:
- shard-mtlp: [PASS][10] -> [FAIL][11] ([i915#2410])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-5/igt@gem_ctx_persistence@engines-hang@vcs0.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-1/igt@gem_ctx_persistence@engines-hang@vcs0.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8555])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-3/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#1099]) +2 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-snb1/igt@gem_ctx_persistence@processes.html
* igt@gem_eio@in-flight-internal-immediate:
- shard-mtlp: [PASS][14] -> [DMESG-WARN][15] ([i915#1982])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-8/igt@gem_eio@in-flight-internal-immediate.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-4/igt@gem_eio@in-flight-internal-immediate.html
* igt@gem_exec_balancer@bonded-dual:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#4771])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-3/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#4812])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-1/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [PASS][18] -> [FAIL][19] ([i915#2846])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-glk2/igt@gem_exec_fair@basic-deadline.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-glk7/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#3539] / [i915#4852])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-19/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: NOTRUN -> [FAIL][21] ([i915#2842])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [PASS][22] -> [FAIL][23] ([i915#2842]) +1 similar issue
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852]) +1 similar issue
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-5/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#3281]) +6 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4812]) +1 similar issue
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: NOTRUN -> [ABORT][27] ([i915#7975] / [i915#8213])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-3/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4860])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4860])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-11/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#4565])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#8289])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-8/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@bad-offset:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#4083])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-17/igt@gem_mmap@bad-offset.html
* igt@gem_mmap_gtt@basic-read-write-distinct:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#4077]) +1 similar issue
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-13/igt@gem_mmap_gtt@basic-read-write-distinct.html
* igt@gem_mmap_gtt@fault-concurrent:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4077]) +7 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-3/igt@gem_mmap_gtt@fault-concurrent.html
* igt@gem_mmap_wc@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4083]) +3 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-5/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4083]) +1 similar issue
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-2/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@write:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3282]) +1 similar issue
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-1/igt@gem_partial_pwrite_pread@write.html
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#3282]) +1 similar issue
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-6/igt@gem_partial_pwrite_pread@write.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#4270])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-13/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4270]) +1 similar issue
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-6/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4270])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-3/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3282]) +3 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-1/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-x-tiled:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#8428]) +5 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-1/igt@gem_render_copy@y-tiled-ccs-to-x-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#5190]) +6 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-8/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
* igt@gem_tiling_max_stride:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4077]) +2 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-2/igt@gem_tiling_max_stride.html
* igt@gem_unfence_active_buffers:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4879])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-2/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@access-control:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3297]) +3 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-4/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3297] / [i915#4880])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@nohangcheck:
- shard-mtlp: [PASS][49] -> [FAIL][50] ([i915#6268])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-2/igt@gem_userptr_blits@nohangcheck.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-3/igt@gem_userptr_blits@nohangcheck.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#3281]) +6 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-3/igt@gem_userptr_blits@relocations.html
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#3281]) +2 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-7/igt@gem_userptr_blits@relocations.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][53] ([fdo#109289])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-5/igt@gen7_exec_parse@basic-rejected.html
- shard-rkl: NOTRUN -> [SKIP][54] ([fdo#109289])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-2/igt@gen7_exec_parse@basic-rejected.html
* igt@gen7_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][55] ([fdo#109289]) +1 similar issue
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-5/igt@gen7_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#2856]) +2 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-2/igt@gen9_exec_parse@batch-zero-length.html
* igt@i915_hangman@engine-engine-error@vcs0:
- shard-mtlp: NOTRUN -> [FAIL][57] ([i915#7069]) +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-6/igt@i915_hangman@engine-engine-error@vcs0.html
* igt@i915_module_load@load:
- shard-snb: NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#6227])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-snb5/igt@i915_module_load@load.html
* igt@i915_pm_backlight@basic-brightness:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#5354] / [i915#7561])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-8/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#658]) +1 similar issue
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-1/igt@i915_pm_dc@dc5-psr.html
* igt@i915_pm_dc@dc9-dpms:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3361])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-7/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: [PASS][62] -> [WARN][63] ([i915#2681])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-fence.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-dg1: [PASS][64] -> [FAIL][65] ([i915#3591])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@i915_pm_rpm@drm-resources-equal:
- shard-rkl: [PASS][66] -> [FAIL][67] ([i915#7940])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-rkl-6/igt@i915_pm_rpm@drm-resources-equal.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-1/igt@i915_pm_rpm@drm-resources-equal.html
* igt@i915_pm_rpm@fences-dpms:
- shard-tglu: [PASS][68] -> [FAIL][69] ([i915#7940])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-tglu-4/igt@i915_pm_rpm@fences-dpms.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-9/igt@i915_pm_rpm@fences-dpms.html
* igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
- shard-dg1: [PASS][70] -> [FAIL][71] ([i915#7940])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-16/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
* igt@i915_pm_rpm@i2c:
- shard-dg2: [PASS][72] -> [FAIL][73] ([i915#8717])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg2-8/igt@i915_pm_rpm@i2c.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-2/igt@i915_pm_rpm@i2c.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][74] -> [SKIP][75] ([i915#1397]) +1 similar issue
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg2-8/igt@i915_pm_rpm@modeset-non-lpsp.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#1397])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
- shard-tglu: NOTRUN -> [SKIP][77] ([fdo#111644] / [i915#1397])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-mtlp: NOTRUN -> [SKIP][78] ([fdo#109303])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-1/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-snb: NOTRUN -> [DMESG-WARN][79] ([i915#8841]) +5 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-snb2/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4215] / [i915#5190])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4212])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-10/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4212])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-5/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#8502] / [i915#8709]) +11 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#8502]) +7 similar issues
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][85] ([i915#1982] / [i915#8561])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-4/igt@kms_async_flips@crc@pipe-a-edp-1.html
* igt@kms_async_flips@crc@pipe-b-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][86] ([i915#8247]) +1 similar issue
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-snb1/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][87] ([i915#8561]) +2 similar issues
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-4/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][88] -> [FAIL][89] ([i915#5138])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#5286])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: NOTRUN -> [FAIL][91] ([i915#3743])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#4538] / [i915#5286])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-mtlp: [PASS][93] -> [FAIL][94] ([i915#3743])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][95] ([fdo#111614]) +2 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-2/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][96] ([fdo#111614])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-11/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
- shard-rkl: NOTRUN -> [SKIP][97] ([fdo#111614] / [i915#3638])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-7/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#6187]) +1 similar issue
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][99] ([fdo#111615]) +6 similar issues
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4538] / [i915#5190]) +2 similar issues
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][101] ([fdo#110723]) +1 similar issue
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][102] ([fdo#111615]) +1 similar issue
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#4538])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#3689] / [i915#5354]) +5 similar issues
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-11/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#3886] / [i915#6095]) +6 similar issues
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-4/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-13/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#5354] / [i915#6095]) +2 similar issues
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-3/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#3689] / [i915#3886] / [i915#5354]) +7 similar issues
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-8/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#5354] / [i915#6095]) +2 similar issues
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs_cc:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#5354] / [i915#6095]) +4 similar issues
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-18/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-missing-ccs-buffer-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][111] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-7/igt@kms_ccs@pipe-c-missing-ccs-buffer-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#5354]) +5 similar issues
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-2/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6095]) +15 similar issues
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-3/igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#3689] / [i915#5354] / [i915#6095])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-6/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-13/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#7213] / [i915#9010])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4087] / [i915#7213]) +3 similar issues
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#4087]) +3 similar issues
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#7828]) +3 similar issues
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-8/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#7828]) +2 similar issues
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#7828])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-10/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#7828]) +5 similar issues
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-1/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#7828]) +1 similar issue
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-16/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#7116])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-18/igt@kms_content_protection@atomic.html
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6944]) +1 similar issue
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-8/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#3299]) +1 similar issue
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#8814]) +1 similar issue
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#3546]) +1 similar issue
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-snb: NOTRUN -> [SKIP][129] ([fdo#109271] / [fdo#111767]) +1 similar issue
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-snb2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#4103] / [i915#4213])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#4103])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: NOTRUN -> [SKIP][132] ([fdo#109274] / [i915#5354])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][133] ([fdo#109274])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#8588])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-5/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#8588])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#3804])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#3840])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-4/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3955])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#3469])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-4/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#3469])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu: NOTRUN -> [SKIP][141] ([fdo#109274] / [i915#3637])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-4/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#8381])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-19/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-dg2: NOTRUN -> [SKIP][143] ([fdo#109274]) +2 similar issues
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][144] ([fdo#111767] / [i915#3637])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3637]) +2 similar issues
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][146] ([fdo#111825]) +3 similar issues
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-2/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1:
- shard-glk: [PASS][147] -> [FAIL][148] ([i915#2122])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-glk7/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-glk4/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#8810])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#2672]) +1 similar issue
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#2587] / [i915#2672]) +1 similar issue
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#2672]) +2 similar issues
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: NOTRUN -> [SKIP][153] ([fdo#109285])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-4/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-dg2: [PASS][154] -> [FAIL][155] ([i915#6880]) +2 similar issues
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#8708]) +9 similar issues
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][157] ([fdo#109280]) +1 similar issue
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#8708]) +1 similar issue
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#1825]) +24 similar issues
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][160] ([fdo#111825]) +5 similar issues
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#5354]) +15 similar issues
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#3458]) +7 similar issues
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#3023]) +6 similar issues
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#3458]) +2 similar issues
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#8708]) +2 similar issues
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][166] ([fdo#111825] / [i915#1825]) +1 similar issue
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][167] ([fdo#110189]) +3 similar issues
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#8228]) +1 similar issue
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-planes:
- shard-mtlp: [PASS][169] -> [FAIL][170] ([i915#1623])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-7/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-8/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#8821])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-6/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][172] ([i915#8292])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#5176]) +3 similar issues
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#5176]) +1 similar issue
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#5176]) +19 similar issues
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#5235]) +3 similar issues
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#5235]) +19 similar issues
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#5235]) +23 similar issues
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#5235]) +7 similar issues
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-dg1: NOTRUN -> [SKIP][180] ([fdo#111068] / [i915#658])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-13/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][181] ([fdo#111068] / [i915#658])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][182] ([fdo#109642] / [fdo#111068] / [i915#658])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-9/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@sprite_mmap_cpu:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#1072]) +2 similar issues
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-1/igt@kms_psr@sprite_mmap_cpu.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#4235]) +1 similar issue
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-3/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-rkl: [PASS][185] -> [ABORT][186] ([i915#7461] / [i915#8875])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#4235])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#3555]) +1 similar issue
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-17/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#5030]) +3 similar issues
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-1/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html
* igt@kms_selftest@drm_dp_mst:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#8661])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-3/igt@kms_selftest@drm_dp_mst.html
* igt@kms_selftest@drm_plane:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#8661])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-11/igt@kms_selftest@drm_plane.html
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#8661])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-7/igt@kms_selftest@drm_plane.html
* igt@kms_universal_plane@universal-plane-pipe-d-sanity:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#4070] / [i915#533] / [i915#6768])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-2/igt@kms_universal_plane@universal-plane-pipe-d-sanity.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
- shard-dg2: [PASS][194] -> [FAIL][195] ([fdo#103375]) +3 similar issues
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg2-5/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-5/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
* igt@kms_vblank@pipe-c-query-busy-hang:
- shard-snb: NOTRUN -> [SKIP][196] ([fdo#109271]) +254 similar issues
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-snb2/igt@kms_vblank@pipe-c-query-busy-hang.html
* igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#4070] / [i915#6768])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-4/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#3555]) +4 similar issues
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-8/igt@kms_vrr@negative-basic.html
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#3555]) +1 similar issue
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-7/igt@kms_vrr@negative-basic.html
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#3555]) +1 similar issue
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-7/igt@kms_vrr@negative-basic.html
* igt@perf@enable-disable@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][201] ([i915#8724])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html
* igt@perf@gen12-group-concurrent-oa-buffer-read:
- shard-mtlp: [PASS][202] -> [FAIL][203] ([i915#1542])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-7/igt@perf@gen12-group-concurrent-oa-buffer-read.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-6/igt@perf@gen12-group-concurrent-oa-buffer-read.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [PASS][204] -> [FAIL][205] ([i915#4349])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-idle-check-all@ccs3:
- shard-dg2: [PASS][206] -> [FAIL][207] ([i915#4521]) +4 similar issues
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg2-8/igt@perf_pmu@busy-idle-check-all@ccs3.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-3/igt@perf_pmu@busy-idle-check-all@ccs3.html
* igt@perf_pmu@busy-idle-check-all@vcs1:
- shard-dg1: [PASS][208] -> [FAIL][209] ([i915#4521])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg1-17/igt@perf_pmu@busy-idle-check-all@vcs1.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-17/igt@perf_pmu@busy-idle-check-all@vcs1.html
* igt@perf_pmu@frequency@gt0:
- shard-dg1: NOTRUN -> [FAIL][210] ([i915#6806])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-14/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#8516])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-10/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#8516])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-4/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#8516])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-3/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@perf_pmu@rc6@runtime-pm-long-gt1:
- shard-mtlp: [PASS][214] -> [SKIP][215] ([i915#8537]) +2 similar issues
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-4/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-1/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
* igt@sysfs_heartbeat_interval@nopreempt@bcs0:
- shard-mtlp: [PASS][216] -> [FAIL][217] ([i915#6015]) +3 similar issues
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-6/igt@sysfs_heartbeat_interval@nopreempt@bcs0.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-4/igt@sysfs_heartbeat_interval@nopreempt@bcs0.html
* igt@v3d/v3d_mmap@mmap-bo:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#2575]) +6 similar issues
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-2/igt@v3d/v3d_mmap@mmap-bo.html
* igt@v3d/v3d_submit_csd@multi-and-single-sync:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#2575]) +3 similar issues
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-2/igt@v3d/v3d_submit_csd@multi-and-single-sync.html
- shard-rkl: NOTRUN -> [SKIP][220] ([fdo#109315]) +1 similar issue
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-1/igt@v3d/v3d_submit_csd@multi-and-single-sync.html
- shard-tglu: NOTRUN -> [SKIP][221] ([fdo#109315] / [i915#2575]) +1 similar issue
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-2/igt@v3d/v3d_submit_csd@multi-and-single-sync.html
* igt@vc4/vc4_lookup_fail@bad-color-write:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#7711])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-16/igt@vc4/vc4_lookup_fail@bad-color-write.html
* igt@vc4/vc4_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#7711]) +3 similar issues
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-2/igt@vc4/vc4_perfmon@create-perfmon-exceed.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#7711])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-6/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html
* igt@vc4/vc4_tiling@get-bad-handle:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#7711]) +3 similar issues
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-11/igt@vc4/vc4_tiling@get-bad-handle.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#2575])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-6/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][227] ([i915#7742]) -> [PASS][228]
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-rkl-7/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][229] ([i915#6268]) -> [PASS][230]
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
- shard-tglu: [FAIL][231] ([i915#6268]) -> [PASS][232]
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@in-flight-contexts-immediate:
- shard-mtlp: [ABORT][233] ([i915#8503]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-4/igt@gem_eio@in-flight-contexts-immediate.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-7/igt@gem_eio@in-flight-contexts-immediate.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][235] ([i915#5784]) -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg1-18/igt@gem_eio@unwedge-stress.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-15/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_await@wide-contexts:
- shard-dg2: [FAIL][237] ([i915#5892]) -> [PASS][238]
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg2-1/igt@gem_exec_await@wide-contexts.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-6/igt@gem_exec_await@wide-contexts.html
* igt@gem_exec_capture@pi@vcs0:
- shard-mtlp: [FAIL][239] ([i915#4475]) -> [PASS][240]
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-4/igt@gem_exec_capture@pi@vcs0.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-7/igt@gem_exec_capture@pi@vcs0.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: [FAIL][241] ([i915#2842]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-rkl-6/igt@gem_exec_fair@basic-none@bcs0.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-6/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][243] ([i915#5493]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][245] ([i915#8489] / [i915#8668]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][247] ([i915#4281]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-tglu-3/igt@i915_pm_dc@dc9-dpms.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-4/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@rc6-idle@bcs0:
- shard-dg1: [FAIL][249] ([i915#3591]) -> [PASS][250]
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- shard-dg1: [FAIL][251] ([i915#7691]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg1-15/igt@i915_pm_rpm@basic-pci-d3-state.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-17/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][253] ([i915#1397]) -> [PASS][254] +2 similar issues
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-rkl-1/igt@i915_pm_rpm@dpms-lpsp.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@gem-execbuf-stress@smem0:
- shard-dg1: [FAIL][255] ([i915#7940]) -> [PASS][256] +3 similar issues
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-16/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html
* igt@i915_selftest@live@gt_mocs:
- shard-mtlp: [DMESG-FAIL][257] ([i915#7059]) -> [PASS][258]
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-5/igt@i915_selftest@live@gt_mocs.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-1/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@requests:
- shard-mtlp: [DMESG-FAIL][259] ([i915#8497]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-5/igt@i915_selftest@live@requests.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-1/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][261] ([i915#6763]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-5/igt@i915_selftest@live@workarounds.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-1/igt@i915_selftest@live@workarounds.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][263] ([i915#5138]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [FAIL][265] ([i915#2346]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][267] ([i915#2346]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3:
- shard-dg2: [FAIL][269] ([fdo#103375]) -> [PASS][270] +1 similar issue
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2: [FAIL][271] ([i915#6880]) -> [PASS][272] +2 similar issues
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_vblank@pipe-c-wait-forked-busy-hang:
- shard-mtlp: [DMESG-WARN][273] ([i915#2017]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-5/igt@kms_vblank@pipe-c-wait-forked-busy-hang.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-4/igt@kms_vblank@pipe-c-wait-forked-busy-hang.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][275] ([i915#7484]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg2-3/igt@perf@non-zero-reason@0-rcs0.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][277] ([i915#4349]) -> [PASS][278] +14 similar issues
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@busy-idle@vcs0:
- shard-dg1: [FAIL][279] ([i915#4349]) -> [PASS][280] +1 similar issue
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg1-19/igt@perf_pmu@busy-idle@vcs0.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-19/igt@perf_pmu@busy-idle@vcs0.html
- shard-mtlp: [FAIL][281] ([i915#4349]) -> [PASS][282] +3 similar issues
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-5/igt@perf_pmu@busy-idle@vcs0.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-4/igt@perf_pmu@busy-idle@vcs0.html
* igt@sysfs_heartbeat_interval@precise@vecs0:
- shard-mtlp: [FAIL][283] ([i915#8332]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-7/igt@sysfs_heartbeat_interval@precise@vecs0.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-3/igt@sysfs_heartbeat_interval@precise@vecs0.html
#### Warnings ####
* igt@gem_exec_whisper@basic-contexts-forked-all:
- shard-mtlp: [TIMEOUT][285] ([i915#7392] / [i915#8628]) -> [ABORT][286] ([i915#7392] / [i915#8131])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html
* igt@gem_softpin@noreloc-s3:
- shard-snb: [DMESG-WARN][287] ([i915#8841]) -> [INCOMPLETE][288] ([i915#7793])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-snb1/igt@gem_softpin@noreloc-s3.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-snb6/igt@gem_softpin@noreloc-s3.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-dg1: [SKIP][289] ([i915#4423] / [i915#7828]) -> [SKIP][290] ([i915#7828])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg1-15/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@mei_interface:
- shard-rkl: [SKIP][291] ([i915#7118]) -> [SKIP][292] ([fdo#109300])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-rkl-1/igt@kms_content_protection@mei_interface.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-4/igt@kms_content_protection@mei_interface.html
- shard-dg1: [SKIP][293] ([i915#7116]) -> [SKIP][294] ([fdo#109300])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg1-17/igt@kms_content_protection@mei_interface.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-16/igt@kms_content_protection@mei_interface.html
- shard-tglu: [SKIP][295] ([i915#6944] / [i915#7116] / [i915#7118]) -> [SKIP][296] ([fdo#109300])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-tglu-2/igt@kms_content_protection@mei_interface.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-tglu-3/igt@kms_content_protection@mei_interface.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][297] ([i915#7118]) -> [SKIP][298] ([i915#7118] / [i915#7162])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg2-8/igt@kms_content_protection@type1.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-11/igt@kms_content_protection@type1.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-mtlp: [DMESG-FAIL][299] ([i915#2017] / [i915#5954]) -> [DMESG-FAIL][300] ([i915#1982] / [i915#2017] / [i915#5954])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-vga1:
- shard-snb: [DMESG-WARN][301] ([i915#8841]) -> [INCOMPLETE][302] ([i915#4839])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@b-vga1.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-snb7/igt@kms_flip@flip-vs-suspend-interruptible@b-vga1.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][303] ([i915#4070] / [i915#4816]) -> [SKIP][304] ([i915#4816])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@sprite_plane_onoff:
- shard-dg1: [SKIP][305] ([i915#1072]) -> [SKIP][306] ([i915#1072] / [i915#4078]) +1 similar issue
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg1-19/igt@kms_psr@sprite_plane_onoff.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg1-16/igt@kms_psr@sprite_plane_onoff.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [CRASH][307] ([i915#7331]) -> [INCOMPLETE][308] ([i915#5493])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7422/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/shard-dg2-8/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542
[i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475
[i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892
[i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954
[i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7793]: https://gitlab.freedesktop.org/drm/intel/issues/7793
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489
[i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8537]: https://gitlab.freedesktop.org/drm/intel/issues/8537
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717
[i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7422 -> IGTPW_9540
CI-20190529: 20190529
CI_DRM_13491: 91b8ce32dffefc8f644e9ef0838dc108a776002a @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9540: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/index.html
IGT_7422: a7b9e93b67f02d17b99f9331fdcda14e21172c8c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9540/index.html
[-- Attachment #2: Type: text/html, Size: 96282 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-08-09 0:04 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-08 12:17 [igt-dev] [PATCH i-g-t] tests/kms_dirtyfb: Add missing files Jouni Högander
2023-08-08 15:15 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_dirtyfb: Add missing files (rev2) Patchwork
2023-08-08 18:34 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
2023-08-09 0:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2023-08-08 11:44 [igt-dev] [PATCH i-g-t] tests/kms_dirtyfb: Add missing files Jouni Högander
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox