Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Imre Deak <imre.deak@intel.com>
To: Daniel Vetter <daniel@ffwll.ch>
Cc: IGT development <igt-dev@lists.freedesktop.org>
Subject: Re: [igt-dev] [PATCH i-g-t 0/5] Fix mode selection for 2x tests
Date: Wed, 14 Apr 2021 19:06:49 +0300	[thread overview]
Message-ID: <20210414160649.GC3081792@ideak-desk.fi.intel.com> (raw)
In-Reply-To: <YHcJOMSJ9pddPCEg@phenom.ffwll.local>

On Wed, Apr 14, 2021 at 05:24:40PM +0200, Daniel Vetter wrote:
> On Mon, Apr 12, 2021 at 03:51:40AM +0000, Modem, Bhanuprakash wrote:
> > > From: Daniel Vetter <daniel.vetter@ffwll.ch>
> > > Sent: Saturday, April 10, 2021 1:48 AM
> > > To: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> > > Cc: IGT development <igt-dev@lists.freedesktop.org>
> > > Subject: Re: [igt-dev] [PATCH i-g-t 0/5] Fix mode selection for 2x tests
> > > 
> > > On Fri, Apr 9, 2021 at 1:39 PM Bhanuprakash Modem
> > > <bhanuprakash.modem@intel.com> wrote:
> > > >
> > > > 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.
> > > >
> > > > This series will find a combination of modes that fit into the BW.
> > > >
> > > > By parsing the PATH property, we can add a link_group_id field to
> > > > igt_output_t to identify all connectors that shares the BW of the
> > > > same link.
> > > >
> > > > Parsing the PATH property consists of finding all connectors with
> > > > the same X prefix in the X-Y[-Z...] path property format and assigning
> > > > a unique non-zero link_group_id to all such connectors. Connectors
> > > > without a PATH property are not an MST output, so their link_group_id
> > > > can be left at 0.
> > > >
> > > > IGT core helper would override the mode on all connectors that will
> > > > be modeset by the next igt_display_commit() call in the test. These
> > > > are all the connectors in igt_display_t that have a pending_pipe set
> > > > by the test up to the point of calling this helper.
> > > >
> > > > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> > > 
> > > Uh this is really not how kms is supposed to work. There are _tons_ of
> > > reasons why 2 crtc at the same time wont work, mst bw constraint is
> > > just one.
> > > 
> > > If you want to fix this, this should be fixed with atomic TEST_ONLY
> > In fact, we are doing the same in this series.
> > 
> > By parsing the PATH connector prop, igt_output_refresh() will update the
> > link_group_id field for each connector [1]. 
> > 
> > Each individual (Nx)-test will identify the connectors those are sharing
> > the MST bw (by reading the link_group_id field in igt_output_t), and call
> > the helper to find the suitable modes [2].
> > 
> > A helper function iterates through those N output/mode combinations. And
> > find the combination using the most BW by ATOMIC_TEST_ONLY and returned
> > to the test [3].
> > 
> > Am I missing anything?
> 
> Using TEST_ONLY sounds good. Trying to do clever filtering with PATH
> property before you call TEST_ONLY is not good. You should check with
> TEST_ONLY in general, not just when the path property indicates that the
> dp output is shared.

I think it would still make sense to find the working config first on
outputs sharing a link bandwidth with TEST_ONLY and only then find the
config with all required outputs included in the TEST_ONLY commit,
starting with the modes found for outpus sharing a link. This is the way
you could find the maximum resolution that can be used on each output.

> -Daniel
> 
> > 
> > [1]: https://patchwork.freedesktop.org/patch/427718
> > [2]: https://patchwork.freedesktop.org/patch/427720
> > [3]: https://patchwork.freedesktop.org/patch/427719
> >  N : 2,3,4,...
> > 
> > -Bhanu
> > > mode to figure out what works and what doesn't. Not by trying to
> > > re-implement the kernel's atomic_check configuration validation,
> > > because you just can't do that.
> > > 
> > > So nack on architectural reasons on this approach.
> > > -Daniel
> > > 
> > > >
> > > > Bhanuprakash Modem (5):
> > > >   lib/igt_kms: Add a support to read PATH connector property
> > > >   lib/igt_kms: Identify outputs that shares link bandwidth
> > > >   lib/igt_kms: helper to override the mode on all connectors
> > > >   tests/kms_frontbuffer_tracking: Fix mode selection for 2x tests
> > > >   tests/kms_cursor_legacy: Fix mode selection for 2x tests
> > > >
> > > >  lib/igt_kms.c                    | 71 ++++++++++++++++++++++++++++++++
> > > >  lib/igt_kms.h                    |  3 ++
> > > >  tests/kms_cursor_legacy.c        | 53 ++++++++++++++++++++++--
> > > >  tests/kms_frontbuffer_tracking.c | 35 ++++++++++++++++
> > > >  4 files changed, 159 insertions(+), 3 deletions(-)
> > > >
> > > > --
> > > > 2.20.1
> > > >
> > > > _______________________________________________
> > > > igt-dev mailing list
> > > > igt-dev@lists.freedesktop.org
> > > > https://lists.freedesktop.org/mailman/listinfo/igt-dev
> > > 
> > > 
> > > 
> > > --
> > > Daniel Vetter
> > > Software Engineer, Intel Corporation
> > > http://blog.ffwll.ch
> 
> -- 
> Daniel Vetter
> Software Engineer, Intel Corporation
> http://blog.ffwll.ch
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

  reply	other threads:[~2021-04-14 16:13 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-09 19:30 [igt-dev] [PATCH i-g-t 0/5] Fix mode selection for 2x tests Bhanuprakash Modem
2021-04-09 13:25 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2021-04-09 15:55 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2021-04-09 19:30 ` [igt-dev] [PATCH i-g-t 1/5] lib/igt_kms: Add a support to read PATH connector property Bhanuprakash Modem
2021-04-09 19:30 ` [igt-dev] [PATCH i-g-t 2/5] lib/igt_kms: Identify outputs that shares link bandwidth Bhanuprakash Modem
2021-04-09 19:30 ` [igt-dev] [PATCH i-g-t 3/5] lib/igt_kms: helper to override the mode on all connectors Bhanuprakash Modem
2021-04-09 19:30 ` [igt-dev] [PATCH i-g-t 4/5] tests/kms_frontbuffer_tracking: Fix mode selection for 2x tests Bhanuprakash Modem
2021-04-09 19:30 ` [igt-dev] [PATCH i-g-t 5/5] tests/kms_cursor_legacy: " Bhanuprakash Modem
2021-04-09 20:18 ` [igt-dev] [PATCH i-g-t 0/5] " Daniel Vetter
2021-04-12  3:51   ` Modem, Bhanuprakash
2021-04-14 15:24     ` Daniel Vetter
2021-04-14 16:06       ` Imre Deak [this message]
2021-04-14 18:37         ` Daniel Vetter
2021-04-14 19:01           ` Imre Deak
2021-04-15 12:13             ` Nautiyal, Ankit K
2021-04-15 12:56             ` Modem, Bhanuprakash
2021-04-15 14:15               ` Daniel Vetter

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=20210414160649.GC3081792@ideak-desk.fi.intel.com \
    --to=imre.deak@intel.com \
    --cc=daniel@ffwll.ch \
    --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