On Mon, Mar 25, 2024 at 08:43:10PM +0200, Ville Syrjälä wrote:
> On Mon, Mar 25, 2024 at 08:29:56PM +0200, Lisovskiy, Stanislav wrote:
> > On Mon, Mar 25, 2024 at 07:11:21PM +0200, Ville Syrjälä wrote:
> > > On Mon, Mar 25, 2024 at 07:01:03PM +0200, Lisovskiy, Stanislav wrote:
> > > > On Mon, Mar 25, 2024 at 04:45:49PM +0200, Ville Syrjälä wrote:
> > > > > On Mon, Mar 25, 2024 at 01:23:26PM +0200, Stanislav Lisovskiy wrote:
> > > > > > According to BSpec we need to do correspondent MBUS updates before
> > > > > > or after DBUF reallocation, depending on whether we are enabling
> > > > > > or disabling mbus joining(typical scenario is swithing between
> > > > > > multiple and single displays).
> > > > > > 
> > > > > > Also we need to be able to update dbuf min tracker and mdclk ratio
> > > > > > separately if mbus_join state didn't change, so lets add one
> > > > > > degree of freedom and make it possible.
> > > > > > 
> > > > > > Reviewed-by: Ville Syrjälä <ville.syrj...@linux.intel.com>
> > > > > > Signed-off-by: Stanislav Lisovskiy <stanislav.lisovs...@intel.com>
> > > > > > ---
> > > > > >  drivers/gpu/drm/i915/display/skl_watermark.c | 54 
> > > > > > +++++++++++++-------
> > > > > >  1 file changed, 35 insertions(+), 19 deletions(-)
> > > > > > 
> > > > > > diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c 
> > > > > > b/drivers/gpu/drm/i915/display/skl_watermark.c
> > > > > > index bc341abcab2fe..2b947870527fc 100644
> > > > > > --- a/drivers/gpu/drm/i915/display/skl_watermark.c
> > > > > > +++ b/drivers/gpu/drm/i915/display/skl_watermark.c
> > > > > > @@ -3570,16 +3570,38 @@ void 
> > > > > > intel_dbuf_mdclk_cdclk_ratio_update(struct drm_i915_private *i915, 
> > > > > > u8 ratio
> > > > > >                          DBUF_MIN_TRACKER_STATE_SERVICE(ratio - 1));
> > > > > >  }
> > > > > >  
> > > > > > +static void intel_dbuf_mdclk_min_tracker_update(struct 
> > > > > > intel_atomic_state *state)
> > > > > > +{
> > > > > > +   struct drm_i915_private *i915 = to_i915(state->base.dev);
> > > > > > +   const struct intel_dbuf_state *old_dbuf_state =
> > > > > > +           intel_atomic_get_old_dbuf_state(state);
> > > > > > +   const struct intel_dbuf_state *new_dbuf_state =
> > > > > > +           intel_atomic_get_new_dbuf_state(state);
> > > > > > +
> > > > > > +   if (DISPLAY_VER(i915) >= 20 &&
> > > > > > +       old_dbuf_state->mdclk_cdclk_ratio != 
> > > > > > new_dbuf_state->mdclk_cdclk_ratio) {
> > > > > > +           /*
> > > > > > +            * For Xe2LPD and beyond, when there is a change in the 
> > > > > > ratio
> > > > > > +            * between MDCLK and CDCLK, updates to related 
> > > > > > registers need to
> > > > > > +            * happen at a specific point in the CDCLK change 
> > > > > > sequence. In
> > > > > > +            * that case, we defer to the call to
> > > > > > +            * intel_dbuf_mdclk_cdclk_ratio_update() to the CDCLK 
> > > > > > logic.
> > > > > > +            */
> > > > > > +           return;
> > > > > > +   }
> > > > > 
> > > > > That still needs to be removed or else we'll not update the ratio at
> > > > > all during the mbus_join changes. I don't think I saw any removal
> > > > > in subsequent patches.
> > > > > 
> > > > > > +
> > > > > > +   intel_dbuf_mdclk_cdclk_ratio_update(i915, 
> > > > > > new_dbuf_state->mdclk_cdclk_ratio,
> > > > 
> > > > I don't get what is happening here.
> > > > 
> > > > "That whole condition I think needs to go. We want to update the ratio
> > > > also when changing mbus joining. But that behavioural change doesn't
> > > > really belong in this patch, so this is
> > > > 
> > > > Reviewed-by: Ville Syrjälä <ville.syrj...@linux.intel.com>"
> > > > 
> > > > Now it again needs to be changed or changed in other patch(in this 
> > > > series or which one), 
> > > > I don't follow.
> > > > Should it be the patch changing MBUS join value?
> > > 
> > > Yeah, probably should be in the last patch. Perhaps we
> > > could change it before that, but that would need some
> > > extra brain power to make sure it doesn't temporarily
> > > break something. So probably not worth the hassle
> > > to do as a separate patch.
> > > 
> > > > 
> > > > Stan
> > > > 
> > > > > 
> > > > > And it just occurred to me that this thing will in fact be wrong
> > > > > during the pre/post ddb hooks *and* cdclk is getting decreased
> > > > > from the post plane update hook.
> > > > > 
> > > > > I can't immediately think of a super nice way to handle this.
> > 
> > First of all why that
> > condition above prevents update when mbus join changes?
> > It exits when mdclk_cdclk ratio is changed not mbus_join?
> 
> And what happens when mbus_join needs to be changed
> but mdclk_cdclk_ratio remains unchanged?

If it is not changed, that condition won't exit, 
intel_dbuf_mdclk_cdclk_ratio_update will get called.

> 
> > 
> > That review process to me seems rather chaotic.
> > Constantly something new pops up, moreover we did previously agree
> > about that code.
> 
> The review process exists to make sure the code actually
> works correctly. New things come up because of how human
> brains work, not all things are immediately apparent to
> everyone. If that were the case then you should have
> been able to make the code 100% correct from the start,
> and I wouldn't be able to come up with new ways in
> which it can fail. So I guess you're the pot and
> I'm the kettle?

So do you mean that all code that you commit or give r-b
doesn't have issue and/or will never be required to improve?

There has to be some constructive planning or discussion of what
we aim to do at that stage and what is an acceptance criteria.
Even google/chrome guys tested initially those patches and were fine
with changes.
However what I see here is that you are constantly coming up with something
new.
And both you and me know that current code is far from perfect
as well currently, there are still exist unsolved problems.
So what? We are anyway constantly improving, but not trying
to achieve everything in a single "perfect" patch series.
I don't get why this "perfection" is so particularly required from me here.

Morever many things have to be done in a way exactly how
you say, with no freedom or space for another opinion, while
things like whether to use or not additional variable in the code,
quite often can be done in multiple ways and it is often quite
arguable to say the least, what is the best way to do that.

> 
> -- 
> Ville Syrjälä
> Intel

Reply via email to