]> sigrok.org Git - libsigrokdecode.git/blame - decoders/usb_signalling/usb_signalling.py
decoder onewire: some annotation cleanup
[libsigrokdecode.git] / decoders / usb_signalling / usb_signalling.py
CommitLineData
2dc6d41c
UH
1##
2## This file is part of the sigrok project.
3##
4## Copyright (C) 2011 Gareth McMullin <gareth@blacksphere.co.nz>
5## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
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
22# USB signalling (low-speed and full-speed) protocol decoder
23
24import sigrokdecode as srd
25
26# Low-/full-speed symbols (used as states of our state machine, too).
27# Note: Low-speed J and K are inverted compared to the full-speed J and K!
28symbols_ls = {
29 # (<dp>, <dm>): <symbol/state>
30 (0, 0): 'SE0',
31 (1, 0): 'K',
32 (0, 1): 'J',
33 (1, 1): 'SE1',
34}
35symbols_fs = {
36 # (<dp>, <dm>): <symbol/state>
37 (0, 0): 'SE0',
38 (1, 0): 'J',
39 (0, 1): 'K',
40 (1, 1): 'SE1',
41}
42
43class Decoder(srd.Decoder):
44 api_version = 1
45 id = 'usb_signalling'
46 name = 'USB signalling'
47 longname = 'Universal Serial Bus (LS/FS) signalling'
48 desc = 'USB 1.x (low-speed and full-speed) signalling protocol.'
49 license = 'gplv2+'
50 inputs = ['logic']
51 outputs = ['usb_signalling']
52 probes = [
53 {'id': 'dp', 'name': 'D+', 'desc': 'USB D+ signal'},
54 {'id': 'dm', 'name': 'D-', 'desc': 'USB D- signal'},
55 ]
56 optional_probes = []
57 options = {
58 'signalling': ['Signalling', 'full-speed'],
59 }
60 annotations = [
61 ['Text', 'Human-readable text']
62 ]
63
64 def __init__(self):
65 self.sym = 'J' # The "idle" state is J.
66 self.samplenum = 0
67 self.scount = 0
68 self.packet = ''
69 self.syms = []
70
71 def start(self, metadata):
72 self.samplerate = metadata['samplerate']
73 self.out_proto = self.add(srd.OUTPUT_PROTO, 'usb_signalling')
74 self.out_ann = self.add(srd.OUTPUT_ANN, 'usb_signalling')
75
76 def report(self):
77 pass
78
79 def decode(self, ss, es, data):
80 for (self.samplenum, (dp, dm)) in data:
81
82 # Note: self.samplenum is the absolute sample number, whereas
83 # self.scount only counts the number of samples since the
84 # last change in the D+/D- lines.
85 self.scount += 1
86
87 if self.options['signalling'] == 'low-speed':
88 sym = symbols_ls[dp, dm]
89 elif self.options['signalling'] == 'full-speed':
90 sym = symbols_fs[dp, dm]
91
92 self.put(0, 0, self.out_ann, [0, [sym]])
93 self.put(0, 0, self.out_proto, ['SYM', sym])
94
95 # Wait for a symbol change (i.e., change in D+/D- lines).
96 if sym == self.sym:
97 continue
98
99 ## # Debug code:
100 ## self.syms.append(sym + ' ')
101 ## if len(self.syms) == 16:
102 ## self.put(0, 0, self.out_ann, [0, [''.join(self.syms)]])
103 ## self.syms = []
104 # continue
105
106 # How many bits since the last transition?
107 if self.packet != '' or self.sym != 'J':
108 if self.options['signalling'] == 'low-speed':
109 bitrate = 1500000 # 1.5Mb/s (+/- 1.5%)
110 elif self.options['signalling'] == 'full-speed':
111 bitrate = 12000000 # 12Mb/s (+/- 0.25%)
112 bitcount = int((self.scount - 1) * bitrate / self.samplerate)
113 else:
114 bitcount = 0
115
116 if self.sym == 'SE0':
117 if bitcount == 1:
118 # End-Of-Packet (EOP)
119 # self.put(0, 0, self.out_ann,
120 # [0, [packet_decode(self.packet), self.packet]])
121 if self.packet != '': # FIXME?
122 self.put(0, 0, self.out_ann, [0, ['PACKET: %s' % self.packet]])
123 self.put(0, 0, self.out_proto, ['PACKET', self.packet])
124 else:
125 # Longer than EOP, assume reset.
126 self.put(0, 0, self.out_ann, [0, ['RESET']])
127 self.put(0, 0, self.out_proto, ['RESET', None])
128 # self.put(0, 0, self.out_ann, [0, [self.packet]])
129 self.scount = 0
130 self.sym = sym
131 self.packet = ''
132 continue
133
134 # Add bits to the packet string.
135 self.packet += '1' * bitcount
136
137 # Handle bit stuffing.
138 if bitcount < 6 and sym != 'SE0':
139 self.packet += '0'
140 elif bitcount > 6:
141 self.put(0, 0, self.out_ann, [0, ['BIT STUFF ERROR']])
142 self.put(0, 0, self.out_proto, ['BIT STUFF ERROR', None])
143
144 self.scount = 0
145 self.sym = sym
146