summaryrefslogtreecommitdiffstats
path: root/src/intel/tools/aubinator_viewer.cpp
diff options
context:
space:
mode:
authorLionel Landwerlin <[email protected]>2018-11-09 16:49:10 +0000
committerLionel Landwerlin <[email protected]>2018-11-16 11:37:08 +0000
commit25443cbb72048900f3ff06fdb7a68aef6eea39ff (patch)
tree605c3894d125626e16ea805aa691c02c58c04a5e /src/intel/tools/aubinator_viewer.cpp
parent1c56d211563300e8b837378962dd455d45d7956e (diff)
intel/decoders: read ring buffer length
Use this value to limit reading the ring buffer. Signed-off-by: Lionel Landwerlin <[email protected]> Reviewed-by: Toni Lönnberg <[email protected]>
Diffstat (limited to 'src/intel/tools/aubinator_viewer.cpp')
-rw-r--r--src/intel/tools/aubinator_viewer.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/intel/tools/aubinator_viewer.cpp b/src/intel/tools/aubinator_viewer.cpp
index d3638c70011..e7034fa8892 100644
--- a/src/intel/tools/aubinator_viewer.cpp
+++ b/src/intel/tools/aubinator_viewer.cpp
@@ -723,6 +723,7 @@ display_batch_execlist_write(void *user_data,
uint32_t ring_buffer_head = context_img[5];
uint32_t ring_buffer_tail = context_img[7];
uint32_t ring_buffer_start = context_img[9];
+ uint32_t ring_buffer_length = (context_img[11] & 0x1ff000) + 4096;
window->mem.pml4 = (uint64_t)context_img[49] << 32 | context_img[51];
@@ -735,7 +736,7 @@ display_batch_execlist_write(void *user_data,
window->decode_ctx.engine = engine;
aub_viewer_render_batch(&window->decode_ctx, commands,
- ring_buffer_tail - ring_buffer_head,
+ MIN2(ring_buffer_tail - ring_buffer_head, ring_buffer_length),
ring_buffer_start);
}