X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Farm_etmv3%2Fpd.py;h=6649b46e021dd781c0a5a06098fb5fc0af012fb8;hb=HEAD;hp=b038604ba7e44f5d5d0a5b292448748496f42224;hpb=4c180223a8ae12feb7bc3601e07e848fb9cdb493;p=libsigrokdecode.git diff --git a/decoders/arm_etmv3/pd.py b/decoders/arm_etmv3/pd.py index b038604..a0bbd94 100644 --- a/decoders/arm_etmv3/pd.py +++ b/decoders/arm_etmv3/pd.py @@ -130,34 +130,34 @@ class Decoder(srd.Decoder): api_version = 3 id = 'arm_etmv3' name = 'ARM ETMv3' - longname = 'ARM Embedded Trace Macroblock' - desc = 'Decode ETM instruction trace packets.' + longname = 'ARM Embedded Trace Macroblock v3' + desc = 'ARM ETM v3 instruction trace protocol.' license = 'gplv2+' inputs = ['uart'] - outputs = ['arm_etmv3'] - tags = ['Logic', 'MCU Debugging'] + outputs = [] + tags = ['Debug/trace'] annotations = ( ('trace', 'Trace info'), - ('branch', 'Branches'), - ('exception', 'Exceptions'), + ('branch', 'Branch'), + ('exception', 'Exception'), ('execution', 'Instruction execution'), ('data', 'Data access'), ('pc', 'Program counter'), - ('instr_e', 'Executed instructions'), - ('instr_n', 'Not executed instructions'), + ('instr_e', 'Executed instruction'), + ('instr_n', 'Not executed instruction'), ('source', 'Source code'), ('location', 'Current location'), ('function', 'Current function'), ) annotation_rows = ( - ('trace', 'Trace info', (0,)), + ('traces', 'Trace info', (0,)), ('flow', 'Code flow', (1, 2, 3,)), - ('data', 'Data access', (4,)), - ('pc', 'Program counter', (5,)), - ('instruction', 'Instructions', (6, 7,)), - ('source', 'Source code', (8,)), - ('location', 'Current location', (9,)), - ('function', 'Current function', (10,)), + ('data-vals', 'Data access', (4,)), + ('pc-vals', 'Program counters', (5,)), + ('instructions', 'Instructions', (6, 7,)), + ('sources', 'Source code', (8,)), + ('locations', 'Current locations', (9,)), + ('functions', 'Current functions', (10,)), ) options = ( {'id': 'objdump', 'desc': 'objdump path',