All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Nautiyal, Ankit K" <ankit.k.nautiyal@intel.com>
To: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>,
	<intel-gfx@lists.freedesktop.org>
Cc: <intel-xe@lists.freedesktop.org>, <ville.syrjala@linux.intel.com>,
	<jani.nikula@intel.com>
Subject: Re: [PATCH v5 1/6] drm/i915/vrr: Add crtc_state dump for vrr.vsync params
Date: Thu, 5 Dec 2024 10:18:13 +0530	[thread overview]
Message-ID: <d0c7dcad-e63c-428a-95c5-e5574d76a1e1@intel.com> (raw)
In-Reply-To: <20241202024540.2578856-2-mitulkumar.ajitkumar.golani@intel.com>


On 12/2/2024 8:15 AM, Mitul Golani wrote:
> Add crtc_state dump for vrr.vsync_{start/end} params to track the
> state correctly.
>
> --v2:
> - remove vrr_ pretext and use space instead of underscore (Jani).
>
> Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>


Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>


> ---
>   drivers/gpu/drm/i915/display/intel_crtc_state_dump.c | 4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> index 705ec5ad385c..221be4f44104 100644
> --- a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> +++ b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> @@ -296,11 +296,13 @@ void intel_crtc_state_dump(const struct intel_crtc_state *pipe_config,
>   		intel_dump_buffer("ELD: ", pipe_config->eld,
>   				  drm_eld_size(pipe_config->eld));
>   
> -	drm_printf(&p, "vrr: %s, vmin: %d, vmax: %d, pipeline full: %d, guardband: %d flipline: %d, vmin vblank: %d, vmax vblank: %d\n",
> +	drm_printf(&p, "vrr: %s, vmin: %d, vmax: %d, pipeline full: %d, guardband: %d flipline: %d, vsync start: %d, vsync end: %d, vmin vblank: %d, vmax vblank: %d\n",
>   		   str_yes_no(pipe_config->vrr.enable),
>   		   pipe_config->vrr.vmin, pipe_config->vrr.vmax,
>   		   pipe_config->vrr.pipeline_full, pipe_config->vrr.guardband,
>   		   pipe_config->vrr.flipline,
> +		   pipe_config->vrr.vsync_start,
> +		   pipe_config->vrr.vsync_end,
>   		   intel_vrr_vmin_vblank_start(pipe_config),
>   		   intel_vrr_vmax_vblank_start(pipe_config));
>   

  reply	other threads:[~2024-12-05  4:48 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-02  2:45 [PATCH v5 0/6] Add AS_SDP to fastset Mitul Golani
2024-12-02  2:45 ` [PATCH v5 1/6] drm/i915/vrr: Add crtc_state dump for vrr.vsync params Mitul Golani
2024-12-05  4:48   ` Nautiyal, Ankit K [this message]
2024-12-02  2:45 ` [PATCH v5 2/6] drm/i915/vrr: Compute vrr.vsync_{start, end} during full modeset Mitul Golani
2024-12-05  4:49   ` Nautiyal, Ankit K
2024-12-02  2:45 ` [PATCH v5 3/6] drm/i915/dp: fix the Adaptive sync Operation mode for SDP Mitul Golani
2024-12-02  2:45 ` [PATCH v5 4/6] drm/i915/dp: Compute as_sdp.vtotal based on vrr timings Mitul Golani
2024-12-05  4:50   ` Nautiyal, Ankit K
2024-12-02  2:45 ` [PATCH v5 5/6] drm/i915/dp: Compute as_sdp based on if vrr possible Mitul Golani
2024-12-02  2:45 ` [PATCH v5 6/6] drm/i915/display: Move as sdp params change to fastset Mitul Golani
2024-12-02  2:49 ` ✓ CI.Patch_applied: success for Add AS_SDP to fastset (rev2) Patchwork
2024-12-02  2:49 ` ✓ CI.checkpatch: " Patchwork
2024-12-02  2:50 ` ✓ CI.KUnit: " Patchwork
2024-12-02  3:08 ` ✓ CI.Build: " Patchwork
2024-12-02  3:10 ` ✓ CI.Hooks: " Patchwork
2024-12-02  3:12 ` ✗ CI.checksparse: warning " Patchwork
2024-12-02  3:18 ` ✗ Fi.CI.SPARSE: warning for Add AS_SDP to fastset (rev4) Patchwork
2024-12-02  3:35 ` ✓ i915.CI.BAT: success " Patchwork
2024-12-02  5:25 ` ✗ i915.CI.Full: failure " 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=d0c7dcad-e63c-428a-95c5-e5574d76a1e1@intel.com \
    --to=ankit.k.nautiyal@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=jani.nikula@intel.com \
    --cc=mitulkumar.ajitkumar.golani@intel.com \
    --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.