summaryrefslogtreecommitdiff
path: root/tools/intel_error_decode.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2017-04-06 23:32:14 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2017-04-06 23:33:50 +0100
commit2cc8c6d5f811e9f16d895a15a33e7236cdcd53af (patch)
tree0b63bc8716dcdca6d67116baa23d2451136ba731 /tools/intel_error_decode.c
parent93f29f37a0df5ffdc3933c97075c111be091aaad (diff)
tools/intel_error_decode: Refactor matching known buffers
Lots of repeated code, and a few missed named buffers. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'tools/intel_error_decode.c')
-rw-r--r--tools/intel_error_decode.c129
1 files changed, 48 insertions, 81 deletions
diff --git a/tools/intel_error_decode.c b/tools/intel_error_decode.c
index d49f4799..ce41336e 100644
--- a/tools/intel_error_decode.c
+++ b/tools/intel_error_decode.c
@@ -558,7 +558,7 @@ read_data_file(FILE *file)
char *line = NULL;
size_t line_size;
uint32_t offset, value, ring_length = 0;
- uint64_t gtt_offset = 0, new_gtt_offset;
+ uint64_t gtt_offset = 0;
uint32_t head_offset = -1;
const char *buffer_name = "batch buffer";
char *ring_name = NULL;
@@ -581,97 +581,64 @@ read_data_file(FILE *file)
dashes = strstr(line, "---");
if (dashes) {
- uint32_t lo, hi;
- char *new_ring_name = malloc(dashes - line);
+ const struct {
+ const char *match;
+ const char *name;
+ } buffers[] = {
+ { "ringbuffer", "ring" },
+ { "gtt_offset", "batch" },
+ { "hw context", "HW context" },
+ { "hw status", "HW status" },
+ { "wa context", "WA context" },
+ { "wa batchbuffer", "WA batch" },
+ { "user", "user" },
+ { },
+ }, *b;
+ char *new_ring_name;
+
+ new_ring_name = malloc(dashes - line);
strncpy(new_ring_name, line, dashes - line);
new_ring_name[dashes - line - 1] = '\0';
- matched = sscanf(dashes, "--- gtt_offset = 0x%08x %08x\n",
- &hi, &lo);
- if (matched > 0) {
- new_gtt_offset = hi;
- if (matched == 2) {
- new_gtt_offset <<= 32;
- new_gtt_offset |= lo;
- }
-
- decode(decode_ctx,
- buffer_name, ring_name,
- gtt_offset, head_offset,
- data, &count);
- gtt_offset = new_gtt_offset;
- head_offset = -1;
- free(ring_name);
- ring_name = new_ring_name;
- buffer_name = "batch buffer";
- continue;
- }
+ decode(decode_ctx,
+ buffer_name, ring_name,
+ gtt_offset, head_offset,
+ data, &count);
+ gtt_offset = 0;
+ head_offset = -1;
- matched = sscanf(dashes, "--- ringbuffer = 0x%08x %08x\n",
- &hi, &lo);
- if (matched > 0) {
- new_gtt_offset = hi;
- if (matched == 2) {
- new_gtt_offset <<= 32;
- new_gtt_offset |= lo;
- }
+ free(ring_name);
+ ring_name = new_ring_name;
- decode(decode_ctx,
- buffer_name, ring_name,
- gtt_offset, head_offset,
- data, &count);
- gtt_offset = new_gtt_offset;
- if (head_idx < num_rings)
- head_offset = head[head_idx++];
- else
- head_offset = -1;
- free(ring_name);
- ring_name = new_ring_name;
- buffer_name = "ring buffer";
- continue;
- }
+ dashes += 4;
+ for (b = buffers; b->match; b++) {
+ uint32_t lo, hi;
- matched = sscanf(dashes, "--- HW Context = 0x%08x %08x\n",
- &hi, &lo);
- if (matched > 0) {
- new_gtt_offset = hi;
- if (matched == 2) {
- new_gtt_offset <<= 32;
- new_gtt_offset |= lo;
- }
+ if (strncasecmp(dashes, b->match,
+ strlen(b->match)))
+ continue;
- decode(decode_ctx,
- buffer_name, ring_name,
- gtt_offset, head_offset,
- data, &count);
- gtt_offset = new_gtt_offset;
- head_offset = -1;
- free(ring_name);
- ring_name = new_ring_name;
- buffer_name = "HW Context";
- continue;
- }
+ dashes = strchr(dashes, '=');
+ if (!dashes)
+ break;
- matched = sscanf(dashes, "--- user = 0x%08x %08x\n",
- &hi, &lo);
- if (matched > 0) {
- new_gtt_offset = hi;
- if (matched == 2) {
- new_gtt_offset <<= 32;
- new_gtt_offset |= lo;
+ matched = sscanf(dashes, "= 0x%08x %08x\n",
+ &hi, &lo);
+ if (matched > 0) {
+ gtt_offset = hi;
+ if (matched == 2) {
+ gtt_offset <<= 32;
+ gtt_offset |= lo;
+ }
}
- decode(decode_ctx,
- buffer_name, ring_name,
- gtt_offset, head_offset,
- data, &count);
- gtt_offset = new_gtt_offset;
- head_offset = -1;
- free(ring_name);
- ring_name = new_ring_name;
- buffer_name = "user";
- continue;
+ buffer_name = b->name;
+ if (b == buffers)
+ head_offset = head[head_idx++];
+ break;
}
+
+ continue;
}
matched = sscanf(line, "%08x : %08x", &offset, &value);