From: "Lisovskiy, Stanislav" <stanislav.lisovskiy@intel.com>
To: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [Intel-gfx] [PATCH v28 3/6] drm/i915: Make active_pipes check skl specific
Date: Tue, 12 May 2020 16:26:53 +0300 [thread overview]
Message-ID: <20200512132644.GA19773@intel.com> (raw)
In-Reply-To: <20200512131433.GR6112@intel.com>
On Tue, May 12, 2020 at 04:14:33PM +0300, Ville Syrjälä wrote:
> On Tue, May 12, 2020 at 03:44:06PM +0300, Lisovskiy, Stanislav wrote:
> > On Tue, May 12, 2020 at 02:39:25PM +0300, Ville Syrjälä wrote:
> > > On Thu, May 07, 2020 at 05:45:00PM +0300, Stanislav Lisovskiy wrote:
> > > > Seems that only skl needs to have SAGV turned off
> > > > for multipipe scenarios, so lets do it this way.
> > >
> > > It doesn't afaics. It's just someone added the check for some random
> > > reason. So this should be reworded a bit. Also this isn't just about
> > > skl/derivatives but all pre-icl so the <subject> is a bit misleading too.
> >
> > This is in BSpec anyway. And it was in the code before, so I really
> > don't get what do you mean here.
> >
> > >
> > > >
> > > > If anything blows up - we can always revert this patch.
> > > >
> > > > Signed-off-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
> > > > ---
> > > > drivers/gpu/drm/i915/intel_pm.c | 15 +++++++++------
> > > > drivers/gpu/drm/i915/intel_pm.h | 3 ++-
> > > > 2 files changed, 11 insertions(+), 7 deletions(-)
> > > >
> > > > diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c
> > > > index 3dc1ad66beb3..db188efee21e 100644
> > > > --- a/drivers/gpu/drm/i915/intel_pm.c
> > > > +++ b/drivers/gpu/drm/i915/intel_pm.c
> > > > @@ -3777,7 +3777,7 @@ void intel_sagv_pre_plane_update(struct intel_atomic_state *state)
> > > > if (!new_bw_state)
> > > > return;
> > > >
> > > > - if (!intel_can_enable_sagv(new_bw_state))
> > > > + if (!intel_can_enable_sagv(dev_priv, new_bw_state))
> > > > intel_disable_sagv(dev_priv);
> > > > }
> > > >
> > > > @@ -3800,7 +3800,7 @@ void intel_sagv_post_plane_update(struct intel_atomic_state *state)
> > > > if (!new_bw_state)
> > > > return;
> > > >
> > > > - if (intel_can_enable_sagv(new_bw_state))
> > > > + if (intel_can_enable_sagv(dev_priv, new_bw_state))
> > > > intel_enable_sagv(dev_priv);
> > > > }
> > > >
> > > > @@ -3853,16 +3853,19 @@ static bool skl_crtc_can_enable_sagv(const struct intel_crtc_state *crtc_state)
> > > > return true;
> > > > }
> > > >
> > > > -bool intel_can_enable_sagv(const struct intel_bw_state *bw_state)
> > > > +bool intel_can_enable_sagv(struct drm_i915_private *dev_priv,
> > > > + const struct intel_bw_state *bw_state)
> > > > {
> > > > - if (bw_state->active_pipes && !is_power_of_2(bw_state->active_pipes))
> > > > - return false;
> > > > + if (INTEL_GEN(dev_priv) < 11)
> > > > + if (bw_state->active_pipes && !is_power_of_2(bw_state->active_pipes))
> > >
> > > If (a && b && c)
> > > return false;
> >
> > Then the line would get too long, and it does exactly same thing.
> > I really don't understand such comments.
>
> if (a && b &&
> c)
>
> if (a &&
> b && c)
>
> if (a &&
> b &&
> c)
>
> there are plenty of options. The point is nested ifs like this
> only serve to indent code needlessly deep.
and ifs like if (long condition1 && long condition2 && ...) make
unnecessary "wide".
I would understand of course if I would do something like
3-4 nested ifs sure, however that one seems to be completely similar.
I don't even get why
if (a &&
b && c)
reads better than
if (a)
if(b && c)
Stan
>
>
> >
> > Stan
> >
> > >
> > >
> > > > + return false;
> > > >
> > > > return bw_state->pipe_sagv_reject == 0;
> > > > }
> > > >
> > > > static int intel_compute_sagv_mask(struct intel_atomic_state *state)
> > > > {
> > > > + struct drm_i915_private *dev_priv = to_i915(state->base.dev);
> > > > int ret;
> > > > struct intel_crtc *crtc;
> > > > const struct intel_crtc_state *new_crtc_state;
> > > > @@ -3896,7 +3899,7 @@ static int intel_compute_sagv_mask(struct intel_atomic_state *state)
> > > > return ret;
> > > > }
> > > >
> > > > - if (intel_can_enable_sagv(new_bw_state) != intel_can_enable_sagv(old_bw_state)) {
> > > > + if (intel_can_enable_sagv(dev_priv, new_bw_state) != intel_can_enable_sagv(dev_priv, old_bw_state)) {
> > >
> > > > ret = intel_atomic_serialize_global_state(&new_bw_state->base);
> > > > if (ret)
> > > > return ret;
> > > > diff --git a/drivers/gpu/drm/i915/intel_pm.h b/drivers/gpu/drm/i915/intel_pm.h
> > > > index fd1dc422e6c5..614ac7f8d4cc 100644
> > > > --- a/drivers/gpu/drm/i915/intel_pm.h
> > > > +++ b/drivers/gpu/drm/i915/intel_pm.h
> > > > @@ -42,7 +42,8 @@ void skl_pipe_wm_get_hw_state(struct intel_crtc *crtc,
> > > > struct skl_pipe_wm *out);
> > > > void g4x_wm_sanitize(struct drm_i915_private *dev_priv);
> > > > void vlv_wm_sanitize(struct drm_i915_private *dev_priv);
> > > > -bool intel_can_enable_sagv(const struct intel_bw_state *bw_state);
> > > > +bool intel_can_enable_sagv(struct drm_i915_private *dev_priv,
> > > > + const struct intel_bw_state *bw_state);
> > > > int intel_enable_sagv(struct drm_i915_private *dev_priv);
> > > > int intel_disable_sagv(struct drm_i915_private *dev_priv);
> > > > void intel_sagv_pre_plane_update(struct intel_atomic_state *state);
> > > > --
> > > > 2.24.1.485.gad05a3d8e5
> > >
> > > --
> > > Ville Syrjälä
> > > Intel
>
> --
> Ville Syrjälä
> Intel
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2020-05-12 13:31 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-07 14:44 [Intel-gfx] [PATCH v28 0/6] SAGV support for Gen12+ Stanislav Lisovskiy
2020-05-07 14:44 ` [Intel-gfx] [PATCH v28 1/6] drm/i915: Introduce skl_plane_wm_level accessor Stanislav Lisovskiy
2020-05-12 11:35 ` Ville Syrjälä
2020-05-07 14:44 ` [Intel-gfx] [PATCH v28 2/6] drm/i915: Extract skl SAGV checking Stanislav Lisovskiy
2020-05-12 11:47 ` Ville Syrjälä
2020-05-07 14:45 ` [Intel-gfx] [PATCH v28 3/6] drm/i915: Make active_pipes check skl specific Stanislav Lisovskiy
2020-05-12 11:39 ` Ville Syrjälä
2020-05-12 12:44 ` Lisovskiy, Stanislav
2020-05-12 13:03 ` Ville Syrjälä
2020-05-12 13:14 ` Ville Syrjälä
2020-05-12 13:26 ` Lisovskiy, Stanislav [this message]
2020-05-12 15:32 ` Ville Syrjälä
2020-05-12 20:36 ` Lisovskiy, Stanislav
2020-05-07 14:45 ` [Intel-gfx] [PATCH v28 4/6] drm/i915: Add TGL+ SAGV support Stanislav Lisovskiy
2020-05-12 12:03 ` Ville Syrjälä
2020-05-12 12:52 ` Lisovskiy, Stanislav
2020-05-12 13:10 ` Ville Syrjälä
2020-05-12 13:17 ` Lisovskiy, Stanislav
2020-05-12 13:38 ` Ville Syrjälä
2020-05-12 13:41 ` Lisovskiy, Stanislav
2020-05-12 13:50 ` Ville Syrjälä
2020-05-12 13:59 ` Lisovskiy, Stanislav
2020-05-12 14:32 ` Ville Syrjälä
2020-05-12 15:04 ` Lisovskiy, Stanislav
2020-05-12 15:14 ` Ville Syrjälä
2020-05-07 14:45 ` [Intel-gfx] [PATCH v28 5/6] drm/i915: Restrict qgv points which don't have enough bandwidth Stanislav Lisovskiy
2020-05-12 16:02 ` Ville Syrjälä
2020-05-07 14:45 ` [Intel-gfx] [PATCH v28 6/6] drm/i915: Enable SAGV support for Gen12 Stanislav Lisovskiy
2020-05-07 16:04 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for SAGV support for Gen12+ (rev36) Patchwork
2020-05-07 16:29 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2020-05-07 20:39 ` [Intel-gfx] ✓ 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=20200512132644.GA19773@intel.com \
--to=stanislav.lisovskiy@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=ville.syrjala@linux.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.