]> sigrok.org Git - libsigrokdecode.git/blame - decoders/i2c/pd.py
i2c: improve reliability of bitrate estimation (throughput, meta)
[libsigrokdecode.git] / decoders / i2c / pd.py
CommitLineData
0588ed70 1##
50bd5d25 2## This file is part of the libsigrokdecode project.
0588ed70 3##
592f355b 4## Copyright (C) 2010-2016 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
4539e9ca 17## along with this program; if not, see <http://www.gnu.org/licenses/>.
0588ed70
UH
18##
19
0588ed70 20# TODO: Look into arbitration, collision detection, clock synchronisation, etc.
0588ed70
UH
21# TODO: Implement support for inverting SDA/SCL levels (0->1 and 1->0).
22# TODO: Implement support for detecting various bus errors.
23fb2e12 23
647aba6a 24from common.srdhelper import bitpack_msb
677d597b 25import sigrokdecode as srd
b2c19614 26
f1428c4c 27'''
c515eed7 28OUTPUT_PYTHON format:
f1428c4c 29
bf69977d
UH
30Packet:
31[<ptype>, <pdata>]
f1428c4c 32
bf69977d 33<ptype>:
f1428c4c
UH
34 - 'START' (START condition)
35 - 'START REPEAT' (Repeated START condition)
36 - 'ADDRESS READ' (Slave address, read)
37 - 'ADDRESS WRITE' (Slave address, write)
38 - 'DATA READ' (Data, read)
39 - 'DATA WRITE' (Data, write)
40 - 'STOP' (STOP condition)
41 - 'ACK' (ACK bit)
42 - 'NACK' (NACK bit)
bf69977d 43 - 'BITS' (<pdata>: list of data/address bits and their ss/es numbers)
f1428c4c 44
bf69977d 45<pdata> is the data or address byte associated with the 'ADDRESS*' and 'DATA*'
f1428c4c
UH
46command. Slave addresses do not include bit 0 (the READ/WRITE indication bit).
47For example, a slave address field could be 0x51 (instead of 0xa2).
bf69977d 48For 'START', 'START REPEAT', 'STOP', 'ACK', and 'NACK' <pdata> is None.
f1428c4c
UH
49'''
50
01416b98
GS
51# Meaning of table items:
52# command -> [annotation class, annotation text in order of decreasing length]
1541976f 53proto = {
01416b98
GS
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'],
59 'BIT': [5, '{b:1d}'],
60 'ADDRESS READ': [6, 'Address read: {b:02X}', 'AR: {b:02X}', '{b:02X}'],
61 'ADDRESS WRITE': [7, 'Address write: {b:02X}', 'AW: {b:02X}', '{b:02X}'],
62 'DATA READ': [8, 'Data read: {b:02X}', 'DR: {b:02X}', '{b:02X}'],
63 'DATA WRITE': [9, 'Data write: {b:02X}', 'DW: {b:02X}', '{b:02X}'],
15969949 64}
e5080882 65
677d597b 66class Decoder(srd.Decoder):
592f355b 67 api_version = 3
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']
d6d8a8a4 75 tags = ['Embedded/industrial']
6a15597a 76 channels = (
bc5f5a43
BV
77 {'id': 'scl', 'name': 'SCL', 'desc': 'Serial clock line'},
78 {'id': 'sda', 'name': 'SDA', 'desc': 'Serial data line'},
da9bcbd9 79 )
84c1c0b5
BV
80 options = (
81 {'id': 'address_format', 'desc': 'Displayed slave address format',
82 'default': 'shifted', 'values': ('shifted', 'unshifted')},
83 )
da9bcbd9
BV
84 annotations = (
85 ('start', 'Start condition'),
86 ('repeat-start', 'Repeat start condition'),
87 ('stop', 'Stop condition'),
88 ('ack', 'ACK'),
89 ('nack', 'NACK'),
90 ('bit', 'Data/address bit'),
91 ('address-read', 'Address read'),
92 ('address-write', 'Address write'),
93 ('data-read', 'Data read'),
94 ('data-write', 'Data write'),
e144452b 95 ('warning', 'Warning'),
da9bcbd9 96 )
de038c47
UH
97 annotation_rows = (
98 ('bits', 'Bits', (5,)),
e144452b 99 ('addr-data', 'Address/data', (0, 1, 2, 3, 4, 6, 7, 8, 9)),
de038c47
UH
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
92b7b49f 109 def __init__(self):
10aeb8ea
GS
110 self.reset()
111
112 def reset(self):
8d2a9636 113 self.samplerate = None
486b19ce 114 self.ss = self.es = self.ss_byte = -1
14ba515b 115 self.is_write = None
4f139c28 116 self.rem_addr_bytes = None
14ba515b 117 self.is_repeat_start = False
2b716038 118 self.state = 'FIND START'
8d2a9636
BV
119 self.pdu_start = None
120 self.pdu_bits = 0
14ba515b 121 self.data_bits = []
8d2a9636
BV
122
123 def metadata(self, key, value):
124 if key == srd.SRD_CONF_SAMPLERATE:
125 self.samplerate = value
f39d2404 126
8915b346 127 def start(self):
c515eed7 128 self.out_python = self.register(srd.OUTPUT_PYTHON)
8d2a9636 129 self.out_ann = self.register(srd.OUTPUT_ANN)
be6733ca 130 self.out_binary = self.register(srd.OUTPUT_BINARY)
8d2a9636
BV
131 self.out_bitrate = self.register(srd.OUTPUT_META,
132 meta=(int, 'Bitrate', 'Bitrate from Start bit to Stop bit'))
3643fc3f 133
d94ff143 134 def putx(self, data):
de038c47 135 self.put(self.ss, self.es, self.out_ann, data)
d94ff143
UH
136
137 def putp(self, data):
de038c47 138 self.put(self.ss, self.es, self.out_python, data)
d94ff143 139
a929afa6 140 def putb(self, data):
de038c47 141 self.put(self.ss, self.es, self.out_binary, data)
a929afa6 142
592f355b 143 def handle_start(self, pins):
de038c47 144 self.ss, self.es = self.samplenum, self.samplenum
5eb66408
GS
145 if self.is_repeat_start:
146 cmd = 'START REPEAT'
147 else:
148 cmd = 'START'
149 self.pdu_start = self.samplenum
150 self.pdu_bits = 0
d94ff143 151 self.putp([cmd, None])
01416b98
GS
152 cls, texts = proto[cmd][0], proto[cmd][1:]
153 self.putx([cls, texts])
2b716038 154 self.state = 'FIND ADDRESS'
14ba515b
GS
155 self.is_repeat_start = True
156 self.is_write = None
4f139c28 157 self.rem_addr_bytes = None
647aba6a 158 self.data_bits.clear()
7b86f0bc 159
c4975078 160 # Gather 8 bits of data plus the ACK/NACK bit.
592f355b
UH
161 def handle_address_or_data(self, pins):
162 scl, sda = pins
163 self.pdu_bits += 1
164
647aba6a
GS
165 # Accumulate a byte's bits, including its start position.
166 # Accumulate individual bits and their start/end sample numbers
167 # as we see them. Get the start sample number at the time when
168 # the bit value gets sampled. Assume the start of the next bit
169 # as the end sample number of the previous bit. Guess the last
170 # bit's end sample number from the second last bit's width.
171 # (gsi: Shouldn't falling SCL be the end of the bit value?)
172 # Keep the bits in receive order (MSB first) during accumulation.
173 if not self.data_bits:
486b19ce 174 self.ss_byte = self.samplenum
647aba6a
GS
175 if self.data_bits:
176 self.data_bits[-1][2] = self.samplenum
177 self.data_bits.append([sda, self.samplenum, self.samplenum])
178 if len(self.data_bits) < 8:
eb7082c9 179 return
647aba6a
GS
180 self.bitwidth = self.data_bits[-2][2] - self.data_bits[-3][2]
181 self.data_bits[-1][2] += self.bitwidth
7b86f0bc 182
647aba6a
GS
183 # Get the byte value. Address and data are transmitted MSB-first.
184 d = bitpack_msb(self.data_bits, 0)
2b716038 185 if self.state == 'FIND ADDRESS':
4f139c28
GS
186 # The READ/WRITE bit is only in the first address byte, not
187 # in data bytes. Address bit pattern 0b1111_0xxx means that
188 # this is a 10bit slave address, another byte follows. Get
189 # the R/W direction and the address bytes count from the
190 # first byte in the I2C transfer.
191 addr_byte = d
192 if self.rem_addr_bytes is None:
193 if (addr_byte & 0xf8) == 0xf0:
194 self.rem_addr_bytes = 2
195 self.slave_addr_7 = None
196 self.slave_addr_10 = addr_byte & 0x06
197 self.slave_addr_10 <<= 7
198 else:
199 self.rem_addr_bytes = 1
200 self.slave_addr_7 = addr_byte >> 1
201 self.slave_addr_10 = None
202 is_seven = self.slave_addr_7 is not None
203 if self.is_write is None:
204 read_bit = bool(addr_byte & 1)
205 shift_seven = self.options['address_format'] == 'shifted'
206 if is_seven and shift_seven:
207 d = d >> 1
208 self.is_write = False if read_bit else True
209 else:
210 self.slave_addr_10 |= addr_byte
15969949 211
a929afa6 212 bin_class = -1
14ba515b 213 if self.state == 'FIND ADDRESS' and self.is_write:
a2d2aff2 214 cmd = 'ADDRESS WRITE'
a929afa6 215 bin_class = 1
14ba515b 216 elif self.state == 'FIND ADDRESS' and not self.is_write:
a2d2aff2 217 cmd = 'ADDRESS READ'
a929afa6 218 bin_class = 0
14ba515b 219 elif self.state == 'FIND DATA' and self.is_write:
a2d2aff2 220 cmd = 'DATA WRITE'
a929afa6 221 bin_class = 3
14ba515b 222 elif self.state == 'FIND DATA' and not self.is_write:
a2d2aff2 223 cmd = 'DATA READ'
a929afa6 224 bin_class = 2
eb7082c9 225
486b19ce 226 self.ss, self.es = self.ss_byte, self.samplenum + self.bitwidth
de038c47 227
647aba6a
GS
228 # Reverse the list of bits to LSB first order before emitting
229 # annotations and passing bits to upper layers. This may be
230 # unexpected because the protocol is MSB first, but it keeps
231 # backwards compatibility.
232 self.data_bits.reverse()
14ba515b 233 self.putp(['BITS', self.data_bits])
d94ff143 234 self.putp([cmd, d])
de038c47 235
2824e811 236 self.putb([bin_class, bytes([d])])
7b86f0bc 237
01416b98
GS
238 for b, ss, es in self.data_bits:
239 cls, texts = proto['BIT'][0], proto['BIT'][1:]
240 texts = [t.format(b = b) for t in texts]
241 self.put(ss, es, self.out_ann, [cls, texts])
de038c47 242
4f139c28 243 if cmd.startswith('ADDRESS') and is_seven:
de038c47 244 self.ss, self.es = self.samplenum, self.samplenum + self.bitwidth
01416b98 245 cls = proto[cmd][0]
14ba515b 246 w = ['Write', 'Wr', 'W'] if self.is_write else ['Read', 'Rd', 'R']
01416b98 247 self.putx([cls, w])
486b19ce 248 self.ss, self.es = self.ss_byte, self.samplenum
de038c47 249
01416b98
GS
250 cls, texts = proto[cmd][0], proto[cmd][1:]
251 texts = [t.format(b = d) for t in texts]
252 self.putx([cls, texts])
de038c47 253
1b75abfd 254 # Done with this packet.
647aba6a 255 self.data_bits.clear()
2b716038 256 self.state = 'FIND ACK'
7b86f0bc 257
592f355b
UH
258 def get_ack(self, pins):
259 scl, sda = pins
5eb66408
GS
260 # NOTE! Re-uses the last data bit's width for ACK/NAK as well.
261 # Which might be acceptable because this decoder implementation
262 # only gets to handle ACK/NAK after all DATA BITS were seen.
de038c47 263 self.ss, self.es = self.samplenum, self.samplenum + self.bitwidth
d94ff143
UH
264 cmd = 'NACK' if (sda == 1) else 'ACK'
265 self.putp([cmd, None])
01416b98
GS
266 cls, texts = proto[cmd][0], proto[cmd][1:]
267 self.putx([cls, texts])
4f139c28
GS
268 # Slave addresses can span one or two bytes, before data bytes
269 # follow. There can be an arbitrary number of data bytes. Stick
270 # with getting more address bytes if applicable, or enter or
271 # remain in the data phase of the transfer otherwise.
272 if self.rem_addr_bytes:
273 self.rem_addr_bytes -= 1
274 if self.rem_addr_bytes:
275 self.state = 'FIND ADDRESS'
276 else:
277 self.state = 'FIND DATA'
7b86f0bc 278
592f355b 279 def handle_stop(self, pins):
8d2a9636 280 # Meta bitrate
5eb66408
GS
281 if self.samplerate and self.pdu_start:
282 elapsed = self.samplenum - self.pdu_start + 1
283 elapsed /= self.samplerate
8accc30b 284 bitrate = int(1 / elapsed * self.pdu_bits)
5eb66408
GS
285 ss, es = self.pdu_start, self.samplenum
286 self.put(ss, es, self.out_bitrate, bitrate)
287 self.pdu_start = None
288 self.pdu_bits = 0
8d2a9636 289
d94ff143 290 cmd = 'STOP'
de038c47 291 self.ss, self.es = self.samplenum, self.samplenum
d94ff143 292 self.putp([cmd, None])
01416b98
GS
293 cls, texts = proto[cmd][0], proto[cmd][1:]
294 self.putx([cls, texts])
2b716038 295 self.state = 'FIND START'
14ba515b
GS
296 self.is_repeat_start = False
297 self.is_write = None
647aba6a 298 self.data_bits.clear()
7b86f0bc 299
592f355b 300 def decode(self):
592f355b 301 while True:
7b86f0bc 302 # State machine.
2b716038 303 if self.state == 'FIND START':
592f355b
UH
304 # Wait for a START condition (S): SCL = high, SDA = falling.
305 self.handle_start(self.wait({0: 'h', 1: 'f'}))
2b716038 306 elif self.state == 'FIND ADDRESS':
592f355b
UH
307 # Wait for a data bit: SCL = rising.
308 self.handle_address_or_data(self.wait({0: 'r'}))
2b716038 309 elif self.state == 'FIND DATA':
592f355b
UH
310 # Wait for any of the following conditions (or combinations):
311 # a) Data sampling of receiver: SCL = rising, and/or
312 # b) START condition (S): SCL = high, SDA = falling, and/or
313 # c) STOP condition (P): SCL = high, SDA = rising
fcd5d23a 314 pins = self.wait([{0: 'r'}, {0: 'h', 1: 'f'}, {0: 'h', 1: 'r'}])
592f355b
UH
315
316 # Check which of the condition(s) matched and handle them.
317 if self.matched[0]:
318 self.handle_address_or_data(pins)
319 elif self.matched[1]:
320 self.handle_start(pins)
321 elif self.matched[2]:
322 self.handle_stop(pins)
2b716038 323 elif self.state == 'FIND ACK':
592f355b
UH
324 # Wait for a data/ack bit: SCL = rising.
325 self.get_ack(self.wait({0: 'r'}))