Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [v3 00/10] DSC Fractional BPP Val Support
@ 2023-07-27 16:53 Swati Sharma
  2023-07-27 16:53 ` [igt-dev] [v3 01/10] tests/i915/kms_dsc: add new test flag Swati Sharma
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Swati Sharma @ 2023-07-27 16:53 UTC (permalink / raw)
  To: igt-dev

Existing i-g-t is extended to enable validation for dsc
fractional bpp.
This series is split from
https://patchwork.freedesktop.org/series/111342/

v2: addressed review comments from Ankit
v3: addressed review comments from Ankit

Swati Sharma (10):
  tests/i915/kms_dsc: add new test flag
  tests/i915/kms_dsc: use uint32_t test flag
  tests/i915/kms_dsc: use #define for default bpc
  tests/i915/kms_dsc: use igt_get_pipe_current_bpc()
  tests/i915/kms_dsc: add test validating output formats with input bpc
  lib/dsc: add helpers for vdsc fractional bpp debugfs entry
  tests/i915/kms_dsc: enable validation for vdsc fractional bpp
  tests/i915/kms_dsc: add test to validate fractional bpp with input bpc
  tests/i915/kms_dsc: add test summary
  HAX: Add dsc tests to fast-feedback.testlist

 lib/igt_dsc.c                         |  84 +++++++++++++++++
 lib/igt_dsc.h                         |   5 +
 tests/i915/kms_dsc.c                  | 131 +++++++++++++++++++++-----
 tests/i915/kms_dsc_helper.c           |  69 ++++++++++++++
 tests/i915/kms_dsc_helper.h           |   4 +
 tests/intel-ci/fast-feedback.testlist |  10 ++
 6 files changed, 278 insertions(+), 25 deletions(-)

-- 
2.25.1

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [igt-dev] [v3 01/10] tests/i915/kms_dsc: add new test flag
  2023-07-27 16:53 [igt-dev] [v3 00/10] DSC Fractional BPP Val Support Swati Sharma
@ 2023-07-27 16:53 ` Swati Sharma
  2023-07-27 16:53 ` [igt-dev] [v3 02/10] tests/i915/kms_dsc: use uint32_t " Swati Sharma
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Swati Sharma @ 2023-07-27 16:53 UTC (permalink / raw)
  To: igt-dev

Add new test flag TEST_DSC_FORMAT. This flag is added to
differentiate the basic dsc test and the tests where we want to
change different plane pixel formats.

v2: -update commit message (Ankit)

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 tests/i915/kms_dsc.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 0a3e29924..23ccbca00 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -37,6 +37,7 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression");
 enum dsc_test_type {
 	TEST_DSC_BASIC,
 	TEST_DSC_BPC,
+	TEST_DSC_FORMAT,
 	TEST_DSC_OUTPUT_FORMAT,
 };
 
@@ -302,7 +303,7 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
 		     "with default parameters and creating fb with diff formats");
 	igt_subtest_with_dynamic("dsc-with-formats") {
 		for (int k = 0; k < ARRAY_SIZE(format_list); k++)
-			test_dsc(&data, TEST_DSC_BASIC, 0,
+			test_dsc(&data, TEST_DSC_FORMAT, 0,
 				 format_list[k], DSC_FORMAT_RGB);
 	}
 
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [igt-dev] [v3 02/10] tests/i915/kms_dsc: use uint32_t test flag
  2023-07-27 16:53 [igt-dev] [v3 00/10] DSC Fractional BPP Val Support Swati Sharma
  2023-07-27 16:53 ` [igt-dev] [v3 01/10] tests/i915/kms_dsc: add new test flag Swati Sharma
@ 2023-07-27 16:53 ` Swati Sharma
  2023-07-27 16:53 ` [igt-dev] [v3 03/10] tests/i915/kms_dsc: use #define for default bpc Swati Sharma
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Swati Sharma @ 2023-07-27 16:53 UTC (permalink / raw)
  To: igt-dev

Instead of using enum, use uinit32_t test flag. It is helpful,
if we need to implement feature combination tests.

v2: -use #define (Ankit)
    -use 2D char array (Ankit)

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 tests/i915/kms_dsc.c | 50 +++++++++++++++++++++++++-------------------
 1 file changed, 28 insertions(+), 22 deletions(-)

diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 23ccbca00..99d35a7ff 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -34,12 +34,12 @@
 
 IGT_TEST_DESCRIPTION("Test to validate display stream compression");
 
-enum dsc_test_type {
-	TEST_DSC_BASIC,
-	TEST_DSC_BPC,
-	TEST_DSC_FORMAT,
-	TEST_DSC_OUTPUT_FORMAT,
-};
+#define LEN		20
+
+#define TEST_DSC_BASIC		(0<<0)
+#define TEST_DSC_BPC		(1<<0)
+#define TEST_DSC_FORMAT		(1<<1)
+#define TEST_DSC_OUTPUT_FORMAT	(1<<2)
 
 typedef struct {
 	int drm_fd;
@@ -111,7 +111,7 @@ static void test_cleanup(data_t *data)
 }
 
 /* re-probe connectors and do a modeset with DSC */
-static void update_display(data_t *data, enum dsc_test_type test_type)
+static void update_display(data_t *data, uint32_t test_type)
 {
 	int ret;
 	bool enabled;
@@ -130,12 +130,12 @@ static void update_display(data_t *data, enum dsc_test_type test_type)
 	save_force_dsc_en(data->drm_fd, data->output);
 	force_dsc_enable(data->drm_fd, data->output);
 
-	if (test_type == TEST_DSC_BPC) {
+	if (test_type & TEST_DSC_BPC) {
 		igt_debug("Trying to set input BPC to %d\n", data->input_bpc);
 		force_dsc_enable_bpc(data->drm_fd, data->output, data->input_bpc);
 	}
 
-	if (test_type == TEST_DSC_OUTPUT_FORMAT) {
+	if (test_type & TEST_DSC_OUTPUT_FORMAT) {
 		igt_debug("Trying to set DSC %s output format\n",
 			   kmstest_dsc_output_format_str(data->output_format));
 		force_dsc_output_format(data->drm_fd, data->output, data->output_format);
@@ -214,13 +214,18 @@ reset:
 	igt_assert_eq(ret, 0);
 }
 
-static void test_dsc(data_t *data, enum dsc_test_type test_type, int bpc,
-		     unsigned int plane_format, enum dsc_output_format output_format)
+static void test_dsc(data_t *data, uint32_t test_type, int bpc,
+		     unsigned int plane_format,
+		     enum dsc_output_format output_format)
 {
 	igt_display_t *display = &data->display;
 	igt_output_t *output;
-	char name[20];
 	enum pipe pipe;
+	char name[3][LEN] = {
+				{0},
+				{0},
+				{0},
+			    };
 
 	for_each_pipe_with_valid_output(display, pipe, output) {
 		data->output_format = output_format;
@@ -242,15 +247,15 @@ static void test_dsc(data_t *data, enum dsc_test_type test_type, int bpc,
 		if (!check_gen11_bpc_constraint(data->drm_fd, data->output, data->input_bpc))
 			continue;
 
-		if (test_type == TEST_DSC_BPC)
-			snprintf(name, sizeof(name), "-%dbpc-%s", data->input_bpc, igt_format_str(data->plane_format));
-		else if (test_type == TEST_DSC_OUTPUT_FORMAT)
-			snprintf(name, sizeof(name), "-%s-%s", kmstest_dsc_output_format_str(data->output_format),
-							       igt_format_str(data->plane_format));
-		else
-			snprintf(name, sizeof(name), "-%s", igt_format_str(data->plane_format));
+		if (test_type & TEST_DSC_OUTPUT_FORMAT)
+			snprintf(&name[0][0], LEN, "-%s", kmstest_dsc_output_format_str(data->output_format));
+		if (test_type & TEST_DSC_FORMAT)
+			snprintf(&name[1][0], LEN, "-%s", igt_format_str(data->plane_format));
+		if (test_type & TEST_DSC_BPC)
+			snprintf(&name[2][0], LEN, "-%dbpc", data->input_bpc);
 
-		igt_dynamic_f("pipe-%s-%s%s",  kmstest_pipe_name(data->pipe), data->output->name, name)
+		igt_dynamic_f("pipe-%s-%s%s%s%s",  kmstest_pipe_name(data->pipe), data->output->name,
+			      &name[0][0], &name[1][0], &name[2][0])
 			update_display(data, test_type);
 
 		if (data->limited)
@@ -322,8 +327,9 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
 	igt_subtest_with_dynamic("dsc-with-bpc-formats") {
 		for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) {
 			for (int k = 0; k < ARRAY_SIZE(format_list); k++) {
-				test_dsc(&data, TEST_DSC_BPC, bpc_list[j],
-				format_list[k], DSC_FORMAT_RGB);
+				test_dsc(&data, TEST_DSC_BPC | TEST_DSC_FORMAT,
+				bpc_list[j], format_list[k],
+				DSC_FORMAT_RGB);
 			}
 		}
 	}
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [igt-dev] [v3 03/10] tests/i915/kms_dsc: use #define for default bpc
  2023-07-27 16:53 [igt-dev] [v3 00/10] DSC Fractional BPP Val Support Swati Sharma
  2023-07-27 16:53 ` [igt-dev] [v3 01/10] tests/i915/kms_dsc: add new test flag Swati Sharma
  2023-07-27 16:53 ` [igt-dev] [v3 02/10] tests/i915/kms_dsc: use uint32_t " Swati Sharma
@ 2023-07-27 16:53 ` Swati Sharma
  2023-07-27 16:53 ` [igt-dev] [v3 04/10] tests/i915/kms_dsc: use igt_get_pipe_current_bpc() Swati Sharma
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Swati Sharma @ 2023-07-27 16:53 UTC (permalink / raw)
  To: igt-dev

For default bpc, use #define. By setting bpc as 0, means driver
will set its own value and we are not enforcing input bpc.

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 tests/i915/kms_dsc.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 99d35a7ff..7b9bae91a 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -35,6 +35,7 @@
 IGT_TEST_DESCRIPTION("Test to validate display stream compression");
 
 #define LEN		20
+#define DEFAULT_BPC	0
 
 #define TEST_DSC_BASIC		(0<<0)
 #define TEST_DSC_BPC		(1<<0)
@@ -300,7 +301,7 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
 		     "by a connector by forcing DSC on all connectors that support it "
 		     "with default parameters");
 	igt_subtest_with_dynamic("dsc-basic")
-			test_dsc(&data, TEST_DSC_BASIC, 0,
+			test_dsc(&data, TEST_DSC_BASIC, DEFAULT_BPC,
 				 DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB);
 
 	igt_describe("Tests basic display stream compression functionality if supported "
@@ -308,7 +309,7 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
 		     "with default parameters and creating fb with diff formats");
 	igt_subtest_with_dynamic("dsc-with-formats") {
 		for (int k = 0; k < ARRAY_SIZE(format_list); k++)
-			test_dsc(&data, TEST_DSC_FORMAT, 0,
+			test_dsc(&data, TEST_DSC_FORMAT, DEFAULT_BPC,
 				 format_list[k], DSC_FORMAT_RGB);
 	}
 
@@ -339,7 +340,8 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
 		     "that support it");
 	igt_subtest_with_dynamic("dsc-with-output-formats") {
 		for (int k = 0; k < ARRAY_SIZE(output_format_list); k++)
-			test_dsc(&data, TEST_DSC_OUTPUT_FORMAT, 0, DRM_FORMAT_XRGB8888,
+			test_dsc(&data, TEST_DSC_OUTPUT_FORMAT, DEFAULT_BPC,
+				 DRM_FORMAT_XRGB8888,
 				 output_format_list[k]);
 	}
 
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [igt-dev] [v3 04/10] tests/i915/kms_dsc: use igt_get_pipe_current_bpc()
  2023-07-27 16:53 [igt-dev] [v3 00/10] DSC Fractional BPP Val Support Swati Sharma
                   ` (2 preceding siblings ...)
  2023-07-27 16:53 ` [igt-dev] [v3 03/10] tests/i915/kms_dsc: use #define for default bpc Swati Sharma
@ 2023-07-27 16:53 ` Swati Sharma
  2023-07-27 16:53 ` [igt-dev] [v3 05/10] tests/i915/kms_dsc: add test validating output formats with input bpc Swati Sharma
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Swati Sharma @ 2023-07-27 16:53 UTC (permalink / raw)
  To: igt-dev

Use igt_get_pipe_current_bpc() to get current bpc when
TEST_DSC_BPC test flag is used. If input bpc is not equal to
current bpc, skip test.

v2: -use helper directly (Ankit)

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 tests/i915/kms_dsc.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 7b9bae91a..a36f36679 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -117,6 +117,7 @@ static void update_display(data_t *data, uint32_t test_type)
 	int ret;
 	bool enabled;
 	int index = 0;
+	int current_bpc = 0;
 	igt_plane_t *primary;
 	drmModeModeInfo *mode;
 	igt_output_t *output = data->output;
@@ -202,11 +203,17 @@ static void update_display(data_t *data, uint32_t test_type)
 
 	restore_force_dsc_en();
 
+	if (test_type & TEST_DSC_BPC) {
+		current_bpc = igt_get_pipe_current_bpc(data->drm_fd, data->pipe);
+		igt_skip_on_f(data->input_bpc != current_bpc,
+			      "Input bpc = %d is not equal to current bpc = %d\n",
+			      data->input_bpc, current_bpc);
+	}
+
 	igt_assert_f(enabled,
 		     "Default DSC enable failed on connector: %s pipe: %s\n",
 		     output->name,
 		     kmstest_pipe_name(data->pipe));
-
 reset:
 	test_reset(data);
 
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [igt-dev] [v3 05/10] tests/i915/kms_dsc: add test validating output formats with input bpc
  2023-07-27 16:53 [igt-dev] [v3 00/10] DSC Fractional BPP Val Support Swati Sharma
                   ` (3 preceding siblings ...)
  2023-07-27 16:53 ` [igt-dev] [v3 04/10] tests/i915/kms_dsc: use igt_get_pipe_current_bpc() Swati Sharma
@ 2023-07-27 16:53 ` Swati Sharma
  2023-07-27 16:53 ` [igt-dev] [v3 06/10] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Swati Sharma @ 2023-07-27 16:53 UTC (permalink / raw)
  To: igt-dev

New subtest is added validating output format with different
input bpc.

v2: -update subject (Ankit)

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 tests/i915/kms_dsc.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index a36f36679..5d0c2dccc 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -352,6 +352,19 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
 				 output_format_list[k]);
 	}
 
+	igt_describe("Tests basic display stream compression functionality if supported "
+		     "by a connector by forcing DSC and output format on all connectors "
+		     "that support it with certain input BPC for the connector");
+	igt_subtest_with_dynamic("dsc-with-output-formats-with-bpc") {
+		for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) {
+			for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) {
+				test_dsc(&data, TEST_DSC_OUTPUT_FORMAT | TEST_DSC_BPC,
+					 bpc_list[j], DRM_FORMAT_XRGB8888,
+					 output_format_list[k]);
+			}
+		}
+	}
+
 	igt_fixture {
 		igt_display_fini(&data.display);
 		drm_close_driver(data.drm_fd);
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [igt-dev] [v3 06/10] lib/dsc: add helpers for vdsc fractional bpp debugfs entry
  2023-07-27 16:53 [igt-dev] [v3 00/10] DSC Fractional BPP Val Support Swati Sharma
                   ` (4 preceding siblings ...)
  2023-07-27 16:53 ` [igt-dev] [v3 05/10] tests/i915/kms_dsc: add test validating output formats with input bpc Swati Sharma
@ 2023-07-27 16:53 ` Swati Sharma
  2023-07-27 16:53 ` [igt-dev] [v3 07/10] tests/i915/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Swati Sharma @ 2023-07-27 16:53 UTC (permalink / raw)
  To: igt-dev

Helper functions are added for getting/setting VDSC Fractional BPP
debugfs entry.

v2: -improved func description (Ankit)
    -increased buff size (Ankit)
    -asserted bpp_prec (Ankit)
v3: -return 0 on success instead of 1 (Jouni)
v4: -rebase
v5: -alignment fixes (Ankit)

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 lib/igt_dsc.c | 84 +++++++++++++++++++++++++++++++++++++++++++++++++++
 lib/igt_dsc.h |  5 +++
 2 files changed, 89 insertions(+)

diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c
index 76a420c10..6c3b70421 100644
--- a/lib/igt_dsc.c
+++ b/lib/igt_dsc.c
@@ -205,3 +205,87 @@ int igt_force_dsc_output_format(int drmfd, char *connector_name,
 
 	return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_output_format", buf);
 }
+
+static
+bool check_dsc_fractional_bpp_debugfs(int drmfd, char *connector_name,
+				      const char *check_str)
+{
+	char file_name[128] = {0};
+	char buf[512];
+
+	sprintf(file_name, "%s/i915_dsc_fractional_bpp", connector_name);
+
+	igt_debugfs_read(drmfd, file_name, buf);
+
+	return strstr(buf, check_str);
+}
+
+/*
+ * igt_get_dsc_fractional_bpp_supported:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: DSC BPP precision supported by the sink.
+ * 	    Precision value of
+ * 		16 => 1/16
+ * 		8  => 1/8
+ * 		1  => fractional bpp not supported
+ */
+int igt_get_dsc_fractional_bpp_supported(int drmfd, char *connector_name)
+{
+	char file_name[128] = {0};
+	char buf[512];
+	char *start_loc;
+	int bpp_prec;
+
+	sprintf(file_name, "%s/i915_dsc_fec_support", connector_name);
+	igt_debugfs_read(drmfd, file_name, buf);
+
+	igt_assert(start_loc = strstr(buf, "DSC_Sink_BPP_Precision: "));
+	igt_assert_eq(sscanf(start_loc, "DSC_Sink_BPP_Precision: %d", &bpp_prec), 1);
+	igt_assert(bpp_prec > 0);
+
+	return bpp_prec;
+}
+
+/*
+ * igt_is_force_dsc_fractional_bpp_enabled:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: True if DSC Fractional BPP is force enabled (via debugfs) for the given connector,
+ * false otherwise.
+ */
+bool igt_is_force_dsc_fractional_bpp_enabled(int drmfd, char *connector_name)
+{
+	return check_dsc_fractional_bpp_debugfs(drmfd, connector_name, "Force_DSC_Fractional_BPP_Enable: yes");
+}
+
+/*
+ * igt_force_dsc_fractional_bpp_enable:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: 0 on success or negative error code, in case of failure.
+ */
+int igt_force_dsc_fractional_bpp_enable(int drmfd, char *connector_name)
+{
+	return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_fractional_bpp", "1");
+}
+
+/*
+ * igt_get_dsc_fractional_bpp_debugfs_fd:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: fd of the DSC Fractional BPP debugfs for the given connector,
+ * else returns -1.
+ */
+int igt_get_dsc_fractional_bpp_debugfs_fd(int drmfd, char *connector_name)
+{
+	char file_name[128] = {0};
+
+	sprintf(file_name, "%s/i915_dsc_fractional_bpp", connector_name);
+
+	return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY);
+}
diff --git a/lib/igt_dsc.h b/lib/igt_dsc.h
index b58743b5f..5d918ea7a 100644
--- a/lib/igt_dsc.h
+++ b/lib/igt_dsc.h
@@ -8,6 +8,7 @@
 
 #include "igt_fb.h"
 #include "igt_kms.h"
+#include "igt_core.h"
 
 bool igt_is_dsc_supported_by_source(int drmfd);
 bool igt_is_dsc_supported_by_sink(int drmfd, char *connector_name);
@@ -21,5 +22,9 @@ bool igt_is_dsc_output_format_supported_by_sink(int drmfd, char *connector_name,
 						enum dsc_output_format output_format);
 int igt_force_dsc_output_format(int drmfd, char *connector_name,
 				enum dsc_output_format output_format);
+int igt_get_dsc_fractional_bpp_supported(int drmfd, char *connector_name);
+bool igt_is_force_dsc_fractional_bpp_enabled(int drmfd, char *connector_name);
+int igt_force_dsc_fractional_bpp_enable(int drmfd, char *connector_name);
+int igt_get_dsc_fractional_bpp_debugfs_fd(int drmfd, char *connector_name);
 
 #endif
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [igt-dev] [v3 07/10] tests/i915/kms_dsc: enable validation for vdsc fractional bpp
  2023-07-27 16:53 [igt-dev] [v3 00/10] DSC Fractional BPP Val Support Swati Sharma
                   ` (5 preceding siblings ...)
  2023-07-27 16:53 ` [igt-dev] [v3 06/10] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma
@ 2023-07-27 16:53 ` Swati Sharma
  2023-07-27 16:53 ` [igt-dev] [v3 08/10] tests/i915/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Swati Sharma @ 2023-07-27 16:53 UTC (permalink / raw)
  To: igt-dev

Intel hardware supports fractional bpp from display_ver >= 14.
To test fractional bpp, debugfs entry (force_dsc_fractional_bpp)
is introduced. From the IGT; we are setting this debugfs entry.
However, before setting this debugfs entry, we are checking
capability i.e. fractional bpp is supported by platform and sink
both. In driver, if force_dsc_fractional_bpp is set then while
iterating over output bpp with fractional step size we will
continue if output_bpp is computed as integer and allow DSC iff
compressed bpp is fractional.

v2: -change in igt_describe (Ankit)
v3: -rebase
v4: -add wrapper for source support of fractional bpp (Ankit)

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 tests/i915/kms_dsc.c        | 22 ++++++++++++
 tests/i915/kms_dsc_helper.c | 69 +++++++++++++++++++++++++++++++++++++
 tests/i915/kms_dsc_helper.h |  4 +++
 3 files changed, 95 insertions(+)

diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 5d0c2dccc..8137a13e7 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -41,6 +41,7 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression");
 #define TEST_DSC_BPC		(1<<0)
 #define TEST_DSC_FORMAT		(1<<1)
 #define TEST_DSC_OUTPUT_FORMAT	(1<<2)
+#define TEST_DSC_FRACTIONAL_BPP (1<<3)
 
 typedef struct {
 	int drm_fd;
@@ -143,6 +144,12 @@ static void update_display(data_t *data, uint32_t test_type)
 		force_dsc_output_format(data->drm_fd, data->output, data->output_format);
 	}
 
+	if (test_type & TEST_DSC_FRACTIONAL_BPP) {
+		igt_debug("DSC fractional bpp is supported on %s\n", data->output->name);
+		save_force_dsc_fractional_bpp_en(data->drm_fd, data->output);
+		force_dsc_fractional_bpp_enable(data->drm_fd, data->output);
+	}
+
 	igt_output_set_pipe(output, data->pipe);
 	primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
 
@@ -202,6 +209,7 @@ static void update_display(data_t *data, uint32_t test_type)
 				enabled ? "ON" : "OFF");
 
 	restore_force_dsc_en();
+	restore_force_dsc_fractional_bpp_en();
 
 	if (test_type & TEST_DSC_BPC) {
 		current_bpc = igt_get_pipe_current_bpc(data->drm_fd, data->pipe);
@@ -249,6 +257,10 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc,
 						    data->output, data->output_format))
 			continue;
 
+		if (!(check_dsc_fractional_bpp_on_connector(data->disp_ver,
+							    data->drm_fd, data->output)))
+			continue;
+
 		if (!check_gen11_dp_constraint(data->drm_fd, data->output, data->pipe))
 			continue;
 
@@ -365,6 +377,16 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
 		}
 	}
 
+	igt_describe("Tests fractional compressed bpp functionality if supported "
+		     "by a connector by forcing fractional_bpp on all connectors that support it "
+		     "with default parameter. While finding the optimum compressed bpp, driver will "
+		     "skip over the compressed bpps with integer values. It will go ahead with DSC, "
+		     "iff compressed bpp is fractional, failing in which, it will fail the commit.");
+	igt_subtest_with_dynamic("dsc-fractional-bpp")
+			test_dsc(&data, TEST_DSC_FRACTIONAL_BPP,
+				 DEFAULT_BPC, DRM_FORMAT_XRGB8888,
+				 DSC_FORMAT_RGB);
+
 	igt_fixture {
 		igt_display_fini(&data.display);
 		drm_close_driver(data.drm_fd);
diff --git a/tests/i915/kms_dsc_helper.c b/tests/i915/kms_dsc_helper.c
index 61f76ddee..60531c313 100644
--- a/tests/i915/kms_dsc_helper.c
+++ b/tests/i915/kms_dsc_helper.c
@@ -6,7 +6,9 @@
 #include "kms_dsc_helper.h"
 
 static bool force_dsc_en_orig;
+static bool force_dsc_fractional_bpp_en_orig;
 static int force_dsc_restore_fd = -1;
+static int force_dsc_fractional_bpp_restore_fd = -1;
 
 void force_dsc_enable(int drmfd, igt_output_t *output)
 {
@@ -51,6 +53,7 @@ void restore_force_dsc_en(void)
 void kms_dsc_exit_handler(int sig)
 {
 	restore_force_dsc_en();
+	restore_force_dsc_fractional_bpp_en();
 }
 
 bool is_dsc_supported_by_source(int drmfd)
@@ -143,3 +146,69 @@ bool is_dsc_output_format_supported(int drmfd, int disp_ver, igt_output_t *outpu
 
 	return true;
 }
+
+void force_dsc_fractional_bpp_enable(int drmfd, igt_output_t *output)
+{
+	int ret;
+
+	igt_debug("Forcing DSC Fractional BPP on %s\n", output->name);
+	ret = igt_force_dsc_fractional_bpp_enable(drmfd, output->name);
+	igt_assert_f(ret == 0, "forcing dsc fractional bpp debugfs_write failed\n");
+}
+
+void save_force_dsc_fractional_bpp_en(int drmfd, igt_output_t *output)
+{
+	force_dsc_fractional_bpp_en_orig =
+		igt_is_force_dsc_fractional_bpp_enabled(drmfd, output->name);
+	force_dsc_fractional_bpp_restore_fd =
+		igt_get_dsc_fractional_bpp_debugfs_fd(drmfd, output->name);
+	igt_assert(force_dsc_fractional_bpp_restore_fd >= 0);
+}
+
+void restore_force_dsc_fractional_bpp_en(void)
+{
+	if (force_dsc_fractional_bpp_restore_fd < 0)
+		return;
+
+	igt_debug("Restoring DSC Fractional BPP enable\n");
+	igt_assert(write(force_dsc_fractional_bpp_restore_fd, force_dsc_fractional_bpp_en_orig ? "1" : "0", 1) == 1);
+
+	close(force_dsc_fractional_bpp_restore_fd);
+	force_dsc_fractional_bpp_restore_fd = -1;
+}
+
+static
+bool is_dsc_fractional_bpp_supported_by_sink(int drmfd, char *connector_name)
+{
+	int bpp_prec;
+
+	bpp_prec = igt_get_dsc_fractional_bpp_supported(drmfd, connector_name);
+
+	if (bpp_prec == 1)
+		return false;
+
+	return true;
+}
+
+static
+bool is_dsc_fractional_bpp_supported_by_source(int disp_ver)
+{
+	if (disp_ver >= 14)
+		return true;
+
+	return false;
+}
+
+bool check_dsc_fractional_bpp_on_connector(int disp_ver, int drmfd, igt_output_t *output)
+{
+	if (is_dsc_fractional_bpp_supported_by_source(disp_ver)) {
+		if (!is_dsc_fractional_bpp_supported_by_sink(drmfd, output->name)) {
+			igt_debug("DSC fractional bpp not supported on connector %s\n",
+				   output->name);
+			return false;
+		} else
+			return true;
+	}
+
+	return false;
+}
diff --git a/tests/i915/kms_dsc_helper.h b/tests/i915/kms_dsc_helper.h
index 2109bd767..cd563d9ff 100644
--- a/tests/i915/kms_dsc_helper.h
+++ b/tests/i915/kms_dsc_helper.h
@@ -34,5 +34,9 @@ void force_dsc_output_format(int drmfd, igt_output_t *output,
 			     enum dsc_output_format output_format);
 bool is_dsc_output_format_supported(int disp_ver, int drmfd, igt_output_t *output,
 				    enum dsc_output_format output_format);
+void force_dsc_fractional_bpp_enable(int drmfd, igt_output_t *output);
+void save_force_dsc_fractional_bpp_en(int drmfd, igt_output_t *output);
+void restore_force_dsc_fractional_bpp_en(void);
+bool check_dsc_fractional_bpp_on_connector(int disp_ver, int drmfd, igt_output_t *output);
 
 #endif
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [igt-dev] [v3 08/10] tests/i915/kms_dsc: add test to validate fractional bpp with input bpc
  2023-07-27 16:53 [igt-dev] [v3 00/10] DSC Fractional BPP Val Support Swati Sharma
                   ` (6 preceding siblings ...)
  2023-07-27 16:53 ` [igt-dev] [v3 07/10] tests/i915/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma
@ 2023-07-27 16:53 ` Swati Sharma
  2023-07-27 16:54 ` [igt-dev] [v3 09/10] tests/i915/kms_dsc: add test summary Swati Sharma
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Swati Sharma @ 2023-07-27 16:53 UTC (permalink / raw)
  To: igt-dev

New subtest is added to validate fractional bpp with different
input bpc.

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 tests/i915/kms_dsc.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 8137a13e7..81b5a59cc 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -387,6 +387,16 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
 				 DEFAULT_BPC, DRM_FORMAT_XRGB8888,
 				 DSC_FORMAT_RGB);
 
+	igt_describe("Tests fractional compressed bpp functionality if supported "
+		     "by a connector by forcing fractional_bpp on all connectors that support it "
+		     "with certain input BPC for the connector.");
+	igt_subtest_with_dynamic("dsc-fractional-bpp-with-bpc") {
+		for (int j = 0; j < ARRAY_SIZE(bpc_list); j++)
+			test_dsc(&data, TEST_DSC_FRACTIONAL_BPP | TEST_DSC_BPC,
+				 bpc_list[j], DRM_FORMAT_XRGB8888,
+				 DSC_FORMAT_RGB);
+	}
+
 	igt_fixture {
 		igt_display_fini(&data.display);
 		drm_close_driver(data.drm_fd);
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [igt-dev] [v3 09/10] tests/i915/kms_dsc: add test summary
  2023-07-27 16:53 [igt-dev] [v3 00/10] DSC Fractional BPP Val Support Swati Sharma
                   ` (7 preceding siblings ...)
  2023-07-27 16:53 ` [igt-dev] [v3 08/10] tests/i915/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma
@ 2023-07-27 16:54 ` Swati Sharma
  2023-07-27 16:54 ` [igt-dev] [v3 10/10] HAX: Add dsc tests to fast-feedback.testlist Swati Sharma
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Swati Sharma @ 2023-07-27 16:54 UTC (permalink / raw)
  To: igt-dev

Add test summary giving overall summary of subtests.

v2: -drop DSC1.2 reference (Ankit)

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 tests/i915/kms_dsc.c | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 81b5a59cc..121d47c1b 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -43,6 +43,26 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression");
 #define TEST_DSC_OUTPUT_FORMAT	(1<<2)
 #define TEST_DSC_FRACTIONAL_BPP (1<<3)
 
+/*
+ * Starting from gen11, intel driver supports DSC1.1. For validating
+ * DSC, the first step is to verify if the sink supports DSC.
+ * If the sink does support DSC, we will validate the following
+ * scenarios. In all the scenarios, we are forcing dsc.
+ * (i) basic modeset (ii) input bpc (iii) pixel formats
+ * (iv) output formats (v) fractional bpp
+ * In the basic subtest, we perform modeset with default parameters.
+ * Input bpc and pixel formats subtests, we perform modeset
+ * with different input bpc (12/10/8) and pixel formats (YUV/RGB),
+ * respectively. From MTL+, we can verify fractional bpp and
+ * DSC YCBCR420 output format. The tests are executed with the
+ * RGB444 output format by default. However, in the output-format
+ * subtest, we verify output formats (RGB/YCBCR444/YCBCR420).
+ * Fractional bpp is tested with default parameter. In this,
+ * driver will ignore integer compressed bpp value and will do
+ * modeset with fractional bpp only. Also, tests are added to
+ * validate output format and fractional bpp with different input bpc.
+ */
+
 typedef struct {
 	int drm_fd;
 	uint32_t devid;
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [igt-dev] [v3 10/10] HAX: Add dsc tests to fast-feedback.testlist
  2023-07-27 16:53 [igt-dev] [v3 00/10] DSC Fractional BPP Val Support Swati Sharma
                   ` (8 preceding siblings ...)
  2023-07-27 16:54 ` [igt-dev] [v3 09/10] tests/i915/kms_dsc: add test summary Swati Sharma
@ 2023-07-27 16:54 ` Swati Sharma
  2023-07-27 17:12 ` [igt-dev] ✗ GitLab.Pipeline: warning for DSC Fractional BPP Val Support (rev5) Patchwork
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Swati Sharma @ 2023-07-27 16:54 UTC (permalink / raw)
  To: igt-dev

---
 tests/intel-ci/fast-feedback.testlist | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index 31639c892..fb33894ab 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -181,3 +181,13 @@ igt@gem_exec_suspend@basic-s0
 igt@gem_exec_suspend@basic-s3
 igt@kms_chamelium_hpd@common-hpd-after-suspend
 igt@kms_pipe_crc_basic@suspend-read-crc
+
+# hack
+igt@kms_dsc@dsc-basic
+igt@kms_dsc@dsc-fractional-bpp
+igt@kms_dsc@dsc-fractional-bpp-with-bpc
+igt@kms_dsc@dsc-with-bpc
+igt@kms_dsc@dsc-with-bpc-formats
+igt@kms_dsc@dsc-with-formats
+igt@kms_dsc@dsc-with-output-formats
+igt@kms_dsc@dsc-with-output-formats-with-bpc
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [igt-dev] ✗ GitLab.Pipeline: warning for DSC Fractional BPP Val Support (rev5)
  2023-07-27 16:53 [igt-dev] [v3 00/10] DSC Fractional BPP Val Support Swati Sharma
                   ` (9 preceding siblings ...)
  2023-07-27 16:54 ` [igt-dev] [v3 10/10] HAX: Add dsc tests to fast-feedback.testlist Swati Sharma
@ 2023-07-27 17:12 ` Patchwork
  2023-07-27 17:54 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
  2023-07-27 18:49 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
  12 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2023-07-27 17:12 UTC (permalink / raw)
  To: Swati Sharma; +Cc: igt-dev

== Series Details ==

Series: DSC Fractional BPP Val Support (rev5)
URL   : https://patchwork.freedesktop.org/series/117493/
State : warning

== Summary ==

Pipeline status: FAILED.

see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/946231 for the overview.

build-containers:build-debian has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/46243622):
  time="2023-07-27T17:08:59Z" level=fatal msg="Invalid status code returned when fetching blob 500 (Internal Server Error)" 
  Building!
  STEP 1: FROM debian:buster
  Getting image source signatures
  Copying blob sha256:8eb6dba554cffc072c7a6c696c8a23fc311e543399d84ab3ebc55c07ab54414f
  Copying config sha256:1de12428f6f470169eba22c18e53addae00d60e92ebe96b2c3bdd99c17c34010
  Writing manifest to image destination
  Storing signatures
  STEP 2: RUN apt-get update
  error running container: error creating container for [/bin/sh -c apt-get update]: time="2023-07-27T17:09:04Z" level=warning msg="signal: killed"
  time="2023-07-27T17:09:04Z" level=error msg="container_linux.go:346: starting container process caused \"process_linux.go:297: applying cgroup configuration for process caused \\\"mountpoint for cgroup not found\\\"\"\n"
  container_linux.go:346: starting container process caused "process_linux.go:297: applying cgroup configuration for process caused \"mountpoint for cgroup not found\""
  : exit status 1
  Error: error building at STEP "RUN apt-get update": error while running runtime: exit status 1
  section_end:1690477744:step_script
  section_start:1690477744:cleanup_file_variables
  Cleaning up project directory and file based variables
  section_end:1690477745:cleanup_file_variables
  ERROR: Job failed: exit code 1
  

build-containers:build-debian-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/46243624):
  time="2023-07-27T17:09:00Z" level=fatal msg="Invalid status code returned when fetching blob 500 (Internal Server Error)" 
  Building!
  STEP 1: FROM debian:buster
  Getting image source signatures
  Copying blob sha256:8eb6dba554cffc072c7a6c696c8a23fc311e543399d84ab3ebc55c07ab54414f
  Copying config sha256:1de12428f6f470169eba22c18e53addae00d60e92ebe96b2c3bdd99c17c34010
  Writing manifest to image destination
  Storing signatures
  STEP 2: RUN apt-get update
  error running container: error creating container for [/bin/sh -c apt-get update]: time="2023-07-27T17:09:04Z" level=warning msg="signal: killed"
  time="2023-07-27T17:09:04Z" level=error msg="container_linux.go:346: starting container process caused \"process_linux.go:297: applying cgroup configuration for process caused \\\"mountpoint for cgroup not found\\\"\"\n"
  container_linux.go:346: starting container process caused "process_linux.go:297: applying cgroup configuration for process caused \"mountpoint for cgroup not found\""
  : exit status 1
  Error: error building at STEP "RUN apt-get update": error while running runtime: exit status 1
  section_end:1690477746:step_script
  section_start:1690477746:cleanup_file_variables
  Cleaning up project directory and file based variables
  section_end:1690477746:cleanup_file_variables
  ERROR: Job failed: exit code 1
  

build-containers:build-debian-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/46243623):
          "intel-IGT_5164"
      ],
      "Created": "2019-11-20T12:54:52.073706506Z",
      "DockerVersion": "",
      "Labels": {},
      "Architecture": "amd64",
      "Os": "linux",
      "Layers": [
          "sha256:45252bb38c9c74dfe76c4b3808269db61d3b2aebe5e26bf7fcd85e48b93e16f9"
      ]
  }
  Skipping, already built
  Getting image source signatures
  time="2023-07-27T17:09:02Z" level=fatal msg="Error trying to reuse blob sha256:45252bb38c9c74dfe76c4b3808269db61d3b2aebe5e26bf7fcd85e48b93e16f9 at destination: failed to read from destination repository gfx-ci/igt-ci-tags/build-debian-armhf: 500 (Internal Server Error)" 
  section_end:1690477742:step_script
  section_start:1690477742:cleanup_file_variables
  Cleaning up project directory and file based variables
  section_end:1690477743:cleanup_file_variables
  ERROR: Job failed: exit code 1
  

build-containers:build-fedora has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/46243626):
      "Created": "2019-11-11T12:55:05.209459628Z",
      "DockerVersion": "",
      "Labels": {
          "maintainer": "Clement Verna \u003ccverna@fedoraproject.org\u003e"
      },
      "Architecture": "amd64",
      "Os": "linux",
      "Layers": [
          "sha256:b39735705e69a2516323755ff4698ea5cd86b08b31d8c8287bc83d76d34c3bfc"
      ]
  }
  Skipping, already built
  Getting image source signatures
  time="2023-07-27T17:09:06Z" level=fatal msg="Error trying to reuse blob sha256:b39735705e69a2516323755ff4698ea5cd86b08b31d8c8287bc83d76d34c3bfc at destination: failed to read from destination repository gfx-ci/igt-ci-tags/build-fedora: 500 (Internal Server Error)" 
  section_end:1690477746:step_script
  section_start:1690477746:cleanup_file_variables
  Cleaning up project directory and file based variables
  section_end:1690477747:cleanup_file_variables
  ERROR: Job failed: exit code 1

== Logs ==

For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/946231

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [igt-dev] ✗ Fi.CI.BAT: failure for DSC Fractional BPP Val Support (rev5)
  2023-07-27 16:53 [igt-dev] [v3 00/10] DSC Fractional BPP Val Support Swati Sharma
                   ` (10 preceding siblings ...)
  2023-07-27 17:12 ` [igt-dev] ✗ GitLab.Pipeline: warning for DSC Fractional BPP Val Support (rev5) Patchwork
@ 2023-07-27 17:54 ` Patchwork
  2023-07-27 18:49 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
  12 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2023-07-27 17:54 UTC (permalink / raw)
  To: Swati Sharma; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 16871 bytes --]

== Series Details ==

Series: DSC Fractional BPP Val Support (rev5)
URL   : https://patchwork.freedesktop.org/series/117493/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13432 -> IGTPW_9474
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_9474 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_9474, 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_9474/index.html

Participating hosts (43 -> 41)
------------------------------

  Missing    (2): fi-kbl-soraka fi-snb-2520m 

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_9474:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_dsc@dsc-fractional-bpp (NEW):
    - bat-dg2-11:         NOTRUN -> [SKIP][1] +2 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html

  * {igt@kms_dsc@dsc-fractional-bpp-with-bpc} (NEW):
    - fi-rkl-11600:       NOTRUN -> [SKIP][2] +2 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-rkl-11600/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
    - bat-dg1-5:          NOTRUN -> [SKIP][3] +2 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-dg1-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * {igt@kms_dsc@dsc-with-output-formats-with-bpc} (NEW):
    - bat-jsl-3:          NOTRUN -> [SKIP][4] +2 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-jsl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
    - bat-mtlp-8:         NOTRUN -> [SKIP][5] +2 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-mtlp-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
    - bat-dg2-8:          NOTRUN -> [SKIP][6] +2 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-dg2-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
    - bat-jsl-1:          NOTRUN -> [SKIP][7] +2 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-jsl-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  
New tests
---------

  New tests have been introduced between CI_DRM_13432 and IGTPW_9474:

### New IGT tests (3) ###

  * igt@kms_dsc@dsc-fractional-bpp:
    - Statuses : 30 skip(s)
    - Exec time: [0.0] s

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - Statuses : 30 skip(s)
    - Exec time: [0.0] s

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - Statuses : 30 skip(s)
    - Exec time: [0.0] s

  

Known issues
------------

  Here are the changes found in IGTPW_9474 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@i915_pm_rpm@basic-rte:
    - fi-cfl-guc:         [PASS][8] -> [FAIL][9] ([i915#7940])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html

  * igt@i915_pm_rpm@module-reload:
    - fi-tgl-1115g4:      [PASS][10] -> [FAIL][11] ([i915#7940])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@requests:
    - bat-rpls-1:         [PASS][12] -> [ABORT][13] ([i915#7911] / [i915#7920])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/bat-rpls-1/igt@i915_selftest@live@requests.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-rpls-1/igt@i915_selftest@live@requests.html

  * igt@i915_selftest@live@slpc:
    - bat-rpls-2:         NOTRUN -> [DMESG-WARN][14] ([i915#6367])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-rpls-2/igt@i915_selftest@live@slpc.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - bat-rpls-2:         NOTRUN -> [SKIP][15] ([i915#7828])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-rpls-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_dsc@dsc-basic:
    - fi-kbl-7567u:       NOTRUN -> [SKIP][16] ([fdo#109271]) +7 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-kbl-7567u/igt@kms_dsc@dsc-basic.html
    - fi-kbl-8809g:       NOTRUN -> [SKIP][17] ([fdo#109271]) +7 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-kbl-8809g/igt@kms_dsc@dsc-basic.html
    - fi-rkl-11600:       NOTRUN -> [SKIP][18] ([i915#3555] / [i915#3840]) +4 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-rkl-11600/igt@kms_dsc@dsc-basic.html

  * igt@kms_dsc@dsc-fractional-bpp (NEW):
    - fi-blb-e6850:       NOTRUN -> [SKIP][19] ([fdo#109271]) +7 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-blb-e6850/igt@kms_dsc@dsc-fractional-bpp.html
    - fi-skl-6600u:       NOTRUN -> [SKIP][20] ([fdo#109271]) +7 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-skl-6600u/igt@kms_dsc@dsc-fractional-bpp.html
    - fi-apl-guc:         NOTRUN -> [SKIP][21] ([fdo#109271]) +7 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-apl-guc/igt@kms_dsc@dsc-fractional-bpp.html
    - fi-skl-guc:         NOTRUN -> [SKIP][22] ([fdo#109271]) +7 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-skl-guc/igt@kms_dsc@dsc-fractional-bpp.html

  * {igt@kms_dsc@dsc-fractional-bpp-with-bpc} (NEW):
    - bat-adls-5:         NOTRUN -> [SKIP][23] ([i915#1845]) +7 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-adls-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
    - bat-dg2-9:          NOTRUN -> [SKIP][24] ([i915#5354]) +4 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-dg2-9/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_dsc@dsc-with-bpc:
    - fi-cfl-guc:         NOTRUN -> [SKIP][25] ([fdo#109271]) +7 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-cfl-guc/igt@kms_dsc@dsc-with-bpc.html
    - bat-mtlp-6:         NOTRUN -> [SKIP][26] ([i915#1845]) +7 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-mtlp-6/igt@kms_dsc@dsc-with-bpc.html
    - bat-dg2-9:          NOTRUN -> [SKIP][27] ([i915#1845] / [i915#5354]) +2 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-dg2-9/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - bat-rpls-2:         NOTRUN -> [SKIP][28] ([i915#1845]) +8 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-rpls-2/igt@kms_dsc@dsc-with-bpc-formats.html
    - bat-atsm-1:         NOTRUN -> [SKIP][29] ([i915#6078]) +7 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-atsm-1/igt@kms_dsc@dsc-with-bpc-formats.html
    - bat-jsl-3:          NOTRUN -> [SKIP][30] ([i915#3555]) +4 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-jsl-3/igt@kms_dsc@dsc-with-bpc-formats.html
    - bat-dg2-11:         NOTRUN -> [SKIP][31] ([i915#3555] / [i915#3840]) +4 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-dg2-11/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_dsc@dsc-with-formats:
    - fi-glk-j4005:       NOTRUN -> [SKIP][32] ([fdo#109271]) +7 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-glk-j4005/igt@kms_dsc@dsc-with-formats.html
    - fi-kbl-x1275:       NOTRUN -> [SKIP][33] ([fdo#109271]) +7 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-kbl-x1275/igt@kms_dsc@dsc-with-formats.html
    - fi-cfl-8109u:       NOTRUN -> [SKIP][34] ([fdo#109271]) +7 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-cfl-8109u/igt@kms_dsc@dsc-with-formats.html
    - fi-ilk-650:         NOTRUN -> [SKIP][35] ([fdo#109271]) +7 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-ilk-650/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_dsc@dsc-with-output-formats:
    - fi-ivb-3770:        NOTRUN -> [SKIP][36] ([fdo#109271]) +7 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-ivb-3770/igt@kms_dsc@dsc-with-output-formats.html
    - fi-elk-e7500:       NOTRUN -> [SKIP][37] ([fdo#109271]) +7 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-elk-e7500/igt@kms_dsc@dsc-with-output-formats.html
    - bat-dg2-8:          NOTRUN -> [SKIP][38] ([i915#3555] / [i915#3840]) +4 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-dg2-8/igt@kms_dsc@dsc-with-output-formats.html
    - fi-bsw-nick:        NOTRUN -> [SKIP][39] ([fdo#109271]) +7 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-bsw-nick/igt@kms_dsc@dsc-with-output-formats.html
    - fi-kbl-guc:         NOTRUN -> [SKIP][40] ([fdo#109271]) +7 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-kbl-guc/igt@kms_dsc@dsc-with-output-formats.html
    - bat-adlm-1:         NOTRUN -> [SKIP][41] ([i915#1845]) +7 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-adlm-1/igt@kms_dsc@dsc-with-output-formats.html
    - fi-bsw-n3050:       NOTRUN -> [SKIP][42] ([fdo#109271]) +7 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-bsw-n3050/igt@kms_dsc@dsc-with-output-formats.html
    - bat-mtlp-8:         NOTRUN -> [SKIP][43] ([i915#3840]) +4 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-mtlp-8/igt@kms_dsc@dsc-with-output-formats.html
    - bat-jsl-1:          NOTRUN -> [SKIP][44] ([i915#3555]) +4 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-jsl-1/igt@kms_dsc@dsc-with-output-formats.html
    - bat-dg1-5:          NOTRUN -> [SKIP][45] ([i915#3555] / [i915#3840]) +4 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-dg1-5/igt@kms_dsc@dsc-with-output-formats.html

  * {igt@kms_dsc@dsc-with-output-formats-with-bpc} (NEW):
    - fi-cfl-8700k:       NOTRUN -> [SKIP][46] ([fdo#109271]) +7 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-cfl-8700k/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
    - bat-dg2-11:         NOTRUN -> [SKIP][47] ([i915#1845] / [i915#5354]) +2 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html

  * igt@kms_psr@cursor_plane_move:
    - bat-rplp-1:         NOTRUN -> [ABORT][48] ([i915#8434] / [i915#8668])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-rplp-1/igt@kms_psr@cursor_plane_move.html

  * igt@kms_psr@primary_page_flip:
    - bat-rplp-1:         NOTRUN -> [SKIP][49] ([i915#1072])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-rplp-1/igt@kms_psr@primary_page_flip.html

  
#### Possible fixes ####

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - fi-tgl-1115g4:      [FAIL][50] ([i915#7940]) -> [PASS][51]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@i915_pm_rpm@module-reload:
    - fi-cfl-8700k:       [FAIL][52] ([i915#7940]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@gt_pm:
    - bat-rpls-2:         [DMESG-FAIL][54] ([i915#4258] / [i915#7913]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-rpls-2/igt@i915_selftest@live@gt_pm.html

  * igt@i915_selftest@live@hangcheck:
    - bat-dg2-8:          [DMESG-FAIL][56] ([i915#6998] / [i915#7913]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/bat-dg2-8/igt@i915_selftest@live@hangcheck.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-dg2-8/igt@i915_selftest@live@hangcheck.html

  * igt@i915_selftest@live@reset:
    - bat-rpls-2:         [ABORT][58] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/bat-rpls-2/igt@i915_selftest@live@reset.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-rpls-2/igt@i915_selftest@live@reset.html

  * igt@i915_selftest@live@slpc:
    - bat-mtlp-6:         [DMESG-WARN][60] ([i915#6367]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/bat-mtlp-6/igt@i915_selftest@live@slpc.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-mtlp-6/igt@i915_selftest@live@slpc.html

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
    - bat-rplp-1:         [ABORT][62] ([i915#8442] / [i915#8668]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html

  
#### Warnings ####

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - fi-cfl-8700k:       [FAIL][64] ([i915#7940]) -> [FAIL][65] ([i915#7691])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/fi-cfl-8700k/igt@i915_pm_rpm@basic-pci-d3-state.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-cfl-8700k/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@i915_pm_rpm@basic-rte:
    - fi-kbl-guc:         [FAIL][66] ([i915#7940]) -> [FAIL][67] ([i915#8843])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
  [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078
  [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
  [i915#6998]: https://gitlab.freedesktop.org/drm/intel/issues/6998
  [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
  [i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
  [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#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
  [i915#8434]: https://gitlab.freedesktop.org/drm/intel/issues/8434
  [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
  [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
  [i915#8843]: https://gitlab.freedesktop.org/drm/intel/issues/8843


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_7406 -> IGTPW_9474

  CI-20190529: 20190529
  CI_DRM_13432: 069a79d6af09879060345da9f8b886a73b7810a8 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_9474: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/index.html
  IGT_7406: 1d6fd796607099d189e85d1fd305160363b961f2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

+igt@kms_dsc@dsc-fractional-bpp
+igt@kms_dsc@dsc-fractional-bpp-with-bpc
+igt@kms_dsc@dsc-with-output-formats-with-bpc

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9474/index.html

[-- Attachment #2: Type: text/html, Size: 21440 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [igt-dev] ○ CI.xeBAT: info for DSC Fractional BPP Val Support (rev5)
  2023-07-27 16:53 [igt-dev] [v3 00/10] DSC Fractional BPP Val Support Swati Sharma
                   ` (11 preceding siblings ...)
  2023-07-27 17:54 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
@ 2023-07-27 18:49 ` Patchwork
  12 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2023-07-27 18:49 UTC (permalink / raw)
  To: Swati Sharma; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 335 bytes --]

== Series Details ==

Series: DSC Fractional BPP Val Support (rev5)
URL   : https://patchwork.freedesktop.org/series/117493/
State : info

== Summary ==

Participating hosts:
bat-pvc-2
bat-atsm-2
bat-dg2-oem2
bat-adlp-7
Missing hosts results[0]:
Results: [IGTPW_9474](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9474/index.html)



[-- Attachment #2: Type: text/html, Size: 851 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2023-07-27 18:49 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-27 16:53 [igt-dev] [v3 00/10] DSC Fractional BPP Val Support Swati Sharma
2023-07-27 16:53 ` [igt-dev] [v3 01/10] tests/i915/kms_dsc: add new test flag Swati Sharma
2023-07-27 16:53 ` [igt-dev] [v3 02/10] tests/i915/kms_dsc: use uint32_t " Swati Sharma
2023-07-27 16:53 ` [igt-dev] [v3 03/10] tests/i915/kms_dsc: use #define for default bpc Swati Sharma
2023-07-27 16:53 ` [igt-dev] [v3 04/10] tests/i915/kms_dsc: use igt_get_pipe_current_bpc() Swati Sharma
2023-07-27 16:53 ` [igt-dev] [v3 05/10] tests/i915/kms_dsc: add test validating output formats with input bpc Swati Sharma
2023-07-27 16:53 ` [igt-dev] [v3 06/10] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma
2023-07-27 16:53 ` [igt-dev] [v3 07/10] tests/i915/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma
2023-07-27 16:53 ` [igt-dev] [v3 08/10] tests/i915/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma
2023-07-27 16:54 ` [igt-dev] [v3 09/10] tests/i915/kms_dsc: add test summary Swati Sharma
2023-07-27 16:54 ` [igt-dev] [v3 10/10] HAX: Add dsc tests to fast-feedback.testlist Swati Sharma
2023-07-27 17:12 ` [igt-dev] ✗ GitLab.Pipeline: warning for DSC Fractional BPP Val Support (rev5) Patchwork
2023-07-27 17:54 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
2023-07-27 18:49 ` [igt-dev] ○ CI.xeBAT: info " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox