intel/aubinator_error_decode: Decode more registers.
Decode SC_INSTDONE, ROW_INSTDONE and SAMPLER_INSTDONE. Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
This commit is contained in:
@@ -540,6 +540,18 @@ read_data_file(FILE *file)
|
||||
print_register(spec, reg_name, reg);
|
||||
}
|
||||
|
||||
matched = sscanf(line, " SC_INSTDONE: 0x%08x\n", ®);
|
||||
if (matched == 1)
|
||||
print_register(spec, "SC_INSTDONE", reg);
|
||||
|
||||
matched = sscanf(line, " 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, " INSTDONE1: 0x%08x\n", ®);
|
||||
if (matched == 1)
|
||||
print_register(spec, "INSTDONE_1", reg);
|
||||
|
||||
Reference in New Issue
Block a user