]> sigrok.org Git - libsigrokdecode.git/blame - decoders/i2c/pd.py
Change PD options to be a tuple of dictionaries.
[libsigrokdecode.git] / decoders / i2c / pd.py
CommitLineData
0588ed70 1##
50bd5d25 2## This file is part of the libsigrokdecode project.
0588ed70 3##
de038c47 4## Copyright (C) 2010-2014 Uwe Hermann <uwe@hermann-uwe.de>
0588ed70
UH
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
0588ed70 21# TODO: Look into arbitration, collision detection, clock synchronisation, etc.
9e95e4d8 22# TODO: Implement support for 10bit slave addresses.
0588ed70
UH
23# TODO: Implement support for inverting SDA/SCL levels (0->1 and 1->0).
24# TODO: Implement support for detecting various bus errors.
23fb2e12 25
677d597b 26import sigrokdecode as srd
b2c19614 27
f1428c4c 28'''
c515eed7 29OUTPUT_PYTHON format:
f1428c4c 30
ab4aa33c 31I²C packet:
f1428c4c
UH
32[<cmd>, <data>]
33
34<cmd> is one of:
35 - 'START' (START condition)
36 - 'START REPEAT' (Repeated START condition)
37 - 'ADDRESS READ' (Slave address, read)
38 - 'ADDRESS WRITE' (Slave address, write)
39 - 'DATA READ' (Data, read)
40 - 'DATA WRITE' (Data, write)
41 - 'STOP' (STOP condition)
42 - 'ACK' (ACK bit)
43 - 'NACK' (NACK bit)
de038c47 44 - 'BITS' (<data>: list of data/address bits and their ss/es numbers)
f1428c4c
UH
45
46<data> is the data or address byte associated with the 'ADDRESS*' and 'DATA*'
47command. Slave addresses do not include bit 0 (the READ/WRITE indication bit).
48For example, a slave address field could be 0x51 (instead of 0xa2).
49For 'START', 'START REPEAT', 'STOP', 'ACK', and 'NACK' <data> is None.
50'''
51
d94ff143 52# CMD: [annotation-type-index, long annotation, short annotation]
1541976f 53proto = {
d94ff143
UH
54 'START': [0, 'Start', 'S'],
55 'START REPEAT': [1, 'Start repeat', 'Sr'],
56 'STOP': [2, 'Stop', 'P'],
57 'ACK': [3, 'ACK', 'A'],
58 'NACK': [4, 'NACK', 'N'],
de038c47
UH
59 'BIT': [5, 'Bit', 'B'],
60 'ADDRESS READ': [6, 'Address read', 'AR'],
61 'ADDRESS WRITE': [7, 'Address write', 'AW'],
62 'DATA READ': [8, 'Data read', 'DR'],
63 'DATA WRITE': [9, 'Data write', 'DW'],
15969949 64}
e5080882 65
677d597b 66class Decoder(srd.Decoder):
a2c2afd9 67 api_version = 1
67e847fd 68 id = 'i2c'
ab4aa33c 69 name = 'I²C'
9a12a6e7 70 longname = 'Inter-Integrated Circuit'
a465436e 71 desc = 'Two-wire, multi-master, serial bus.'
f39d2404
UH
72 license = 'gplv2+'
73 inputs = ['logic']
74 outputs = ['i2c']
bc5f5a43
BV
75 probes = [
76 {'id': 'scl', 'name': 'SCL', 'desc': 'Serial clock line'},
77 {'id': 'sda', 'name': 'SDA', 'desc': 'Serial data line'},
78 ]
b77614bc 79 optional_probes = []
84c1c0b5
BV
80 options = (
81 {'id': 'address_format', 'desc': 'Displayed slave address format',
82 'default': 'shifted', 'values': ('shifted', 'unshifted')},
83 )
e97b6ef5 84 annotations = [
fbd226c3
BV
85 ['start', 'Start condition'],
86 ['repeat-start', 'Repeat start condition'],
87 ['stop', 'Stop condition'],
88 ['ack', 'ACK'],
89 ['nack', 'NACK'],
de038c47 90 ['bit', 'Data/address bit'],
fbd226c3
BV
91 ['address-read', 'Address read'],
92 ['address-write', 'Address write'],
93 ['data-read', 'Data read'],
94 ['data-write', 'Data write'],
95 ['warnings', 'Human-readable warnings'],
15969949 96 ]
de038c47
UH
97 annotation_rows = (
98 ('bits', 'Bits', (5,)),
99 ('addr-data', 'Address/Data', (0, 1, 2, 3, 4, 6, 7, 8, 9)),
100 ('warnings', 'Warnings', (10,)),
101 )
a929afa6 102 binary = (
5cb2cb02
BV
103 ('address-read', 'Address read'),
104 ('address-write', 'Address write'),
105 ('data-read', 'Data read'),
106 ('data-write', 'Data write'),
a929afa6 107 )
0588ed70 108
3643fc3f 109 def __init__(self, **kwargs):
8d2a9636 110 self.samplerate = None
de038c47 111 self.ss = self.es = self.byte_ss = -1
c4975078 112 self.samplenum = None
f39d2404
UH
113 self.bitcount = 0
114 self.databyte = 0
115 self.wr = -1
5dd9af5b 116 self.is_repeat_start = 0
2b716038 117 self.state = 'FIND START'
de038c47 118 self.oldscl = self.oldsda = 1
d94ff143 119 self.oldpins = [1, 1]
8d2a9636
BV
120 self.pdu_start = None
121 self.pdu_bits = 0
de038c47 122 self.bits = []
8d2a9636
BV
123
124 def metadata(self, key, value):
125 if key == srd.SRD_CONF_SAMPLERATE:
126 self.samplerate = value
f39d2404 127
8915b346 128 def start(self):
c515eed7 129 self.out_python = self.register(srd.OUTPUT_PYTHON)
8d2a9636 130 self.out_ann = self.register(srd.OUTPUT_ANN)
be6733ca 131 self.out_binary = self.register(srd.OUTPUT_BINARY)
8d2a9636
BV
132 self.out_bitrate = self.register(srd.OUTPUT_META,
133 meta=(int, 'Bitrate', 'Bitrate from Start bit to Stop bit'))
3643fc3f 134
d94ff143 135 def putx(self, data):
de038c47 136 self.put(self.ss, self.es, self.out_ann, data)
d94ff143
UH
137
138 def putp(self, data):
de038c47 139 self.put(self.ss, self.es, self.out_python, data)
d94ff143 140
a929afa6 141 def putb(self, data):
de038c47 142 self.put(self.ss, self.es, self.out_binary, data)
a929afa6 143
7b86f0bc 144 def is_start_condition(self, scl, sda):
eb7082c9 145 # START condition (S): SDA = falling, SCL = high
7b86f0bc
UH
146 if (self.oldsda == 1 and sda == 0) and scl == 1:
147 return True
148 return False
149
150 def is_data_bit(self, scl, sda):
eb7082c9 151 # Data sampling of receiver: SCL = rising
7b86f0bc
UH
152 if self.oldscl == 0 and scl == 1:
153 return True
154 return False
155
156 def is_stop_condition(self, scl, sda):
eb7082c9 157 # STOP condition (P): SDA = rising, SCL = high
7b86f0bc
UH
158 if (self.oldsda == 0 and sda == 1) and scl == 1:
159 return True
160 return False
161
e5080882 162 def found_start(self, scl, sda):
de038c47 163 self.ss, self.es = self.samplenum, self.samplenum
8d2a9636
BV
164 self.pdu_start = self.samplenum
165 self.pdu_bits = 0
c4975078 166 cmd = 'START REPEAT' if (self.is_repeat_start == 1) else 'START'
d94ff143
UH
167 self.putp([cmd, None])
168 self.putx([proto[cmd][0], proto[cmd][1:]])
2b716038 169 self.state = 'FIND ADDRESS'
7b86f0bc 170 self.bitcount = self.databyte = 0
5dd9af5b 171 self.is_repeat_start = 1
7b86f0bc 172 self.wr = -1
de038c47 173 self.bits = []
7b86f0bc 174
c4975078 175 # Gather 8 bits of data plus the ACK/NACK bit.
e5080882 176 def found_address_or_data(self, scl, sda):
7b86f0bc
UH
177 # Address and data are transmitted MSB-first.
178 self.databyte <<= 1
179 self.databyte |= sda
180
de038c47 181 # Remember the start of the first data/address bit.
c4975078 182 if self.bitcount == 0:
de038c47
UH
183 self.byte_ss = self.samplenum
184
185 # Store individual bits and their start/end samplenumbers.
186 # In the list, index 0 represents the LSB (I²C transmits MSB-first).
187 self.bits.insert(0, [sda, self.samplenum, self.samplenum])
188 if self.bitcount > 0:
189 self.bits[1][2] = self.samplenum
190 if self.bitcount == 7:
191 self.bitwidth = self.bits[1][2] - self.bits[2][2]
192 self.bits[0][2] += self.bitwidth
c4975078 193
7b86f0bc 194 # Return if we haven't collected all 8 + 1 bits, yet.
de038c47
UH
195 if self.bitcount < 7:
196 self.bitcount += 1
eb7082c9 197 return
7b86f0bc 198
d94ff143 199 d = self.databyte
2b716038 200 if self.state == 'FIND ADDRESS':
7b86f0bc 201 # The READ/WRITE bit is only in address bytes, not data bytes.
bf1c3f4d 202 self.wr = 0 if (self.databyte & 1) else 1
d94ff143
UH
203 if self.options['address_format'] == 'shifted':
204 d = d >> 1
15969949 205
a929afa6 206 bin_class = -1
2b716038 207 if self.state == 'FIND ADDRESS' and self.wr == 1:
a2d2aff2 208 cmd = 'ADDRESS WRITE'
a929afa6 209 bin_class = 1
2b716038 210 elif self.state == 'FIND ADDRESS' and self.wr == 0:
a2d2aff2 211 cmd = 'ADDRESS READ'
a929afa6 212 bin_class = 0
2b716038 213 elif self.state == 'FIND DATA' and self.wr == 1:
a2d2aff2 214 cmd = 'DATA WRITE'
a929afa6 215 bin_class = 3
2b716038 216 elif self.state == 'FIND DATA' and self.wr == 0:
a2d2aff2 217 cmd = 'DATA READ'
a929afa6 218 bin_class = 2
eb7082c9 219
de038c47
UH
220 self.ss, self.es = self.byte_ss, self.samplenum + self.bitwidth
221
222 self.putp(['BITS', self.bits])
d94ff143 223 self.putp([cmd, d])
de038c47 224
a929afa6 225 self.putb((bin_class, bytes([d])))
7b86f0bc 226
de038c47
UH
227 for bit in self.bits:
228 self.put(bit[1], bit[2], self.out_ann, [5, ['%d' % bit[0]]])
229
230 if cmd.startswith('ADDRESS'):
231 self.ss, self.es = self.samplenum, self.samplenum + self.bitwidth
232 w = ['Write', 'Wr', 'W'] if self.wr else ['Read', 'Rd', 'R']
233 self.putx([proto[cmd][0], w])
234 self.ss, self.es = self.byte_ss, self.samplenum
235
236 self.putx([proto[cmd][0], ['%s: %02X' % (proto[cmd][1], d),
237 '%s: %02X' % (proto[cmd][2], d), '%02X' % d]])
238
1b75abfd 239 # Done with this packet.
1b75abfd 240 self.bitcount = self.databyte = 0
de038c47 241 self.bits = []
2b716038 242 self.state = 'FIND ACK'
7b86f0bc 243
1b75abfd 244 def get_ack(self, scl, sda):
de038c47 245 self.ss, self.es = self.samplenum, self.samplenum + self.bitwidth
d94ff143
UH
246 cmd = 'NACK' if (sda == 1) else 'ACK'
247 self.putp([cmd, None])
248 self.putx([proto[cmd][0], proto[cmd][1:]])
1b75abfd
BV
249 # There could be multiple data bytes in a row, so either find
250 # another data byte or a STOP condition next.
2b716038 251 self.state = 'FIND DATA'
7b86f0bc 252
e5080882 253 def found_stop(self, scl, sda):
8d2a9636
BV
254 # Meta bitrate
255 elapsed = 1 / float(self.samplerate) * (self.samplenum - self.pdu_start + 1)
256 bitrate = int(1 / elapsed * self.pdu_bits)
de038c47 257 self.put(self.byte_ss, self.samplenum, self.out_bitrate, bitrate)
8d2a9636 258
d94ff143 259 cmd = 'STOP'
de038c47 260 self.ss, self.es = self.samplenum, self.samplenum
d94ff143
UH
261 self.putp([cmd, None])
262 self.putx([proto[cmd][0], proto[cmd][1:]])
2b716038 263 self.state = 'FIND START'
5dd9af5b 264 self.is_repeat_start = 0
7b86f0bc 265 self.wr = -1
de038c47 266 self.bits = []
7b86f0bc 267
2b9837d9 268 def decode(self, ss, es, data):
8d2a9636
BV
269 if self.samplerate is None:
270 raise Exception("Cannot decode without samplerate.")
2fcd7c22
UH
271 for (self.samplenum, pins) in data:
272
273 # Ignore identical samples early on (for performance reasons).
274 if self.oldpins == pins:
275 continue
276 self.oldpins, (scl, sda) = pins, pins
f39d2404 277
8d2a9636
BV
278 self.pdu_bits += 1
279
7b86f0bc 280 # State machine.
2b716038 281 if self.state == 'FIND START':
7b86f0bc 282 if self.is_start_condition(scl, sda):
e5080882 283 self.found_start(scl, sda)
2b716038 284 elif self.state == 'FIND ADDRESS':
7b86f0bc 285 if self.is_data_bit(scl, sda):
e5080882 286 self.found_address_or_data(scl, sda)
2b716038 287 elif self.state == 'FIND DATA':
7b86f0bc 288 if self.is_data_bit(scl, sda):
e5080882 289 self.found_address_or_data(scl, sda)
7b86f0bc 290 elif self.is_start_condition(scl, sda):
e5080882 291 self.found_start(scl, sda)
7b86f0bc 292 elif self.is_stop_condition(scl, sda):
e5080882 293 self.found_stop(scl, sda)
2b716038 294 elif self.state == 'FIND ACK':
1b75abfd
BV
295 if self.is_data_bit(scl, sda):
296 self.get_ack(scl, sda)
7b86f0bc 297 else:
0eeeb544 298 raise Exception('Invalid state: %s' % self.state)
f39d2404
UH
299
300 # Save current SDA/SCL values for the next round.
de038c47 301 self.oldscl, self.oldsda = scl, sda
f39d2404 302