summaryrefslogtreecommitdiff
path: root/decoders/jtag/pd.py
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2014-01-22 22:43:21 +0100
committerUwe Hermann <uwe@hermann-uwe.de>2014-01-28 22:46:05 +0100
commit4c3b1846c9c307c1c35f86d259ddb968ed92718d (patch)
treeae696f3a6321c0dc50bf1d1cfffa54138bd2a428 /decoders/jtag/pd.py
parent37e4c724efa64dd6061f7bb83f126b81da949771 (diff)
downloadlibsigrokdecode-4c3b1846c9c307c1c35f86d259ddb968ed92718d.tar.gz
libsigrokdecode-4c3b1846c9c307c1c35f86d259ddb968ed92718d.zip
All PDs: Improve/fix descriptions.
Diffstat (limited to 'decoders/jtag/pd.py')
-rw-r--r--decoders/jtag/pd.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/decoders/jtag/pd.py b/decoders/jtag/pd.py
index 55a9a1f..ea6887b 100644
--- a/decoders/jtag/pd.py
+++ b/decoders/jtag/pd.py
@@ -22,6 +22,28 @@
import sigrokdecode as srd
+'''
+Protocol output format:
+
+JTAG packet:
+[<packet-type>, <data>]
+
+<packet-type> is one of:
+ - 'NEW STATE': <data> is the new state of the JTAG state machine.
+ Valid values: 'TEST-LOGIC-RESET', 'RUN-TEST/IDLE', 'SELECT-DR-SCAN',
+ 'CAPTURE-DR', 'SHIFT-DR', 'EXIT1-DR', 'PAUSE-DR', 'EXIT2-DR', 'UPDATE-DR',
+ 'SELECT-IR-SCAN', 'CAPTURE-IR', 'SHIFT-IR', 'EXIT1-IR', 'PAUSE-IR',
+ 'EXIT2-IR', 'UPDATE-IR'.
+ - 'IR TDI': Bitstring that was clocked into the IR register.
+ - 'IR TDO': Bitstring that was clocked out of the IR register.
+ - 'DR TDI': Bitstring that was clocked into the DR register.
+ - 'DR TDO': Bitstring that was clocked out of the DR register.
+ - ...
+
+All bitstrings are a sequence of '1' and '0' characters. The right-most
+character in the bitstring is the LSB. Example: '01110001' (1 is LSB).
+'''
+
jtag_states = [
# Intro "tree"
'TEST-LOGIC-RESET', 'RUN-TEST/IDLE',