]> sigrok.org Git - libsigrokdecode.git/blame - decoders/jtag/pd.py
avr_isp: Add more parts
[libsigrokdecode.git] / decoders / jtag / pd.py
CommitLineData
557a143d 1##
50bd5d25 2## This file is part of the libsigrokdecode project.
557a143d 3##
1d0234b7 4## Copyright (C) 2012-2020 Uwe Hermann <uwe@hermann-uwe.de>
557a143d
UH
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; either version 2 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
4539e9ca 17## along with this program; if not, see <http://www.gnu.org/licenses/>.
557a143d
UH
18##
19
557a143d 20import sigrokdecode as srd
1d0234b7 21from common.srdhelper import SrdStrEnum
557a143d 22
4c3b1846 23'''
c515eed7 24OUTPUT_PYTHON format:
4c3b1846 25
bf69977d
UH
26Packet:
27[<ptype>, <pdata>]
4c3b1846 28
bf69977d
UH
29<ptype>:
30 - 'NEW STATE': <pdata> is the new state of the JTAG state machine.
4c3b1846
UH
31 Valid values: 'TEST-LOGIC-RESET', 'RUN-TEST/IDLE', 'SELECT-DR-SCAN',
32 'CAPTURE-DR', 'SHIFT-DR', 'EXIT1-DR', 'PAUSE-DR', 'EXIT2-DR', 'UPDATE-DR',
33 'SELECT-IR-SCAN', 'CAPTURE-IR', 'SHIFT-IR', 'EXIT1-IR', 'PAUSE-IR',
34 'EXIT2-IR', 'UPDATE-IR'.
35 - 'IR TDI': Bitstring that was clocked into the IR register.
36 - 'IR TDO': Bitstring that was clocked out of the IR register.
37 - 'DR TDI': Bitstring that was clocked into the DR register.
38 - 'DR TDO': Bitstring that was clocked out of the DR register.
4c3b1846 39
36faa6d0
UH
40All bitstrings are a list consisting of two items. The first is a sequence
41of '1' and '0' characters (the right-most character is the LSB. Example:
42'01110001', where 1 is the LSB). The second item is a list of ss/es values
43for each bit that is in the bitstring.
4c3b1846
UH
44'''
45
1d0234b7
UH
46s = 'TEST-LOGIC-RESET RUN-TEST/IDLE \
47 SELECT-DR-SCAN CAPTURE-DR UPDATE-DR PAUSE-DR SHIFT-DR EXIT1-DR EXIT2-DR \
48 SELECT-IR-SCAN CAPTURE-IR UPDATE-IR PAUSE-IR SHIFT-IR EXIT1-IR EXIT2-IR'
49St = SrdStrEnum.from_str('St', s)
50
51jtag_states = [s.value for s in St]
0c0368d0 52
557a143d 53class Decoder(srd.Decoder):
2d557217 54 api_version = 3
557a143d
UH
55 id = 'jtag'
56 name = 'JTAG'
b7a7e6f5 57 longname = 'Joint Test Action Group (IEEE 1149.1)'
6e7a0087 58 desc = 'Protocol for testing, debugging, and flashing ICs.'
557a143d
UH
59 license = 'gplv2+'
60 inputs = ['logic']
61 outputs = ['jtag']
d6d8a8a4 62 tags = ['Debug/trace']
6a15597a 63 channels = (
557a143d
UH
64 {'id': 'tdi', 'name': 'TDI', 'desc': 'Test data input'},
65 {'id': 'tdo', 'name': 'TDO', 'desc': 'Test data output'},
66 {'id': 'tck', 'name': 'TCK', 'desc': 'Test clock'},
67 {'id': 'tms', 'name': 'TMS', 'desc': 'Test mode select'},
da9bcbd9 68 )
6a15597a 69 optional_channels = (
1cc590f7
UH
70 {'id': 'trst', 'name': 'TRST#', 'desc': 'Test reset'},
71 {'id': 'srst', 'name': 'SRST#', 'desc': 'System reset'},
72 {'id': 'rtck', 'name': 'RTCK', 'desc': 'Return clock signal'},
da9bcbd9 73 )
80214a11
UH
74 annotations = tuple([tuple([s.lower(), s]) for s in jtag_states]) + ( \
75 ('bit-tdi', 'Bit (TDI)'),
76 ('bit-tdo', 'Bit (TDO)'),
77 ('bitstring-tdi', 'Bitstring (TDI)'),
78 ('bitstring-tdo', 'Bitstring (TDO)'),
79 )
80 annotation_rows = (
81 ('bits-tdi', 'Bits (TDI)', (16,)),
82 ('bits-tdo', 'Bits (TDO)', (17,)),
e144452b
UH
83 ('bitstrings-tdi', 'Bitstrings (TDI)', (18,)),
84 ('bitstrings-tdo', 'Bitstrings (TDO)', (19,)),
80214a11
UH
85 ('states', 'States', tuple(range(15 + 1))),
86 )
557a143d 87
92b7b49f 88 def __init__(self):
10aeb8ea
GS
89 self.reset()
90
91 def reset(self):
1d0234b7
UH
92 # self.state = St.TEST_LOGIC_RESET
93 self.state = St.RUN_TEST_IDLE
e5edf39f 94 self.oldstate = None
557a143d
UH
95 self.bits_tdi = []
96 self.bits_tdo = []
36faa6d0
UH
97 self.bits_samplenums_tdi = []
98 self.bits_samplenums_tdo = []
0c0368d0 99 self.ss_item = self.es_item = None
80214a11 100 self.ss_bitstring = self.es_bitstring = None
0c0368d0
UH
101 self.saved_item = None
102 self.first = True
80214a11 103 self.first_bit = True
557a143d 104
8915b346 105 def start(self):
c515eed7 106 self.out_python = self.register(srd.OUTPUT_PYTHON)
be465111 107 self.out_ann = self.register(srd.OUTPUT_ANN)
557a143d 108
6b32f928 109 def putx(self, data):
0c0368d0 110 self.put(self.ss_item, self.es_item, self.out_ann, data)
6b32f928
UH
111
112 def putp(self, data):
c515eed7 113 self.put(self.ss_item, self.es_item, self.out_python, data)
6b32f928 114
80214a11
UH
115 def putx_bs(self, data):
116 self.put(self.ss_bitstring, self.es_bitstring, self.out_ann, data)
117
118 def putp_bs(self, data):
119 self.put(self.ss_bitstring, self.es_bitstring, self.out_python, data)
120
557a143d 121 def advance_state_machine(self, tms):
e5edf39f
UH
122 self.oldstate = self.state
123
557a143d 124 # Intro "tree"
1d0234b7
UH
125 if self.state == St.TEST_LOGIC_RESET:
126 self.state = St.TEST_LOGIC_RESET if (tms) else St.RUN_TEST_IDLE
127 elif self.state == St.RUN_TEST_IDLE:
128 self.state = St.SELECT_DR_SCAN if (tms) else St.RUN_TEST_IDLE
557a143d
UH
129
130 # DR "tree"
1d0234b7
UH
131 elif self.state == St.SELECT_DR_SCAN:
132 self.state = St.SELECT_IR_SCAN if (tms) else St.CAPTURE_DR
133 elif self.state == St.CAPTURE_DR:
134 self.state = St.EXIT1_DR if (tms) else St.SHIFT_DR
135 elif self.state == St.SHIFT_DR:
136 self.state = St.EXIT1_DR if (tms) else St.SHIFT_DR
137 elif self.state == St.EXIT1_DR:
138 self.state = St.UPDATE_DR if (tms) else St.PAUSE_DR
139 elif self.state == St.PAUSE_DR:
140 self.state = St.EXIT2_DR if (tms) else St.PAUSE_DR
141 elif self.state == St.EXIT2_DR:
142 self.state = St.UPDATE_DR if (tms) else St.SHIFT_DR
143 elif self.state == St.UPDATE_DR:
144 self.state = St.SELECT_DR_SCAN if (tms) else St.RUN_TEST_IDLE
557a143d
UH
145
146 # IR "tree"
1d0234b7
UH
147 elif self.state == St.SELECT_IR_SCAN:
148 self.state = St.TEST_LOGIC_RESET if (tms) else St.CAPTURE_IR
149 elif self.state == St.CAPTURE_IR:
150 self.state = St.EXIT1_IR if (tms) else St.SHIFT_IR
151 elif self.state == St.SHIFT_IR:
152 self.state = St.EXIT1_IR if (tms) else St.SHIFT_IR
153 elif self.state == St.EXIT1_IR:
154 self.state = St.UPDATE_IR if (tms) else St.PAUSE_IR
155 elif self.state == St.PAUSE_IR:
156 self.state = St.EXIT2_IR if (tms) else St.PAUSE_IR
157 elif self.state == St.EXIT2_IR:
158 self.state = St.UPDATE_IR if (tms) else St.SHIFT_IR
159 elif self.state == St.UPDATE_IR:
160 self.state = St.SELECT_DR_SCAN if (tms) else St.RUN_TEST_IDLE
557a143d 161
2d557217
UH
162 def handle_rising_tck_edge(self, pins):
163 (tdi, tdo, tck, tms, trst, srst, rtck) = pins
164
557a143d
UH
165 # Rising TCK edges always advance the state machine.
166 self.advance_state_machine(tms)
167
35b380b1 168 if self.first:
0c0368d0
UH
169 # Save the start sample and item for later (no output yet).
170 self.ss_item = self.samplenum
171 self.first = False
0c0368d0
UH
172 else:
173 # Output the saved item (from the last CLK edge to the current).
174 self.es_item = self.samplenum
80214a11 175 # Output the old state (from last rising TCK edge to current one).
1d0234b7
UH
176 self.putx([jtag_states.index(self.oldstate.value), [self.oldstate.value]])
177 self.putp(['NEW STATE', self.state.value])
e5edf39f 178
9f111fa9 179 # Upon SHIFT-*/EXIT1-* collect the current TDI/TDO values.
1d0234b7
UH
180 if self.oldstate.value.startswith('SHIFT-') or \
181 self.oldstate.value.startswith('EXIT1-'):
80214a11
UH
182 if self.first_bit:
183 self.ss_bitstring = self.samplenum
184 self.first_bit = False
185 else:
36d499e0
KB
186 self.putx([16, [str(self.bits_tdi[-1])]])
187 self.putx([17, [str(self.bits_tdo[-1])]])
36faa6d0 188 # Use self.samplenum as ES of the previous bit.
36d499e0
KB
189 self.bits_samplenums_tdi[-1][1] = self.samplenum
190 self.bits_samplenums_tdo[-1][1] = self.samplenum
36faa6d0 191
36d499e0
KB
192 self.bits_tdi.append(tdi)
193 self.bits_tdo.append(tdo)
e5edf39f 194
36faa6d0 195 # Use self.samplenum as SS of the current bit.
36d499e0
KB
196 self.bits_samplenums_tdi.append([self.samplenum, -1])
197 self.bits_samplenums_tdo.append([self.samplenum, -1])
36faa6d0 198
9f111fa9 199 # Output all TDI/TDO bits if we just switched to UPDATE-*.
1d0234b7 200 if self.state.value.startswith('UPDATE-'):
e5edf39f 201
80214a11
UH
202 self.es_bitstring = self.samplenum
203
1d0234b7 204 t = self.state.value[-2:] + ' TDI'
36d499e0
KB
205 self.bits_tdi.reverse()
206 self.bits_samplenums_tdi.reverse()
9f111fa9
GH
207 b = ''.join(map(str, self.bits_tdi[1:]))
208 h = ' (0x%x' % int('0b0' + b, 2) + ')'
209 s = t + ': ' + b + h + ', ' + str(len(self.bits_tdi[1:])) + ' bits'
80214a11 210 self.putx_bs([18, [s]])
9f111fa9 211 self.putp_bs([t, [b, self.bits_samplenums_tdi[1:]]])
e5edf39f 212 self.bits_tdi = []
36faa6d0 213 self.bits_samplenums_tdi = []
557a143d 214
1d0234b7 215 t = self.state.value[-2:] + ' TDO'
36d499e0
KB
216 self.bits_tdo.reverse()
217 self.bits_samplenums_tdo.reverse()
9f111fa9
GH
218 b = ''.join(map(str, self.bits_tdo[1:]))
219 h = ' (0x%x' % int('0b0' + b, 2) + ')'
220 s = t + ': ' + b + h + ', ' + str(len(self.bits_tdo[1:])) + ' bits'
80214a11 221 self.putx_bs([19, [s]])
9f111fa9 222 self.putp_bs([t, [b, self.bits_samplenums_tdo[1:]]])
557a143d 223 self.bits_tdo = []
36faa6d0 224 self.bits_samplenums_tdo = []
557a143d 225
80214a11
UH
226 self.first_bit = True
227
228 self.ss_bitstring = self.samplenum
229
230 self.ss_item = self.samplenum
231
2d557217
UH
232 def decode(self):
233 while True:
234 # Wait for a rising edge on TCK.
235 self.handle_rising_tck_edge(self.wait({2: 'r'}))