Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Mohammed Thasleem <mohammed.thasleem@intel.com>
To: igt-dev@lists.freedesktop.org
Subject: [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Fixed mode selection for extended mode tests
Date: Sun,  4 Sep 2022 15:39:54 +0530	[thread overview]
Message-ID: <20220904100954.126137-1-mohammed.thasleem@intel.com> (raw)
In-Reply-To: <20220808093622.193800-1-mohammed.thasleem@intel.com>

Added check on DP-MST and 4k panels when two moniters connected
through MST.
This will find the connector mode combo that fits into the
bandwidth when more than one monitor is connected.

Example:
  When two monitors connected through MST, the second monitor
  also tries to use the same mode. So two such modes may not
  fit into the link bandwidth. So, iterate through connected
  outputs & modes and find a combination of modes those fit
  into the link BW.

v2: -Updated commit msg and description. (Bhanu)
    -Renamed restart with retry. (Bhanu)
    -Moved igt_pipe_crc_new before retry. (Bhanu)
    -Removed unrelated changes and new line. (Bhanu)
    -Minor changes.
v3: Updated discription and added EINVAL check.
v4: Removed EINVAL and ENOSPC checks.
    Added check for DP-MST and 4k panels.
    Updated discription.

Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/kms_display_modes.c | 88 ++++++++++++++++++++++++++++++++++++---
 1 file changed, 83 insertions(+), 5 deletions(-)

diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
index e4191811e..4acc6bb3c 100644
--- a/tests/kms_display_modes.c
+++ b/tests/kms_display_modes.c
@@ -34,16 +34,70 @@ typedef struct {
 	int n_pipes;
 } data_t;
 
+static int parse_path_blob(char *blob_data)
+{
+	int connector_id;
+	char *encoder;
+
+	encoder = strtok(blob_data, ":");
+	igt_assert_f(!strcmp(encoder, "mst"), "PATH connector property expected to have 'mst'\n");
+
+	connector_id = atoi(strtok(NULL, "-"));
+
+	return connector_id;
+}
+
+static bool output_is_dp_mst(data_t *data, igt_output_t *output, int i)
+{
+	drmModePropertyBlobPtr path_blob = NULL;
+	uint64_t path_blob_id;
+	drmModeConnector *connector = output->config.connector;
+	struct kmstest_connector_config config;
+	const char *encoder;
+	int connector_id;
+	static int prev_connector_id;
+
+	kmstest_get_connector_config(data->drm_fd, output->config.connector->connector_id, -1, &config);
+	encoder = kmstest_encoder_type_str(config.encoder->encoder_type);
+
+	if (strcmp(encoder, "DP MST"))
+		return false;
+
+	igt_assert(kmstest_get_property(data->drm_fd, connector->connector_id,
+		   DRM_MODE_OBJECT_CONNECTOR, "PATH", NULL,
+		   &path_blob_id, NULL));
+
+	igt_assert(path_blob = drmModeGetPropertyBlob(data->drm_fd, path_blob_id));
+
+	connector_id = parse_path_blob((char *) path_blob->data);
+
+	/*
+	 * Discarding outputs of other DP MST topology.
+	 * Testing only on outputs on the topology we got previously
+	 */
+	if (i == 0) {
+		prev_connector_id = connector_id;
+	} else {
+		if (connector_id != prev_connector_id)
+			return false;
+	}
+
+	drmModeFreePropertyBlob(path_blob);
+
+	return true;
+}
+
 static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
 {
 	struct igt_fb fb, fbs[2];
 	drmModeModeInfo *mode[2];
+	drmModeModeInfo *mode_mst;
 	igt_output_t *output, *extended_output[2];
 	igt_display_t *display = &data->display;
 	igt_plane_t *plane[2];
 	igt_pipe_crc_t *pipe_crc[2] = { 0 };
 	igt_crc_t ref_crc[2], crc[2];
-	int count = 0, width, height;
+	int count = 0, width, height, ret, dp_mst_outputs = 0;
 	cairo_t *cr;
 
 	for_each_connected_output(display, output) {
@@ -54,15 +108,16 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
 			break;
 	}
 
+	pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
+	pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
+
+retry:
 	igt_output_set_pipe(extended_output[0], pipe1);
 	igt_output_set_pipe(extended_output[1], pipe2);
 
 	mode[0] = igt_output_get_mode(extended_output[0]);
 	mode[1] = igt_output_get_mode(extended_output[1]);
 
-	pipe_crc[0] = igt_pipe_crc_new(data->drm_fd, pipe1, IGT_PIPE_CRC_SOURCE_AUTO);
-	pipe_crc[1] = igt_pipe_crc_new(data->drm_fd, pipe2, IGT_PIPE_CRC_SOURCE_AUTO);
-
 	igt_create_color_fb(data->drm_fd, mode[0]->hdisplay, mode[0]->vdisplay,
 			     DRM_FORMAT_XRGB8888, 0, 1, 0, 0, &fbs[0]);
 	igt_create_color_fb(data->drm_fd, mode[1]->hdisplay, mode[1]->vdisplay,
@@ -79,7 +134,30 @@ static void run_extendedmode_basic(data_t *data, int pipe1, int pipe2)
 	igt_fb_set_size(&fbs[1], plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
 	igt_plane_set_size(plane[1], mode[1]->hdisplay, mode[1]->vdisplay);
 
-	igt_display_commit2(display, COMMIT_ATOMIC);
+	for_each_connected_output(display, output) {
+		mode_mst = igt_output_get_mode(output);
+		if (output_is_dp_mst(data, output, dp_mst_outputs) &&
+		   (mode_mst->hdisplay == 3840 && mode_mst->vdisplay == 2160))
+			dp_mst_outputs++;
+	}
+
+	ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
+	/* In case of DP-MST find suitable mode(s) to fit into the link BW. */
+	if (ret != 0 && dp_mst_outputs > 1) {
+		bool found = igt_override_all_active_output_modes_to_fit_bw(display);
+
+		igt_require_f(found, "No valid mode combo found for MST modeset.\n");
+
+		for_each_connected_output(display, output)
+			igt_output_set_pipe(output, PIPE_NONE);
+
+		igt_remove_fb(data->drm_fd, &fbs[0]);
+		igt_remove_fb(data->drm_fd, &fbs[1]);
+
+		goto retry;
+	}
+
+	igt_assert(!ret);
 
 	igt_pipe_crc_collect_crc(pipe_crc[0], &ref_crc[0]);
 	igt_pipe_crc_collect_crc(pipe_crc[1], &ref_crc[1]);
-- 
2.25.1

  parent reply	other threads:[~2023-03-13 11:30 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-08  9:36 [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Add check on ENOSPC for DP MST config Mohammed Thasleem
2022-08-14  9:28 ` [igt-dev] [PATCH i-g-t v2] tests/kms_display_modes: Fixed mode selection for extended mode tests Mohammed Thasleem
2022-08-30 11:41   ` [igt-dev] [PATCH i-g-t] " Mohammed Thasleem
2023-03-09  5:19     ` Modem, Bhanuprakash
2023-02-24  9:40   ` [igt-dev] [PATCH i-g-t v2] " Modem, Bhanuprakash
2023-03-08 17:25     ` Kamil Konieczny
2023-03-09  5:10       ` Modem, Bhanuprakash
2022-09-04 10:09 ` Mohammed Thasleem [this message]
2023-02-14 12:20 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_display_modes: Add check on ENOSPC for DP MST config Patchwork
2023-02-15 11:18 ` [igt-dev] [PATCH i-g-t] " Modem, Bhanuprakash
2023-02-20 11:26 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev2) Patchwork
2023-02-20 19:18 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2023-03-08 14:16 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev3) Patchwork
2023-03-10  4:04 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2023-03-13 12:05 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev4) Patchwork
2023-03-13 17:01 ` [igt-dev] ✗ GitLab.Pipeline: warning " Patchwork
2023-03-14 12:15 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-03-19 18:13 ` [igt-dev] [PATCH i-g-t] tests/kms_display_modes: Fixed mode selection for extended mode tests Mohammed Thasleem
2023-03-19 18:57 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_display_modes: Add check on ENOSPC for DP MST config (rev5) Patchwork
2023-03-19 20:02 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220904100954.126137-1-mohammed.thasleem@intel.com \
    --to=mohammed.thasleem@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox