* [igt-dev] [v3 0/2] tests/i915/kms_dsc: Reorg
@ 2023-01-18 16:50 Swati Sharma
2023-01-18 16:50 ` [igt-dev] [v3 1/2] lib/dsc: Move VDSC functions to separate lib file Swati Sharma
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Swati Sharma @ 2023-01-18 16:50 UTC (permalink / raw)
To: igt-dev
In this patch series, helper functions for kms_dsc
are introuduced which will reduce code duplication
while creating dsc concurrent tests (eg: PSR)
This is split from https://patchwork.freedesktop.org/series/111342/
since YCBCR420 DSC required driver+igt changes.
Swati Sharma (2):
lib/dsc: Move VDSC functions to separate lib file
Move wrapper functions from kms_dsc to kms_dsc_helper
lib/igt.h | 1 +
lib/igt_dsc.c | 133 ++++++++++++++++++++++++++++++++++++
lib/igt_dsc.h | 19 ++++++
lib/igt_kms.c | 127 ----------------------------------
lib/igt_kms.h | 10 ---
lib/meson.build | 1 +
tests/i915/kms_dsc.c | 133 +++---------------------------------
tests/i915/kms_dsc_helper.c | 99 +++++++++++++++++++++++++++
tests/i915/kms_dsc_helper.h | 35 ++++++++++
tests/meson.build | 9 ++-
10 files changed, 305 insertions(+), 262 deletions(-)
create mode 100644 lib/igt_dsc.c
create mode 100644 lib/igt_dsc.h
create mode 100644 tests/i915/kms_dsc_helper.c
create mode 100644 tests/i915/kms_dsc_helper.h
--
2.25.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] [v3 1/2] lib/dsc: Move VDSC functions to separate lib file
2023-01-18 16:50 [igt-dev] [v3 0/2] tests/i915/kms_dsc: Reorg Swati Sharma
@ 2023-01-18 16:50 ` Swati Sharma
2023-01-18 16:50 ` [igt-dev] [v3 2/2] Move wrapper functions from kms_dsc to kms_dsc_helper Swati Sharma
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Swati Sharma @ 2023-01-18 16:50 UTC (permalink / raw)
To: igt-dev
Move dsc func() from lib/igt_kms to lib/igt_dsc. With
DSC1.2a new functions will be introduced. It's better
to create separate file having dsc specific functions
instead of overcrowding igt_kms.
v2: -use of SPDX licence placeholder
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
lib/igt.h | 1 +
lib/igt_dsc.c | 133 ++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_dsc.h | 19 +++++++
lib/igt_kms.c | 127 ---------------------------------------------
lib/igt_kms.h | 10 ----
lib/meson.build | 1 +
6 files changed, 154 insertions(+), 137 deletions(-)
create mode 100644 lib/igt_dsc.c
create mode 100644 lib/igt_dsc.h
diff --git a/lib/igt.h b/lib/igt.h
index 88938109e..73b6f7727 100644
--- a/lib/igt.h
+++ b/lib/igt.h
@@ -40,6 +40,7 @@
#include "igt_pipe_crc.h"
#include "igt_pm.h"
#include "igt_stats.h"
+#include "igt_dsc.h"
#ifdef HAVE_CHAMELIUM
#include "igt_alsa.h"
#include "igt_audio.h"
diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c
new file mode 100644
index 000000000..25dcb5840
--- /dev/null
+++ b/lib/igt_dsc.c
@@ -0,0 +1,133 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#include <unistd.h>
+#include <fcntl.h>
+#include <string.h>
+#include "igt_dsc.h"
+#include "igt_sysfs.h"
+
+static bool check_dsc_debugfs(int drmfd, char *connector_name, const char *check_str)
+{
+ char file_name[128] = {0};
+ char buf[512];
+
+ sprintf(file_name, "%s/i915_dsc_fec_support", connector_name);
+
+ igt_debugfs_read(drmfd, file_name, buf);
+
+ return strstr(buf, check_str);
+}
+
+static int write_dsc_debugfs(int drmfd, char *connector_name, const char *file_name,
+ const char *write_buf)
+{
+ int debugfs_fd = igt_debugfs_dir(drmfd);
+ int len = strlen(write_buf);
+ int ret;
+ char file_path[128] = {0};
+
+ sprintf(file_path, "%s/%s", connector_name, file_name);
+
+ ret = igt_sysfs_write(debugfs_fd, file_path, write_buf, len);
+
+ close(debugfs_fd);
+
+ return ret;
+}
+
+/*
+ * igt_is_dsc_supported:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: True if DSC is supported for the given connector, false otherwise.
+ */
+bool igt_is_dsc_supported(int drmfd, char *connector_name)
+{
+ return check_dsc_debugfs(drmfd, connector_name, "DSC_Sink_Support: yes");
+}
+
+/*
+ * igt_is_fec_supported:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: True if FEC is supported for the given connector, false otherwise.
+ */
+bool igt_is_fec_supported(int drmfd, char *connector_name)
+{
+ return check_dsc_debugfs(drmfd, connector_name, "FEC_Sink_Support: yes");
+}
+
+/*
+ * igt_is_dsc_enabled:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: True if DSC is enabled for the given connector, false otherwise.
+ */
+bool igt_is_dsc_enabled(int drmfd, char *connector_name)
+{
+ return check_dsc_debugfs(drmfd, connector_name, "DSC_Enabled: yes");
+}
+
+/*
+ * igt_is_force_dsc_enabled:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: True if DSC is force enabled (via debugfs) for the given connector,
+ * false otherwise.
+ */
+bool igt_is_force_dsc_enabled(int drmfd, char *connector_name)
+{
+ return check_dsc_debugfs(drmfd, connector_name, "Force_DSC_Enable: yes");
+}
+
+/*
+ * igt_force_dsc_enable:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: 1 on success or negative error code, in case of failure.
+ */
+int igt_force_dsc_enable(int drmfd, char *connector_name)
+{
+ return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_fec_support", "1");
+}
+
+/*
+ * igt_force_dsc_enable_bpc:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ * @bpc: Input BPC
+ *
+ * Returns: No. of bytes written or negative error code, in case of failure.
+ */
+int igt_force_dsc_enable_bpc(int drmfd, char *connector_name, int bpc)
+{
+ char buf[20] = {0};
+
+ sprintf(buf, "%d", bpc);
+
+ return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_bpc", buf);
+}
+
+/*
+ * igt_get_dsc_debugfs_fd:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: fd of the DSC debugfs for the given connector, else returns -1.
+ */
+int igt_get_dsc_debugfs_fd(int drmfd, char *connector_name)
+{
+ char file_name[128] = {0};
+
+ sprintf(file_name, "%s/i915_dsc_fec_support", connector_name);
+
+ return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY);
+}
diff --git a/lib/igt_dsc.h b/lib/igt_dsc.h
new file mode 100644
index 000000000..291c2cdea
--- /dev/null
+++ b/lib/igt_dsc.h
@@ -0,0 +1,19 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#ifndef IGT_DSC_H
+#define IGT_DSC_H
+
+#include "igt_fb.h"
+
+bool igt_is_dsc_supported(int drmfd, char *connector_name);
+bool igt_is_fec_supported(int drmfd, char *connector_name);
+bool igt_is_dsc_enabled(int drmfd, char *connector_name);
+bool igt_is_force_dsc_enabled(int drmfd, char *connector_name);
+int igt_force_dsc_enable(int drmfd, char *connector_name);
+int igt_force_dsc_enable_bpc(int drmfd, char *connector_name, int bpc);
+int igt_get_dsc_debugfs_fd(int drmfd, char *connector_name);
+
+#endif
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index b4a98ae17..31e6dfda0 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -5564,133 +5564,6 @@ void igt_dump_crtcs_fd(int drmfd)
drmModeFreeResources(mode_resources);
}
-static
-bool check_dsc_debugfs(int drmfd, char *connector_name,
- const char *check_str)
-{
- char file_name[128] = {0};
- char buf[512];
-
- sprintf(file_name, "%s/i915_dsc_fec_support", connector_name);
-
- igt_debugfs_read(drmfd, file_name, buf);
-
- return strstr(buf, check_str);
-}
-
-static
-int write_dsc_debugfs(int drmfd, char *connector_name,
- const char *file_name,
- const char *write_buf)
-{
- int debugfs_fd = igt_debugfs_dir(drmfd);
- int len = strlen(write_buf);
- int ret;
- char file_path[128] = {0};
-
- sprintf(file_path, "%s/%s", connector_name, file_name);
-
- ret = igt_sysfs_write(debugfs_fd, file_path, write_buf, len);
-
- close(debugfs_fd);
-
- return ret;
-}
-
-/*
- * igt_is_dsc_supported:
- * @drmfd: A drm file descriptor
- * @connector_name: Name of the libdrm connector we're going to use
- *
- * Returns: True if DSC is supported for the given connector, false otherwise.
- */
-bool igt_is_dsc_supported(int drmfd, char *connector_name)
-{
- return check_dsc_debugfs(drmfd, connector_name, "DSC_Sink_Support: yes");
-}
-
-/*
- * igt_is_fec_supported:
- * @drmfd: A drm file descriptor
- * @connector_name: Name of the libdrm connector we're going to use
- *
- * Returns: True if FEC is supported for the given connector, false otherwise.
- */
-bool igt_is_fec_supported(int drmfd, char *connector_name)
-{
- return check_dsc_debugfs(drmfd, connector_name, "FEC_Sink_Support: yes");
-}
-
-/*
- * igt_is_dsc_enabled:
- * @drmfd: A drm file descriptor
- * @connector_name: Name of the libdrm connector we're going to use
- *
- * Returns: True if DSC is enabled for the given connector, false otherwise.
- */
-bool igt_is_dsc_enabled(int drmfd, char *connector_name)
-{
- return check_dsc_debugfs(drmfd, connector_name, "DSC_Enabled: yes");
-}
-
-/*
- * igt_is_force_dsc_enabled:
- * @drmfd: A drm file descriptor
- * @connector_name: Name of the libdrm connector we're going to use
- *
- * Returns: True if DSC is force enabled (via debugfs) for the given connector,
- * false otherwise.
- */
-bool igt_is_force_dsc_enabled(int drmfd, char *connector_name)
-{
- return check_dsc_debugfs(drmfd, connector_name, "Force_DSC_Enable: yes");
-}
-
-/*
- * igt_force_dsc_enable:
- * @drmfd: A drm file descriptor
- * @connector_name: Name of the libdrm connector we're going to use
- *
- * Returns: 1 on success or negative error code, in case of failure.
- */
-int igt_force_dsc_enable(int drmfd, char *connector_name)
-{
- return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_fec_support", "1");
-}
-
-/*
- * igt_force_dsc_enable_bpc:
- * @drmfd: A drm file descriptor
- * @connector_name: Name of the libdrm connector we're going to use
- * @bpc: Input BPC
- *
- * Returns: No. of bytes written or negative error code, in case of failure.
- */
-int igt_force_dsc_enable_bpc(int drmfd, char *connector_name, int bpc)
-{
- char buf[20] = {0};
-
- sprintf(buf, "%d", bpc);
-
- return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_bpc", buf);
-}
-
-/*
- * igt_get_dsc_debugfs_fd:
- * @drmfd: A drm file descriptor
- * @connector_name: Name of the libdrm connector we're going to use
- *
- * Returns: fd of the DSC debugfs for the given connector, else returns -1.
- */
-int igt_get_dsc_debugfs_fd(int drmfd, char *connector_name)
-{
- char file_name[128] = {0};
-
- sprintf(file_name, "%s/i915_dsc_fec_support", connector_name);
-
- return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY);
-}
-
/*
* igt_get_output_max_bpc:
* @drmfd: A drm file descriptor
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 7a00d2045..be5482e08 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -974,16 +974,6 @@ void igt_require_pipe(igt_display_t *display,
void igt_dump_connectors_fd(int drmfd);
void igt_dump_crtcs_fd(int drmfd);
bool igt_override_all_active_output_modes_to_fit_bw(igt_display_t *display);
-
-bool igt_is_dsc_supported(int drmfd, char *connector_name);
-bool igt_is_fec_supported(int drmfd, char *connector_name);
-bool igt_is_dsc_enabled(int drmfd, char *connector_name);
-bool igt_is_force_dsc_enabled(int drmfd, char *connector_name);
-int igt_force_dsc_enable(int drmfd, char *connector_name);
-int igt_force_dsc_enable_bpc(int drmfd, char *connector_name,
- int bpc);
-int igt_get_dsc_debugfs_fd(int drmfd, char *connector_name);
-
unsigned int igt_get_output_max_bpc(int drmfd, char *connector_name);
unsigned int igt_get_pipe_current_bpc(int drmfd, enum pipe pipe);
void igt_assert_output_bpc_equal(int drmfd, enum pipe pipe,
diff --git a/lib/meson.build b/lib/meson.build
index cc7846869..4e5b08bcd 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -96,6 +96,7 @@ lib_sources = [
'igt_infoframe.c',
'veboxcopy_gen12.c',
'igt_msm.c',
+ 'igt_dsc.c',
]
lib_deps = [
--
2.25.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] [v3 2/2] Move wrapper functions from kms_dsc to kms_dsc_helper
2023-01-18 16:50 [igt-dev] [v3 0/2] tests/i915/kms_dsc: Reorg Swati Sharma
2023-01-18 16:50 ` [igt-dev] [v3 1/2] lib/dsc: Move VDSC functions to separate lib file Swati Sharma
@ 2023-01-18 16:50 ` Swati Sharma
2023-01-18 20:02 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915/kms_dsc: Reorg Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Swati Sharma @ 2023-01-18 16:50 UTC (permalink / raw)
To: igt-dev
To add dsc concurrent tests, these wrapper functions can be
reused. Lets create separate helper file to avoid code duplication.
v2: -use of SPDX licence placeholder
-add more parameters to exported functions (Jouni)
v3: -make var static (Jouni)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/i915/kms_dsc.c | 133 +++---------------------------------
tests/i915/kms_dsc_helper.c | 99 +++++++++++++++++++++++++++
tests/i915/kms_dsc_helper.h | 35 ++++++++++
tests/meson.build | 9 ++-
4 files changed, 151 insertions(+), 125 deletions(-)
create mode 100644 tests/i915/kms_dsc_helper.c
create mode 100644 tests/i915/kms_dsc_helper.h
diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 330fc050b..22239122c 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -29,22 +29,8 @@
* Manasi Navare <manasi.d.navare@intel.com>
*
*/
-#include "igt.h"
-#include "igt_sysfs.h"
-#include <errno.h>
-#include <getopt.h>
-#include <math.h>
-#include <stdint.h>
-#include <stdbool.h>
-#include <strings.h>
-#include <unistd.h>
-#include <stdlib.h>
-#include <signal.h>
-#include <time.h>
-#include <fcntl.h>
-#include <termios.h>
-
-#define HDISPLAY_5K 5120
+
+#include "kms_dsc_helper.h"
IGT_TEST_DESCRIPTION("Test to validate display stream compression");
@@ -64,9 +50,6 @@ typedef struct {
enum pipe pipe;
} data_t;
-bool force_dsc_en_orig;
-int force_dsc_restore_fd = -1;
-
const struct {
const int format;
const char format_str[20];
@@ -84,56 +67,6 @@ static inline void manual(const char *expected)
igt_debug_interactive_mode_check("all", expected);
}
-static void force_dsc_enable(data_t *data)
-{
- int ret;
-
- igt_debug("Forcing DSC enable on %s\n", data->output->name);
- ret = igt_force_dsc_enable(data->drm_fd,
- data->output->name);
- igt_assert_f(ret > 0, "debugfs_write failed");
-}
-
-static void force_dsc_enable_bpc(data_t *data)
-{
- int ret;
-
- igt_debug("Forcing input DSC BPC to %d on %s\n",
- data->input_bpc, data->output->name);
- ret = igt_force_dsc_enable_bpc(data->drm_fd,
- data->output->name,
- data->input_bpc);
- igt_assert_f(ret > 0, "debugfs_write failed");
-}
-
-static void save_force_dsc_en(data_t *data)
-{
- force_dsc_en_orig =
- igt_is_force_dsc_enabled(data->drm_fd,
- data->output->name);
- force_dsc_restore_fd =
- igt_get_dsc_debugfs_fd(data->drm_fd,
- data->output->name);
- igt_assert(force_dsc_restore_fd >= 0);
-}
-
-static void restore_force_dsc_en(void)
-{
- if (force_dsc_restore_fd < 0)
- return;
-
- igt_debug("Restoring DSC enable\n");
- igt_assert(write(force_dsc_restore_fd, force_dsc_en_orig ? "1" : "0", 1) == 1);
-
- close(force_dsc_restore_fd);
- force_dsc_restore_fd = -1;
-}
-
-static void kms_dsc_exit_handler(int sig)
-{
- restore_force_dsc_en();
-}
-
static drmModeModeInfo *get_highres_mode(igt_output_t *output)
{
drmModeConnector *connector = output->config.connector;
@@ -146,26 +79,6 @@ static drmModeModeInfo *get_highres_mode(igt_output_t *output)
return highest_mode;
}
-static bool check_dsc_on_connector(data_t *data)
-{
- igt_output_t *output = data->output;
-
- if (!igt_is_dsc_supported(data->drm_fd, output->name)) {
- igt_debug("DSC not supported on connector %s\n",
- output->name);
- return false;
- }
-
- if (!output_is_internal_panel(output) &&
- !igt_is_fec_supported(data->drm_fd, output->name)) {
- igt_debug("DSC cannot be enabled without FEC on %s\n",
- output->name);
- return false;
- }
-
- return true;
-}
-
static bool check_big_joiner_pipe_constraint(data_t *data)
{
igt_output_t *output = data->output;
@@ -181,34 +94,6 @@ static bool check_big_joiner_pipe_constraint(data_t *data)
return true;
}
-static bool check_gen11_dp_constraint(data_t *data)
-{
- igt_output_t *output = data->output;
- uint32_t devid = intel_get_drm_devid(data->drm_fd);
- drmModeConnector *connector = output->config.connector;
-
- if ((connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort) &&
- (data->pipe == PIPE_A) && IS_GEN11(devid)) {
- igt_debug("DSC not supported on pipe A on external DP in gen11 platforms\n");
- return false;
- }
-
- return true;
-}
-
-/* Max DSC Input BPC for ICL is 10 and for TGL+ is 12 */
-static bool check_gen11_bpc_constraint(data_t *data)
-{
- uint32_t devid = intel_get_drm_devid(data->drm_fd);
-
- if (IS_GEN11(devid) && data->input_bpc == 12) {
- igt_debug("Input bpc 12 not supported on gen11 platforms\n");
- return false;
- }
-
- return true;
-}
-
static void test_cleanup(data_t *data)
{
igt_output_t *output = data->output;
@@ -235,12 +120,12 @@ static void update_display(data_t *data, enum dsc_test_type test_type, unsigned
igt_display_commit(display);
igt_debug("DSC is supported on %s\n", data->output->name);
- save_force_dsc_en(data);
- force_dsc_enable(data);
+ save_force_dsc_en(data->drm_fd, data->output);
+ force_dsc_enable(data->drm_fd, data->output);
if (test_type == TEST_DSC_BPC) {
igt_debug("Trying to set input BPC to %d\n", data->input_bpc);
- force_dsc_enable_bpc(data);
+ force_dsc_enable_bpc(data->drm_fd, data->output, data->input_bpc);
}
igt_output_set_pipe(output, data->pipe);
@@ -279,7 +164,7 @@ static void update_display(data_t *data, enum dsc_test_type test_type, unsigned
restore_force_dsc_en();
igt_debug("Reset compression BPC\n");
data->input_bpc = 0;
- force_dsc_enable_bpc(data);
+ force_dsc_enable_bpc(data->drm_fd, data->output, data->input_bpc);
igt_assert_f(enabled,
"Default DSC enable failed on connector: %s pipe: %s\n",
@@ -302,13 +187,13 @@ static void test_dsc(data_t *data, enum dsc_test_type test_type, int bpc,
data->output = output;
data->pipe = pipe;
- if (!check_dsc_on_connector(data))
+ if (!check_dsc_on_connector(data->drm_fd, data->output))
continue;
- if (!check_gen11_dp_constraint(data))
+ if (!check_gen11_dp_constraint(data->drm_fd, data->output, data->pipe))
continue;
- if (!check_gen11_bpc_constraint(data))
+ if (!check_gen11_bpc_constraint(data->drm_fd, data->output, data->input_bpc))
continue;
if (!check_big_joiner_pipe_constraint(data))
diff --git a/tests/i915/kms_dsc_helper.c b/tests/i915/kms_dsc_helper.c
new file mode 100644
index 000000000..535061a74
--- /dev/null
+++ b/tests/i915/kms_dsc_helper.c
@@ -0,0 +1,99 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#include "kms_dsc_helper.h"
+
+static bool force_dsc_en_orig;
+static int force_dsc_restore_fd = -1;
+
+void force_dsc_enable(int drmfd, igt_output_t *output)
+{
+ int ret;
+
+ igt_debug("Forcing DSC enable on %s\n", output->name);
+ ret = igt_force_dsc_enable(drmfd, output->name);
+ igt_assert_f(ret > 0, "debugfs_write failed");
+}
+
+void force_dsc_enable_bpc(int drmfd, igt_output_t *output, int input_bpc)
+{
+ int ret;
+
+ igt_debug("Forcing input DSC BPC to %d on %s\n",
+ input_bpc, output->name);
+ ret = igt_force_dsc_enable_bpc(drmfd, output->name, input_bpc);
+ igt_assert_f(ret > 0, "debugfs_write failed");
+}
+
+void save_force_dsc_en(int drmfd, igt_output_t *output)
+{
+ force_dsc_en_orig =
+ igt_is_force_dsc_enabled(drmfd, output->name);
+ force_dsc_restore_fd =
+ igt_get_dsc_debugfs_fd(drmfd, output->name);
+ igt_assert(force_dsc_restore_fd >= 0);
+}
+
+void restore_force_dsc_en(void)
+{
+ if (force_dsc_restore_fd < 0)
+ return;
+
+ igt_debug("Restoring DSC enable\n");
+ igt_assert(write(force_dsc_restore_fd, force_dsc_en_orig ? "1" : "0", 1) == 1);
+
+ close(force_dsc_restore_fd);
+ force_dsc_restore_fd = -1;
+}
+
+void kms_dsc_exit_handler(int sig)
+{
+ restore_force_dsc_en();
+}
+
+bool check_dsc_on_connector(int drmfd, igt_output_t *output)
+{
+ if (!igt_is_dsc_supported(drmfd, output->name)) {
+ igt_debug("DSC not supported on connector %s\n",
+ output->name);
+ return false;
+ }
+
+ if (!output_is_internal_panel(output) &&
+ !igt_is_fec_supported(drmfd, output->name)) {
+ igt_debug("DSC cannot be enabled without FEC on %s\n",
+ output->name);
+ return false;
+ }
+
+ return true;
+}
+
+bool check_gen11_dp_constraint(int drmfd, igt_output_t *output, enum pipe pipe)
+{
+ uint32_t devid = intel_get_drm_devid(drmfd);
+ drmModeConnector *connector = output->config.connector;
+
+ if ((connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort) &&
+ (pipe == PIPE_A) && IS_GEN11(devid)) {
+ igt_debug("DSC not supported on pipe A on external DP in gen11 platforms\n");
+ return false;
+ }
+
+ return true;
+}
+
+/* Max DSC Input BPC for ICL is 10 and for TGL+ is 12 */
+bool check_gen11_bpc_constraint(int drmfd, igt_output_t *output, int input_bpc)
+{
+ uint32_t devid = intel_get_drm_devid(drmfd);
+
+ if (IS_GEN11(devid) && input_bpc == 12) {
+ igt_debug("Input bpc 12 not supported on gen11 platforms\n");
+ return false;
+ }
+
+ return true;
+}
diff --git a/tests/i915/kms_dsc_helper.h b/tests/i915/kms_dsc_helper.h
new file mode 100644
index 000000000..fe479dac4
--- /dev/null
+++ b/tests/i915/kms_dsc_helper.h
@@ -0,0 +1,35 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2022 Intel Corporation
+ */
+
+#ifndef IGT_KMS_DSC_HELPER_H
+#define IGT_KMS_DSC_HELPER_H
+
+#include "igt.h"
+#include "igt_sysfs.h"
+#include <errno.h>
+#include <getopt.h>
+#include <math.h>
+#include <stdint.h>
+#include <stdbool.h>
+#include <strings.h>
+#include <unistd.h>
+#include <stdlib.h>
+#include <signal.h>
+#include <time.h>
+#include <fcntl.h>
+#include <termios.h>
+
+#define HDISPLAY_5K 5120
+
+void force_dsc_enable(int drmfd, igt_output_t *output);
+void force_dsc_enable_bpc(int drmfd, igt_output_t *output, int input_bpc);
+void save_force_dsc_en(int drmfd, igt_output_t *output);
+void restore_force_dsc_en(void);
+void kms_dsc_exit_handler(int sig);
+bool check_dsc_on_connector(int drmfd, igt_output_t *output);
+bool check_gen11_dp_constraint(int drmfd, igt_output_t *output, enum pipe pipe);
+bool check_gen11_bpc_constraint(int drmfd, igt_output_t *output, int input_bpc);
+
+#endif
diff --git a/tests/meson.build b/tests/meson.build
index e20a86403..d41ed30fa 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -221,7 +221,6 @@ i915_progs = [
'kms_ccs',
'kms_cdclk',
'kms_draw_crc',
- 'kms_dsc',
'kms_fbcon_fbt',
'kms_fence_pin_leak',
'kms_flip_scaled_crc',
@@ -428,6 +427,14 @@ test_executables += executable('kms_color',
install : true)
test_list += 'kms_color'
+test_executables += executable('kms_dsc',
+ [ join_paths('i915', 'kms_dsc.c'), join_paths ('i915', 'kms_dsc_helper.c')],
+ dependencies : test_deps,
+ install_dir : libexecdir,
+ install_rpath : libexecdir_rpathdir,
+ install : true)
+test_list += 'kms_dsc'
+
if chamelium.found()
test_executables += executable('kms_chamelium_color',
[ 'chamelium/kms_chamelium_color.c', 'kms_color_helper.c' ],
--
2.25.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915/kms_dsc: Reorg
2023-01-18 16:50 [igt-dev] [v3 0/2] tests/i915/kms_dsc: Reorg Swati Sharma
2023-01-18 16:50 ` [igt-dev] [v3 1/2] lib/dsc: Move VDSC functions to separate lib file Swati Sharma
2023-01-18 16:50 ` [igt-dev] [v3 2/2] Move wrapper functions from kms_dsc to kms_dsc_helper Swati Sharma
@ 2023-01-18 20:02 ` Patchwork
2023-01-18 20:23 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-01-19 18:38 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-01-18 20:02 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
== Series Details ==
Series: tests/i915/kms_dsc: Reorg
URL : https://patchwork.freedesktop.org/series/113045/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/787232 for the overview.
build:tests-debian-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/34974416):
/usr/include/xf86drmMode.h:533:2: error: unknown type name ‘uint32_t’
uint32_t lessees[0];
^~~~~~~~
/usr/include/xf86drmMode.h:539:2: error: unknown type name ‘uint32_t’
uint32_t count;
^~~~~~~~
/usr/include/xf86drmMode.h:540:2: error: unknown type name ‘uint32_t’
uint32_t objects[0];
^~~~~~~~
/usr/include/xf86drmMode.h:545:39: error: unknown type name ‘uint32_t’; did you mean ‘intptr_t’?
extern int drmModeRevokeLease(int fd, uint32_t lessee_id);
^~~~~~~~
intptr_t
ninja: build stopped: subcommand failed.
section_end:1674072018:step_script
section_start:1674072018:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1674072018:cleanup_file_variables
ERROR: Job failed: exit code 1
build:tests-debian-meson-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/34974419):
/usr/include/xf86drmMode.h:533:2: error: unknown type name ‘uint32_t’
uint32_t lessees[0];
^~~~~~~~
/usr/include/xf86drmMode.h:539:2: error: unknown type name ‘uint32_t’
uint32_t count;
^~~~~~~~
/usr/include/xf86drmMode.h:540:2: error: unknown type name ‘uint32_t’
uint32_t objects[0];
^~~~~~~~
/usr/include/xf86drmMode.h:545:39: error: unknown type name ‘uint32_t’; did you mean ‘intptr_t’?
extern int drmModeRevokeLease(int fd, uint32_t lessee_id);
^~~~~~~~
intptr_t
ninja: build stopped: subcommand failed.
section_end:1674072034:step_script
section_start:1674072034:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1674072035:cleanup_file_variables
ERROR: Job failed: exit code 1
build:tests-debian-meson-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/34974418):
/usr/include/xf86drmMode.h:533:2: error: unknown type name ‘uint32_t’
uint32_t lessees[0];
^~~~~~~~
/usr/include/xf86drmMode.h:539:2: error: unknown type name ‘uint32_t’
uint32_t count;
^~~~~~~~
/usr/include/xf86drmMode.h:540:2: error: unknown type name ‘uint32_t’
uint32_t objects[0];
^~~~~~~~
/usr/include/xf86drmMode.h:545:39: error: unknown type name ‘uint32_t’; did you mean ‘intptr_t’?
extern int drmModeRevokeLease(int fd, uint32_t lessee_id);
^~~~~~~~
intptr_t
ninja: build stopped: subcommand failed.
section_end:1674072031:step_script
section_start:1674072031:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1674072031:cleanup_file_variables
ERROR: Job failed: exit code 1
build:tests-debian-meson-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/34974420):
/usr/include/xf86drmMode.h:533:2: error: unknown type name ‘uint32_t’
uint32_t lessees[0];
^~~~~~~~
/usr/include/xf86drmMode.h:539:2: error: unknown type name ‘uint32_t’
uint32_t count;
^~~~~~~~
/usr/include/xf86drmMode.h:540:2: error: unknown type name ‘uint32_t’
uint32_t objects[0];
^~~~~~~~
/usr/include/xf86drmMode.h:545:39: error: unknown type name ‘uint32_t’; did you mean ‘intptr_t’?
extern int drmModeRevokeLease(int fd, uint32_t lessee_id);
^~~~~~~~
intptr_t
ninja: build stopped: subcommand failed.
section_end:1674072032:step_script
section_start:1674072032:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1674072033:cleanup_file_variables
ERROR: Job failed: exit code 1
build:tests-debian-minimal has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/34974417):
/usr/include/xf86drmMode.h:533:2: error: unknown type name ‘uint32_t’
uint32_t lessees[0];
^~~~~~~~
/usr/include/xf86drmMode.h:539:2: error: unknown type name ‘uint32_t’
uint32_t count;
^~~~~~~~
/usr/include/xf86drmMode.h:540:2: error: unknown type name ‘uint32_t’
uint32_t objects[0];
^~~~~~~~
/usr/include/xf86drmMode.h:545:39: error: unknown type name ‘uint32_t’; did you mean ‘intptr_t’?
extern int drmModeRevokeLease(int fd, uint32_t lessee_id);
^~~~~~~~
intptr_t
ninja: build stopped: subcommand failed.
section_end:1674072017:step_script
section_start:1674072017:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1674072017:cleanup_file_variables
ERROR: Job failed: exit code 1
build:tests-fedora has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/34974411):
| ^~~~~~~~
/usr/include/xf86drmMode.h:533:2: error: unknown type name ‘uint32_t’
533 | uint32_t lessees[0];
| ^~~~~~~~
/usr/include/xf86drmMode.h:539:2: error: unknown type name ‘uint32_t’
539 | uint32_t count;
| ^~~~~~~~
/usr/include/xf86drmMode.h:540:2: error: unknown type name ‘uint32_t’
540 | uint32_t objects[0];
| ^~~~~~~~
/usr/include/xf86drmMode.h:545:39: error: unknown type name ‘uint32_t’
545 | extern int drmModeRevokeLease(int fd, uint32_t lessee_id);
| ^~~~~~~~
ninja: build stopped: subcommand failed.
section_end:1674072018:step_script
section_start:1674072018:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1674072020:cleanup_file_variables
ERROR: Job failed: exit code 1
build:tests-fedora-clang has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/34974415):
uint32_t bpp;
^
/usr/include/xf86drmMode.h:221:2: error: unknown type name 'uint32_t'
uint32_t depth;
^
/usr/include/xf86drmMode.h:223:2: error: unknown type name 'uint32_t'
uint32_t handle;
^
/usr/include/xf86drmMode.h:229:2: error: unknown type name 'uint32_t'
uint32_t id;
^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
ninja: build stopped: subcommand failed.
section_end:1674072021:step_script
section_start:1674072021:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1674072021:cleanup_file_variables
ERROR: Job failed: exit code 1
build:tests-fedora-no-libdrm-nouveau has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/34974414):
| ^~~~~~~~
/usr/include/xf86drmMode.h:533:2: error: unknown type name ‘uint32_t’
533 | uint32_t lessees[0];
| ^~~~~~~~
/usr/include/xf86drmMode.h:539:2: error: unknown type name ‘uint32_t’
539 | uint32_t count;
| ^~~~~~~~
/usr/include/xf86drmMode.h:540:2: error: unknown type name ‘uint32_t’
540 | uint32_t objects[0];
| ^~~~~~~~
/usr/include/xf86drmMode.h:545:39: error: unknown type name ‘uint32_t’
545 | extern int drmModeRevokeLease(int fd, uint32_t lessee_id);
| ^~~~~~~~
ninja: build stopped: subcommand failed.
section_end:1674072019:step_script
section_start:1674072019:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1674072020:cleanup_file_variables
ERROR: Job failed: exit code 1
build:tests-fedora-no-libunwind has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/34974412):
| ^~~~~~~~
/usr/include/xf86drmMode.h:533:2: error: unknown type name ‘uint32_t’
533 | uint32_t lessees[0];
| ^~~~~~~~
/usr/include/xf86drmMode.h:539:2: error: unknown type name ‘uint32_t’
539 | uint32_t count;
| ^~~~~~~~
/usr/include/xf86drmMode.h:540:2: error: unknown type name ‘uint32_t’
540 | uint32_t objects[0];
| ^~~~~~~~
/usr/include/xf86drmMode.h:545:39: error: unknown type name ‘uint32_t’
545 | extern int drmModeRevokeLease(int fd, uint32_t lessee_id);
| ^~~~~~~~
ninja: build stopped: subcommand failed.
section_end:1674072020:step_script
section_start:1674072020:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1674072021:cleanup_file_variables
ERROR: Job failed: exit code 1
build:tests-fedora-oldest-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/34974413):
| ^~~~~~~~
/usr/include/xf86drmMode.h:533:2: error: unknown type name ‘uint32_t’
533 | uint32_t lessees[0];
| ^~~~~~~~
/usr/include/xf86drmMode.h:539:2: error: unknown type name ‘uint32_t’
539 | uint32_t count;
| ^~~~~~~~
/usr/include/xf86drmMode.h:540:2: error: unknown type name ‘uint32_t’
540 | uint32_t objects[0];
| ^~~~~~~~
/usr/include/xf86drmMode.h:545:39: error: unknown type name ‘uint32_t’
545 | extern int drmModeRevokeLease(int fd, uint32_t lessee_id);
| ^~~~~~~~
ninja: build stopped: subcommand failed.
section_end:1674072018:step_script
section_start:1674072018:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1674072018:cleanup_file_variables
ERROR: Job failed: exit code 1
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/787232
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/kms_dsc: Reorg
2023-01-18 16:50 [igt-dev] [v3 0/2] tests/i915/kms_dsc: Reorg Swati Sharma
` (2 preceding siblings ...)
2023-01-18 20:02 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915/kms_dsc: Reorg Patchwork
@ 2023-01-18 20:23 ` Patchwork
2023-01-19 18:38 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-01-18 20:23 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2824 bytes --]
== Series Details ==
Series: tests/i915/kms_dsc: Reorg
URL : https://patchwork.freedesktop.org/series/113045/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12604 -> IGTPW_8369
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/index.html
Participating hosts (43 -> 40)
------------------------------
Missing (3): fi-bsw-kefka bat-adls-5 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_8369 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [DMESG-FAIL][1] ([i915#5334]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
- fi-glk-j4005: [DMESG-FAIL][3] ([i915#5334]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@workarounds:
- {bat-adlm-1}: [INCOMPLETE][5] ([i915#4983]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/bat-adlm-1/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/bat-adlm-1/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#6257]: https://gitlab.freedesktop.org/drm/intel/issues/6257
[i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7123 -> IGTPW_8369
CI-20190529: 20190529
CI_DRM_12604: 6f176a01430184278f10d23e6d40c4a209bee4a5 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8369: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/index.html
IGT_7123: 2b29e8ac07fbcfadc48b9d60e4d736a6e3b289ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/index.html
[-- Attachment #2: Type: text/html, Size: 3141 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/i915/kms_dsc: Reorg
2023-01-18 16:50 [igt-dev] [v3 0/2] tests/i915/kms_dsc: Reorg Swati Sharma
` (3 preceding siblings ...)
2023-01-18 20:23 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-01-19 18:38 ` Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-01-19 18:38 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 22407 bytes --]
== Series Details ==
Series: tests/i915/kms_dsc: Reorg
URL : https://patchwork.freedesktop.org/series/113045/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12604_full -> IGTPW_8369_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/index.html
Participating hosts (13 -> 10)
------------------------------
Missing (3): shard-rkl0 pig-kbl-iris pig-skl-6260u
Known issues
------------
Here are the changes found in IGTPW_8369_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-glk: [PASS][1] -> [FAIL][2] ([i915#2842])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-glk6/igt@gem_exec_fair@basic-none-share@rcs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-apl: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-apl7/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-apl: [PASS][4] -> [INCOMPLETE][5] ([i915#7708] / [i915#7833]) +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-apl7/igt@gem_partial_pwrite_pread@writes-after-reads.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-apl3/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#3886]) +3 similar issues
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-apl7/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs:
- shard-apl: NOTRUN -> [SKIP][7] ([fdo#109271]) +58 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-apl3/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
- shard-apl: [PASS][8] -> [FAIL][9] ([i915#2346])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
#### Possible fixes ####
* igt@device_reset@unbind-reset-rebind:
- {shard-rkl}: [DMESG-WARN][10] ([i915#5507]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-6/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@virtual-idle:
- {shard-rkl}: [FAIL][12] ([i915#7742]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html
* igt@gem_eio@in-flight-suspend:
- {shard-rkl}: [FAIL][14] ([fdo#103375]) -> [PASS][15] +1 similar issue
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-4/igt@gem_eio@in-flight-suspend.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-1/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@unwedge-stress:
- {shard-dg1}: [FAIL][16] ([i915#5784]) -> [PASS][17] +1 similar issue
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-dg1-18/igt@gem_eio@unwedge-stress.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-apl: [FAIL][18] ([i915#2842]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- {shard-rkl}: [SKIP][20] ([i915#3281]) -> [PASS][21] +3 similar issues
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-noreloc.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@semaphore-power:
- {shard-rkl}: [SKIP][22] ([i915#7276]) -> [PASS][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-apl: [INCOMPLETE][24] ([i915#7708]) -> [PASS][25] +1 similar issue
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-apl2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-apl1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@bench:
- {shard-rkl}: [SKIP][26] ([i915#3282]) -> [PASS][27] +1 similar issue
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-2/igt@gem_pread@bench.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-5/igt@gem_pread@bench.html
* igt@gen9_exec_parse@secure-batches:
- {shard-rkl}: [SKIP][28] ([i915#2527]) -> [PASS][29] +1 similar issue
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-4/igt@gen9_exec_parse@secure-batches.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-5/igt@gen9_exec_parse@secure-batches.html
* igt@i915_hangman@gt-engine-error@bcs0:
- {shard-rkl}: [SKIP][30] ([i915#6258]) -> [PASS][31]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-5/igt@i915_hangman@gt-engine-error@bcs0.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-2/igt@i915_hangman@gt-engine-error@bcs0.html
* igt@i915_pm_rpm@pm-tiling:
- {shard-rkl}: [SKIP][32] ([fdo#109308]) -> [PASS][33]
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-2/igt@i915_pm_rpm@pm-tiling.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-6/igt@i915_pm_rpm@pm-tiling.html
* igt@i915_pm_sseu@full-enable:
- {shard-rkl}: [SKIP][34] ([i915#4387]) -> [PASS][35]
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-4/igt@i915_pm_sseu@full-enable.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-5/igt@i915_pm_sseu@full-enable.html
* igt@kms_dp_aux_dev:
- {shard-rkl}: [SKIP][36] ([i915#1257]) -> [PASS][37]
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-2/igt@kms_dp_aux_dev.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-6/igt@kms_dp_aux_dev.html
* igt@kms_flip@flip-vs-expired-vblank@c-dp1:
- shard-apl: [FAIL][38] ([i915#79]) -> [PASS][39]
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-apl1/igt@kms_flip@flip-vs-expired-vblank@c-dp1.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-apl2/igt@kms_flip@flip-vs-expired-vblank@c-dp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-valid-mode:
- {shard-dg1}: [FAIL][40] -> [PASS][41]
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-valid-mode.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- {shard-rkl}: [SKIP][42] ([i915#1849] / [i915#4098]) -> [PASS][43] +15 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
- shard-apl: [DMESG-WARN][44] ([i915#180]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
* igt@kms_psr@cursor_render:
- {shard-rkl}: [SKIP][46] ([i915#1072]) -> [PASS][47] +1 similar issue
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-1/igt@kms_psr@cursor_render.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-6/igt@kms_psr@cursor_render.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- {shard-rkl}: [SKIP][48] ([i915#5461]) -> [PASS][49]
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- {shard-rkl}: [SKIP][50] ([i915#1845] / [i915#4098]) -> [PASS][51] +23 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-3/igt@kms_rotation_crc@exhaust-fences.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-6/igt@kms_rotation_crc@exhaust-fences.html
* igt@perf@gen12-mi-rpc:
- {shard-rkl}: [SKIP][52] ([fdo#109289]) -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-5/igt@perf@gen12-mi-rpc.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-6/igt@perf@gen12-mi-rpc.html
* igt@prime_vgem@basic-write:
- {shard-rkl}: [SKIP][54] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-2/igt@prime_vgem@basic-write.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-5/igt@prime_vgem@basic-write.html
* igt@sysfs_timeslice_duration@timeout@vcs1:
- {shard-dg1}: [FAIL][56] ([i915#1755]) -> [PASS][57] +1 similar issue
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-dg1-16/igt@sysfs_timeslice_duration@timeout@vcs1.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-dg1-18/igt@sysfs_timeslice_duration@timeout@vcs1.html
* igt@testdisplay:
- {shard-rkl}: [SKIP][58] ([i915#4098]) -> [PASS][59]
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12604/shard-rkl-5/igt@testdisplay.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/shard-rkl-6/igt@testdisplay.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
[i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
[i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
[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#3639]: https://gitlab.freedesktop.org/drm/intel/issues/3639
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355
[i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
[i915#7679]: https://gitlab.freedesktop.org/drm/intel/issues/7679
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7708]: https://gitlab.freedesktop.org/drm/intel/issues/7708
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7833]: https://gitlab.freedesktop.org/drm/intel/issues/7833
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7123 -> IGTPW_8369
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_12604: 6f176a01430184278f10d23e6d40c4a209bee4a5 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8369: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/index.html
IGT_7123: 2b29e8ac07fbcfadc48b9d60e4d736a6e3b289ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8369/index.html
[-- Attachment #2: Type: text/html, Size: 16105 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-01-19 18:38 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-18 16:50 [igt-dev] [v3 0/2] tests/i915/kms_dsc: Reorg Swati Sharma
2023-01-18 16:50 ` [igt-dev] [v3 1/2] lib/dsc: Move VDSC functions to separate lib file Swati Sharma
2023-01-18 16:50 ` [igt-dev] [v3 2/2] Move wrapper functions from kms_dsc to kms_dsc_helper Swati Sharma
2023-01-18 20:02 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915/kms_dsc: Reorg Patchwork
2023-01-18 20:23 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-01-19 18:38 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox