From: "Lisovskiy, Stanislav" <stanislav.lisovskiy@intel.com>
To: Mohammed Thasleem <mohammed.thasleem@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: Re: [igt-dev] [PATCH i-g-t] tests/i915/kms_cdclk: Fixed mode selection for MST modeset
Date: Thu, 16 Mar 2023 12:37:38 +0200 [thread overview]
Message-ID: <ZBLxcjfx7RBYImws@intel.com> (raw)
In-Reply-To: <20220830135400.12642-1-mohammed.thasleem@intel.com>
On Tue, Aug 30, 2022 at 07:24:00PM +0530, Mohammed Thasleem wrote:
> Added check on ENOSPC and EINVAL, when two monitors 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.
>
> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
> ---
> tests/i915/kms_cdclk.c | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/tests/i915/kms_cdclk.c b/tests/i915/kms_cdclk.c
> index 991a7c507..04f39bea5 100644
> --- a/tests/i915/kms_cdclk.c
> +++ b/tests/i915/kms_cdclk.c
> @@ -313,7 +313,16 @@ static void test_mode_transition_on_all_outputs(data_t *data)
> j++;
> }
>
> + /* In case of DP-MST find suitable mode(s) to fit into the link BW. */
> + if ((igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL) != 0) &&
> + (errno == EINVAL || errno == ENOSPC)) {
> + 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");
> + }
> +
> igt_display_commit2(display, COMMIT_ATOMIC);
> +
New line added on purpose?
Otherwise,
Reviewed-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
> cdclk_new = get_current_cdclk_freq(debugfs_fd);
> igt_info("CD clock frequency %d -> %d\n", cdclk_ref, cdclk_new);
>
> --
> 2.25.1
>
next prev parent reply other threads:[~2023-03-16 10:37 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-30 13:54 [igt-dev] [PATCH i-g-t] tests/i915/kms_cdclk: Fixed mode selection for MST modeset Mohammed Thasleem
2023-03-08 16:14 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2023-03-10 4:25 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2023-03-16 10:37 ` Lisovskiy, Stanislav [this message]
2023-05-09 6:08 ` [igt-dev] [PATCH i-g-t] " Mohammed Thasleem
2023-05-09 7:05 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/kms_cdclk: Fixed mode selection for MST modeset (rev2) Patchwork
2023-05-09 10:52 ` [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=ZBLxcjfx7RBYImws@intel.com \
--to=stanislav.lisovskiy@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=mohammed.thasleem@intel.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.