]> sigrok.org Git - libsigrokdecode.git/blame - decoders/usb_signalling/pd.py
Change PD options to be a tuple of dictionaries.
[libsigrokdecode.git] / decoders / usb_signalling / pd.py
CommitLineData
2dc6d41c 1##
50bd5d25 2## This file is part of the libsigrokdecode project.
2dc6d41c
UH
3##
4## Copyright (C) 2011 Gareth McMullin <gareth@blacksphere.co.nz>
7d4b5fac 5## Copyright (C) 2012-2013 Uwe Hermann <uwe@hermann-uwe.de>
2dc6d41c
UH
6##
7## This program is free software; you can redistribute it and/or modify
8## it under the terms of the GNU General Public License as published by
9## the Free Software Foundation; either version 2 of the License, or
10## (at your option) any later version.
11##
12## This program is distributed in the hope that it will be useful,
13## but WITHOUT ANY WARRANTY; without even the implied warranty of
14## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15## GNU General Public License for more details.
16##
17## You should have received a copy of the GNU General Public License
18## along with this program; if not, write to the Free Software
19## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20##
21
2dc6d41c
UH
22import sigrokdecode as srd
23
a56b8fe1 24'''
c515eed7 25OUTPUT_PYTHON format:
a56b8fe1
UH
26
27Packet:
28[<ptype>, <pdata>]
29
30<ptype>, <pdata>:
31 - 'SOP', None
32 - 'SYM', <sym>
33 - 'BIT', <bit>
34 - 'STUFF BIT', None
35 - 'EOP', None
a56b8fe1
UH
36
37<sym>:
38 - 'J', 'K', 'SE0', or 'SE1'
39
40<bit>:
41 - 0 or 1
42 - Note: Symbols like SE0, SE1, and the J that's part of EOP don't yield 'BIT'.
a56b8fe1
UH
43'''
44
d1970f14 45# Low-/full-speed symbols.
2dc6d41c 46# Note: Low-speed J and K are inverted compared to the full-speed J and K!
7dc75721
UH
47symbols = {
48 'low-speed': {
2dc6d41c
UH
49 # (<dp>, <dm>): <symbol/state>
50 (0, 0): 'SE0',
51 (1, 0): 'K',
52 (0, 1): 'J',
53 (1, 1): 'SE1',
7dc75721
UH
54 },
55 'full-speed': {
2dc6d41c
UH
56 # (<dp>, <dm>): <symbol/state>
57 (0, 0): 'SE0',
58 (1, 0): 'J',
59 (0, 1): 'K',
60 (1, 1): 'SE1',
7dc75721 61 },
2dc6d41c
UH
62}
63
5bb55598
UH
64bitrates = {
65 'low-speed': 1500000, # 1.5Mb/s (+/- 1.5%)
66 'full-speed': 12000000, # 12Mb/s (+/- 0.25%)
67}
68
2dc6d41c
UH
69class Decoder(srd.Decoder):
70 api_version = 1
71 id = 'usb_signalling'
72 name = 'USB signalling'
73 longname = 'Universal Serial Bus (LS/FS) signalling'
9e1437a0 74 desc = 'USB (low-speed and full-speed) signalling protocol.'
2dc6d41c
UH
75 license = 'gplv2+'
76 inputs = ['logic']
77 outputs = ['usb_signalling']
78 probes = [
79 {'id': 'dp', 'name': 'D+', 'desc': 'USB D+ signal'},
80 {'id': 'dm', 'name': 'D-', 'desc': 'USB D- signal'},
81 ]
82 optional_probes = []
84c1c0b5
BV
83 options = (
84 {'id': 'signalling', 'desc': 'Signalling',
85 'default': 'full-speed', 'values': ('full-speed', 'low-speed')},
86 )
2dc6d41c 87 annotations = [
9059125f 88 ['sym', 'Symbol'],
edad8134
UH
89 ['sop', 'Start of packet (SOP)'],
90 ['eop', 'End of packet (EOP)'],
91 ['bit', 'Bit'],
92 ['stuffbit', 'Stuff bit'],
2dc6d41c 93 ]
066d6594
UH
94 annotation_rows = (
95 ('bits', 'Bits', (1, 2, 3, 4)),
96 ('symbols', 'Symbols', (0,)),
97 )
2dc6d41c
UH
98
99 def __init__(self):
f372d597 100 self.samplerate = None
d1970f14 101 self.oldsym = 'J' # The "idle" state is J.
fdd5ee5e
UH
102 self.ss_sop = None
103 self.ss_block = None
2dc6d41c 104 self.samplenum = 0
2dc6d41c 105 self.syms = []
5bb55598
UH
106 self.bitrate = None
107 self.bitwidth = None
d1970f14
UH
108 self.bitnum = 0
109 self.samplenum_target = None
2fcd7c22 110 self.oldpins = None
d1970f14
UH
111 self.consecutive_ones = 0
112 self.state = 'IDLE'
2dc6d41c 113
f372d597 114 def start(self):
c515eed7 115 self.out_python = self.register(srd.OUTPUT_PYTHON)
be465111 116 self.out_ann = self.register(srd.OUTPUT_ANN)
f372d597
BV
117
118 def metadata(self, key, value):
119 if key == srd.SRD_CONF_SAMPLERATE:
120 self.samplerate = value
121 self.bitrate = bitrates[self.options['signalling']]
122 self.bitwidth = float(self.samplerate) / float(self.bitrate)
123 self.halfbit = int(self.bitwidth / 2)
2dc6d41c 124
d1970f14 125 def putpx(self, data):
c515eed7 126 self.put(self.samplenum, self.samplenum, self.out_python, data)
7d4b5fac
UH
127
128 def putx(self, data):
129 self.put(self.samplenum, self.samplenum, self.out_ann, data)
130
fdd5ee5e
UH
131 def putpm(self, data):
132 s, h = self.samplenum, self.halfbit
c515eed7 133 self.put(self.ss_block - h, s + h, self.out_python, data)
fdd5ee5e
UH
134
135 def putm(self, data):
136 s, h = self.samplenum, self.halfbit
9059125f 137 self.put(self.ss_block - h, s + h, self.out_ann, data)
fdd5ee5e 138
d1970f14 139 def putpb(self, data):
fdd5ee5e 140 s, h = self.samplenum, self.halfbit
c515eed7 141 self.put(s - h, s + h, self.out_python, data)
d1970f14
UH
142
143 def putb(self, data):
fdd5ee5e
UH
144 s, h = self.samplenum, self.halfbit
145 self.put(s - h, s + h, self.out_ann, data)
d1970f14
UH
146
147 def set_new_target_samplenum(self):
148 bitpos = self.ss_sop + (self.bitwidth / 2)
149 bitpos += self.bitnum * self.bitwidth
150 self.samplenum_target = int(bitpos)
151
152 def wait_for_sop(self, sym):
153 # Wait for a Start of Packet (SOP), i.e. a J->K symbol change.
154 if sym != 'K':
155 self.oldsym = sym
156 return
157 self.ss_sop = self.samplenum
158 self.set_new_target_samplenum()
159 self.putpx(['SOP', None])
edad8134 160 self.putx([1, ['SOP']])
d1970f14
UH
161 self.state = 'GET BIT'
162
163 def handle_bit(self, sym, b):
164 if self.consecutive_ones == 6 and b == '0':
9059125f 165 # Stuff bit.
a56b8fe1 166 self.putpb(['STUFF BIT', None])
066d6594
UH
167 self.putb([4, ['SB: %s' % b]])
168 self.putb([0, ['%s' % sym]])
d1970f14
UH
169 self.consecutive_ones = 0
170 else:
9059125f 171 # Normal bit (not a stuff bit).
a56b8fe1 172 self.putpb(['BIT', b])
066d6594
UH
173 self.putb([3, ['%s' % b]])
174 self.putb([0, ['%s' % sym]])
d1970f14
UH
175 if b == '1':
176 self.consecutive_ones += 1
177 else:
178 self.consecutive_ones = 0
179
180 def get_eop(self, sym):
181 # EOP: SE0 for >= 1 bittime (usually 2 bittimes), then J.
182 self.syms.append(sym)
183 self.putpb(['SYM', sym])
184 self.putb([0, ['%s' % sym]])
185 self.bitnum += 1
186 self.set_new_target_samplenum()
187 self.oldsym = sym
188 if self.syms[-2:] == ['SE0', 'J']:
9059125f 189 # Got an EOP.
fdd5ee5e
UH
190 self.putpm(['EOP', None])
191 self.putm([2, ['EOP']])
9059125f 192 self.bitnum, self.syms, self.state = 0, [], 'IDLE'
d1970f14
UH
193 self.consecutive_ones = 0
194
195 def get_bit(self, sym):
196 if sym == 'SE0':
197 # Start of an EOP. Change state, run get_eop() for this bit.
198 self.state = 'GET EOP'
fdd5ee5e 199 self.ss_block = self.samplenum
d1970f14
UH
200 self.get_eop(sym)
201 return
202 self.syms.append(sym)
203 self.putpb(['SYM', sym])
204 b = '0' if self.oldsym != sym else '1'
205 self.handle_bit(sym, b)
206 self.bitnum += 1
207 self.set_new_target_samplenum()
208 self.oldsym = sym
209
2dc6d41c 210 def decode(self, ss, es, data):
f372d597
BV
211 if self.samplerate is None:
212 raise Exception("Cannot decode without samplerate.")
2fcd7c22 213 for (self.samplenum, pins) in data:
d1970f14
UH
214 # State machine.
215 if self.state == 'IDLE':
216 # Ignore identical samples early on (for performance reasons).
217 if self.oldpins == pins:
218 continue
219 self.oldpins = pins
220 sym = symbols[self.options['signalling']][tuple(pins)]
221 self.wait_for_sop(sym)
222 elif self.state in ('GET BIT', 'GET EOP'):
223 # Wait until we're in the middle of the desired bit.
224 if self.samplenum < self.samplenum_target:
225 continue
226 sym = symbols[self.options['signalling']][tuple(pins)]
227 if self.state == 'GET BIT':
228 self.get_bit(sym)
229 elif self.state == 'GET EOP':
230 self.get_eop(sym)
2dc6d41c 231 else:
d1970f14 232 raise Exception('Invalid state: %s' % self.state)
2dc6d41c 233