mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-14 13:10:35 +02:00
Isolate the BRW/ELK differences in a single place. The way is done now, we are not reusing the isa_info between calls. For the tools here this is probably fine, if its someday this gets in the way, we can add an opaque pointer to store the right data. This intentionally is not used in Iris, since there the driver need more detailed view into BRW/ELK and we don't want to create an all encompassing abstraction for that. Reviewed-by: Daniel Stone <daniels@collabora.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Acked-by: Kenneth Graunke <kenneth@whitecape.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33054>
950 lines
29 KiB
C
950 lines
29 KiB
C
/*
|
|
* Copyright © 2007-2017 Intel Corporation
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including the next
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
* Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
* IN THE SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <inttypes.h>
|
|
#include <errno.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <sys/wait.h>
|
|
#include <err.h>
|
|
#include <assert.h>
|
|
#include <getopt.h>
|
|
#include <zlib.h>
|
|
|
|
#include "aubinator_error_decode_lib.h"
|
|
#include "aubinator_error_decode_xe.h"
|
|
#include "common/intel_debug_identifier.h"
|
|
#include "decoder/intel_decoder.h"
|
|
#include "dev/intel_debug.h"
|
|
#include "error_decode_lib.h"
|
|
#include "util/macros.h"
|
|
#include "intel_tools.h"
|
|
|
|
#define MIN(a, b) ((a) < (b) ? (a) : (b))
|
|
|
|
#define XE_KMD_ERROR_DUMP_IDENTIFIER "**** Xe Device Coredump ****"
|
|
|
|
/* options */
|
|
|
|
static bool option_full_decode = true;
|
|
static bool option_print_all_bb = false;
|
|
static bool option_print_offsets = true;
|
|
static bool option_dump_kernels = false;
|
|
static enum decode_color option_color;
|
|
static char *xml_path = NULL;
|
|
|
|
static uint32_t
|
|
print_head(unsigned int reg)
|
|
{
|
|
printf(" head = 0x%08x, wraps = %d\n", reg & (0x7ffff<<2), reg >> 21);
|
|
return reg & (0x7ffff<<2);
|
|
}
|
|
|
|
static void
|
|
print_register(struct intel_spec *spec, const char *name, uint32_t reg)
|
|
{
|
|
struct intel_group *reg_spec =
|
|
name ? intel_spec_find_register_by_name(spec, name) : NULL;
|
|
|
|
if (reg_spec) {
|
|
intel_print_group(stdout, reg_spec, 0, ®, 0,
|
|
option_color == DECODE_COLOR_ALWAYS);
|
|
}
|
|
}
|
|
|
|
struct ring_register_mapping {
|
|
enum intel_engine_class ring_class;
|
|
unsigned ring_instance;
|
|
const char *register_name;
|
|
};
|
|
|
|
static const struct ring_register_mapping acthd_registers[] = {
|
|
{ INTEL_ENGINE_CLASS_COPY, 0, "BCS_ACTHD_UDW" },
|
|
{ INTEL_ENGINE_CLASS_VIDEO, 0, "VCS_ACTHD_UDW" },
|
|
{ INTEL_ENGINE_CLASS_VIDEO, 1, "VCS2_ACTHD_UDW" },
|
|
{ INTEL_ENGINE_CLASS_RENDER, 0, "ACTHD_UDW" },
|
|
{ INTEL_ENGINE_CLASS_VIDEO_ENHANCE, 0, "VECS_ACTHD_UDW" },
|
|
};
|
|
|
|
static const struct ring_register_mapping ctl_registers[] = {
|
|
{ INTEL_ENGINE_CLASS_COPY, 0, "BCS_RING_BUFFER_CTL" },
|
|
{ INTEL_ENGINE_CLASS_VIDEO, 0, "VCS_RING_BUFFER_CTL" },
|
|
{ INTEL_ENGINE_CLASS_VIDEO, 1, "VCS2_RING_BUFFER_CTL" },
|
|
{ INTEL_ENGINE_CLASS_RENDER, 0, "RCS_RING_BUFFER_CTL" },
|
|
{ INTEL_ENGINE_CLASS_VIDEO_ENHANCE, 0, "VECS_RING_BUFFER_CTL" },
|
|
};
|
|
|
|
static const struct ring_register_mapping fault_registers[] = {
|
|
{ INTEL_ENGINE_CLASS_COPY, 0, "BCS_FAULT_REG" },
|
|
{ INTEL_ENGINE_CLASS_VIDEO, 0, "VCS_FAULT_REG" },
|
|
{ INTEL_ENGINE_CLASS_RENDER, 0, "RCS_FAULT_REG" },
|
|
{ INTEL_ENGINE_CLASS_VIDEO_ENHANCE, 0, "VECS_FAULT_REG" },
|
|
};
|
|
|
|
static const char *
|
|
register_name_from_ring(const struct ring_register_mapping *mapping,
|
|
unsigned nb_mapping,
|
|
const char *ring_name)
|
|
{
|
|
enum intel_engine_class class;
|
|
int instance;
|
|
|
|
instance = ring_name_to_class(ring_name, &class);
|
|
if (instance < 0)
|
|
return NULL;
|
|
|
|
for (unsigned i = 0; i < nb_mapping; i++) {
|
|
if (mapping[i].ring_class == class &&
|
|
mapping[i].ring_instance == instance)
|
|
return mapping[i].register_name;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
static const char *
|
|
instdone_register_for_ring(const struct intel_device_info *devinfo,
|
|
const char *ring_name)
|
|
{
|
|
enum intel_engine_class class;
|
|
int instance;
|
|
|
|
instance = ring_name_to_class(ring_name, &class);
|
|
if (instance < 0)
|
|
return NULL;
|
|
|
|
switch (class) {
|
|
case INTEL_ENGINE_CLASS_RENDER:
|
|
if (devinfo->ver == 6)
|
|
return "INSTDONE_2";
|
|
else
|
|
return "INSTDONE_1";
|
|
|
|
case INTEL_ENGINE_CLASS_COPY:
|
|
return "BCS_INSTDONE";
|
|
|
|
case INTEL_ENGINE_CLASS_VIDEO:
|
|
switch (instance) {
|
|
case 0:
|
|
return "VCS_INSTDONE";
|
|
case 1:
|
|
return "VCS2_INSTDONE";
|
|
default:
|
|
return NULL;
|
|
}
|
|
|
|
case INTEL_ENGINE_CLASS_VIDEO_ENHANCE:
|
|
return "VECS_INSTDONE";
|
|
|
|
default:
|
|
return NULL;
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static void
|
|
print_pgtbl_err(unsigned int reg, struct intel_device_info *devinfo)
|
|
{
|
|
if (reg & (1 << 26))
|
|
printf(" Invalid Sampler Cache GTT entry\n");
|
|
if (reg & (1 << 24))
|
|
printf(" Invalid Render Cache GTT entry\n");
|
|
if (reg & (1 << 23))
|
|
printf(" Invalid Instruction/State Cache GTT entry\n");
|
|
if (reg & (1 << 22))
|
|
printf(" There is no ROC, this cannot occur!\n");
|
|
if (reg & (1 << 21))
|
|
printf(" Invalid GTT entry during Vertex Fetch\n");
|
|
if (reg & (1 << 20))
|
|
printf(" Invalid GTT entry during Command Fetch\n");
|
|
if (reg & (1 << 19))
|
|
printf(" Invalid GTT entry during CS\n");
|
|
if (reg & (1 << 18))
|
|
printf(" Invalid GTT entry during Cursor Fetch\n");
|
|
if (reg & (1 << 17))
|
|
printf(" Invalid GTT entry during Overlay Fetch\n");
|
|
if (reg & (1 << 8))
|
|
printf(" Invalid GTT entry during Display B Fetch\n");
|
|
if (reg & (1 << 4))
|
|
printf(" Invalid GTT entry during Display A Fetch\n");
|
|
if (reg & (1 << 1))
|
|
printf(" Valid PTE references illegal memory\n");
|
|
if (reg & (1 << 0))
|
|
printf(" Invalid GTT entry during fetch for host\n");
|
|
}
|
|
|
|
static void
|
|
print_snb_fence(struct intel_device_info *devinfo, uint64_t fence)
|
|
{
|
|
printf(" %svalid, %c-tiled, pitch: %i, start: 0x%08x, size: %u\n",
|
|
fence & 1 ? "" : "in",
|
|
fence & (1<<1) ? 'y' : 'x',
|
|
(int)(((fence>>32)&0xfff)+1)*128,
|
|
(uint32_t)fence & 0xfffff000,
|
|
(uint32_t)(((fence>>32)&0xfffff000) - (fence&0xfffff000) + 4096));
|
|
}
|
|
|
|
static void
|
|
print_i965_fence(struct intel_device_info *devinfo, uint64_t fence)
|
|
{
|
|
printf(" %svalid, %c-tiled, pitch: %i, start: 0x%08x, size: %u\n",
|
|
fence & 1 ? "" : "in",
|
|
fence & (1<<1) ? 'y' : 'x',
|
|
(int)(((fence>>2)&0x1ff)+1)*128,
|
|
(uint32_t)fence & 0xfffff000,
|
|
(uint32_t)(((fence>>32)&0xfffff000) - (fence&0xfffff000) + 4096));
|
|
}
|
|
|
|
static void
|
|
print_fence(struct intel_device_info *devinfo, uint64_t fence)
|
|
{
|
|
if (devinfo->ver == 6 || devinfo->ver == 7) {
|
|
return print_snb_fence(devinfo, fence);
|
|
} else if (devinfo->ver == 4 || devinfo->ver == 5) {
|
|
return print_i965_fence(devinfo, fence);
|
|
}
|
|
}
|
|
|
|
static void
|
|
print_fault_data(struct intel_device_info *devinfo, uint32_t data1, uint32_t data0)
|
|
{
|
|
uint64_t address;
|
|
|
|
if (devinfo->ver < 8)
|
|
return;
|
|
|
|
address = ((uint64_t)(data0) << 12) | ((uint64_t)data1 & 0xf) << 44;
|
|
printf(" Address 0x%016" PRIx64 " %s\n", address,
|
|
data1 & (1 << 4) ? "GGTT" : "PPGTT");
|
|
}
|
|
|
|
#define CSI "\e["
|
|
#define NORMAL CSI "0m"
|
|
|
|
struct section {
|
|
uint64_t gtt_offset;
|
|
char *ring_name;
|
|
const char *buffer_name;
|
|
uint32_t *data;
|
|
int dword_count;
|
|
size_t data_offset;
|
|
};
|
|
|
|
#define MAX_SECTIONS 1024
|
|
static unsigned num_sections;
|
|
static struct section sections[MAX_SECTIONS];
|
|
|
|
static int zlib_inflate(uint32_t **ptr, int len)
|
|
{
|
|
struct z_stream_s zstream;
|
|
void *out;
|
|
const uint32_t out_size = 128*4096; /* approximate obj size */
|
|
|
|
memset(&zstream, 0, sizeof(zstream));
|
|
|
|
zstream.next_in = (unsigned char *)*ptr;
|
|
zstream.avail_in = 4*len;
|
|
|
|
if (inflateInit(&zstream) != Z_OK)
|
|
return 0;
|
|
|
|
out = malloc(out_size);
|
|
zstream.next_out = out;
|
|
zstream.avail_out = out_size;
|
|
|
|
do {
|
|
switch (inflate(&zstream, Z_SYNC_FLUSH)) {
|
|
case Z_STREAM_END:
|
|
goto end;
|
|
case Z_OK:
|
|
break;
|
|
default:
|
|
inflateEnd(&zstream);
|
|
return 0;
|
|
}
|
|
|
|
if (zstream.avail_out)
|
|
break;
|
|
|
|
out = realloc(out, 2*zstream.total_out);
|
|
if (out == NULL) {
|
|
inflateEnd(&zstream);
|
|
return 0;
|
|
}
|
|
|
|
zstream.next_out = (unsigned char *)out + zstream.total_out;
|
|
zstream.avail_out = zstream.total_out;
|
|
} while (1);
|
|
end:
|
|
inflateEnd(&zstream);
|
|
free(*ptr);
|
|
*ptr = out;
|
|
return zstream.total_out / 4;
|
|
}
|
|
|
|
static int ascii85_decode(const char *in, uint32_t **out, bool inflate)
|
|
{
|
|
int len = 0, size = 1024;
|
|
|
|
*out = realloc(*out, sizeof(uint32_t)*size);
|
|
if (*out == NULL)
|
|
return 0;
|
|
|
|
while (*in >= '!' && *in <= 'z') {
|
|
uint32_t v = 0;
|
|
|
|
if (len == size) {
|
|
size *= 2;
|
|
*out = realloc(*out, sizeof(uint32_t)*size);
|
|
if (*out == NULL)
|
|
return 0;
|
|
}
|
|
|
|
in = ascii85_decode_char(in, &v);
|
|
(*out)[len++] = v;
|
|
}
|
|
|
|
if (!inflate)
|
|
return len;
|
|
|
|
return zlib_inflate(out, len);
|
|
}
|
|
|
|
static int qsort_hw_context_first(const void *a, const void *b)
|
|
{
|
|
const struct section *sa = a, *sb = b;
|
|
if (strcmp(sa->buffer_name, "HW Context") == 0)
|
|
return -1;
|
|
if (strcmp(sb->buffer_name, "HW Context") == 0)
|
|
return 1;
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
static struct intel_batch_decode_bo
|
|
get_intel_batch_bo(void *user_data, bool ppgtt, uint64_t address)
|
|
{
|
|
for (int s = 0; s < num_sections; s++) {
|
|
if (sections[s].gtt_offset <= address &&
|
|
address < sections[s].gtt_offset + sections[s].dword_count * 4) {
|
|
return (struct intel_batch_decode_bo) {
|
|
.addr = sections[s].gtt_offset,
|
|
.map = sections[s].data,
|
|
.size = sections[s].dword_count * 4,
|
|
};
|
|
}
|
|
}
|
|
|
|
return (struct intel_batch_decode_bo) { .map = NULL };
|
|
}
|
|
|
|
static void
|
|
read_i915_data_file(FILE *file, enum intel_batch_decode_flags batch_flags)
|
|
{
|
|
struct intel_spec *spec = NULL;
|
|
long long unsigned fence;
|
|
int matched;
|
|
char *line = NULL;
|
|
size_t line_size;
|
|
uint32_t offset, value;
|
|
uint32_t ring_head = UINT32_MAX, ring_tail = UINT32_MAX;
|
|
bool ring_wraps = false;
|
|
char *ring_name = NULL;
|
|
struct intel_device_info devinfo;
|
|
uint64_t acthd = 0;
|
|
|
|
while (getline(&line, &line_size, file) > 0) {
|
|
char *new_ring_name = NULL;
|
|
char *dashes;
|
|
|
|
if (sscanf(line, "%m[^ ] command stream\n", &new_ring_name) > 0) {
|
|
free(ring_name);
|
|
ring_name = new_ring_name;
|
|
}
|
|
|
|
if (line[0] == ':' || line[0] == '~') {
|
|
uint32_t *data = NULL;
|
|
int dword_count = ascii85_decode(line+1, &data, line[0] == ':');
|
|
if (dword_count == 0) {
|
|
fprintf(stderr, "ASCII85 decode failed.\n");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
assert(num_sections < MAX_SECTIONS);
|
|
sections[num_sections].data = data;
|
|
sections[num_sections].dword_count = dword_count;
|
|
num_sections++;
|
|
continue;
|
|
}
|
|
|
|
dashes = strstr(line, "---");
|
|
if (dashes) {
|
|
const struct {
|
|
const char *match;
|
|
const char *name;
|
|
} buffers[] = {
|
|
{ "ringbuffer", "ring buffer" },
|
|
{ "ring", "ring buffer" },
|
|
{ "gtt_offset", "batch buffer" },
|
|
{ "batch", "batch buffer" },
|
|
{ "hw context", "HW Context" },
|
|
{ "hw status", "HW status" },
|
|
{ "wa context", "WA context" },
|
|
{ "wa batchbuffer", "WA batch" },
|
|
{ "NULL context", "Kernel context" },
|
|
{ "user", "user" },
|
|
{ "semaphores", "semaphores", },
|
|
{ "guc log buffer", "GuC log", },
|
|
{ NULL, "unknown" },
|
|
}, *b;
|
|
|
|
free(ring_name);
|
|
ring_name = malloc(dashes - line);
|
|
strncpy(ring_name, line, dashes - line);
|
|
ring_name[dashes - line - 1] = '\0';
|
|
|
|
dashes += 4;
|
|
for (b = buffers; b->match; b++) {
|
|
if (strncasecmp(dashes, b->match, strlen(b->match)) == 0)
|
|
break;
|
|
}
|
|
|
|
assert(num_sections < MAX_SECTIONS);
|
|
sections[num_sections].buffer_name = b->name;
|
|
sections[num_sections].ring_name = strdup(ring_name);
|
|
|
|
uint32_t hi, lo;
|
|
dashes = strchr(dashes, '=');
|
|
if (dashes && sscanf(dashes, "= 0x%08x %08x\n", &hi, &lo))
|
|
sections[num_sections].gtt_offset = ((uint64_t) hi) << 32 | lo;
|
|
|
|
continue;
|
|
}
|
|
|
|
matched = sscanf(line, "%08x : %08x", &offset, &value);
|
|
if (matched != 2) {
|
|
uint32_t reg, reg2;
|
|
|
|
/* display reg section is after the ringbuffers, don't mix them */
|
|
printf("%s", line);
|
|
|
|
matched = sscanf(line, "PCI ID: 0x%04x\n", ®);
|
|
if (matched == 0)
|
|
matched = sscanf(line, " PCI ID: 0x%04x\n", ®);
|
|
if (matched == 0) {
|
|
const char *pci_id_start = strstr(line, "PCI ID");
|
|
if (pci_id_start)
|
|
matched = sscanf(pci_id_start, "PCI ID: 0x%04x\n", ®);
|
|
}
|
|
if (matched == 1) {
|
|
if (!intel_get_device_info_from_pci_id(reg, &devinfo)) {
|
|
printf("Unable to identify devid=%x\n", reg);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
printf("Detected GEN%i chipset\n", devinfo.ver);
|
|
|
|
if (xml_path == NULL)
|
|
spec = intel_spec_load(&devinfo);
|
|
else
|
|
spec = intel_spec_load_from_path(&devinfo, xml_path);
|
|
}
|
|
|
|
matched = sscanf(line, " CTL: 0x%08x\n", ®);
|
|
if (matched == 1) {
|
|
print_register(spec,
|
|
register_name_from_ring(ctl_registers,
|
|
ARRAY_SIZE(ctl_registers),
|
|
ring_name), reg);
|
|
}
|
|
|
|
matched = sscanf(line, " HEAD: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
print_head(reg);
|
|
|
|
sscanf(line, " HEAD: 0x%08x [0x%08X]\n", ®, &ring_head);
|
|
sscanf(line, " TAIL: 0x%08x\n", &ring_tail);
|
|
|
|
matched = sscanf(line, " ACTHD: 0x%08x\n", ®);
|
|
if (matched == 1) {
|
|
print_register(spec,
|
|
register_name_from_ring(acthd_registers,
|
|
ARRAY_SIZE(acthd_registers),
|
|
ring_name), reg);
|
|
}
|
|
|
|
matched = sscanf(line, " ACTHD: 0x%08x %08x\n", ®, ®2);
|
|
if (matched == 2)
|
|
acthd = ((uint64_t)reg << 32) | reg2;
|
|
|
|
matched = sscanf(line, " ACTHD_LDW: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
acthd = reg;
|
|
|
|
matched = sscanf(line, " ACTHD_UDW: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
acthd |= (uint64_t)reg << 32;
|
|
|
|
matched = sscanf(line, " PGTBL_ER: 0x%08x\n", ®);
|
|
if (matched == 1 && reg)
|
|
print_pgtbl_err(reg, &devinfo);
|
|
|
|
matched = sscanf(line, " ERROR: 0x%08x\n", ®);
|
|
if (matched == 1 && reg) {
|
|
print_register(spec, "GFX_ARB_ERROR_RPT", reg);
|
|
}
|
|
|
|
matched = sscanf(line, " INSTDONE: 0x%08x\n", ®);
|
|
if (matched == 1) {
|
|
const char *reg_name =
|
|
instdone_register_for_ring(&devinfo, ring_name);
|
|
if (reg_name)
|
|
print_register(spec, reg_name, reg);
|
|
}
|
|
|
|
matched = sscanf(line, " GAM_DONE: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
print_register(spec, "GAM_DONE", reg);
|
|
|
|
matched = sscanf(line, " SC_INSTDONE: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
print_register(spec, "SC_INSTDONE", reg);
|
|
|
|
matched = sscanf(line, " GEN7_SC_INSTDONE: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
print_register(spec, "SC_INSTDONE", reg);
|
|
|
|
matched = sscanf(line, " SC_INSTDONE_EXTRA: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
print_register(spec, "SC_INSTDONE_EXTRA", reg);
|
|
|
|
matched = sscanf(line, " GEN12_SC_INSTDONE_EXTRA: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
print_register(spec, "SC_INSTDONE_EXTRA", reg);
|
|
|
|
matched = sscanf(line, " SC_INSTDONE_EXTRA2: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
print_register(spec, "SC_INSTDONE_EXTRA2", reg);
|
|
|
|
matched = sscanf(line, " GEN12_SC_INSTDONE_EXTRA2: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
print_register(spec, "SC_INSTDONE_EXTRA2", reg);
|
|
|
|
matched = sscanf(line, " SAMPLER_INSTDONE[%*d][%*d]: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
print_register(spec, "SAMPLER_INSTDONE", reg);
|
|
|
|
matched = sscanf(line, " GEN8_SAMPLER_INSTDONE[%*d][%*d]: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
print_register(spec, "SAMPLER_INSTDONE", reg);
|
|
|
|
matched = sscanf(line, " ROW_INSTDONE[%*d][%*d]: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
print_register(spec, "ROW_INSTDONE", reg);
|
|
|
|
matched = sscanf(line, " GEN8_ROW_INSTDONE[%*d][%*d]: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
print_register(spec, "ROW_INSTDONE", reg);
|
|
|
|
matched = sscanf(line, " GEOM_SVGUNIT_INSTDONE[%*d][%*d]: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
print_register(spec, "INSTDONE_GEOM", reg);
|
|
|
|
matched = sscanf(line, " XEHPG_INSTDONE_GEOM_SVG[%*d][%*d]: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
print_register(spec, "INSTDONE_GEOM", reg);
|
|
|
|
matched = sscanf(line, " INSTDONE1: 0x%08x\n", ®);
|
|
if (matched == 1)
|
|
print_register(spec, "INSTDONE_1", reg);
|
|
|
|
matched = sscanf(line, " fence[%i] = %Lx\n", ®, &fence);
|
|
if (matched == 2)
|
|
print_fence(&devinfo, fence);
|
|
|
|
matched = sscanf(line, " FAULT_REG: 0x%08x\n", ®);
|
|
if (matched == 1 && reg) {
|
|
const char *reg_name =
|
|
register_name_from_ring(fault_registers,
|
|
ARRAY_SIZE(fault_registers),
|
|
ring_name);
|
|
if (reg_name == NULL)
|
|
reg_name = "FAULT_REG";
|
|
print_register(spec, reg_name, reg);
|
|
}
|
|
|
|
matched = sscanf(line, " FAULT_TLB_DATA: 0x%08x 0x%08x\n", ®, ®2);
|
|
if (matched == 2)
|
|
print_fault_data(&devinfo, reg, reg2);
|
|
|
|
continue;
|
|
}
|
|
}
|
|
|
|
free(line);
|
|
free(ring_name);
|
|
|
|
/*
|
|
* Order sections so that the hardware context section is visited by the
|
|
* decoder before other command buffers. This will allow the decoder to see
|
|
* persistent state that was set before the current batch.
|
|
*/
|
|
qsort(sections, num_sections, sizeof(sections[0]), qsort_hw_context_first);
|
|
|
|
for (int s = 0; s < num_sections; s++) {
|
|
if (strcmp(sections[s].buffer_name, "ring buffer") != 0)
|
|
continue;
|
|
if (ring_head == UINT32_MAX) {
|
|
ring_head = 0;
|
|
ring_tail = UINT32_MAX;
|
|
}
|
|
if (ring_tail == UINT32_MAX)
|
|
ring_tail = (ring_head - sizeof(uint32_t)) %
|
|
(sections[s].dword_count * sizeof(uint32_t));
|
|
if (ring_head > ring_tail) {
|
|
size_t total_size = sections[s].dword_count * sizeof(uint32_t) -
|
|
ring_head + ring_tail;
|
|
size_t size1 = total_size - ring_tail;
|
|
uint32_t *new_data = calloc(total_size, 1);
|
|
memcpy(new_data, (uint8_t *)sections[s].data + ring_head, size1);
|
|
memcpy((uint8_t *)new_data + size1, sections[s].data, ring_tail);
|
|
free(sections[s].data);
|
|
sections[s].data = new_data;
|
|
ring_head = 0;
|
|
ring_tail = total_size;
|
|
ring_wraps = true;
|
|
}
|
|
sections[s].data_offset = ring_head;
|
|
sections[s].dword_count = (ring_tail - ring_head) / sizeof(uint32_t);
|
|
}
|
|
|
|
for (int s = 0; s < num_sections; s++) {
|
|
if (sections[s].dword_count * 4 > intel_debug_identifier_size() &&
|
|
memcmp(sections[s].data, intel_debug_identifier(),
|
|
intel_debug_identifier_size()) == 0) {
|
|
const struct intel_debug_block_driver *driver_desc =
|
|
intel_debug_get_identifier_block(sections[s].data,
|
|
sections[s].dword_count * 4,
|
|
INTEL_DEBUG_BLOCK_TYPE_DRIVER);
|
|
if (driver_desc) {
|
|
printf("Driver identifier: %s\n",
|
|
(const char *) driver_desc->description);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
struct intel_batch_decode_ctx batch_ctx;
|
|
intel_decoder_init(&batch_ctx, &devinfo, stdout,
|
|
batch_flags, xml_path, get_intel_batch_bo,
|
|
NULL, NULL);
|
|
batch_ctx.acthd = acthd;
|
|
|
|
if (option_dump_kernels)
|
|
batch_ctx.shader_binary = dump_shader_binary;
|
|
|
|
for (int s = 0; s < num_sections; s++) {
|
|
enum intel_engine_class class;
|
|
ring_name_to_class(sections[s].ring_name, &class);
|
|
|
|
printf("--- %s (%s) at 0x%08x %08x\n",
|
|
sections[s].buffer_name, sections[s].ring_name,
|
|
(unsigned) (sections[s].gtt_offset >> 32),
|
|
(unsigned) sections[s].gtt_offset);
|
|
|
|
bool is_ring_buffer = strcmp(sections[s].buffer_name, "ring buffer") == 0;
|
|
if (option_print_all_bb || is_ring_buffer ||
|
|
strcmp(sections[s].buffer_name, "batch buffer") == 0 ||
|
|
strcmp(sections[s].buffer_name, "HW Context") == 0) {
|
|
if (is_ring_buffer && ring_wraps)
|
|
batch_ctx.flags &= ~INTEL_BATCH_DECODE_OFFSETS;
|
|
batch_ctx.engine = class;
|
|
uint8_t *data = (uint8_t *)sections[s].data + sections[s].data_offset;
|
|
uint64_t batch_addr = sections[s].gtt_offset + sections[s].data_offset;
|
|
intel_print_batch(&batch_ctx, (uint32_t *)data,
|
|
sections[s].dword_count * 4, batch_addr,
|
|
is_ring_buffer);
|
|
batch_ctx.flags = batch_flags;
|
|
}
|
|
}
|
|
|
|
intel_batch_decode_ctx_finish(&batch_ctx);
|
|
|
|
for (int s = 0; s < num_sections; s++) {
|
|
free(sections[s].ring_name);
|
|
free(sections[s].data);
|
|
}
|
|
}
|
|
|
|
static void
|
|
setup_pager(void)
|
|
{
|
|
int fds[2];
|
|
pid_t pid;
|
|
|
|
if (!isatty(1))
|
|
return;
|
|
|
|
if (pipe(fds) == -1)
|
|
return;
|
|
|
|
pid = fork();
|
|
if (pid == -1)
|
|
return;
|
|
|
|
if (pid == 0) {
|
|
close(fds[1]);
|
|
dup2(fds[0], 0);
|
|
execlp("less", "less", "-FRSi", NULL);
|
|
}
|
|
|
|
close(fds[0]);
|
|
dup2(fds[1], 1);
|
|
close(fds[1]);
|
|
}
|
|
|
|
static void
|
|
print_help(const char *progname, FILE *file)
|
|
{
|
|
fprintf(file,
|
|
"Usage: %s [OPTION]... [FILE]\n"
|
|
"Parse an Intel GPU i915_error_state.\n"
|
|
"With no FILE, debugfs-dri-directory is probed for in /debug and \n"
|
|
"/sys/kernel/debug. Otherwise, it may be specified. If a file is given,\n"
|
|
"it is parsed as an GPU dump in the format of /debug/dri/0/i915_error_state.\n\n"
|
|
" --help display this help and exit\n"
|
|
" --headers decode only command headers\n"
|
|
" --color[=WHEN] colorize the output; WHEN can be 'auto' (default\n"
|
|
" if omitted), 'always', or 'never'\n"
|
|
" --no-pager don't launch pager\n"
|
|
" --no-offsets don't print instruction offsets\n"
|
|
" --xml=DIR load hardware xml description from directory DIR\n"
|
|
" --all-bb print out all batchbuffers\n"
|
|
" --kernels dump out all kernels (in current directory)\n",
|
|
progname);
|
|
}
|
|
|
|
static FILE *
|
|
try_open_file(const char *format, ...)
|
|
{
|
|
ASSERTED int ret;
|
|
char *filename;
|
|
FILE *file;
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
|
ret = vasprintf(&filename, format, args);
|
|
va_end(args);
|
|
|
|
assert(ret > 0);
|
|
file = fopen(filename, "r");
|
|
free(filename);
|
|
|
|
return file;
|
|
}
|
|
|
|
static FILE *
|
|
open_xe_error_state_file(const char *path)
|
|
{
|
|
FILE *file = NULL;
|
|
|
|
if (path) {
|
|
struct stat st;
|
|
|
|
if (stat(path, &st))
|
|
return NULL;
|
|
|
|
if (S_ISDIR(st.st_mode)) {
|
|
file = try_open_file("%s/data", path);
|
|
} else {
|
|
file = fopen(path, "r");
|
|
}
|
|
} else {
|
|
for (int minor = 0; minor < 64; minor++) {
|
|
file = try_open_file("/sys/class/drm/card%i/device/devcoredump/data", minor);
|
|
if (file)
|
|
break;
|
|
}
|
|
}
|
|
|
|
return file;
|
|
}
|
|
|
|
static FILE *
|
|
open_i915_error_state_file(const char *path)
|
|
{
|
|
FILE *file = NULL;
|
|
struct stat st;
|
|
|
|
if (stat(path, &st))
|
|
return NULL;
|
|
|
|
if (S_ISDIR(st.st_mode)) {
|
|
file = try_open_file("%s/i915_error_state", path);
|
|
if (!file) {
|
|
int minor;
|
|
for (minor = 0; minor < 64; minor++) {
|
|
file = try_open_file("%s/%d/i915_error_state", path, minor);
|
|
if (file)
|
|
break;
|
|
}
|
|
}
|
|
} else {
|
|
file = fopen(path, "r");
|
|
}
|
|
|
|
return file;
|
|
}
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
enum intel_batch_decode_flags batch_flags = 0;
|
|
FILE *file;
|
|
int c, i;
|
|
bool help = false, pager = true;
|
|
char *line = NULL;
|
|
size_t line_size;
|
|
|
|
const struct option aubinator_opts[] = {
|
|
{ "help", no_argument, (int *) &help, true },
|
|
{ "no-pager", no_argument, (int *) &pager, false },
|
|
{ "no-offsets", no_argument, (int *) &option_print_offsets, false },
|
|
{ "headers", no_argument, (int *) &option_full_decode, false },
|
|
{ "color", optional_argument, NULL, 'c' },
|
|
{ "xml", required_argument, NULL, 'x' },
|
|
{ "all-bb", no_argument, (int *) &option_print_all_bb, true },
|
|
{ "kernels", no_argument, (int *) &option_dump_kernels, true },
|
|
{ NULL, 0, NULL, 0 }
|
|
};
|
|
|
|
i = 0;
|
|
while ((c = getopt_long(argc, argv, "", aubinator_opts, &i)) != -1) {
|
|
switch (c) {
|
|
case 'c':
|
|
if (optarg == NULL || strcmp(optarg, "always") == 0)
|
|
option_color = DECODE_COLOR_ALWAYS;
|
|
else if (strcmp(optarg, "never") == 0)
|
|
option_color = DECODE_COLOR_NEVER;
|
|
else if (strcmp(optarg, "auto") == 0)
|
|
option_color = DECODE_COLOR_AUTO;
|
|
else {
|
|
fprintf(stderr, "invalid value for --color: %s", optarg);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
break;
|
|
case 'x':
|
|
xml_path = strdup(optarg);
|
|
break;
|
|
case '?':
|
|
print_help(argv[0], stderr);
|
|
exit(EXIT_FAILURE);
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (help) {
|
|
print_help(argv[0], stderr);
|
|
exit(EXIT_SUCCESS);
|
|
}
|
|
|
|
if (optind >= argc) {
|
|
if (isatty(0)) {
|
|
file = open_i915_error_state_file("/sys/class/drm/card0/error");
|
|
if (!file)
|
|
file = open_i915_error_state_file("/debug/dri");
|
|
if (!file)
|
|
file = open_i915_error_state_file("/sys/kernel/debug/dri");
|
|
if (!file)
|
|
file = open_xe_error_state_file(NULL);
|
|
if (file == NULL) {
|
|
errx(1,
|
|
"Couldn't find i915 or Xe error dump.\n\n"
|
|
"Is debugfs mounted? You might try mounting it with a command such as:\n\n"
|
|
"\tsudo mount -t debugfs debugfs /sys/kernel/debug\n");
|
|
}
|
|
} else {
|
|
file = stdin;
|
|
}
|
|
} else {
|
|
const char *path = argv[optind];
|
|
if (strcmp(path, "-") == 0) {
|
|
file = stdin;
|
|
} else {
|
|
FILE *i915, *xe;
|
|
|
|
i915 = open_i915_error_state_file(path);
|
|
xe = open_xe_error_state_file(path);
|
|
|
|
if (i915 == NULL && xe == NULL) {
|
|
fprintf(stderr, "Error opening %s: %s\n", path, strerror(errno));
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
file = i915 ? i915 : xe;
|
|
}
|
|
}
|
|
|
|
if (option_color == DECODE_COLOR_AUTO)
|
|
option_color = isatty(1) ? DECODE_COLOR_ALWAYS : DECODE_COLOR_NEVER;
|
|
|
|
if (isatty(1) && pager)
|
|
setup_pager();
|
|
|
|
if (option_color == DECODE_COLOR_ALWAYS)
|
|
batch_flags |= INTEL_BATCH_DECODE_IN_COLOR;
|
|
if (option_full_decode)
|
|
batch_flags |= INTEL_BATCH_DECODE_FULL;
|
|
if (option_print_offsets)
|
|
batch_flags |= INTEL_BATCH_DECODE_OFFSETS;
|
|
batch_flags |= INTEL_BATCH_DECODE_FLOATS;
|
|
|
|
getline(&line, &line_size, file);
|
|
rewind(file);
|
|
if (strncmp(line, XE_KMD_ERROR_DUMP_IDENTIFIER, strlen(XE_KMD_ERROR_DUMP_IDENTIFIER)) == 0)
|
|
read_xe_data_file(file, batch_flags, xml_path, option_dump_kernels,
|
|
option_print_all_bb, option_color);
|
|
else
|
|
read_i915_data_file(file, batch_flags);
|
|
free(line);
|
|
fclose(file);
|
|
|
|
/* close the stdout which is opened to write the output */
|
|
fflush(stdout);
|
|
close(1);
|
|
wait(NULL);
|
|
|
|
if (xml_path)
|
|
free(xml_path);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
/* vim: set ts=8 sw=8 tw=0 cino=:0,(0 noet :*/
|