]> sigrok.org Git - libsigrokdecode.git/blame - decoders/i2c/pd.py
avr_isp: Add more parts
[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.
e7c6af6e
GS
49For 'BITS' <pdata> is a sequence of tuples of bit values and their start and
50stop positions, in LSB first order (although the I2C protocol is MSB first).
f1428c4c
UH
51'''
52
01416b98
GS
53# Meaning of table items:
54# command -> [annotation class, annotation text in order of decreasing length]
1541976f 55proto = {
01416b98
GS
56 'START': [0, 'Start', 'S'],
57 'START REPEAT': [1, 'Start repeat', 'Sr'],
58 'STOP': [2, 'Stop', 'P'],
59 'ACK': [3, 'ACK', 'A'],
60 'NACK': [4, 'NACK', 'N'],
61 'BIT': [5, '{b:1d}'],
62 'ADDRESS READ': [6, 'Address read: {b:02X}', 'AR: {b:02X}', '{b:02X}'],
63 'ADDRESS WRITE': [7, 'Address write: {b:02X}', 'AW: {b:02X}', '{b:02X}'],
64 'DATA READ': [8, 'Data read: {b:02X}', 'DR: {b:02X}', '{b:02X}'],
65 'DATA WRITE': [9, 'Data write: {b:02X}', 'DW: {b:02X}', '{b:02X}'],
782c35b0 66 'WARN': [10, '{text}'],
15969949 67}
e5080882 68
677d597b 69class Decoder(srd.Decoder):
592f355b 70 api_version = 3
67e847fd 71 id = 'i2c'
ab4aa33c 72 name = 'I²C'
9a12a6e7 73 longname = 'Inter-Integrated Circuit'
a465436e 74 desc = 'Two-wire, multi-master, serial bus.'
f39d2404
UH
75 license = 'gplv2+'
76 inputs = ['logic']
77 outputs = ['i2c']
d6d8a8a4 78 tags = ['Embedded/industrial']
6a15597a 79 channels = (
bc5f5a43
BV
80 {'id': 'scl', 'name': 'SCL', 'desc': 'Serial clock line'},
81 {'id': 'sda', 'name': 'SDA', 'desc': 'Serial data line'},
da9bcbd9 82 )
84c1c0b5
BV
83 options = (
84 {'id': 'address_format', 'desc': 'Displayed slave address format',
85 'default': 'shifted', 'values': ('shifted', 'unshifted')},
86 )
da9bcbd9
BV
87 annotations = (
88 ('start', 'Start condition'),
89 ('repeat-start', 'Repeat start condition'),
90 ('stop', 'Stop condition'),
91 ('ack', 'ACK'),
92 ('nack', 'NACK'),
93 ('bit', 'Data/address bit'),
94 ('address-read', 'Address read'),
95 ('address-write', 'Address write'),
96 ('data-read', 'Data read'),
97 ('data-write', 'Data write'),
e144452b 98 ('warning', 'Warning'),
da9bcbd9 99 )
de038c47
UH
100 annotation_rows = (
101 ('bits', 'Bits', (5,)),
e144452b 102 ('addr-data', 'Address/data', (0, 1, 2, 3, 4, 6, 7, 8, 9)),
de038c47
UH
103 ('warnings', 'Warnings', (10,)),
104 )
a929afa6 105 binary = (
5cb2cb02
BV
106 ('address-read', 'Address read'),
107 ('address-write', 'Address write'),
108 ('data-read', 'Data read'),
109 ('data-write', 'Data write'),
a929afa6 110 )
0588ed70 111
92b7b49f 112 def __init__(self):
10aeb8ea
GS
113 self.reset()
114
115 def reset(self):
8d2a9636 116 self.samplerate = None
14ba515b 117 self.is_write = None
4f139c28 118 self.rem_addr_bytes = None
782c35b0
GS
119 self.slave_addr_7 = None
120 self.slave_addr_10 = None
14ba515b 121 self.is_repeat_start = False
8d2a9636
BV
122 self.pdu_start = None
123 self.pdu_bits = 0
14ba515b 124 self.data_bits = []
0fbf1528 125 self.bitwidth = 0
8d2a9636
BV
126
127 def metadata(self, key, value):
128 if key == srd.SRD_CONF_SAMPLERATE:
129 self.samplerate = value
f39d2404 130
8915b346 131 def start(self):
c515eed7 132 self.out_python = self.register(srd.OUTPUT_PYTHON)
8d2a9636 133 self.out_ann = self.register(srd.OUTPUT_ANN)
be6733ca 134 self.out_binary = self.register(srd.OUTPUT_BINARY)
8d2a9636
BV
135 self.out_bitrate = self.register(srd.OUTPUT_META,
136 meta=(int, 'Bitrate', 'Bitrate from Start bit to Stop bit'))
3643fc3f 137
e7c6af6e
GS
138 def putg(self, ss, es, cls, text):
139 self.put(ss, es, self.out_ann, [cls, text])
d94ff143 140
e7c6af6e
GS
141 def putp(self, ss, es, data):
142 self.put(ss, es, self.out_python, data)
d94ff143 143
e7c6af6e
GS
144 def putb(self, ss, es, data):
145 self.put(ss, es, self.out_binary, data)
a929afa6 146
782c35b0
GS
147 def _wants_start(self):
148 # Check whether START is required (to sync to the input stream).
149 return self.pdu_start is None
150
151 def _collects_address(self):
152 # Check whether the transfer still is in the address phase (is
153 # still collecting address and r/w details, or has not started
154 # collecting it).
155 return self.rem_addr_bytes is None or self.rem_addr_bytes != 0
156
157 def _collects_byte(self):
158 # Check whether bits of a byte are being collected. Outside of
159 # the data byte, the bit is the ACK/NAK slot.
160 return self.data_bits is None or len(self.data_bits) < 8
161
0fbf1528 162 def handle_start(self, ss, es):
5eb66408
GS
163 if self.is_repeat_start:
164 cmd = 'START REPEAT'
165 else:
166 cmd = 'START'
0fbf1528 167 self.pdu_start = ss
5eb66408 168 self.pdu_bits = 0
e7c6af6e 169 self.putp(ss, es, [cmd, None])
01416b98 170 cls, texts = proto[cmd][0], proto[cmd][1:]
e7c6af6e 171 self.putg(ss, es, cls, texts)
14ba515b
GS
172 self.is_repeat_start = True
173 self.is_write = None
782c35b0
GS
174 self.slave_addr_7 = None
175 self.slave_addr_10 = None
4f139c28 176 self.rem_addr_bytes = None
647aba6a 177 self.data_bits.clear()
0fbf1528 178 self.bitwidth = 0
7b86f0bc 179
c4975078 180 # Gather 8 bits of data plus the ACK/NACK bit.
0fbf1528 181 def handle_address_or_data(self, ss, es, value):
592f355b
UH
182 self.pdu_bits += 1
183
647aba6a
GS
184 # Accumulate a byte's bits, including its start position.
185 # Accumulate individual bits and their start/end sample numbers
186 # as we see them. Get the start sample number at the time when
187 # the bit value gets sampled. Assume the start of the next bit
188 # as the end sample number of the previous bit. Guess the last
189 # bit's end sample number from the second last bit's width.
647aba6a 190 # Keep the bits in receive order (MSB first) during accumulation.
782c35b0
GS
191 # (gsi: Strictly speaking falling SCL would be the end of the
192 # bit value's validity. That'd break compatibility though.)
647aba6a 193 if self.data_bits:
0fbf1528
GS
194 self.data_bits[-1][2] = ss
195 self.data_bits.append([value, ss, es])
647aba6a 196 if len(self.data_bits) < 8:
eb7082c9 197 return
647aba6a 198 self.bitwidth = self.data_bits[-2][2] - self.data_bits[-3][2]
0fbf1528 199 self.data_bits[-1][2] = self.data_bits[-1][1] + self.bitwidth
7b86f0bc 200
647aba6a
GS
201 # Get the byte value. Address and data are transmitted MSB-first.
202 d = bitpack_msb(self.data_bits, 0)
782c35b0
GS
203 ss_byte, es_byte = self.data_bits[0][1], self.data_bits[-1][2]
204
205 # Process the address bytes at the start of a transfer. The
206 # first byte will carry the R/W bit, and all of the 7bit address
207 # or part of a 10bit address. Bit pattern 0b11110xxx signals
208 # that another byte follows which carries the remaining bits of
209 # a 10bit slave address.
210 is_address = self._collects_address()
211 if is_address:
4f139c28
GS
212 addr_byte = d
213 if self.rem_addr_bytes is None:
214 if (addr_byte & 0xf8) == 0xf0:
215 self.rem_addr_bytes = 2
216 self.slave_addr_7 = None
217 self.slave_addr_10 = addr_byte & 0x06
218 self.slave_addr_10 <<= 7
219 else:
220 self.rem_addr_bytes = 1
221 self.slave_addr_7 = addr_byte >> 1
222 self.slave_addr_10 = None
35753cca 223 has_rw_bit = self.is_write is None
4f139c28
GS
224 if self.is_write is None:
225 read_bit = bool(addr_byte & 1)
35753cca 226 if self.options['address_format'] == 'shifted':
782c35b0 227 d >>= 1
4f139c28 228 self.is_write = False if read_bit else True
782c35b0 229 elif self.slave_addr_10 is not None:
4f139c28 230 self.slave_addr_10 |= addr_byte
782c35b0
GS
231 else:
232 cls, texts = proto['WARN'][0], proto['WARN'][1:]
233 msg = 'Unhandled address byte'
234 texts = [t.format(text = msg) for t in texts]
235 self.putg(ss_byte, es_byte, cls, texts)
236 is_write = self.is_write
237 is_seven = self.slave_addr_7 is not None
238
239 # Determine annotation classes depending on whether the byte is
240 # an address or payload data, and whether it's written or read.
a929afa6 241 bin_class = -1
782c35b0 242 if is_address and is_write:
a2d2aff2 243 cmd = 'ADDRESS WRITE'
a929afa6 244 bin_class = 1
782c35b0 245 elif is_address and not is_write:
a2d2aff2 246 cmd = 'ADDRESS READ'
a929afa6 247 bin_class = 0
782c35b0 248 elif not is_address and is_write:
a2d2aff2 249 cmd = 'DATA WRITE'
a929afa6 250 bin_class = 3
782c35b0 251 elif not is_address and not is_write:
a2d2aff2 252 cmd = 'DATA READ'
a929afa6 253 bin_class = 2
eb7082c9 254
647aba6a
GS
255 # Reverse the list of bits to LSB first order before emitting
256 # annotations and passing bits to upper layers. This may be
257 # unexpected because the protocol is MSB first, but it keeps
258 # backwards compatibility.
e7c6af6e
GS
259 lsb_bits = self.data_bits[:]
260 lsb_bits.reverse()
261 self.putp(ss_byte, es_byte, ['BITS', lsb_bits])
262 self.putp(ss_byte, es_byte, [cmd, d])
de038c47 263
e7c6af6e 264 self.putb(ss_byte, es_byte, [bin_class, bytes([d])])
7b86f0bc 265
e7c6af6e 266 for bit_value, ss_bit, es_bit in lsb_bits:
01416b98 267 cls, texts = proto['BIT'][0], proto['BIT'][1:]
e7c6af6e
GS
268 texts = [t.format(b = bit_value) for t in texts]
269 self.putg(ss_bit, es_bit, cls, texts)
de038c47 270
782c35b0 271 if is_address and has_rw_bit:
e7c6af6e
GS
272 # Assign the last bit's location to the R/W annotation.
273 # Adjust the address value's location to the left.
274 ss_bit, es_bit = self.data_bits[-1][1], self.data_bits[-1][2]
275 es_byte = self.data_bits[-2][2]
01416b98 276 cls = proto[cmd][0]
14ba515b 277 w = ['Write', 'Wr', 'W'] if self.is_write else ['Read', 'Rd', 'R']
e7c6af6e 278 self.putg(ss_bit, es_bit, cls, w)
de038c47 279
01416b98
GS
280 cls, texts = proto[cmd][0], proto[cmd][1:]
281 texts = [t.format(b = d) for t in texts]
e7c6af6e 282 self.putg(ss_byte, es_byte, cls, texts)
de038c47 283
0fbf1528
GS
284 def get_ack(self, ss, es, value):
285 ss_bit, es_bit = ss, es
782c35b0 286 cmd = 'ACK' if value == 0 else 'NACK'
e7c6af6e 287 self.putp(ss_bit, es_bit, [cmd, None])
01416b98 288 cls, texts = proto[cmd][0], proto[cmd][1:]
e7c6af6e 289 self.putg(ss_bit, es_bit, cls, texts)
4f139c28
GS
290 # Slave addresses can span one or two bytes, before data bytes
291 # follow. There can be an arbitrary number of data bytes. Stick
292 # with getting more address bytes if applicable, or enter or
293 # remain in the data phase of the transfer otherwise.
294 if self.rem_addr_bytes:
295 self.rem_addr_bytes -= 1
782c35b0 296 self.data_bits.clear()
7b86f0bc 297
0fbf1528 298 def handle_stop(self, ss, es):
8d2a9636 299 # Meta bitrate
5eb66408 300 if self.samplerate and self.pdu_start:
0fbf1528 301 elapsed = es - self.pdu_start + 1
5eb66408 302 elapsed /= self.samplerate
8accc30b 303 bitrate = int(1 / elapsed * self.pdu_bits)
0fbf1528 304 ss_meta, es_meta = self.pdu_start, es
e7c6af6e 305 self.put(ss_meta, es_meta, self.out_bitrate, bitrate)
5eb66408
GS
306 self.pdu_start = None
307 self.pdu_bits = 0
8d2a9636 308
d94ff143 309 cmd = 'STOP'
e7c6af6e 310 self.putp(ss, es, [cmd, None])
01416b98 311 cls, texts = proto[cmd][0], proto[cmd][1:]
e7c6af6e 312 self.putg(ss, es, cls, texts)
14ba515b
GS
313 self.is_repeat_start = False
314 self.is_write = None
647aba6a 315 self.data_bits.clear()
7b86f0bc 316
592f355b 317 def decode(self):
0fbf1528
GS
318 # Check for several bus conditions. Determine sample numbers
319 # here and pass ss, es, and bit values to handling routines.
592f355b 320 while True:
7b86f0bc 321 # State machine.
782c35b0
GS
322 # BEWARE! This implementation expects to see valid traffic,
323 # is rather picky in which phase which symbols get handled.
324 # This attempts to support severely undersampled captures,
325 # which a previous implementation happened to read instead
326 # of rejecting the inadequate input data.
327 # NOTE that handling bits at the start of their validity,
328 # and assuming that they remain valid until the next bit
329 # starts, is also done for backwards compatibility.
330 if self._wants_start():
592f355b 331 # Wait for a START condition (S): SCL = high, SDA = falling.
0fbf1528
GS
332 pins = self.wait({0: 'h', 1: 'f'})
333 ss, es = self.samplenum, self.samplenum
334 self.handle_start(ss, es)
782c35b0 335 elif self._collects_address() and self._collects_byte():
592f355b 336 # Wait for a data bit: SCL = rising.
0fbf1528
GS
337 pins = self.wait({0: 'r'})
338 _, sda = pins
782c35b0 339 ss, es = self.samplenum, self.samplenum + self.bitwidth
0fbf1528 340 self.handle_address_or_data(ss, es, sda)
782c35b0 341 elif self._collects_byte():
592f355b
UH
342 # Wait for any of the following conditions (or combinations):
343 # a) Data sampling of receiver: SCL = rising, and/or
344 # b) START condition (S): SCL = high, SDA = falling, and/or
345 # c) STOP condition (P): SCL = high, SDA = rising
fcd5d23a 346 pins = self.wait([{0: 'r'}, {0: 'h', 1: 'f'}, {0: 'h', 1: 'r'}])
592f355b
UH
347
348 # Check which of the condition(s) matched and handle them.
349 if self.matched[0]:
0fbf1528 350 _, sda = pins
782c35b0 351 ss, es = self.samplenum, self.samplenum + self.bitwidth
0fbf1528 352 self.handle_address_or_data(ss, es, sda)
592f355b 353 elif self.matched[1]:
0fbf1528
GS
354 ss, es = self.samplenum, self.samplenum
355 self.handle_start(ss, es)
592f355b 356 elif self.matched[2]:
0fbf1528
GS
357 ss, es = self.samplenum, self.samplenum
358 self.handle_stop(ss, es)
782c35b0 359 else:
592f355b 360 # Wait for a data/ack bit: SCL = rising.
0fbf1528
GS
361 pins = self.wait({0: 'r'})
362 _, sda = pins
363 ss, es = self.samplenum, self.samplenum + self.bitwidth
364 self.get_ack(ss, es, sda)