All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: "Jouni Högander" <jouni.hogander@intel.com>
Cc: intel-gfx@lists.freedesktop.org,
	Jani Nikula <jani.nikula@linux.intel.com>
Subject: Re: [PATCH v5 4/5] drm/i915/psr: Add IO buffer wake times for LunarLake and beyond
Date: Fri, 8 Mar 2024 16:56:01 +0200	[thread overview]
Message-ID: <ZesnAUVANrVYVXwq@intel.com> (raw)
In-Reply-To: <ZesjOx-OjJ4qT4wz@intel.com>

On Fri, Mar 08, 2024 at 04:39:55PM +0200, Ville Syrjälä wrote:
> On Fri, Mar 08, 2024 at 01:00:38PM +0200, Jouni Högander wrote:
> > IO buffer wake time used for IO wake calculation is dependent on port clock
> > on LunarLake and beyond. Take this into account in get_io_buffer_wake_time.
> > 
> > Bspec: 65450
> > 
> > v2: add own io_wake_time helper for LunarLake
> > 
> > Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> > ---
> >  drivers/gpu/drm/i915/display/intel_psr.c | 14 +++++++++++++-
> >  1 file changed, 13 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
> > index 747761efa4be..e3daaf05d640 100644
> > --- a/drivers/gpu/drm/i915/display/intel_psr.c
> > +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> > @@ -1165,11 +1165,23 @@ static int tgl_io_buffer_wake_time(void)
> >  	return 10;
> >  }
> >  
> > +static int lnl_io_buffer_wake_time(int port_clock)
> > +{
> > +	if (port_clock > 270000)
> > +		return 10;
> > +	else if (port_clock > 162000)
> > +		return 11;
> > +	else
> > +		return 15;
> > +}
> 
> These numbers are only listed in the MTL section of bspec. There
> is nothing like this in the LNL PHY power section AFAICS.

Windows appears to use fixed 12us here.

> 
> > +
> >  static int io_buffer_wake_time(const struct intel_crtc_state *crtc_state)
> >  {
> >  	struct drm_i915_private *i915 = to_i915(crtc_state->uapi.crtc->dev);
> >  
> > -	if (DISPLAY_VER(i915) >= 12)
> > +	if (DISPLAY_VER(i915) >= 20)
> > +		return lnl_io_buffer_wake_time(crtc_state->port_clock);
> > +	else if (DISPLAY_VER(i915) >= 12)
> >  		return tgl_io_buffer_wake_time();
> >  	else
> >  		return skl_io_buffer_wake_time();
> > -- 
> > 2.34.1
> 
> -- 
> Ville Syrjälä
> Intel

-- 
Ville Syrjälä
Intel

  reply	other threads:[~2024-03-08 14:56 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-08 11:00 [PATCH v5 0/5] IO and fast wake lines calculation and increase fw sync length Jouni Högander
2024-03-08 11:00 ` [PATCH v5 1/5] drm/i915/display: Make intel_dp_aux_fw_sync_len available for PSR code Jouni Högander
2024-03-08 14:37   ` Ville Syrjälä
2024-03-08 11:00 ` [PATCH v5 2/5] drm/i915/psr: Improve fast and IO wake lines calculation Jouni Högander
2024-03-08 14:37   ` Ville Syrjälä
2024-03-08 11:00 ` [PATCH v5 3/5] drm/i915/psr: Calculate IO wake and fast wake lines for DISPLAY_VER < 12 Jouni Högander
2024-03-08 14:38   ` Ville Syrjälä
2024-03-08 11:00 ` [PATCH v5 4/5] drm/i915/psr: Add IO buffer wake times for LunarLake and beyond Jouni Högander
2024-03-08 14:39   ` Ville Syrjälä
2024-03-08 14:56     ` Ville Syrjälä [this message]
2024-03-12 11:30       ` Hogander, Jouni
2024-03-08 11:00 ` [PATCH v5 5/5] drm/i915/display: Increase number of fast wake precharge pulses Jouni Högander
2024-03-12 16:44   ` Ville Syrjälä
2024-03-13  6:20     ` Hogander, Jouni
2024-03-08 14:10 ` ✗ Fi.CI.SPARSE: warning for IO and fast wake lines calculation and increase fw sync length (rev5) Patchwork
2024-03-08 14:29 ` ✓ Fi.CI.BAT: success " Patchwork
2024-03-09  4:17 ` ✓ 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=ZesnAUVANrVYVXwq@intel.com \
    --to=ville.syrjala@linux.intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=jani.nikula@linux.intel.com \
    --cc=jouni.hogander@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.