Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Imre Deak <imre.deak@intel.com>
To: Jani Nikula <jani.nikula@linux.intel.com>
Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org
Subject: Re: [PATCH 2/3] drm/i915: Pass intel_display to the encoder suspend/shutdown helpers
Date: Tue, 18 Jun 2024 14:19:15 +0300	[thread overview]
Message-ID: <ZnFtM5zQuXxw4mTz@ideak-desk.fi.intel.com> (raw)
In-Reply-To: <87frtahb8z.fsf@intel.com>

On Tue, Jun 18, 2024 at 12:05:16PM +0300, Jani Nikula wrote:
> On Mon, 17 Jun 2024, Imre Deak <imre.deak@intel.com> wrote:
> > Pass intel_display to the encoder suspend/shutdown helpers instead of
> > drm_i915_private for better isolation. This assumes that HAS_DISPLAY()
> > will also take an intel_display parameter in the future (or that the
> > HAS_DISPLAY() check will be moved to a caller of these functions).
> 
> You can already do that! HAS_DISPLAY() takes either i915 or display. So
> maybe make that change now.

Ah the _Generic() magic, nice! Will change this.

> In the future, only display code should have HAS_DISPLAY() anyway, not
> i915 or xe core. It's not an option that the caller does the checks.

Ok.

> > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > ---
> >  drivers/gpu/drm/i915/display/intel_encoder.c | 22 +++++++++++---------
> >  drivers/gpu/drm/i915/display/intel_encoder.h |  7 +++----
> >  drivers/gpu/drm/i915/i915_driver.c           |  6 +++---
> >  3 files changed, 18 insertions(+), 17 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_encoder.c b/drivers/gpu/drm/i915/display/intel_encoder.c
> > index 8a1dccb893a37..8e73d18a522d4 100644
> > --- a/drivers/gpu/drm/i915/display/intel_encoder.c
> > +++ b/drivers/gpu/drm/i915/display/intel_encoder.c
> > @@ -38,8 +38,9 @@ void intel_encoder_link_check_queue_work(struct intel_encoder *encoder, int dela
> >  			 &encoder->link_check_work, msecs_to_jiffies(delay_ms));
> >  }
> >  
> > -void intel_encoder_suspend_all(struct drm_i915_private *i915)
> > +void intel_encoder_suspend_all(struct intel_display *display)
> >  {
> > +	struct drm_i915_private *i915 = to_i915(display->drm);
> >  	struct intel_encoder *encoder;
> >  
> >  	if (!HAS_DISPLAY(i915))
> > @@ -49,19 +50,20 @@ void intel_encoder_suspend_all(struct drm_i915_private *i915)
> >  	 * TODO: check and remove holding the modeset locks if none of
> >  	 * the encoders depends on this.
> >  	 */
> > -	drm_modeset_lock_all(&i915->drm);
> > -	for_each_intel_encoder(&i915->drm, encoder)
> > +	drm_modeset_lock_all(display->drm);
> > +	for_each_intel_encoder(display->drm, encoder)
> >  		if (encoder->suspend)
> >  			encoder->suspend(encoder);
> > -	drm_modeset_unlock_all(&i915->drm);
> > +	drm_modeset_unlock_all(display->drm);
> >  
> > -	for_each_intel_encoder(&i915->drm, encoder)
> > +	for_each_intel_encoder(display->drm, encoder)
> >  		if (encoder->suspend_complete)
> >  			encoder->suspend_complete(encoder);
> >  }
> >  
> > -void intel_encoder_shutdown_all(struct drm_i915_private *i915)
> > +void intel_encoder_shutdown_all(struct intel_display *display)
> >  {
> > +	struct drm_i915_private *i915 = to_i915(display->drm);
> >  	struct intel_encoder *encoder;
> >  
> >  	if (!HAS_DISPLAY(i915))
> > @@ -71,13 +73,13 @@ void intel_encoder_shutdown_all(struct drm_i915_private *i915)
> >  	 * TODO: check and remove holding the modeset locks if none of
> >  	 * the encoders depends on this.
> >  	 */
> > -	drm_modeset_lock_all(&i915->drm);
> > -	for_each_intel_encoder(&i915->drm, encoder)
> > +	drm_modeset_lock_all(display->drm);
> > +	for_each_intel_encoder(display->drm, encoder)
> >  		if (encoder->shutdown)
> >  			encoder->shutdown(encoder);
> > -	drm_modeset_unlock_all(&i915->drm);
> > +	drm_modeset_unlock_all(display->drm);
> >  
> > -	for_each_intel_encoder(&i915->drm, encoder)
> > +	for_each_intel_encoder(display->drm, encoder)
> >  		if (encoder->shutdown_complete)
> >  			encoder->shutdown_complete(encoder);
> >  }
> > diff --git a/drivers/gpu/drm/i915/display/intel_encoder.h b/drivers/gpu/drm/i915/display/intel_encoder.h
> > index e6cd74576f78e..3fa5589f0b1ce 100644
> > --- a/drivers/gpu/drm/i915/display/intel_encoder.h
> > +++ b/drivers/gpu/drm/i915/display/intel_encoder.h
> > @@ -6,8 +6,7 @@
> >  #ifndef __INTEL_ENCODER_H__
> >  #define __INTEL_ENCODER_H__
> >  
> > -struct drm_i915_private;
> > -
> 
> Ah, this is why you missed the superfluous space. ;)
> 
> BR,
> Jani.
> 
> > +struct intel_display;
> >  struct intel_encoder;
> >  
> >  void intel_encoder_link_check_init(struct intel_encoder *encoder,
> > @@ -15,7 +14,7 @@ void intel_encoder_link_check_init(struct intel_encoder *encoder,
> >  void intel_encoder_link_check_queue_work(struct intel_encoder *encoder, int delay_ms);
> >  void intel_encoder_link_check_flush_work(struct intel_encoder *encoder);
> >  
> > -void intel_encoder_suspend_all(struct drm_i915_private *i915);
> > -void intel_encoder_shutdown_all(struct drm_i915_private *i915);
> > +void intel_encoder_suspend_all(struct intel_display *display);
> > +void intel_encoder_shutdown_all(struct intel_display *display);
> >  
> >  #endif /* __INTEL_ENCODER_H__ */
> > diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
> > index e9e38ed246f66..fb8e9c2fcea53 100644
> > --- a/drivers/gpu/drm/i915/i915_driver.c
> > +++ b/drivers/gpu/drm/i915/i915_driver.c
> > @@ -956,8 +956,8 @@ void i915_driver_shutdown(struct drm_i915_private *i915)
> >  	if (HAS_DISPLAY(i915))
> >  		intel_display_driver_suspend_access(i915);
> >  
> > -	intel_encoder_suspend_all(i915);
> > -	intel_encoder_shutdown_all(i915);
> > +	intel_encoder_suspend_all(&i915->display);
> > +	intel_encoder_shutdown_all(&i915->display);
> >  
> >  	intel_dmc_suspend(i915);
> >  
> > @@ -1040,7 +1040,7 @@ static int i915_drm_suspend(struct drm_device *dev)
> >  	if (HAS_DISPLAY(dev_priv))
> >  		intel_display_driver_suspend_access(dev_priv);
> >  
> > -	intel_encoder_suspend_all(dev_priv);
> > +	intel_encoder_suspend_all(&dev_priv->display);
> >  
> >  	/* Must be called before GGTT is suspended. */
> >  	intel_dpt_suspend(dev_priv);
> 
> -- 
> Jani Nikula, Intel

  reply	other threads:[~2024-06-18 11:19 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-17 17:03 [PATCH 1/3] drm/i915: Move encoder suspend/shutdown helpers to intel_encoder.c Imre Deak
2024-06-17 17:03 ` [PATCH 2/3] drm/i915: Pass intel_display to the encoder suspend/shutdown helpers Imre Deak
2024-06-17 17:42   ` Rodrigo Vivi
2024-06-18  9:05   ` Jani Nikula
2024-06-18 11:19     ` Imre Deak [this message]
2024-06-17 17:03 ` [PATCH 3/3] drm/xe: Use the encoder suspend helper also used by the i915 driver Imre Deak
2024-06-17 17:44   ` Rodrigo Vivi
2024-06-17 17:54     ` Imre Deak
2024-06-17 18:03       ` Rodrigo Vivi
2024-06-17 17:30 ` ✓ CI.Patch_applied: success for series starting with [1/3] drm/i915: Move encoder suspend/shutdown helpers to intel_encoder.c Patchwork
2024-06-17 17:30 ` ✗ CI.checkpatch: warning " Patchwork
2024-06-17 17:31 ` ✓ CI.KUnit: success " Patchwork
2024-06-17 17:41 ` [PATCH 1/3] " Rodrigo Vivi
2024-06-17 17:43 ` ✓ CI.Build: success for series starting with [1/3] " Patchwork
2024-06-17 17:45 ` ✗ CI.Hooks: failure " Patchwork
2024-06-17 17:46 ` ✗ CI.checksparse: warning " Patchwork
2024-06-17 18:08 ` ✓ CI.BAT: success " Patchwork
2024-06-18  8:01 ` [PATCH 1/3] " Jani Nikula
2024-06-18 11:16   ` Imre Deak
2024-06-18 12:52 ` ✗ CI.FULL: failure for series starting with [1/3] " 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=ZnFtM5zQuXxw4mTz@ideak-desk.fi.intel.com \
    --to=imre.deak@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=jani.nikula@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox