All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Hogander, Jouni" <jouni.hogander@intel.com>
To: "Manna, Animesh" <animesh.manna@intel.com>,
	"intel-gfx@lists.freedesktop.org"
	<intel-gfx@lists.freedesktop.org>
Cc: "Nikula, Jani" <jani.nikula@intel.com>, "B, Jeevan" <jeevan.b@intel.com>
Subject: Re: [PATCH v2 1/2] drm/i915/lobf: Add lobf enablement in post plane update
Date: Mon, 9 Dec 2024 08:35:55 +0000	[thread overview]
Message-ID: <59438896581fbd20a460c6243c1116bfec31e480.camel@intel.com> (raw)
In-Reply-To: <20241204100328.3738778-2-animesh.manna@intel.com>

On Wed, 2024-12-04 at 15:33 +0530, Animesh Manna wrote:
> Enablement of LOBF is added in post plane update whenever
> has_lobf flag is set. As LOBF can be enabled in non-psr
> case as well so adding in post plane update. There is no
> change of configuring alpm with psr path.
> 
> v1: Initial version.
> v2: Use encoder-mask to find the associated encoder from
> crtc-state. [Jani]
> 
> Signed-off-by: Animesh Manna <animesh.manna@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_alpm.c    | 25
> ++++++++++++++++++++
>  drivers/gpu/drm/i915/display/intel_alpm.h    |  4 ++++
>  drivers/gpu/drm/i915/display/intel_display.c |  3 +++
>  3 files changed, 32 insertions(+)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c
> b/drivers/gpu/drm/i915/display/intel_alpm.c
> index 55f3ae1e68c9..75063342a100 100644
> --- a/drivers/gpu/drm/i915/display/intel_alpm.c
> +++ b/drivers/gpu/drm/i915/display/intel_alpm.c
> @@ -367,6 +367,31 @@ void intel_alpm_configure(struct intel_dp
> *intel_dp,
>         lnl_alpm_configure(intel_dp, crtc_state);
>  }
>  
> +void intel_alpm_post_plane_update(struct intel_atomic_state *state,
> +                                 struct intel_crtc *crtc)
> +{
> +       struct intel_display *display = to_intel_display(state);
> +       const struct intel_crtc_state *crtc_state =
> +               intel_atomic_get_new_crtc_state(state, crtc);
> +       struct intel_encoder *encoder;
> +
> +       if (!crtc_state->has_lobf)
> +               return;
> +
> +       for_each_intel_encoder_mask(display->drm, encoder,
> +                                   crtc_state->uapi.encoder_mask) {
> +               struct intel_dp *intel_dp;
> +
> +               if (!intel_encoder_is_dp(encoder))
> +                       continue;
> +
> +               intel_dp = enc_to_intel_dp(encoder);
> +
> +               if (intel_dp_is_edp(intel_dp))
> +                       intel_alpm_configure(intel_dp, crtc_state);

This is reconfiguring lobf even if it's already configured? Is that
wanted?

BR,

Jouni Högander
> +       }
> +}
> +
>  static int i915_edp_lobf_info_show(struct seq_file *m, void *data)
>  {
>         struct intel_connector *connector = m->private;
> diff --git a/drivers/gpu/drm/i915/display/intel_alpm.h
> b/drivers/gpu/drm/i915/display/intel_alpm.h
> index 8c409b10dce6..2f862b0476a8 100644
> --- a/drivers/gpu/drm/i915/display/intel_alpm.h
> +++ b/drivers/gpu/drm/i915/display/intel_alpm.h
> @@ -12,6 +12,8 @@ struct intel_dp;
>  struct intel_crtc_state;
>  struct drm_connector_state;
>  struct intel_connector;
> +struct intel_atomic_state;
> +struct intel_crtc;
>  
>  void intel_alpm_init_dpcd(struct intel_dp *intel_dp);
>  bool intel_alpm_compute_params(struct intel_dp *intel_dp,
> @@ -21,6 +23,8 @@ void intel_alpm_lobf_compute_config(struct intel_dp
> *intel_dp,
>                                     struct drm_connector_state
> *conn_state);
>  void intel_alpm_configure(struct intel_dp *intel_dp,
>                           const struct intel_crtc_state *crtc_state);
> +void intel_alpm_post_plane_update(struct intel_atomic_state *state,
> +                                 struct intel_crtc *crtc);
>  void intel_alpm_lobf_debugfs_add(struct intel_connector *connector);
>  bool intel_alpm_aux_wake_supported(struct intel_dp *intel_dp);
>  bool intel_alpm_aux_less_wake_supported(struct intel_dp *intel_dp);
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c
> b/drivers/gpu/drm/i915/display/intel_display.c
> index 4805bf682d43..ffd96b187e5e 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -55,6 +55,7 @@
>  #include "i9xx_plane.h"
>  #include "i9xx_plane_regs.h"
>  #include "i9xx_wm.h"
> +#include "intel_alpm.h"
>  #include "intel_atomic.h"
>  #include "intel_atomic_plane.h"
>  #include "intel_audio.h"
> @@ -1190,6 +1191,8 @@ static void intel_post_plane_update(struct
> intel_atomic_state *state,
>  
>         intel_psr_post_plane_update(state, crtc);
>  
> +       intel_alpm_post_plane_update(state, crtc);
> +
>         intel_frontbuffer_flip(dev_priv, new_crtc_state->fb_bits);
>  
>         if (new_crtc_state->update_wm_post && new_crtc_state-
> >hw.active)


  reply	other threads:[~2024-12-09  8:36 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-04 10:03 [PATCH v2 0/2] LOBF enablement fix Animesh Manna
2024-12-04 10:03 ` [PATCH v2 1/2] drm/i915/lobf: Add lobf enablement in post plane update Animesh Manna
2024-12-09  8:35   ` Hogander, Jouni [this message]
2024-12-09 11:19     ` Manna, Animesh
2024-12-09 11:34       ` Hogander, Jouni
2024-12-09 11:54         ` Manna, Animesh
2024-12-09 11:59           ` Hogander, Jouni
2024-12-09 12:29             ` Manna, Animesh
2024-12-04 10:03 ` [PATCH v2 2/2] drm/i915/lobf: Add debug print for LOBF Animesh Manna
2024-12-04 13:00 ` ✗ Fi.CI.SPARSE: warning for LOBF enablement fix (rev2) Patchwork
2024-12-04 13:12 ` ✗ i915.CI.BAT: failure " Patchwork
2024-12-09  8:43 ` [PATCH v2 0/2] LOBF enablement fix Hogander, Jouni
2024-12-09 11:40   ` Manna, Animesh
  -- strict thread matches above, loose matches on Subject: below --
2024-12-09  7:50 Animesh Manna
2024-12-09  7:50 ` [PATCH v2 1/2] drm/i915/lobf: Add lobf enablement in post plane update Animesh Manna

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=59438896581fbd20a460c6243c1116bfec31e480.camel@intel.com \
    --to=jouni.hogander@intel.com \
    --cc=animesh.manna@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=jani.nikula@intel.com \
    --cc=jeevan.b@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.