]> sigrok.org Git - libsigrokdecode.git/blame - decoders/ebr30a_i2c_demux.py
srd: Decoders: Remove author/email fields.
[libsigrokdecode.git] / decoders / 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):
43 id = 'ebr30a_i2c_demux'
44 name = 'EBR30-a I2C demux'
45 longname = 'TrekStor EBR30-a I2C demux'
46 desc = 'TODO.'
47 longdesc = 'TODO.'
8892c768
UH
48 license = 'gplv2+'
49 inputs = ['i2c']
50 outputs = ['i2c-axp199', 'i2c-h8563s', 'i2c-accel']
51 probes = []
52 options = {}
53 annotations = []
54
55 def __init__(self, **kwargs):
56 self.packets = []
57 self.stream = -1
58
59 def start(self, metadata):
60 self.out_proto = []
61 self.out_proto.append(self.add(srd.OUTPUT_PROTO, 'i2c-axp199'))
62 self.out_proto.append(self.add(srd.OUTPUT_PROTO, 'i2c-h8563s'))
63 self.out_proto.append(self.add(srd.OUTPUT_PROTO, 'i2c-accel'))
64 # TODO: Annotations?
65
66 def report(self):
67 pass
68
69 # Grab I2C packets into a local cache, until an I2C STOP condition
70 # packet comes along. At some point before that STOP condition, there
71 # will have been an ADDRESS READ or ADDRESS WRITE which contains the
72 # I2C address of the slave that the master wants to talk to.
73 # We use this slave address to figure out which output stream should
74 # get the whole chunk of packets (from START to STOP).
75 def decode(self, ss, es, data):
76
77 cmd, databyte, ack_bit = data
78
79 # Add the I2C packet to our local cache.
80 self.packets += [[ss, es, data]]
81
82 if cmd in ('ADDRESS READ', 'ADDRESS WRITE'):
83 # print(hex(databyte))
84 if databyte == 0x34:
85 self.stream = AXP199
86 elif databyte == 0x51:
87 self.stream = H8563S
88 elif databyte == 0x15:
89 self.stream = ACCEL
90 else:
91 pass # TODO: Error?
92 # TODO: Can there be two ADDRESS READ/WRITE with two different
93 # slave addresses before any STOP occurs?
94 elif cmd == 'STOP':
95 if self.stream != -1:
96 # Send the whole chunk of I2C packets to the correct stream.
97 for p in self.packets:
98 # print(self.out_proto[self.stream], p)
99 self.put(p[0], p[1], self.out_proto[self.stream], p[2])
100 else:
101 print('Error: Could not determine correct stream!') # FIXME
102 self.packets = []
103 self.stream = -1
104