From: "Govindapillai, Vinod" <vinod.govindapillai@intel.com>
To: "ville.syrjala@linux.intel.com" <ville.syrjala@linux.intel.com>,
"intel-gfx@lists.freedesktop.org"
<intel-gfx@lists.freedesktop.org>
Subject: Re: [PATCH 5/7] drm/i915: Move the dodgy pre-g4x wm stuff into i9xx_wm
Date: Sun, 22 Sep 2024 10:40:32 +0000 [thread overview]
Message-ID: <cd2ab25264a47c9ad0eaf9d3573a1bc752dc19ac.camel@intel.com> (raw)
In-Reply-To: <20240916162413.8555-6-ville.syrjala@linux.intel.com>
On Mon, 2024-09-16 at 19:24 +0300, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> As with other watermark calculations, the dodgy pre-g4x
> update_wm_{pre,post} flag calcultion would like to know
Typo: calculation
> if a modeset is about to happen or not, and technically
> later stages in the atomic_check() may still flag one.
> In practice that shouldn't happen as we don't have dynamic
> CDCLK implemented for these old platforms.
>
> Regardless it'll be nice to move this old cruft out from
> the supposedly platform agnostic plane code.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/i9xx_wm.c | 74 +++++++++++++++++++
> .../gpu/drm/i915/display/intel_atomic_plane.c | 36 ---------
> 2 files changed, 74 insertions(+), 36 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/i9xx_wm.c b/drivers/gpu/drm/i915/display/i9xx_wm.c
> index 3151a31a5653..15ed3b810947 100644
> --- a/drivers/gpu/drm/i915/display/i9xx_wm.c
> +++ b/drivers/gpu/drm/i915/display/i9xx_wm.c
> @@ -705,6 +705,76 @@ static void pnv_update_wm(struct drm_i915_private *dev_priv)
> }
> }
>
> +static bool i9xx_wm_need_update(const struct intel_plane_state *old_plane_state,
> + const struct intel_plane_state *new_plane_state)
> +{
> + /* Update watermarks on tiling or size changes. */
> + if (old_plane_state->uapi.visible != new_plane_state->uapi.visible)
> + return true;
> +
> + if (!old_plane_state->hw.fb || !new_plane_state->hw.fb)
> + return false;
> +
> + if (old_plane_state->hw.fb->modifier != new_plane_state->hw.fb->modifier ||
> + old_plane_state->hw.rotation != new_plane_state->hw.rotation ||
> + drm_rect_width(&old_plane_state->uapi.src) != drm_rect_width(&new_plane_state-
> >uapi.src) ||
> + drm_rect_height(&old_plane_state->uapi.src) != drm_rect_height(&new_plane_state-
> >uapi.src) ||
> + drm_rect_width(&old_plane_state->uapi.dst) != drm_rect_width(&new_plane_state-
> >uapi.dst) ||
> + drm_rect_height(&old_plane_state->uapi.dst) != drm_rect_height(&new_plane_state-
> >uapi.dst))
> + return true;
> +
> + return false;
> +}
> +
> +static void i9xx_wm_compute(struct intel_crtc_state *new_crtc_state,
> + const struct intel_plane_state *old_plane_state,
> + const struct intel_plane_state *new_plane_state)
> +{
> + bool turn_off, turn_on, visible, was_visible, mode_changed;
> +
> + mode_changed = intel_crtc_needs_modeset(new_crtc_state);
> + was_visible = old_plane_state->uapi.visible;
> + visible = new_plane_state->uapi.visible;
> +
> + if (!was_visible && !visible)
> + return;
> +
> + turn_off = was_visible && (!visible || mode_changed);
> + turn_on = visible && (!was_visible || mode_changed);
> +
> + /* FIXME nuke when all wm code is atomic */
> + if (turn_on) {
> + new_crtc_state->update_wm_pre = true;
> + } else if (turn_off) {
> + new_crtc_state->update_wm_post = true;
> + } else if (i9xx_wm_need_update(old_plane_state, new_plane_state)) {
> + /* FIXME bollocks */
> + new_crtc_state->update_wm_pre = true;
> + new_crtc_state->update_wm_post = true;
> + }
> +}
> +
> +static int i9xx_compute_watermarks(struct intel_atomic_state *state,
> + struct intel_crtc *crtc)
> +{
> + struct intel_crtc_state *new_crtc_state =
> + intel_atomic_get_new_crtc_state(state, crtc);
> + const struct intel_plane_state *old_plane_state;
> + const struct intel_plane_state *new_plane_state;
> + struct intel_plane *plane;
> + int i;
> +
> + for_each_oldnew_intel_plane_in_state(state, plane, old_plane_state,
> + new_plane_state, i) {
> + if (plane->pipe != crtc->pipe)
> + continue;
> +
> + i9xx_wm_compute(new_crtc_state, old_plane_state, new_plane_state);
> + }
> +
> + return 0;
> +}
> +
> /*
> * Documentation says:
> * "If the line size is small, the TLB fetches can get in the way of the
> @@ -4056,18 +4126,22 @@ static const struct intel_wm_funcs g4x_wm_funcs = {
> };
>
> static const struct intel_wm_funcs pnv_wm_funcs = {
> + .compute_watermarks = i9xx_compute_watermarks,
> .update_wm = pnv_update_wm,
> };
>
> static const struct intel_wm_funcs i965_wm_funcs = {
> + .compute_watermarks = i9xx_compute_watermarks,
> .update_wm = i965_update_wm,
> };
>
> static const struct intel_wm_funcs i9xx_wm_funcs = {
> + .compute_watermarks = i9xx_compute_watermarks,
> .update_wm = i9xx_update_wm,
> };
>
> static const struct intel_wm_funcs i845_wm_funcs = {
> + .compute_watermarks = i9xx_compute_watermarks,
> .update_wm = i845_update_wm,
> };
>
> diff --git a/drivers/gpu/drm/i915/display/intel_atomic_plane.c
> b/drivers/gpu/drm/i915/display/intel_atomic_plane.c
> index 2aeb4cd5b5a1..33fec36ec0bd 100644
> --- a/drivers/gpu/drm/i915/display/intel_atomic_plane.c
> +++ b/drivers/gpu/drm/i915/display/intel_atomic_plane.c
> @@ -392,28 +392,6 @@ void intel_plane_set_invisible(struct intel_crtc_state *crtc_state,
> plane_state->uapi.visible = false;
> }
>
> -/* FIXME nuke when all wm code is atomic */
> -static bool intel_wm_need_update(const struct intel_plane_state *old_plane_state,
> - const struct intel_plane_state *new_plane_state)
> -{
> - /* Update watermarks on tiling or size changes. */
> - if (old_plane_state->uapi.visible != new_plane_state->uapi.visible)
> - return true;
> -
> - if (!old_plane_state->hw.fb || !new_plane_state->hw.fb)
> - return false;
> -
> - if (old_plane_state->hw.fb->modifier != new_plane_state->hw.fb->modifier ||
> - old_plane_state->hw.rotation != new_plane_state->hw.rotation ||
> - drm_rect_width(&old_plane_state->uapi.src) != drm_rect_width(&new_plane_state-
> >uapi.src) ||
> - drm_rect_height(&old_plane_state->uapi.src) != drm_rect_height(&new_plane_state-
> >uapi.src) ||
> - drm_rect_width(&old_plane_state->uapi.dst) != drm_rect_width(&new_plane_state-
> >uapi.dst) ||
> - drm_rect_height(&old_plane_state->uapi.dst) != drm_rect_height(&new_plane_state-
> >uapi.dst))
> - return true;
> -
> - return false;
> -}
> -
> static bool intel_plane_is_scaled(const struct intel_plane_state *plane_state)
> {
> int src_w = drm_rect_width(&plane_state->uapi.src) >> 16;
> @@ -602,20 +580,6 @@ static int intel_plane_atomic_calc_changes(const struct intel_crtc_state
> *old_cr
> was_visible, visible,
> turn_off, turn_on, mode_changed);
>
> - if (turn_on) {
> - if (DISPLAY_VER(dev_priv) < 5 && !IS_G4X(dev_priv))
> - new_crtc_state->update_wm_pre = true;
> - } else if (turn_off) {
> - if (DISPLAY_VER(dev_priv) < 5 && !IS_G4X(dev_priv))
> - new_crtc_state->update_wm_post = true;
> - } else if (intel_wm_need_update(old_plane_state, new_plane_state)) {
> - if (DISPLAY_VER(dev_priv) < 5 && !IS_G4X(dev_priv)) {
> - /* FIXME bollocks */
> - new_crtc_state->update_wm_pre = true;
> - new_crtc_state->update_wm_post = true;
> - }
> - }
> -
With this change, update_wm_pre/post flag will move from intel_atomic_check_planes() to
intel_atomic_check_crtcs() which will call compute_watermarks() and update the flag. Just wanted to
clarify if this is expected.
BR
Vinod
> if (visible || was_visible)
> new_crtc_state->fb_bits |= plane->frontbuffer_bit;
>
next prev parent reply other threads:[~2024-09-22 10:40 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-16 16:24 [PATCH 0/7] drm/i915: Some wm/cxsr cleanups Ville Syrjala
2024-09-16 16:24 ` [PATCH 1/7] drm/i915: Remove leftover intel_sprite_set_colorkey_ioctl() prototype Ville Syrjala
2024-09-22 9:31 ` Govindapillai, Vinod
2024-09-23 21:58 ` Ville Syrjälä
2024-09-16 16:24 ` [PATCH 2/7] drm/i915: Combine .compute_{pipe, intermediate}_wm() into one Ville Syrjala
2024-09-22 9:49 ` Govindapillai, Vinod
2024-09-16 16:24 ` [PATCH 3/7] drm/i915: Extract ilk_must_disable_lp_wm() Ville Syrjala
2024-09-16 16:24 ` [PATCH 4/7] drm/i915: Clean up intel_wm_need_update() Ville Syrjala
2024-09-22 9:54 ` Govindapillai, Vinod
2024-09-22 10:34 ` Govindapillai, Vinod
2024-09-23 17:33 ` Ville Syrjälä
2024-09-16 16:24 ` [PATCH 5/7] drm/i915: Move the dodgy pre-g4x wm stuff into i9xx_wm Ville Syrjala
2024-09-22 10:40 ` Govindapillai, Vinod [this message]
2024-09-23 17:35 ` Ville Syrjälä
2024-09-23 21:59 ` Ville Syrjälä
2024-09-24 6:07 ` Govindapillai, Vinod
2024-09-16 16:24 ` [PATCH 6/7] drm/i915: s/disable_lp_wm/disable_cxsr/ Ville Syrjala
2024-09-22 10:46 ` Govindapillai, Vinod
2024-09-16 16:24 ` [PATCH 7/7] drm/i915: Rename variables in ilk_intermedidate_wm() Ville Syrjala
2024-09-22 10:50 ` Govindapillai, Vinod
2024-09-16 22:11 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Some wm/cxsr cleanups Patchwork
2024-09-16 22:11 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-09-16 22:35 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-09-18 21:09 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Some wm/cxsr cleanups (rev2) Patchwork
2024-09-18 21:09 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-09-18 21:18 ` ✓ Fi.CI.BAT: success " Patchwork
2024-09-19 8:31 ` ✗ Fi.CI.IGT: 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=cd2ab25264a47c9ad0eaf9d3573a1bc752dc19ac.camel@intel.com \
--to=vinod.govindapillai@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