drm/i915: Include timeline seqno in error capture
authorJohn Harrison <John.C.Harrison@Intel.com>
Sat, 11 Mar 2023 06:37:14 +0000 (22:37 -0800)
committerJohn Harrison <John.C.Harrison@Intel.com>
Tue, 14 Mar 2023 01:27:10 +0000 (18:27 -0700)
The seqno value actually written out to memory is no longer in the
regular HWSP. Instead, it is now in its own private timeline buffer.
Thus, it is no longer visible in an error capture. So, explicitly read
the value and include that in the capture.

v2: %d -> %u (Alan)

Signed-off-by: John Harrison <John.C.Harrison@Intel.com>
Reviewed-by: Alan Previn <alan.previn.teres.alexis@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230311063714.570389-4-John.C.Harrison@Intel.com
drivers/gpu/drm/i915/i915_gpu_error.c
drivers/gpu/drm/i915/i915_gpu_error.h

index 904f21e1380cd9630b3260238d750cf323fc1cd2..f020c0086fbcdb82c2dbaffe3da592b25239fc39 100644 (file)
@@ -505,6 +505,7 @@ static void error_print_context(struct drm_i915_error_state_buf *m,
                   header, ctx->comm, ctx->pid, ctx->sched_attr.priority,
                   ctx->guilty, ctx->active,
                   ctx->total_runtime, ctx->avg_runtime);
+       err_printf(m, "  context timeline seqno %u\n", ctx->hwsp_seqno);
 }
 
 static struct i915_vma_coredump *
@@ -1395,6 +1396,8 @@ static bool record_context(struct i915_gem_context_coredump *e,
        e->sched_attr = ctx->sched;
        e->guilty = atomic_read(&ctx->guilty_count);
        e->active = atomic_read(&ctx->active_count);
+       e->hwsp_seqno = (ce->timeline && ce->timeline->hwsp_seqno) ?
+                               *ce->timeline->hwsp_seqno : ~0U;
 
        e->total_runtime = intel_context_get_total_runtime_ns(ce);
        e->avg_runtime = intel_context_get_avg_runtime_ns(ce);
index 56027ffbce51f310f42f35eb2850ce2774adc52a..a91932cc6531782311fe87522002e4cd0a4e9ac4 100644 (file)
@@ -107,6 +107,7 @@ struct intel_engine_coredump {
                int active;
                int guilty;
                struct i915_sched_attr sched_attr;
+               u32 hwsp_seqno;
        } context;
 
        struct i915_vma_coredump *vma;