## ## This file is part of the libsigrokdecode project. ## ## Copyright (C) 2011 Gareth McMullin ## Copyright (C) 2012-2013 Uwe Hermann ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ## # USB (low-speed and full-speed) packet protocol decoder import sigrokdecode as srd ''' Protocol output format: Packet: [, ] , : - 'SYNC', - 'PID', - 'ADDR', - 'EP', - 'CRC5', - 'CRC16', - 'EOP', - 'FRAMENUM', - 'DATABYTE', - 'HUBADDR', - 'SC', - 'PORT', - 'S', - 'E/U', - 'ET', - 'PACKET', [, , ] , , : - 'TOKEN', 'OUT', [, , , , , ] - 'TOKEN', 'IN', [, , , , , ] - 'TOKEN', 'SOF', [, , , , ] - 'TOKEN', 'SETUP', [, , , , , ] - 'DATA', 'DATA0', [, , , , ] - 'DATA', 'DATA1', [, , , , ] - 'DATA', 'DATA2', [, , , , ] - 'DATA', 'MDATA', [, , , , ] - 'HANDSHAKE', 'ACK', [, , ] - 'HANDSHAKE', 'NACK', [, , ] - 'HANDSHAKE', 'STALL', [, , ] - 'HANDSHAKE', 'NYET', [, , ] - 'SPECIAL', 'PRE', [, , , , , ] - 'SPECIAL', 'ERR', [, , ] - 'SPECIAL', 'SPLIT', [, , , , , , , , , ] - 'SPECIAL', 'PING', [, , , , , ] - 'SPECIAL', 'Reserved', None : SYNC field bitstring, normally '00000001' (8 chars). : Packet ID bitstring, e.g. '11000011' for DATA0 (8 chars). : Address field number, 0-127 (7 bits). : Endpoint number, 0-15 (4 bits). : CRC-5 number (5 bits). : CRC-16 number (16 bits). : End of packet marker. List of symbols, usually ['SE0', 'SE0', 'J']. : USB (micro)frame number, 0-2047 (11 bits). : A single data byte, e.g. 0x55. : List of data bytes, e.g. [0x55, 0xaa, 0x99] (0 - 1024 bytes). : TODO : TODO : TODO : TODO : TODO : TODO ''' # Packet IDs (PIDs). # The first 4 bits are the 'packet type' field, the last 4 bits are the # 'check field' (each bit in the check field must be the inverse of the resp. # bit in the 'packet type' field; if not, that's a 'PID error'). # For the 4-bit strings, the left-most '1' or '0' is the LSB, i.e. it's sent # to the bus first. pids = { # Tokens '10000111': ['OUT', 'Address & EP number in host-to-function transaction'], '10010110': ['IN', 'Address & EP number in function-to-host transaction'], '10100101': ['SOF', 'Start-Of-Frame marker & frame number'], '10110100': ['SETUP', 'Address & EP number in host-to-function transaction for SETUP to a control pipe'], # Data # Note: DATA2 and MDATA are HS-only. '11000011': ['DATA0', 'Data packet PID even'], '11010010': ['DATA1', 'Data packet PID odd'], '11100001': ['DATA2', 'Data packet PID HS, high bandwidth isosynchronous transaction in a microframe'], '11110000': ['MDATA', 'Data packet PID HS for split and high-bandwidth isosynchronous transactions'], # Handshake '01001011': ['ACK', 'Receiver accepts error-free packet'], '01011010': ['NAK', 'Receiver cannot accept or transmitter cannot send'], '01111000': ['STALL', 'EP halted or control pipe request unsupported'], '01101001': ['NYET', 'No response yet from receiver'], # Special '00111100': ['PRE', 'Host-issued preamble; enables downstream bus traffic to low-speed devices'], '00111100': ['ERR', 'Split transaction error handshake'], '00011110': ['SPLIT', 'HS split transaction token'], '00101101': ['PING', 'HS flow control probe for a bulk/control EP'], '00001111': ['Reserved', 'Reserved PID'], } def get_category(pidname): if pidname in ('OUT', 'IN', 'SOF', 'SETUP'): return 'TOKEN' elif pidname in ('DATA0', 'DATA1', 'DATA2', 'MDATA'): return 'DATA' elif pidname in ('ACK', 'NACK', 'STALL', 'NYET'): return 'HANDSHAKE' else: return 'SPECIAL' def bitstr_to_num(bitstr): if not bitstr: return 0 l = list(bitstr) l.reverse() return int(''.join(l), 2) class Decoder(srd.Decoder): api_version = 1 id = 'usb_packet' name = 'USB packet' longname = 'Universal Serial Bus (LS/FS) packet' desc = 'USB (low-speed and full-speed) packet protocol.' license = 'gplv2+' inputs = ['usb_signalling'] outputs = ['usb_packet'] probes = [] optional_probes = [] options = { 'signalling': ['Signalling', 'full-speed'], } annotations = [ ['Text', 'Human-readable text'] ] def __init__(self): self.samplenum = 0 self.bits = [] self.packet = [] self.packet_summary = '' self.ss = self.es = None self.ss_packet = self.es_packet = None self.state = 'WAIT FOR SOP' def putpb(self, data): self.put(self.ss, self.es, self.out_proto, data) def putb(self, data): self.put(self.ss, self.es, self.out_ann, data) def putpp(self, data): self.put(self.ss_packet, self.es_packet, self.out_proto, data) def putp(self, data): self.put(self.ss_packet, self.es_packet, self.out_ann, data) def start(self): self.out_proto = self.add(srd.OUTPUT_PYTHON, 'usb_packet') self.out_ann = self.add(srd.OUTPUT_ANN, 'usb_packet') def report(self): pass def handle_packet(self): packet = '' for (bit, ss, es) in self.bits: packet += bit # Bits[0:7]: SYNC sync = packet[:7 + 1] self.ss, self.es = self.bits[0][1], self.bits[7][2] # The SYNC pattern for low-speed/full-speed is KJKJKJKK (00000001). if sync != '00000001': self.putpb(['SYNC ERROR', sync]) self.putb([0, ['SYNC ERROR: %s' % sync]]) else: self.putpb(['SYNC', sync]) self.putb([0, ['SYNC: %s' % sync]]) self.packet.append(sync) # Bits[8:15]: PID pid = packet[8:15 + 1] pidname = pids.get(pid, (pid, ''))[0] self.ss, self.es = self.bits[8][1], self.bits[15][2] self.putpb(['PID', pidname]) self.putb([0, ['PID: %s' % pidname]]) self.packet.append(pid) self.packet_summary += pidname if pidname in ('OUT', 'IN', 'SOF', 'SETUP', 'PRE', 'PING'): if pidname == 'SOF': # Bits[16:26]: Framenum framenum = bitstr_to_num(packet[16:26 + 1]) self.ss, self.es = self.bits[16][1], self.bits[26][2] self.putpb(['FRAMENUM', framenum]) self.putb([0, ['Frame: %d' % framenum]]) self.packet.append(framenum) self.packet_summary += ' %d' % framenum else: # Bits[16:22]: Addr addr = bitstr_to_num(packet[16:22 + 1]) self.ss, self.es = self.bits[16][1], self.bits[22][2] self.putpb(['ADDR', addr]) self.putb([0, ['Addr: %d' % addr]]) self.packet.append(addr) self.packet_summary += ' ADDR %d' % addr # Bits[23:26]: EP ep = bitstr_to_num(packet[23:26 + 1]) self.ss, self.es = self.bits[23][1], self.bits[26][2] self.putpb(['EP', ep]) self.putb([0, ['EP: %d' % ep]]) self.packet.append(ep) self.packet_summary += ' EP %d' % ep # Bits[27:31]: CRC5 crc5 = bitstr_to_num(packet[27:31 + 1]) self.ss, self.es = self.bits[27][1], self.bits[31][2] self.putpb(['CRC5', crc5]) self.putb([0, ['CRC5: 0x%02x' % crc5]]) self.packet.append(crc5) elif pidname in ('DATA0', 'DATA1', 'DATA2', 'MDATA'): # Bits[16:packetlen-16]: Data data = packet[16:-16] # TODO: len(data) must be a multiple of 8. databytes = [] self.packet_summary += ' [' for i in range(0, len(data), 8): db = bitstr_to_num(data[i:i + 8]) self.ss, self.es = self.bits[16 + i][1], self.bits[23 + i][2] self.putpb(['DATABYTE', db]) self.putb([0, ['Databyte: %02x' % db]]) databytes.append(db) self.packet_summary += ' %02x' % db data = data[8:] self.packet_summary += ' ]' # Convenience proto output (no annotation) for all bytes together. self.ss, self.es = self.bits[16][1], self.bits[-16][2] self.putpb(['DATABYTES', databytes]) self.packet.append(databytes) # Bits[packetlen-16:packetlen]: CRC16 crc16 = bitstr_to_num(packet[-16:]) self.ss, self.es = self.bits[-16][1], self.bits[-1][2] self.putpb(['CRC16', crc16]) self.putb([0, ['CRC16: 0x%04x' % crc16]]) self.packet.append(crc16) elif pidname in ('ACK', 'NAK', 'STALL', 'NYET', 'ERR'): pass # Nothing to do, these only have SYNC+PID+EOP fields. else: pass # TODO: Handle 'SPLIT' and possibly 'Reserved' packets. # Output a (summary of) the whole packet. pcategory, pname, pinfo = get_category(pidname), pidname, self.packet self.putpp(['PACKET', [pcategory, pname, pinfo]]) self.putp([0, ['PACKET: %s' % self.packet_summary]]) self.packet, self.packet_summary = [], '' def decode(self, ss, es, data): (ptype, pdata) = data # We only care about certain packet types for now. if ptype not in ('SOP', 'BIT', 'EOP'): return # State machine. if self.state == 'WAIT FOR SOP': if ptype != 'SOP': return self.ss_packet = ss self.state = 'GET BIT' elif self.state == 'GET BIT': if ptype == 'BIT': self.bits.append([pdata, ss, es]) elif ptype == 'EOP': self.es_packet = es self.handle_packet() self.bits, self.state = [], 'WAIT FOR SOP' else: pass # TODO: Error else: raise Exception('Invalid state: %s' % self.state)