]> sigrok.org Git - libsigrokdecode.git/blame - decoders/ebr30a_i2c_demux/ebr30a_i2c_demux.py
srd: Add 'api_version = 1' to all PDs.
[libsigrokdecode.git] / decoders / ebr30a_i2c_demux / ebr30a_i2c_demux.py
CommitLineData
8892c768
UH
1##
2## This file is part of the sigrok project.
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
21#
22# TrekStor EBR30-a I2C demux protocol decoder
23#
24# Takes an I2C stream as input and outputs 3 different I2C streams, for the
25# 3 different I2C devices on the TrekStor EBR30-a eBook reader (which are all
26# physically connected to the same SCL/SDA lines).
27#
28# I2C slave addresses:
29#
30# - AXP199 battery management chip: 0x69/0x68 (8bit R/W), 0x34 (7bit)
31# - H8563S RTC chip: 0xa3/0xa2 (8bit R/W), 0x51 (7bit)
32# - Unknown accelerometer chip: 0x2b/0x2a (8bit R/W), 0x15 (7bit)
33#
34
35import sigrokdecode as srd
36
37# I2C devices
38AXP199 = 0
39H8563S = 1
40ACCEL = 2
41
42class Decoder(srd.Decoder):
a2c2afd9 43 api_version = 1
8892c768
UH
44 id = 'ebr30a_i2c_demux'
45 name = 'EBR30-a I2C demux'
46 longname = 'TrekStor EBR30-a I2C demux'
47 desc = 'TODO.'
48 longdesc = 'TODO.'
8892c768
UH
49 license = 'gplv2+'
50 inputs = ['i2c']
51 outputs = ['i2c-axp199', 'i2c-h8563s', 'i2c-accel']
52 probes = []
53 options = {}
54 annotations = []
55
56 def __init__(self, **kwargs):
57 self.packets = []
58 self.stream = -1
59
60 def start(self, metadata):
61 self.out_proto = []
62 self.out_proto.append(self.add(srd.OUTPUT_PROTO, 'i2c-axp199'))
63 self.out_proto.append(self.add(srd.OUTPUT_PROTO, 'i2c-h8563s'))
64 self.out_proto.append(self.add(srd.OUTPUT_PROTO, 'i2c-accel'))
65 # TODO: Annotations?
66
67 def report(self):
68 pass
69
70 # Grab I2C packets into a local cache, until an I2C STOP condition
71 # packet comes along. At some point before that STOP condition, there
72 # will have been an ADDRESS READ or ADDRESS WRITE which contains the
73 # I2C address of the slave that the master wants to talk to.
74 # We use this slave address to figure out which output stream should
75 # get the whole chunk of packets (from START to STOP).
76 def decode(self, ss, es, data):
77
78 cmd, databyte, ack_bit = data
79
80 # Add the I2C packet to our local cache.
81 self.packets += [[ss, es, data]]
82
83 if cmd in ('ADDRESS READ', 'ADDRESS WRITE'):
84 # print(hex(databyte))
85 if databyte == 0x34:
86 self.stream = AXP199
87 elif databyte == 0x51:
88 self.stream = H8563S
89 elif databyte == 0x15:
90 self.stream = ACCEL
91 else:
92 pass # TODO: Error?
93 # TODO: Can there be two ADDRESS READ/WRITE with two different
94 # slave addresses before any STOP occurs?
95 elif cmd == 'STOP':
96 if self.stream != -1:
97 # Send the whole chunk of I2C packets to the correct stream.
98 for p in self.packets:
99 # print(self.out_proto[self.stream], p)
100 self.put(p[0], p[1], self.out_proto[self.stream], p[2])
101 else:
102 print('Error: Could not determine correct stream!') # FIXME
103 self.packets = []
104 self.stream = -1
105