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>
Cc: "intel-xe@lists.freedesktop.org" <intel-xe@lists.freedesktop.org>
Subject: Re: [PATCH 2/8] drm/i915: Introduce a minimal plane error state
Date: Wed, 12 Feb 2025 21:08:20 +0000 [thread overview]
Message-ID: <c5b31234690c8b023081fb667c45d34b5923db58.camel@intel.com> (raw)
In-Reply-To: <20250116174758.18298-3-ville.syrjala@linux.intel.com>
On Thu, 2025-01-16 at 19:47 +0200, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> I want to capture a little bit more information about the state
> of the plane upon faults. To that end introduce a small plane error
> state struct and provide per-plane vfuncs to read it out.
>
> For now we just stick the CTL, SURF, and SURFLIVE (if available)
> registers contents in theret.
typo?
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/i9xx_plane.c | 41 +++++++++++++++++++
> drivers/gpu/drm/i915/display/intel_cursor.c | 26 ++++++++++++
> .../drm/i915/display/intel_display_types.h | 7 ++++
> drivers/gpu/drm/i915/display/intel_sprite.c | 36 ++++++++++++++++
> .../drm/i915/display/skl_universal_plane.c | 12 ++++++
> 5 files changed, 122 insertions(+)
Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
>
> diff --git a/drivers/gpu/drm/i915/display/i9xx_plane.c b/drivers/gpu/drm/i915/display/i9xx_plane.c
> index 48e657a80a16..ebfc205a480f 100644
> --- a/drivers/gpu/drm/i915/display/i9xx_plane.c
> +++ b/drivers/gpu/drm/i915/display/i9xx_plane.c
> @@ -553,6 +553,40 @@ static void i9xx_plane_disable_arm(struct intel_dsb *dsb,
> intel_de_write_fw(dev_priv, DSPADDR(dev_priv, i9xx_plane), 0);
> }
>
> +static void g4x_primary_capture_error(struct intel_crtc *crtc,
> + struct intel_plane *plane,
> + struct intel_plane_error *error)
> +{
> + struct intel_display *display = to_intel_display(plane);
> + enum i9xx_plane_id i9xx_plane = plane->i9xx_plane;
> +
> + error->ctl = intel_de_read(display, DSPCNTR(display, i9xx_plane));
> + error->surf = intel_de_read(display, DSPSURF(display, i9xx_plane));
> + error->surflive = intel_de_read(display, DSPSURFLIVE(display, i9xx_plane));
> +}
> +
> +static void i965_plane_capture_error(struct intel_crtc *crtc,
> + struct intel_plane *plane,
> + struct intel_plane_error *error)
> +{
> + struct intel_display *display = to_intel_display(plane);
> + enum i9xx_plane_id i9xx_plane = plane->i9xx_plane;
> +
> + error->ctl = intel_de_read(display, DSPCNTR(display, i9xx_plane));
> + error->surf = intel_de_read(display, DSPSURF(display, i9xx_plane));
> +}
> +
> +static void i8xx_plane_capture_error(struct intel_crtc *crtc,
> + struct intel_plane *plane,
> + struct intel_plane_error *error)
> +{
> + struct intel_display *display = to_intel_display(plane);
> + enum i9xx_plane_id i9xx_plane = plane->i9xx_plane;
> +
> + error->ctl = intel_de_read(display, DSPCNTR(display, i9xx_plane));
> + error->surf = intel_de_read(display, DSPADDR(display, i9xx_plane));
> +}
> +
> static void
> g4x_primary_async_flip(struct intel_dsb *dsb,
> struct intel_plane *plane,
> @@ -955,6 +989,13 @@ intel_primary_plane_create(struct drm_i915_private *dev_priv, enum pipe pipe)
> plane->get_hw_state = i9xx_plane_get_hw_state;
> plane->check_plane = i9xx_plane_check;
>
> + if (DISPLAY_VER(dev_priv) >= 5 || IS_G4X(dev_priv))
> + plane->capture_error = g4x_primary_capture_error;
> + else if (DISPLAY_VER(dev_priv) >= 4)
> + plane->capture_error = i965_plane_capture_error;
> + else
> + plane->capture_error = i8xx_plane_capture_error;
> +
> if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
> plane->async_flip = vlv_primary_async_flip;
> plane->enable_flip_done = vlv_primary_enable_flip_done;
> diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c
> b/drivers/gpu/drm/i915/display/intel_cursor.c
> index 57cf8f46a458..0bc71b5bacb6 100644
> --- a/drivers/gpu/drm/i915/display/intel_cursor.c
> +++ b/drivers/gpu/drm/i915/display/intel_cursor.c
> @@ -758,6 +758,27 @@ static bool i9xx_cursor_get_hw_state(struct intel_plane *plane,
> return ret;
> }
>
> +static void g4x_cursor_capture_error(struct intel_crtc *crtc,
> + struct intel_plane *plane,
> + struct intel_plane_error *error)
> +{
> + struct intel_display *display = to_intel_display(plane);
> +
> + error->ctl = intel_de_read(display, CURCNTR(display, crtc->pipe));
> + error->surf = intel_de_read(display, CURBASE(display, crtc->pipe));
> + error->surflive = intel_de_read(display, CURSURFLIVE(display, crtc->pipe));
> +}
> +
> +static void i9xx_cursor_capture_error(struct intel_crtc *crtc,
> + struct intel_plane *plane,
> + struct intel_plane_error *error)
> +{
> + struct intel_display *display = to_intel_display(plane);
> +
> + error->ctl = intel_de_read(display, CURCNTR(display, crtc->pipe));
> + error->surf = intel_de_read(display, CURBASE(display, crtc->pipe));
> +}
> +
> static bool intel_cursor_format_mod_supported(struct drm_plane *_plane,
> u32 format, u64 modifier)
> {
> @@ -1020,6 +1041,11 @@ intel_cursor_plane_create(struct drm_i915_private *dev_priv,
> cursor->check_plane = i9xx_check_cursor;
> }
>
> + if (DISPLAY_VER(dev_priv) >= 5 || IS_G4X(dev_priv))
> + cursor->capture_error = g4x_cursor_capture_error;
> + else
> + cursor->capture_error = i9xx_cursor_capture_error;
> +
> cursor->cursor.base = ~0;
> cursor->cursor.cntl = ~0;
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h
> b/drivers/gpu/drm/i915/display/intel_display_types.h
> index 8271e50e3644..a8adae68c512 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> @@ -1439,6 +1439,10 @@ struct intel_crtc {
> bool block_dc_for_vblank;
> };
>
> +struct intel_plane_error {
> + u32 ctl, surf, surflive;
> +};
> +
> struct intel_plane {
> struct drm_plane base;
> enum i9xx_plane_id i9xx_plane;
> @@ -1488,6 +1492,9 @@ struct intel_plane {
> void (*disable_arm)(struct intel_dsb *dsb,
> struct intel_plane *plane,
> const struct intel_crtc_state *crtc_state);
> + void (*capture_error)(struct intel_crtc *crtc,
> + struct intel_plane *plane,
> + struct intel_plane_error *error);
> bool (*get_hw_state)(struct intel_plane *plane, enum pipe *pipe);
> int (*check_plane)(struct intel_crtc_state *crtc_state,
> struct intel_plane_state *plane_state);
> diff --git a/drivers/gpu/drm/i915/display/intel_sprite.c
> b/drivers/gpu/drm/i915/display/intel_sprite.c
> index e6fadcef58e0..7197fedc4a17 100644
> --- a/drivers/gpu/drm/i915/display/intel_sprite.c
> +++ b/drivers/gpu/drm/i915/display/intel_sprite.c
> @@ -463,6 +463,17 @@ vlv_sprite_disable_arm(struct intel_dsb *dsb,
> intel_de_write_fw(display, SPSURF(pipe, plane_id), 0);
> }
>
> +static void vlv_sprite_capture_error(struct intel_crtc *crtc,
> + struct intel_plane *plane,
> + struct intel_plane_error *error)
> +{
> + struct intel_display *display = to_intel_display(plane);
> +
> + error->ctl = intel_de_read(display, SPCNTR(crtc->pipe, plane->id));
> + error->surf = intel_de_read(display, SPSURF(crtc->pipe, plane->id));
> + error->surflive = intel_de_read(display, SPSURFLIVE(crtc->pipe, plane->id));
> +}
> +
> static bool
> vlv_sprite_get_hw_state(struct intel_plane *plane,
> enum pipe *pipe)
> @@ -894,6 +905,17 @@ ivb_sprite_disable_arm(struct intel_dsb *dsb,
> intel_de_write_fw(display, SPRSURF(pipe), 0);
> }
>
> +static void ivb_sprite_capture_error(struct intel_crtc *crtc,
> + struct intel_plane *plane,
> + struct intel_plane_error *error)
> +{
> + struct intel_display *display = to_intel_display(plane);
> +
> + error->ctl = intel_de_read(display, SPRCTL(crtc->pipe));
> + error->surf = intel_de_read(display, SPRSURF(crtc->pipe));
> + error->surflive = intel_de_read(display, SPRSURFLIVE(crtc->pipe));
> +}
> +
> static bool
> ivb_sprite_get_hw_state(struct intel_plane *plane,
> enum pipe *pipe)
> @@ -1227,6 +1249,17 @@ g4x_sprite_disable_arm(struct intel_dsb *dsb,
> intel_de_write_fw(display, DVSSURF(pipe), 0);
> }
>
> +static void g4x_sprite_capture_error(struct intel_crtc *crtc,
> + struct intel_plane *plane,
> + struct intel_plane_error *error)
> +{
> + struct intel_display *display = to_intel_display(plane);
> +
> + error->ctl = intel_de_read(display, DVSCNTR(crtc->pipe));
> + error->surf = intel_de_read(display, DVSSURF(crtc->pipe));
> + error->surflive = intel_de_read(display, DVSSURFLIVE(crtc->pipe));
> +}
> +
> static bool
> g4x_sprite_get_hw_state(struct intel_plane *plane,
> enum pipe *pipe)
> @@ -1613,6 +1646,7 @@ intel_sprite_plane_create(struct drm_i915_private *dev_priv,
> plane->update_noarm = vlv_sprite_update_noarm;
> plane->update_arm = vlv_sprite_update_arm;
> plane->disable_arm = vlv_sprite_disable_arm;
> + plane->capture_error = vlv_sprite_capture_error;
> plane->get_hw_state = vlv_sprite_get_hw_state;
> plane->check_plane = vlv_sprite_check;
> plane->max_stride = i965_plane_max_stride;
> @@ -1632,6 +1666,7 @@ intel_sprite_plane_create(struct drm_i915_private *dev_priv,
> plane->update_noarm = ivb_sprite_update_noarm;
> plane->update_arm = ivb_sprite_update_arm;
> plane->disable_arm = ivb_sprite_disable_arm;
> + plane->capture_error = ivb_sprite_capture_error;
> plane->get_hw_state = ivb_sprite_get_hw_state;
> plane->check_plane = g4x_sprite_check;
>
> @@ -1653,6 +1688,7 @@ intel_sprite_plane_create(struct drm_i915_private *dev_priv,
> plane->update_noarm = g4x_sprite_update_noarm;
> plane->update_arm = g4x_sprite_update_arm;
> plane->disable_arm = g4x_sprite_disable_arm;
> + plane->capture_error = g4x_sprite_capture_error;
> plane->get_hw_state = g4x_sprite_get_hw_state;
> plane->check_plane = g4x_sprite_check;
> plane->max_stride = g4x_sprite_max_stride;
> diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> index ff9764cac1e7..73f9b12da3a4 100644
> --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> @@ -1594,6 +1594,17 @@ icl_plane_update_arm(struct intel_dsb *dsb,
> skl_plane_surf(plane_state, color_plane));
> }
>
> +static void skl_plane_capture_error(struct intel_crtc *crtc,
> + struct intel_plane *plane,
> + struct intel_plane_error *error)
> +{
> + struct intel_display *display = to_intel_display(plane);
> +
> + error->ctl = intel_de_read(display, PLANE_CTL(crtc->pipe, plane->id));
> + error->surf = intel_de_read(display, PLANE_SURF(crtc->pipe, plane->id));
> + error->surflive = intel_de_read(display, PLANE_SURFLIVE(crtc->pipe, plane->id));
> +}
> +
> static void
> skl_plane_async_flip(struct intel_dsb *dsb,
> struct intel_plane *plane,
> @@ -2668,6 +2679,7 @@ skl_universal_plane_create(struct drm_i915_private *dev_priv,
> plane->update_arm = skl_plane_update_arm;
> plane->disable_arm = skl_plane_disable_arm;
> }
> + plane->capture_error = skl_plane_capture_error;
> plane->get_hw_state = skl_plane_get_hw_state;
> plane->check_plane = skl_plane_check;
>
next prev parent reply other threads:[~2025-02-12 21:08 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-16 17:47 [PATCH 0/8] drm/i915: Provide more information on display faults Ville Syrjala
2025-01-16 17:47 ` [PATCH 1/8] drm/i915: Add missing else to the if ladder in missing else Ville Syrjala
2025-02-12 20:46 ` Govindapillai, Vinod
2025-01-16 17:47 ` [PATCH 2/8] drm/i915: Introduce a minimal plane error state Ville Syrjala
2025-02-12 21:08 ` Govindapillai, Vinod [this message]
2025-01-16 17:47 ` [PATCH 3/8] drm/i915: Pimp display fault reporting Ville Syrjala
2025-01-20 13:50 ` Maarten Lankhorst
2025-01-20 14:48 ` Ville Syrjälä
2025-02-13 19:28 ` Govindapillai, Vinod
2025-01-16 17:47 ` [PATCH 4/8] drm/i915: Hook in display GTT faults for IVB/HSW Ville Syrjala
2025-02-13 20:02 ` Govindapillai, Vinod
2025-01-16 17:47 ` [PATCH 5/8] drm/i915: Hook in display GTT faults for ILK/SNB Ville Syrjala
2025-02-13 20:09 ` Govindapillai, Vinod
2025-02-13 20:18 ` Govindapillai, Vinod
2025-01-16 17:47 ` [PATCH 6/8] drm/i915: Introduce i915_error_regs Ville Syrjala
2025-02-13 20:47 ` Govindapillai, Vinod
2025-01-16 17:47 ` [PATCH 7/8] drm/i915: Un-invert {i9xx,i965}_error_mask() Ville Syrjala
2025-02-13 20:49 ` Govindapillai, Vinod
2025-01-16 17:47 ` [PATCH 8/8] drm/i915: Hook up display fault interrupts for VLV/CHV Ville Syrjala
2025-02-13 21:03 ` Govindapillai, Vinod
2025-01-16 22:53 ` ✓ CI.Patch_applied: success for drm/i915: Provide more information on display faults Patchwork
2025-01-16 22:53 ` ✗ CI.checkpatch: warning " Patchwork
2025-01-16 22:54 ` ✓ CI.KUnit: success " Patchwork
2025-01-16 23:12 ` ✓ CI.Build: " Patchwork
2025-01-16 23:15 ` ✓ CI.Hooks: " Patchwork
2025-01-16 23:17 ` ✗ CI.checksparse: warning " Patchwork
2025-01-17 9:10 ` ✗ Xe.CI.Full: failure " Patchwork
2025-01-17 10:35 ` ✓ CI.Patch_applied: success for drm/i915: Provide more information on display faults (rev2) Patchwork
2025-01-17 10:35 ` ✗ CI.checkpatch: warning " Patchwork
2025-01-17 10:37 ` ✓ CI.KUnit: success " Patchwork
2025-01-17 10:55 ` ✓ CI.Build: " Patchwork
2025-01-17 10:57 ` ✓ CI.Hooks: " Patchwork
2025-01-17 10:59 ` ✗ CI.checksparse: warning " Patchwork
2025-01-17 11:25 ` ✓ Xe.CI.BAT: success " Patchwork
2025-01-17 12:20 ` ✓ Xe.CI.BAT: success for drm/i915: Provide more information on display faults Patchwork
2025-01-17 17:57 ` ✗ Xe.CI.Full: failure for drm/i915: Provide more information on display faults (rev2) 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=c5b31234690c8b023081fb667c45d34b5923db58.camel@intel.com \
--to=vinod.govindapillai@intel.com \
--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