All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Cc: intel-gfx@lists.freedesktop.org, miku@iki.fi
Subject: Re: [PATCH 2/2] drm/i915: Display current hangcheck status in debugfs
Date: Fri, 23 Jan 2015 15:19:16 +0200	[thread overview]
Message-ID: <20150123131916.GX19354@intel.com> (raw)
In-Reply-To: <1422017048-4792-2-git-send-email-mika.kuoppala@intel.com>

On Fri, Jan 23, 2015 at 02:44:08PM +0200, Mika Kuoppala wrote:
> From: Chris Wilson <chris@chris-wilson.co.uk>
> 
> For example,
> 
> /sys/kernel/debug/dri/0/i915_hangcheck_info:
> 
> Hangcheck active, fires in 15887800ms
> render ring:
>         seqno = -4059 [current -583]
>         action = 2
>         score = 0
>         ACTHD = 1ee8 [current 21f980]
>         max ACTHD = 0
> 
> v2: Include expiration ETA. Can anyone spot a problem?
> v3: Convert for workqueued hangcheck (Mika)
> 
> Tested-By: PRC QA PRTS (Patch Regression Test System Contact: shuang.he@intel.com) (v2)
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> (v2)
> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> (v2)
> Signed-off-by: Mika Kuoppala <mika.kuoppala@intel.com>
> ---
>  drivers/gpu/drm/i915/i915_debugfs.c | 36 ++++++++++++++++++++++++++++++++++++
>  1 file changed, 36 insertions(+)
> 
> diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c
> index 2ad4c48..1502c96 100644
> --- a/drivers/gpu/drm/i915/i915_debugfs.c
> +++ b/drivers/gpu/drm/i915/i915_debugfs.c
> @@ -1219,6 +1219,41 @@ out:
>  	return ret;
>  }
>  
> +static int i915_hangcheck_info(struct seq_file *m, void *unused)
> +{
> +	struct drm_info_node *node = m->private;
> +	struct drm_i915_private *dev_priv = to_i915(node->minor->dev);
> +	struct intel_engine_cs *ring;
> +	int i;
> +
> +	if (!i915.enable_hangcheck) {
> +		seq_printf(m, "Hangcheck disabled\n");
> +		return 0;
> +	}
> +
> +	if (delayed_work_pending(&dev_priv->gpu_error.hangcheck_work)) {
> +		seq_printf(m, "Hangcheck active, fires in %dms\n",
> +			   jiffies_to_msecs(dev_priv->gpu_error.hangcheck_work.timer.expires -
> +					    jiffies));
> +	} else
> +		seq_printf(m, "Hangcheck inactive\n");
> +
> +	for_each_ring(ring, dev_priv, i) {
> +		seq_printf(m, "%s:\n", ring->name);
> +		seq_printf(m, "\tseqno = %d [current %d]\n",

%u ?

> +			   ring->hangcheck.seqno, ring->get_seqno(ring, false));
> +		seq_printf(m, "\taction = %d\n", ring->hangcheck.action);
> +		seq_printf(m, "\tscore = %d\n", ring->hangcheck.score);
> +		seq_printf(m, "\tACTHD = 0x%08llx [current 0x%08llx]\n",
> +			   (long long)ring->hangcheck.acthd,
> +			   (long long)intel_ring_get_active_head(ring));
> +		seq_printf(m, "\tmax ACTHD = 0x%08llx\n",
> +			   (long long)ring->hangcheck.max_acthd);
> +	}
> +
> +	return 0;
> +}
> +
>  static int ironlake_drpc_info(struct seq_file *m)
>  {
>  	struct drm_info_node *node = m->private;
> @@ -4407,6 +4442,7 @@ static const struct drm_info_list i915_debugfs_list[] = {
>  	{"i915_gem_hws_vebox", i915_hws_info, 0, (void *)VECS},
>  	{"i915_gem_batch_pool", i915_gem_batch_pool_info, 0},
>  	{"i915_frequency_info", i915_frequency_info, 0},
> +	{"i915_hangcheck_info", i915_hangcheck_info, 0},
>  	{"i915_drpc_info", i915_drpc_info, 0},
>  	{"i915_emon_status", i915_emon_status, 0},
>  	{"i915_ring_freq_table", i915_ring_freq_table, 0},
> -- 
> 1.9.1
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Ville Syrjälä
Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2015-01-23 13:19 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-23 12:44 [PATCH 1/2] drm/i915: Convert hangcheck from a timer into a delayed work item Mika Kuoppala
2015-01-23 12:44 ` [PATCH 2/2] drm/i915: Display current hangcheck status in debugfs Mika Kuoppala
2015-01-23 13:19   ` Ville Syrjälä [this message]
2015-01-23 14:16     ` Mika Kuoppala
2015-01-23 20:53     ` Chris Wilson
2015-01-23 18:24   ` shuang.he
2015-01-23 15:43 ` [PATCH 1/2] drm/i915: Convert hangcheck from a timer into a delayed work item Daniel Vetter
2015-01-23 20:58 ` Chris Wilson

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=20150123131916.GX19354@intel.com \
    --to=ville.syrjala@linux.intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=mika.kuoppala@linux.intel.com \
    --cc=miku@iki.fi \
    /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.