]> sigrok.org Git - libsigrokdecode.git/blame - decoders/tca6408a/pd.py
Rename logic_class to logic_group and output as group-wise RLE
[libsigrokdecode.git] / decoders / tca6408a / pd.py
CommitLineData
d4026957 1##
2## This file is part of the libsigrokdecode project.
3##
4## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
5## Copyright (C) 2013 Matt Ranostay <mranostay@gmail.com>
6## Copyright (C) 2014 alberink <alberink@stampfini.org>
7##
8## This program is free software; you can redistribute it and/or modify
9## it under the terms of the GNU General Public License as published by
10## the Free Software Foundation; either version 2 of the License, or
11## (at your option) any later version.
12##
13## This program is distributed in the hope that it will be useful,
14## but WITHOUT ANY WARRANTY; without even the implied warranty of
15## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16## GNU General Public License for more details.
17##
18## You should have received a copy of the GNU General Public License
4539e9ca 19## along with this program; if not, see <http://www.gnu.org/licenses/>.
d4026957 20##
21
22import sigrokdecode as srd
23
cc780304
UH
24NUM_OUTPUT_CHANNELS = 8
25
26def logic_channels(num_channels):
27 l = []
28 for i in range(num_channels):
460e6cfa 29 l.append(tuple(['p%d' % i, 'P-port input/output %d' % i]))
cc780304
UH
30 return tuple(l)
31
d4026957 32class Decoder(srd.Decoder):
b197383c 33 api_version = 3
d4026957 34 id = 'tca6408a'
98c47d11
UH
35 name = 'TI TCA6408A'
36 longname = 'Texas Instruments TCA6408A'
d4026957 37 desc = 'Texas Instruments TCA6408A 8-bit I²C I/O expander.'
38 license = 'gplv2+'
39 inputs = ['i2c']
6cbba91f 40 outputs = []
d6d8a8a4 41 tags = ['Embedded/industrial', 'IC']
d4026957 42 annotations = (
43 ('register', 'Register type'),
44 ('value', 'Register value'),
e144452b 45 ('warning', 'Warning'),
d4026957 46 )
cc780304 47 logic_output_channels = logic_channels(NUM_OUTPUT_CHANNELS)
d4026957 48 annotation_rows = (
49 ('regs', 'Registers', (0, 1)),
50 ('warnings', 'Warnings', (2,)),
51 )
52
92b7b49f 53 def __init__(self):
10aeb8ea
GS
54 self.reset()
55
56 def reset(self):
d4026957 57 self.state = 'IDLE'
58 self.chip = -1
9b6c0354 59
b8c8dc8a
SA
60 self.logic_output_es = 0
61 self.logic_value = 0
d4026957 62
63 def start(self):
64 self.out_ann = self.register(srd.OUTPUT_ANN)
cc780304 65 self.out_logic = self.register(srd.OUTPUT_LOGIC)
d4026957 66
67 def putx(self, data):
68 self.put(self.ss, self.es, self.out_ann, data)
69
9b6c0354 70 def put_logic_states(self):
b8c8dc8a
SA
71 if (self.es > self.logic_output_es):
72 data = bytes([self.logic_value])
73 self.put(self.logic_output_es, self.es, self.out_logic, [0, data])
74 self.logic_output_es = self.es
cc780304 75
d4026957 76 def handle_reg_0x00(self, b):
77 self.putx([1, ['State of inputs: %02X' % b]])
cc780304 78 # TODO
d4026957 79
80 def handle_reg_0x01(self, b):
cc780304 81 self.putx([1, ['Outputs set: %02X' % b]])
b8c8dc8a 82 self.logic_value = b
d4026957 83
84 def handle_reg_0x02(self, b):
85 self.putx([1, ['Polarity inverted: %02X' % b]])
86
87 def handle_reg_0x03(self, b):
88 self.putx([1, ['Configuration: %02X' % b]])
89
90 def handle_write_reg(self, b):
91 if b == 0:
92 self.putx([0, ['Input port', 'In', 'I']])
93 elif b == 1:
94 self.putx([0, ['Output port', 'Out', 'O']])
95 elif b == 2:
96 self.putx([0, ['Polarity inversion register', 'Pol', 'P']])
97 elif b == 3:
98 self.putx([0, ['Configuration register', 'Conf', 'C']])
99
100 def check_correct_chip(self, addr):
101 if addr not in (0x20, 0x21):
102 self.putx([2, ['Warning: I²C slave 0x%02X not a TCA6408A '
103 'compatible chip.' % addr]])
104 self.state = 'IDLE'
105
106 def decode(self, ss, es, data):
107 cmd, databyte = data
108
109 # Store the start/end samples of this I²C packet.
110 self.ss, self.es = ss, es
111
9b6c0354
SA
112 self.put_logic_states()
113
d4026957 114 # State machine.
115 if self.state == 'IDLE':
116 # Wait for an I²C START condition.
117 if cmd != 'START':
118 return
119 self.state = 'GET SLAVE ADDR'
d4026957 120 elif self.state == 'GET SLAVE ADDR':
18101a31 121 self.chip = databyte
d4026957 122 self.state = 'GET REG ADDR'
123 elif self.state == 'GET REG ADDR':
124 # Wait for a data write (master selects the slave register).
125 if cmd in ('ADDRESS READ', 'ADDRESS WRITE'):
126 self.check_correct_chip(databyte)
127 if cmd != 'DATA WRITE':
128 return
129 self.reg = databyte
130 self.handle_write_reg(self.reg)
131 self.state = 'WRITE IO REGS'
132 elif self.state == 'WRITE IO REGS':
133 # If we see a Repeated Start here, the master wants to read.
134 if cmd == 'START REPEAT':
135 self.state = 'READ IO REGS'
136 return
137 # Otherwise: Get data bytes until a STOP condition occurs.
138 if cmd == 'DATA WRITE':
139 handle_reg = getattr(self, 'handle_reg_0x%02x' % self.reg)
140 handle_reg(databyte)
141 elif cmd == 'STOP':
142 self.state = 'IDLE'
143 self.chip = -1
144 elif self.state == 'READ IO REGS':
145 # Wait for an address read operation.
146 if cmd == 'ADDRESS READ':
147 self.state = 'READ IO REGS2'
148 self.chip = databyte
149 return
150 elif self.state == 'READ IO REGS2':
151 if cmd == 'DATA READ':
152 handle_reg = getattr(self, 'handle_reg_0x%02x' % self.reg)
153 handle_reg(databyte)
154 elif cmd == 'STOP':
155 self.state = 'IDLE'