From: Ben Widawsky <ben@bwidawsk.net>
To: Chris Wilson <chris@chris-wilson.co.uk>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH 2/2] drm/i915: Include the last semaphore sync point in the error-state
Date: Tue, 27 Nov 2012 12:54:35 -0800 [thread overview]
Message-ID: <20121127125435.6d760809@bwidawsk.net> (raw)
In-Reply-To: <1354036014-10911-2-git-send-email-chris@chris-wilson.co.uk>
On Tue, 27 Nov 2012 17:06:54 +0000
Chris Wilson <chris@chris-wilson.co.uk> wrote:
> Should be useful to know what the driver thought the other ring's seqno
> was when it last used a semaphore.
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Note to Daniel: It would be nice to work on merging VECS and then adding
this IMO
> ---
> drivers/gpu/drm/i915/i915_debugfs.c | 10 ++++++----
> drivers/gpu/drm/i915/i915_drv.h | 1 +
> drivers/gpu/drm/i915/i915_irq.c | 2 ++
> 3 files changed, 9 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c
> index c52758c..5359f376 100644
> --- a/drivers/gpu/drm/i915/i915_debugfs.c
> +++ b/drivers/gpu/drm/i915/i915_debugfs.c
> @@ -657,10 +657,12 @@ static void i915_ring_error_state(struct seq_file *m,
> if (INTEL_INFO(dev)->gen >= 6) {
> seq_printf(m, " RC PSMI: 0x%08x\n", error->rc_psmi[ring]);
> seq_printf(m, " FAULT_REG: 0x%08x\n", error->fault_reg[ring]);
> - seq_printf(m, " SYNC_0: 0x%08x\n",
> - error->semaphore_mboxes[ring][0]);
> - seq_printf(m, " SYNC_1: 0x%08x\n",
> - error->semaphore_mboxes[ring][1]);
> + seq_printf(m, " SYNC_0: 0x%08x [last synced 0x%08x]\n",
> + error->semaphore_mboxes[ring][0],
> + error->semaphore_seqno[ring][0]);
> + seq_printf(m, " SYNC_1: 0x%08x [last synced 0x%08x]\n",
> + error->semaphore_mboxes[ring][1],
> + error->semaphore_seqno[ring][1]);
> }
> seq_printf(m, " seqno: 0x%08x\n", error->seqno[ring]);
> seq_printf(m, " waiting: %s\n", yesno(error->waiting[ring]));
> diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
> index 23afc21..476aa94 100644
> --- a/drivers/gpu/drm/i915/i915_drv.h
> +++ b/drivers/gpu/drm/i915/i915_drv.h
> @@ -199,6 +199,7 @@ struct drm_i915_error_state {
> u32 instdone[I915_NUM_RINGS];
> u32 acthd[I915_NUM_RINGS];
> u32 semaphore_mboxes[I915_NUM_RINGS][I915_NUM_RINGS - 1];
> + u32 semaphore_seqno[I915_NUM_RINGS][I915_NUM_RINGS - 1];
> u32 rc_psmi[I915_NUM_RINGS]; /* sleep state */
> /* our own tracking of ring head and tail */
> u32 cpu_ring_head[I915_NUM_RINGS];
> diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
> index bfb6c51..1f40090 100644
> --- a/drivers/gpu/drm/i915/i915_irq.c
> +++ b/drivers/gpu/drm/i915/i915_irq.c
> @@ -1156,6 +1156,8 @@ static void i915_record_ring_state(struct drm_device *dev,
> = I915_READ(RING_SYNC_0(ring->mmio_base));
> error->semaphore_mboxes[ring->id][1]
> = I915_READ(RING_SYNC_1(ring->mmio_base));
> + error->semaphore_seqno[ring->id][0] = ring->sync_seqno[0];
> + error->semaphore_seqno[ring->id][1] = ring->sync_seqno[1];
> }
>
> if (INTEL_INFO(dev)->gen >= 4) {
--
Ben Widawsky, Intel Open Source Technology Center
next prev parent reply other threads:[~2012-11-27 20:54 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-27 17:06 [PATCH 1/2] drm/i915/debugfs: Prune a couple of superfluous leading zeros from bo domains Chris Wilson
2012-11-27 17:06 ` [PATCH 2/2] drm/i915: Include the last semaphore sync point in the error-state Chris Wilson
2012-11-27 20:54 ` Ben Widawsky [this message]
2012-11-27 21:04 ` Chris Wilson
2012-11-29 9:16 ` Mika Kuoppala
2012-11-29 10:01 ` Daniel Vetter
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=20121127125435.6d760809@bwidawsk.net \
--to=ben@bwidawsk.net \
--cc=chris@chris-wilson.co.uk \
--cc=intel-gfx@lists.freedesktop.org \
/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.