From: Jani Nikula <jani.nikula@linux.intel.com>
To: Ville Syrjala <ville.syrjala@linux.intel.com>,
intel-gfx@lists.freedesktop.org
Subject: Re: [Intel-gfx] [PATCH] drm/i915: Stop using crtc->index as the pipe
Date: Tue, 27 Apr 2021 13:33:48 +0300 [thread overview]
Message-ID: <87y2d43tkj.fsf@intel.com> (raw)
In-Reply-To: <20210426185612.13223-1-ville.syrjala@linux.intel.com>
On Mon, 26 Apr 2021, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The pipe crc code slipped theough the net when we tried to
> eliminate all crtc->index==pipe abuses. Remedy that.
>
> And while at it get rid of those nasty intel_crtc+drm_crtc
> pointer aliases.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_pipe_crc.c | 51 ++++++++++---------
> 1 file changed, 26 insertions(+), 25 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_pipe_crc.c b/drivers/gpu/drm/i915/display/intel_pipe_crc.c
> index 0f6de96e6d43..acc64b87d29f 100644
> --- a/drivers/gpu/drm/i915/display/intel_pipe_crc.c
> +++ b/drivers/gpu/drm/i915/display/intel_pipe_crc.c
> @@ -580,13 +580,14 @@ int intel_crtc_verify_crc_source(struct drm_crtc *crtc, const char *source_name,
> return -EINVAL;
> }
>
> -int intel_crtc_set_crc_source(struct drm_crtc *crtc, const char *source_name)
> +int intel_crtc_set_crc_source(struct drm_crtc *_crtc, const char *source_name)
> {
> - struct drm_i915_private *dev_priv = to_i915(crtc->dev);
> - struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
> - struct intel_pipe_crc *pipe_crc = &intel_crtc->pipe_crc;
> + struct intel_crtc *crtc = to_intel_crtc(_crtc);
> + struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
> + struct intel_pipe_crc *pipe_crc = &crtc->pipe_crc;
> enum intel_display_power_domain power_domain;
> enum intel_pipe_crc_source source;
> + enum pipe pipe = crtc->pipe;
> intel_wakeref_t wakeref;
> u32 val = 0; /* shut up gcc */
> int ret = 0;
> @@ -597,7 +598,7 @@ int intel_crtc_set_crc_source(struct drm_crtc *crtc, const char *source_name)
> return -EINVAL;
> }
>
> - power_domain = POWER_DOMAIN_PIPE(crtc->index);
> + power_domain = POWER_DOMAIN_PIPE(pipe);
> wakeref = intel_display_power_get_if_enabled(dev_priv, power_domain);
> if (!wakeref) {
> drm_dbg_kms(&dev_priv->drm,
> @@ -607,64 +608,64 @@ int intel_crtc_set_crc_source(struct drm_crtc *crtc, const char *source_name)
>
> enable = source != INTEL_PIPE_CRC_SOURCE_NONE;
> if (enable)
> - intel_crtc_crc_setup_workarounds(to_intel_crtc(crtc), true);
> + intel_crtc_crc_setup_workarounds(crtc, true);
>
> - ret = get_new_crc_ctl_reg(dev_priv, crtc->index, &source, &val);
> + ret = get_new_crc_ctl_reg(dev_priv, pipe, &source, &val);
> if (ret != 0)
> goto out;
>
> pipe_crc->source = source;
> - intel_de_write(dev_priv, PIPE_CRC_CTL(crtc->index), val);
> - intel_de_posting_read(dev_priv, PIPE_CRC_CTL(crtc->index));
> + intel_de_write(dev_priv, PIPE_CRC_CTL(pipe), val);
> + intel_de_posting_read(dev_priv, PIPE_CRC_CTL(pipe));
>
> if (!source) {
> if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
> - vlv_undo_pipe_scramble_reset(dev_priv, crtc->index);
> + vlv_undo_pipe_scramble_reset(dev_priv, pipe);
> }
>
> pipe_crc->skipped = 0;
>
> out:
> if (!enable)
> - intel_crtc_crc_setup_workarounds(to_intel_crtc(crtc), false);
> + intel_crtc_crc_setup_workarounds(crtc, false);
>
> intel_display_power_put(dev_priv, power_domain, wakeref);
>
> return ret;
> }
>
> -void intel_crtc_enable_pipe_crc(struct intel_crtc *intel_crtc)
> +void intel_crtc_enable_pipe_crc(struct intel_crtc *crtc)
> {
> - struct drm_crtc *crtc = &intel_crtc->base;
> - struct drm_i915_private *dev_priv = to_i915(crtc->dev);
> - struct intel_pipe_crc *pipe_crc = &intel_crtc->pipe_crc;
> + struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
> + struct intel_pipe_crc *pipe_crc = &crtc->pipe_crc;
> + enum pipe pipe = crtc->pipe;
> u32 val = 0;
>
> - if (!crtc->crc.opened)
> + if (!crtc->base.crc.opened)
> return;
>
> - if (get_new_crc_ctl_reg(dev_priv, crtc->index, &pipe_crc->source, &val) < 0)
> + if (get_new_crc_ctl_reg(dev_priv, pipe, &pipe_crc->source, &val) < 0)
> return;
>
> /* Don't need pipe_crc->lock here, IRQs are not generated. */
> pipe_crc->skipped = 0;
>
> - intel_de_write(dev_priv, PIPE_CRC_CTL(crtc->index), val);
> - intel_de_posting_read(dev_priv, PIPE_CRC_CTL(crtc->index));
> + intel_de_write(dev_priv, PIPE_CRC_CTL(pipe), val);
> + intel_de_posting_read(dev_priv, PIPE_CRC_CTL(pipe));
> }
>
> -void intel_crtc_disable_pipe_crc(struct intel_crtc *intel_crtc)
> +void intel_crtc_disable_pipe_crc(struct intel_crtc *crtc)
> {
> - struct drm_crtc *crtc = &intel_crtc->base;
> - struct drm_i915_private *dev_priv = to_i915(crtc->dev);
> - struct intel_pipe_crc *pipe_crc = &intel_crtc->pipe_crc;
> + struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
> + struct intel_pipe_crc *pipe_crc = &crtc->pipe_crc;
> + enum pipe pipe = crtc->pipe;
>
> /* Swallow crc's until we stop generating them. */
> spin_lock_irq(&pipe_crc->lock);
> pipe_crc->skipped = INT_MIN;
> spin_unlock_irq(&pipe_crc->lock);
>
> - intel_de_write(dev_priv, PIPE_CRC_CTL(crtc->index), 0);
> - intel_de_posting_read(dev_priv, PIPE_CRC_CTL(crtc->index));
> + intel_de_write(dev_priv, PIPE_CRC_CTL(pipe), 0);
> + intel_de_posting_read(dev_priv, PIPE_CRC_CTL(pipe));
> intel_synchronize_irq(dev_priv);
> }
--
Jani Nikula, Intel Open Source Graphics Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
prev parent reply other threads:[~2021-04-27 10:33 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-26 18:56 [Intel-gfx] [PATCH] drm/i915: Stop using crtc->index as the pipe Ville Syrjala
2021-04-26 23:00 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2021-04-27 0:07 ` [Intel-gfx] [PATCH] " Souza, Jose
2021-04-27 2:05 ` Ville Syrjälä
2021-04-27 7:51 ` Jani Nikula
2021-04-27 16:09 ` Souza, Jose
2021-04-27 9:56 ` [Intel-gfx] ✓ Fi.CI.IGT: success for " Patchwork
2021-04-27 10:33 ` Jani Nikula [this message]
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=87y2d43tkj.fsf@intel.com \
--to=jani.nikula@linux.intel.com \
--cc=intel-gfx@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