]> sigrok.org Git - libsigrokdecode.git/blame - decoders/i2cdemux/pd.py
Drop obsolete report() method.
[libsigrokdecode.git] / decoders / i2cdemux / pd.py
CommitLineData
d567790b 1##
50bd5d25 2## This file is part of the libsigrokdecode project.
d567790b
UH
3##
4## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
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
d567790b 21# Generic I2C demultiplexing protocol decoder
d567790b
UH
22
23import sigrokdecode as srd
24
25class Decoder(srd.Decoder):
26 api_version = 1
27 id = 'i2cdemux'
28 name = 'I2C demux'
5a2c4dc4 29 longname = 'I2C demultiplexer'
a465436e 30 desc = 'Demux I2C packets into per-slave-address streams.'
d567790b
UH
31 license = 'gplv2+'
32 inputs = ['i2c']
33 outputs = [] # TODO: Only known at run-time.
34 probes = []
b77614bc 35 optional_probes = []
d567790b
UH
36 options = {}
37 annotations = []
38
39 def __init__(self, **kwargs):
40 self.packets = [] # Local cache of I2C packets
41 self.slaves = [] # List of known slave addresses
42 self.stream = -1 # Current output stream
43 self.streamcount = 0 # Number of created output streams
44
8915b346 45 def start(self):
d567790b
UH
46 self.out_proto = []
47
d567790b
UH
48 # Grab I2C packets into a local cache, until an I2C STOP condition
49 # packet comes along. At some point before that STOP condition, there
50 # will have been an ADDRESS READ or ADDRESS WRITE which contains the
51 # I2C address of the slave that the master wants to talk to.
52 # We use this slave address to figure out which output stream should
53 # get the whole chunk of packets (from START to STOP).
54 def decode(self, ss, es, data):
55
1b75abfd 56 cmd, databyte = data
d567790b
UH
57
58 # Add the I2C packet to our local cache.
7f7ea759 59 self.packets.append([ss, es, data])
d567790b
UH
60
61 if cmd in ('ADDRESS READ', 'ADDRESS WRITE'):
62 if databyte in self.slaves:
63 self.stream = self.slaves.index(databyte)
64 return
65
66 # We're never seen this slave, add a new stream.
7f7ea759 67 self.slaves.append(databyte)
be465111
BV
68 self.out_proto.append(self.register(srd.OUTPUT_PYTHON,
69 proto_id='i2c-%s' % hex(databyte)))
d567790b
UH
70 self.stream = self.streamcount
71 self.streamcount += 1
72 elif cmd == 'STOP':
73 if self.stream == -1:
74 raise Exception('Invalid stream!') # FIXME?
75
76 # Send the whole chunk of I2C packets to the correct stream.
77 for p in self.packets:
78 self.put(p[0], p[1], self.out_proto[self.stream], p[2])
79
80 self.packets = []
81 self.stream = -1
decde15e
UH
82 else:
83 pass # Do nothing, only add the I2C packet to our cache.
d567790b 84