public inbox for drm-ai-reviews@public-inbox.freedesktop.org
 help / color / mirror / Atom feed
From: "Kandpal, Suraj" <suraj.kandpal@intel.com>
To: Ville Syrjala <ville.syrjala@linux.intel.com>,
	"dri-devel@lists.freedesktop.org"
	<dri-devel@lists.freedesktop.org>
Cc: "intel-gfx@lists.freedesktop.org"
	<intel-gfx@lists.freedesktop.org>,
	"intel-xe@lists.freedesktop.org" <intel-xe@lists.freedesktop.org>
Subject: RE: [PATCH] drm/vblank: Extract get_vblank_counter_and_timestamp()
Date: Tue, 24 Mar 2026 06:28:51 +0000	[thread overview]
Message-ID: <DM3PPF208195D8D6742D234C82168D9A759E348A@DM3PPF208195D8D.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20260323213645.10965-1-ville.syrjala@linux.intel.com>

> Subject: [PATCH] drm/vblank: Extract get_vblank_counter_and_timestamp()
> 
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> 
> We have three copies of the "read vblank counter and timestamp in a loop"
> code. Consolidate to a single a function.
> 
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

LGTM,
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>

> ---
>  drivers/gpu/drm/drm_vblank.c | 36 +++++++++++++++++++++---------------
>  1 file changed, 21 insertions(+), 15 deletions(-)
> 
> diff --git a/drivers/gpu/drm/drm_vblank.c b/drivers/gpu/drm/drm_vblank.c
> index f78bf37f1e0a..f90fb2d13e42 100644
> --- a/drivers/gpu/drm/drm_vblank.c
> +++ b/drivers/gpu/drm/drm_vblank.c
> @@ -236,6 +236,21 @@ static u32 __get_vblank_counter(struct drm_device
> *dev, unsigned int pipe)
>  	return drm_vblank_no_hw_counter(dev, pipe);  }
> 
> +static bool get_vblank_counter_and_timestamp(struct drm_device *dev,
> unsigned int pipe,
> +					     u32 *cur_vblank, ktime_t
> *t_vblank,
> +					     bool in_vblank_irq)
> +{
> +	int count = DRM_TIMESTAMP_MAXRETRIES;
> +	bool rc;
> +
> +	do {
> +		*cur_vblank = __get_vblank_counter(dev, pipe);
> +		rc = drm_get_last_vbltimestamp(dev, pipe, t_vblank,
> in_vblank_irq);
> +	} while (*cur_vblank != __get_vblank_counter(dev, pipe) && --count >
> +0);
> +
> +	return rc;
> +}
> +
>  /*
>   * Reset the stored timestamp for the current vblank count to correspond
>   * to the last vblank occurred.
> @@ -250,7 +265,6 @@ static void drm_reset_vblank_timestamp(struct
> drm_device *dev, unsigned int pipe
>  	u32 cur_vblank;
>  	bool rc;
>  	ktime_t t_vblank;
> -	int count = DRM_TIMESTAMP_MAXRETRIES;
> 
>  	spin_lock(&dev->vblank_time_lock);
> 
> @@ -258,10 +272,8 @@ static void drm_reset_vblank_timestamp(struct
> drm_device *dev, unsigned int pipe
>  	 * sample the current counter to avoid random jumps
>  	 * when drm_vblank_enable() applies the diff
>  	 */
> -	do {
> -		cur_vblank = __get_vblank_counter(dev, pipe);
> -		rc = drm_get_last_vbltimestamp(dev, pipe, &t_vblank, false);
> -	} while (cur_vblank != __get_vblank_counter(dev, pipe) && --count >
> 0);
> +	rc = get_vblank_counter_and_timestamp(dev, pipe, &cur_vblank,
> +					      &t_vblank, false);
> 
>  	/*
>  	 * Only reinitialize corresponding vblank timestamp if high-precision
> query @@ -299,7 +311,6 @@ static void drm_update_vblank_count(struct
> drm_device *dev, unsigned int pipe,
>  	u32 cur_vblank, diff;
>  	bool rc;
>  	ktime_t t_vblank;
> -	int count = DRM_TIMESTAMP_MAXRETRIES;
>  	int framedur_ns = vblank->framedur_ns;
>  	u32 max_vblank_count = drm_max_vblank_count(dev, pipe);
> 
> @@ -315,10 +326,8 @@ static void drm_update_vblank_count(struct
> drm_device *dev, unsigned int pipe,
>  	 * updating its hardware counter while we are retrieving the
>  	 * corresponding vblank timestamp.
>  	 */
> -	do {
> -		cur_vblank = __get_vblank_counter(dev, pipe);
> -		rc = drm_get_last_vbltimestamp(dev, pipe, &t_vblank,
> in_vblank_irq);
> -	} while (cur_vblank != __get_vblank_counter(dev, pipe) && --count >
> 0);
> +	rc = get_vblank_counter_and_timestamp(dev, pipe, &cur_vblank,
> +					      &t_vblank, in_vblank_irq);
> 
>  	if (max_vblank_count) {
>  		/* trust the hw counter when it's around */ @@ -1543,7
> +1552,6 @@ static void drm_vblank_restore(struct drm_device *dev, unsigned
> int pipe)
>  	int framedur_ns;
>  	u64 diff_ns;
>  	u32 cur_vblank, diff = 1;
> -	int count = DRM_TIMESTAMP_MAXRETRIES;
>  	u32 max_vblank_count = drm_max_vblank_count(dev, pipe);
> 
>  	if (drm_WARN_ON(dev, pipe >= dev->num_crtcs)) @@ -1558,10
> +1566,8 @@ static void drm_vblank_restore(struct drm_device *dev, unsigned
> int pipe)
>  		      "Cannot compute missed vblanks without frame
> duration\n");
>  	framedur_ns = vblank->framedur_ns;
> 
> -	do {
> -		cur_vblank = __get_vblank_counter(dev, pipe);
> -		drm_get_last_vbltimestamp(dev, pipe, &t_vblank, false);
> -	} while (cur_vblank != __get_vblank_counter(dev, pipe) && --count >
> 0);
> +	get_vblank_counter_and_timestamp(dev, pipe, &cur_vblank,
> +					 &t_vblank, false);
> 
>  	diff_ns = ktime_to_ns(ktime_sub(t_vblank, vblank->time));
>  	if (framedur_ns)
> --
> 2.52.0


  reply	other threads:[~2026-03-24  6:29 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-23 21:36 [PATCH] drm/vblank: Extract get_vblank_counter_and_timestamp() Ville Syrjala
2026-03-24  6:28 ` Kandpal, Suraj [this message]
2026-03-24 21:15 ` Claude review: " Claude Code Review Bot
2026-03-24 21:15 ` Claude Code Review Bot

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=DM3PPF208195D8D6742D234C82168D9A759E348A@DM3PPF208195D8D.namprd11.prod.outlook.com \
    --to=suraj.kandpal@intel.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=intel-xe@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox