Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Nautiyal, Ankit K" <ankit.k.nautiyal@intel.com>
To: Nemesa Garg <nemesa.garg@intel.com>,
	<intel-gfx@lists.freedesktop.org>,
	<intel-xe@lists.freedesktop.org>
Subject: Re: [PATCH 3/6] drm/i915/display: Configure the scaler
Date: Wed, 5 Feb 2025 13:44:04 +0530	[thread overview]
Message-ID: <921818d1-b357-45e6-a189-cd6766eaa278@intel.com> (raw)
In-Reply-To: <20250113104936.1338290-4-nemesa.garg@intel.com>



On 1/13/2025 4:19 PM, Nemesa Garg wrote:
> Write the scaler registers for sharpness.

Here you are enabling the scaler for sharpness, so subject name 
configure the scaler doesnt seem right.

The configuring is done in Patch#4.


>
> Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
> ---
>   drivers/gpu/drm/i915/display/intel_casf.c |  2 +
>   drivers/gpu/drm/i915/display/skl_scaler.c | 45 +++++++++++++++++++++++
>   drivers/gpu/drm/i915/display/skl_scaler.h |  1 +
>   3 files changed, 48 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_casf.c b/drivers/gpu/drm/i915/display/intel_casf.c
> index b507401457bf..773abaad74ca 100644
> --- a/drivers/gpu/drm/i915/display/intel_casf.c
> +++ b/drivers/gpu/drm/i915/display/intel_casf.c
> @@ -97,6 +97,8 @@ static void intel_casf_write_coeff(struct intel_crtc_state *crtc_state)
>   void intel_casf_enable(struct intel_crtc_state *crtc_state)
>   {
>   	intel_casf_write_coeff(crtc_state);
> +
> +	skl_scaler_setup_casf(crtc_state);
>   }
>   
>   static void convert_sharpness_coef_binary(struct scaler_filter_coeff *coeff,
> diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c b/drivers/gpu/drm/i915/display/skl_scaler.c
> index a11e09a15e23..0718210de910 100644
> --- a/drivers/gpu/drm/i915/display/skl_scaler.c
> +++ b/drivers/gpu/drm/i915/display/skl_scaler.c
> @@ -132,6 +132,13 @@ static void skl_scaler_max_dst_size(struct intel_crtc *crtc,
>   	}
>   }
>   
> +#define SCALER_FILTER_SELECT \
> +       (PS_FILTER_PROGRAMMED | \
> +        PS_Y_VERT_FILTER_SELECT(1) | \
> +        PS_Y_HORZ_FILTER_SELECT(0) | \
> +        PS_UV_VERT_FILTER_SELECT(1) | \
> +        PS_UV_HORZ_FILTER_SELECT(0))
> +
>   static int
>   skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
>   		  unsigned int scaler_user, int *scaler_id,
> @@ -667,6 +674,44 @@ static void skl_scaler_setup_filter(struct intel_display *display, enum pipe pip
>   	}
>   }
>   
> +void skl_scaler_setup_casf(struct intel_crtc_state *crtc_state)
> +{
> +	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
> +	struct intel_display *display = to_intel_display(crtc);
> +	struct drm_display_mode *adjusted_mode =
> +	&crtc_state->hw.adjusted_mode;
> +	struct intel_crtc_scaler_state *scaler_state =
> +		&crtc_state->scaler_state;
> +	struct drm_rect src, dest;
> +	int id, width, height;
> +	int x, y;
> +	enum pipe pipe = crtc->pipe;
> +	u32 ps_ctrl;
> +
> +	width = adjusted_mode->crtc_hdisplay;
> +	height = adjusted_mode->crtc_vdisplay;
> +
> +	x = y = 0;
> +	drm_rect_init(&dest, x, y, width, height);
> +
> +	width = drm_rect_width(&dest);
> +	height = drm_rect_height(&dest);
> +	id = scaler_state->scaler_id;
> +
> +	drm_rect_init(&src, 0, 0,
> +		      drm_rect_width(&crtc_state->pipe_src) << 16,
> +		      drm_rect_height(&crtc_state->pipe_src) << 16);
> +
> +	ps_ctrl = PS_SCALER_EN | PS_BINDING_PIPE | scaler_state->scalers[id].mode |
> +		  SCALER_FILTER_SELECT;
> +
> +	intel_de_write_fw(display, SKL_PS_CTRL(pipe, id), ps_ctrl);


Should we not disable the SKL_PS_CTL when sharpness is disabled?

Regards,

Ankit

> +	intel_de_write_fw(display, SKL_PS_WIN_POS(pipe, id),
> +			  PS_WIN_XPOS(x) | PS_WIN_YPOS(y));
> +	intel_de_write_fw(display, SKL_PS_WIN_SZ(pipe, id),
> +			  PS_WIN_XSIZE(width) | PS_WIN_YSIZE(height));
> +}
> +
>   void skl_pfit_enable(const struct intel_crtc_state *crtc_state)
>   {
>   	struct intel_display *display = to_intel_display(crtc_state);
> diff --git a/drivers/gpu/drm/i915/display/skl_scaler.h b/drivers/gpu/drm/i915/display/skl_scaler.h
> index 4d2e2dbb1666..e1fe6a2d6c32 100644
> --- a/drivers/gpu/drm/i915/display/skl_scaler.h
> +++ b/drivers/gpu/drm/i915/display/skl_scaler.h
> @@ -28,5 +28,6 @@ void skl_detach_scalers(const struct intel_crtc_state *crtc_state);
>   void skl_scaler_disable(const struct intel_crtc_state *old_crtc_state);
>   
>   void skl_scaler_get_config(struct intel_crtc_state *crtc_state);
> +void skl_scaler_setup_casf(struct intel_crtc_state *crtc_state);
>   
>   #endif

  reply	other threads:[~2025-02-05  8:14 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-13 10:49 [PATCH 0/6] Introduce drm sharpness property Nemesa Garg
2025-01-13 10:49 ` [PATCH 1/6] drm: Introduce sharpness strength property Nemesa Garg
2025-01-13 10:49 ` [PATCH 2/6] drm/i915/display: Compute the scaler filter coefficients Nemesa Garg
2025-02-05  8:10   ` Nautiyal, Ankit K
2025-01-13 10:49 ` [PATCH 3/6] drm/i915/display: Configure the scaler Nemesa Garg
2025-02-05  8:14   ` Nautiyal, Ankit K [this message]
2025-02-14 14:11     ` Garg, Nemesa
2025-01-13 10:49 ` [PATCH v8 4/6] drm/i915/display: Enable the second scaler for sharpness Nemesa Garg
2025-02-05  8:32   ` Nautiyal, Ankit K
2025-01-13 10:49 ` [PATCH v7 5/6] drm/i915/display: Add registers and compute the strength Nemesa Garg
2025-02-05  9:04   ` Nautiyal, Ankit K
2025-01-13 10:49 ` [PATCH v4 6/6] drm/i915/display: Load the lut values and enable sharpness Nemesa Garg
2025-02-05  9:25   ` Nautiyal, Ankit K
2025-01-13 13:13 ` ✓ CI.Patch_applied: success for Introduce drm sharpness property (rev5) Patchwork
2025-01-13 13:13 ` ✗ CI.checkpatch: warning " Patchwork
2025-01-13 13:15 ` ✓ CI.KUnit: success " Patchwork
2025-01-13 13:33 ` ✓ CI.Build: " Patchwork
2025-01-13 13:35 ` ✓ CI.Hooks: " Patchwork
2025-01-13 13:37 ` ✗ CI.checksparse: warning " Patchwork
2025-01-13 14:04 ` ✓ Xe.CI.BAT: success " Patchwork
2025-01-13 22:05 ` ✗ Xe.CI.Full: failure " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2025-01-10  6:32 [PATCH 0/6] Introduce drm sharpness property Nemesa Garg
2025-01-10  6:32 ` [PATCH 3/6] drm/i915/display: Configure the scaler Nemesa Garg

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=921818d1-b357-45e6-a189-cd6766eaa278@intel.com \
    --to=ankit.k.nautiyal@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=nemesa.garg@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