]> sigrok.org Git - libsigrokdecode.git/blob - decoders/srd_usb.py
25736395e4463019ad68e4fb9c4e49def3654e1e
[libsigrokdecode.git] / decoders / srd_usb.py
1 ##
2 ## This file is part of the sigrok project.
3 ##
4 ## Copyright (C) 2011 Gareth McMullin <gareth@blacksphere.co.nz>
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
17 ## along with this program; if not, write to the Free Software
18 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19 ##
20
21 #
22 # USB Full-speed protocol decoder
23 #
24 # Full-speed USB signalling consists of two signal lines, both driven at 3.3V
25 # logic levels. The signals are DP (D+) and DM (D-), and normally operate in
26 # differential mode.
27 # The state where DP=1,DM=0 is J, the state DP=0,DM=1 is K.
28 # A state SE0 is defined where DP=DM=0. This common mode signal is used to
29 # signal a reset or end of packet.
30 #
31 # Data transmitted on the USB is encoded with NRZI. A transition from J to K
32 # or vice-versa indicates a logic 0, while no transition indicates a logic 1.
33 # If 6 ones are transmitted consecutively, a zero is inserted to force a
34 # transition. This is known as bit stuffing. Data is transferred at a rate
35 # of 12Mbit/s. The SE0 transmitted to signal an end-of-packet is two bit
36 # intervals long.
37 #
38 # Details:
39 # https://en.wikipedia.org/wiki/USB
40 # http://www.usb.org/developers/docs/
41 #
42
43 import sigrokdecode as srd
44
45 # States
46 SE0, J, K, SE1 = 0, 1, 2, 3
47 syms = {
48         (0, 0): SE0,
49         (1, 0): J,
50         (0, 1): K,
51         (1, 1): SE1,
52 }
53
54 def bitstr_to_num(bitstr):
55     if not bitstr:
56         return 0
57     l = list(bitstr)
58     l.reverse()
59     return int(''.join(l), 2)
60
61 def packet_decode(packet):
62     pids = {
63         '10000111': 'OUT',      # Tokens
64         '10010110': 'IN',
65         '10100101': 'SOF',
66         '10110100': 'SETUP',
67         '11000011': 'DATA0',    # Data
68         '11010010': 'DATA1',
69         '01001011': 'ACK',      # Handshake
70         '01011010': 'NAK',
71         '01111000': 'STALL',
72         '01101001': 'NYET',
73     }
74
75     sync = packet[:8]
76     pid = packet[8:16]
77     pid = pids.get(pid, pid)
78
79     # Remove CRC.
80     if pid in ('OUT', 'IN', 'SOF', 'SETUP'):
81         data = packet[16:-5]
82         if pid == 'SOF':
83             data = str(bitstr_to_num(data))
84         else:
85             dev = bitstr_to_num(data[:7])
86             ep = bitstr_to_num(data[7:])
87             data = 'DEV %d EP %d' % (dev, ep)
88
89     elif pid in ('DATA0', 'DATA1'):
90         data = packet[16:-16]
91         tmp = ''
92         while data:
93             tmp += '%02X ' % bitstr_to_num(data[:8])
94             data = data[8:]
95         data = tmp
96     else:
97         data = packet[16:]
98
99     if sync != '00000001':
100         return 'SYNC INVALID!'
101
102     return pid + ' ' + data
103
104 class Decoder(srd.Decoder):
105     id = 'usb'
106     name = 'USB'
107     longname = '...longname...'
108     desc = 'Universal Serial Bus'
109     longdesc = '...longdesc...'
110     author = 'Gareth McMullin'
111     email = 'gareth@blacksphere.co.nz'
112     license = 'gplv2+'
113     inputs = ['logic']
114     outputs = ['usb']
115     probes = [
116         {'id': 'dp', 'name': 'D+', 'desc': 'USB D+ signal'},
117         {'id': 'dm', 'name': 'D-', 'desc': 'USB D- signal'},
118     ]
119     options = {}
120     annotations = []
121
122     def __init__(self):
123         pass
124
125     def start(self, metadata):
126         self.rate = metadata['samplerate']
127         # self.out_proto = self.add(srd.OUTPUT_PROTO, 'usb')
128         self.out_ann = self.add(srd.OUTPUT_ANN, 'usb')
129         if self.rate < 48000000:
130             raise Exception('Sample rate not sufficient for USB decoding')
131         # Initialise decoder state.
132         self.sym = J
133         self.scount = 0
134         self.packet = ''
135
136     def decode(self, ss, es, data):
137         out = []
138
139         # FIXME
140         for (samplenum, (dp, dm, x, y, z, a)) in data:
141
142             self.scount += 1
143
144             sym = syms[dp, dm]
145             if sym == self.sym:
146                 continue
147
148             if self.scount == 1:
149                 # We ignore single sample width pulses.
150                 # I sometimes get these with the OLS.
151                 self.sym = sym
152                 self.scount = 0
153                 continue
154
155             # How many bits since the last transition?
156             if self.packet or self.sym != J:
157                 bitcount = int((self.scount - 1) * 12000000 / self.rate)
158             else:
159                 bitcount = 0
160
161             if self.sym == SE0:
162                 if bitcount == 1:
163                     # End-Of-Packet (EOP)
164                     out += [{'type': 'usb', 'data': self.packet,
165                              'display': packet_decode(self.packet)}]
166                 else:
167                     # Longer than EOP, assume reset.
168                     out += [{'type': 'usb', 'display': 'RESET'}]
169                 self.scount = 0
170                 self.sym = sym
171                 self.packet = ''
172                 continue
173
174             # Add bits to the packet string.
175             self.packet += '1' * bitcount
176             # Handle bit stuffing.
177             if bitcount < 6 and sym != SE0:
178                 self.packet += '0'
179             elif bitcount > 6:
180                 out += [{'type': 'usb', 'display': 'BIT STUFF ERROR'}]
181
182             self.scount = 0
183             self.sym = sym
184
185         if out != []:
186             # self.put(0, 0, self.out_proto, out_proto)
187             self.put(0, 0, self.out_ann, out)
188