]> sigrok.org Git - libsigrokdecode.git/blame - decoders/uart/pd.py
uart: Add binaryout/dump support, drop obsolete 'uart_dump' PD.
[libsigrokdecode.git] / decoders / uart / pd.py
CommitLineData
f44d2db2 1##
50bd5d25 2## This file is part of the libsigrokdecode project.
f44d2db2 3##
0bb7bcf3 4## Copyright (C) 2011-2014 Uwe Hermann <uwe@hermann-uwe.de>
f44d2db2
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
f44d2db2 21# UART protocol decoder
f44d2db2 22
677d597b 23import sigrokdecode as srd
f44d2db2 24
4cace3b8
UH
25'''
26Protocol output format:
27
28UART packet:
29[<packet-type>, <rxtx>, <packet-data>]
30
31This is the list of <packet-type>s and their respective <packet-data>:
32 - 'STARTBIT': The data is the (integer) value of the start bit (0/1).
33 - 'DATA': The data is the (integer) value of the UART data. Valid values
34 range from 0 to 512 (as the data can be up to 9 bits in size).
35 - 'PARITYBIT': The data is the (integer) value of the parity bit (0/1).
36 - 'STOPBIT': The data is the (integer) value of the stop bit (0 or 1).
37 - 'INVALID STARTBIT': The data is the (integer) value of the start bit (0/1).
38 - 'INVALID STOPBIT': The data is the (integer) value of the stop bit (0/1).
39 - 'PARITY ERROR': The data is a tuple with two entries. The first one is
40 the expected parity value, the second is the actual parity value.
41 - TODO: Frame error?
42
43The <rxtx> field is 0 for RX packets, 1 for TX packets.
44'''
45
97cca21f
UH
46# Used for differentiating between the two data directions.
47RX = 0
48TX = 1
49
f44d2db2
UH
50# Given a parity type to check (odd, even, zero, one), the value of the
51# parity bit, the value of the data, and the length of the data (5-9 bits,
52# usually 8 bits) return True if the parity is correct, False otherwise.
a7fc4c34 53# 'none' is _not_ allowed as value for 'parity_type'.
f44d2db2
UH
54def parity_ok(parity_type, parity_bit, data, num_data_bits):
55
56 # Handle easy cases first (parity bit is always 1 or 0).
a7fc4c34 57 if parity_type == 'zero':
f44d2db2 58 return parity_bit == 0
a7fc4c34 59 elif parity_type == 'one':
f44d2db2
UH
60 return parity_bit == 1
61
62 # Count number of 1 (high) bits in the data (and the parity bit itself!).
ac941bf9 63 ones = bin(data).count('1') + parity_bit
f44d2db2
UH
64
65 # Check for odd/even parity.
a7fc4c34 66 if parity_type == 'odd':
ac941bf9 67 return (ones % 2) == 1
a7fc4c34 68 elif parity_type == 'even':
ac941bf9 69 return (ones % 2) == 0
f44d2db2
UH
70 else:
71 raise Exception('Invalid parity type: %d' % parity_type)
72
677d597b 73class Decoder(srd.Decoder):
a2c2afd9 74 api_version = 1
f44d2db2
UH
75 id = 'uart'
76 name = 'UART'
3d3da57d 77 longname = 'Universal Asynchronous Receiver/Transmitter'
a465436e 78 desc = 'Asynchronous, serial bus.'
f44d2db2
UH
79 license = 'gplv2+'
80 inputs = ['logic']
81 outputs = ['uart']
29ed0f4c 82 probes = [
f44d2db2
UH
83 # Allow specifying only one of the signals, e.g. if only one data
84 # direction exists (or is relevant).
29ed0f4c
UH
85 {'id': 'rx', 'name': 'RX', 'desc': 'UART receive line'},
86 {'id': 'tx', 'name': 'TX', 'desc': 'UART transmit line'},
87 ]
b77614bc 88 optional_probes = []
f44d2db2 89 options = {
97cca21f 90 'baudrate': ['Baud rate', 115200],
f44d2db2 91 'num_data_bits': ['Data bits', 8], # Valid: 5-9.
a7fc4c34
UH
92 'parity_type': ['Parity type', 'none'],
93 'parity_check': ['Check parity?', 'yes'], # TODO: Bool supported?
94 'num_stop_bits': ['Stop bit(s)', '1'], # String! 0, 0.5, 1, 1.5.
95 'bit_order': ['Bit order', 'lsb-first'],
3006c663 96 'format': ['Data format', 'ascii'], # ascii/dec/hex/oct/bin
f44d2db2 97 # TODO: Options to invert the signal(s).
f44d2db2 98 }
e97b6ef5 99 annotations = [
6d6b32d6
UH
100 ['RX data', 'UART RX data'],
101 ['TX data', 'UART TX data'],
3a1803b0
UH
102 ['Start bits', 'UART start bits'],
103 ['Parity bits', 'UART parity bits'],
104 ['Stop bits', 'UART stop bits'],
105 ['Warnings', 'Warnings'],
1bb57ab8 106 ]
0bb7bcf3
UH
107 binary = (
108 ('rx', 'RX dump'),
109 ('tx', 'TX dump'),
110 ('rxtx', 'RX/TX dump'),
111 )
f44d2db2 112
97cca21f 113 def putx(self, rxtx, data):
15ac6604
UH
114 s, halfbit = self.startsample[rxtx], int(self.bit_width / 2)
115 self.put(s - halfbit, self.samplenum + halfbit, self.out_ann, data)
116
117 def putg(self, data):
118 s, halfbit = self.samplenum, int(self.bit_width / 2)
119 self.put(s - halfbit, s + halfbit, self.out_ann, data)
120
121 def putp(self, data):
122 s, halfbit = self.samplenum, int(self.bit_width / 2)
123 self.put(s - halfbit, s + halfbit, self.out_proto, data)
97cca21f 124
0bb7bcf3
UH
125 def putbin(self, rxtx, data):
126 s, halfbit = self.startsample[rxtx], int(self.bit_width / 2)
127 self.put(s - halfbit, self.samplenum + halfbit, self.out_bin, data)
128
f44d2db2 129 def __init__(self, **kwargs):
f372d597 130 self.samplerate = None
f44d2db2 131 self.samplenum = 0
97cca21f
UH
132 self.frame_start = [-1, -1]
133 self.startbit = [-1, -1]
134 self.cur_data_bit = [0, 0]
135 self.databyte = [0, 0]
1ccef461 136 self.paritybit = [-1, -1]
97cca21f
UH
137 self.stopbit1 = [-1, -1]
138 self.startsample = [-1, -1]
2b716038 139 self.state = ['WAIT FOR START BIT', 'WAIT FOR START BIT']
83be7b83
UH
140 self.oldbit = [1, 1]
141 self.oldpins = [1, 1]
f44d2db2 142
f372d597 143 def start(self):
be465111 144 self.out_proto = self.register(srd.OUTPUT_PYTHON)
0bb7bcf3 145 self.out_bin = self.register(srd.OUTPUT_BINARY)
be465111 146 self.out_ann = self.register(srd.OUTPUT_ANN)
f44d2db2 147
f372d597
BV
148 def metadata(self, key, value):
149 if key == srd.SRD_CONF_SAMPLERATE:
150 self.samplerate = value;
151 # The width of one UART bit in number of samples.
152 self.bit_width = float(self.samplerate) / float(self.options['baudrate'])
f44d2db2 153
f44d2db2 154 # Return true if we reached the middle of the desired bit, false otherwise.
97cca21f 155 def reached_bit(self, rxtx, bitnum):
f44d2db2
UH
156 # bitpos is the samplenumber which is in the middle of the
157 # specified UART bit (0 = start bit, 1..x = data, x+1 = parity bit
158 # (if used) or the first stop bit, and so on).
97cca21f 159 bitpos = self.frame_start[rxtx] + (self.bit_width / 2.0)
f44d2db2
UH
160 bitpos += bitnum * self.bit_width
161 if self.samplenum >= bitpos:
162 return True
163 return False
164
97cca21f
UH
165 def reached_bit_last(self, rxtx, bitnum):
166 bitpos = self.frame_start[rxtx] + ((bitnum + 1) * self.bit_width)
f44d2db2
UH
167 if self.samplenum >= bitpos:
168 return True
169 return False
170
97cca21f 171 def wait_for_start_bit(self, rxtx, old_signal, signal):
f44d2db2
UH
172 # The start bit is always 0 (low). As the idle UART (and the stop bit)
173 # level is 1 (high), the beginning of a start bit is a falling edge.
174 if not (old_signal == 1 and signal == 0):
175 return
176
177 # Save the sample number where the start bit begins.
97cca21f 178 self.frame_start[rxtx] = self.samplenum
f44d2db2 179
2b716038 180 self.state[rxtx] = 'GET START BIT'
f44d2db2 181
97cca21f 182 def get_start_bit(self, rxtx, signal):
f44d2db2 183 # Skip samples until we're in the middle of the start bit.
97cca21f 184 if not self.reached_bit(rxtx, 0):
1bb57ab8 185 return
f44d2db2 186
97cca21f 187 self.startbit[rxtx] = signal
f44d2db2 188
5cc4b6a0 189 # The startbit must be 0. If not, we report an error.
97cca21f 190 if self.startbit[rxtx] != 0:
15ac6604 191 self.putp(['INVALID STARTBIT', rxtx, self.startbit[rxtx]])
5cc4b6a0 192 # TODO: Abort? Ignore rest of the frame?
f44d2db2 193
97cca21f
UH
194 self.cur_data_bit[rxtx] = 0
195 self.databyte[rxtx] = 0
196 self.startsample[rxtx] = -1
f44d2db2 197
2b716038 198 self.state[rxtx] = 'GET DATA BITS'
f44d2db2 199
15ac6604 200 self.putp(['STARTBIT', rxtx, self.startbit[rxtx]])
6d6b32d6 201 self.putg([2, ['Start bit', 'Start', 'S']])
f44d2db2 202
97cca21f 203 def get_data_bits(self, rxtx, signal):
f44d2db2 204 # Skip samples until we're in the middle of the desired data bit.
97cca21f 205 if not self.reached_bit(rxtx, self.cur_data_bit[rxtx] + 1):
1bb57ab8 206 return
f44d2db2 207
15ac6604 208 # Save the sample number of the middle of the first data bit.
97cca21f
UH
209 if self.startsample[rxtx] == -1:
210 self.startsample[rxtx] = self.samplenum
f44d2db2
UH
211
212 # Get the next data bit in LSB-first or MSB-first fashion.
a7fc4c34 213 if self.options['bit_order'] == 'lsb-first':
97cca21f 214 self.databyte[rxtx] >>= 1
fd4aa8aa
UH
215 self.databyte[rxtx] |= \
216 (signal << (self.options['num_data_bits'] - 1))
a7fc4c34 217 elif self.options['bit_order'] == 'msb-first':
97cca21f
UH
218 self.databyte[rxtx] <<= 1
219 self.databyte[rxtx] |= (signal << 0)
f44d2db2 220 else:
a7fc4c34 221 raise Exception('Invalid bit order value: %s',
4a04ece4 222 self.options['bit_order'])
f44d2db2
UH
223
224 # Return here, unless we already received all data bits.
4a04ece4 225 if self.cur_data_bit[rxtx] < self.options['num_data_bits'] - 1:
97cca21f 226 self.cur_data_bit[rxtx] += 1
1bb57ab8 227 return
f44d2db2 228
2b716038 229 self.state[rxtx] = 'GET PARITY BIT'
f44d2db2 230
15ac6604 231 self.putp(['DATA', rxtx, self.databyte[rxtx]])
f44d2db2 232
3006c663
UH
233 b, f = self.databyte[rxtx], self.options['format']
234 if f == 'ascii':
8705ddc8
UH
235 c = chr(b) if chr(b).isprintable() else '[%02X]' % b
236 self.putx(rxtx, [rxtx, [c]])
3006c663 237 elif f == 'dec':
6d6b32d6 238 self.putx(rxtx, [rxtx, [str(b)]])
3006c663 239 elif f == 'hex':
6d6b32d6 240 self.putx(rxtx, [rxtx, [hex(b)[2:].zfill(2).upper()]])
3006c663 241 elif f == 'oct':
6d6b32d6 242 self.putx(rxtx, [rxtx, [oct(b)[2:].zfill(3)]])
3006c663 243 elif f == 'bin':
6d6b32d6 244 self.putx(rxtx, [rxtx, [bin(b)[2:].zfill(8)]])
3006c663
UH
245 else:
246 raise Exception('Invalid data format option: %s' % f)
f44d2db2 247
0bb7bcf3
UH
248 self.putbin(rxtx, (rxtx, bytes([b])))
249 self.putbin(rxtx, (2, bytes([b])))
250
97cca21f 251 def get_parity_bit(self, rxtx, signal):
f44d2db2 252 # If no parity is used/configured, skip to the next state immediately.
a7fc4c34 253 if self.options['parity_type'] == 'none':
2b716038 254 self.state[rxtx] = 'GET STOP BITS'
1bb57ab8 255 return
f44d2db2
UH
256
257 # Skip samples until we're in the middle of the parity bit.
4a04ece4 258 if not self.reached_bit(rxtx, self.options['num_data_bits'] + 1):
1bb57ab8 259 return
f44d2db2 260
97cca21f 261 self.paritybit[rxtx] = signal
f44d2db2 262
2b716038 263 self.state[rxtx] = 'GET STOP BITS'
f44d2db2 264
ac941bf9 265 if parity_ok(self.options['parity_type'], self.paritybit[rxtx],
4a04ece4 266 self.databyte[rxtx], self.options['num_data_bits']):
15ac6604 267 self.putp(['PARITYBIT', rxtx, self.paritybit[rxtx]])
6d6b32d6 268 self.putg([3, ['Parity bit', 'Parity', 'P']])
f44d2db2 269 else:
61132abd 270 # TODO: Return expected/actual parity values.
15ac6604 271 self.putp(['PARITY ERROR', rxtx, (0, 1)]) # FIXME: Dummy tuple...
6d6b32d6 272 self.putg([5, ['Parity error', 'Parity err', 'PE']])
f44d2db2
UH
273
274 # TODO: Currently only supports 1 stop bit.
97cca21f 275 def get_stop_bits(self, rxtx, signal):
f44d2db2 276 # Skip samples until we're in the middle of the stop bit(s).
a7fc4c34 277 skip_parity = 0 if self.options['parity_type'] == 'none' else 1
4a04ece4
UH
278 b = self.options['num_data_bits'] + 1 + skip_parity
279 if not self.reached_bit(rxtx, b):
1bb57ab8 280 return
f44d2db2 281
97cca21f 282 self.stopbit1[rxtx] = signal
f44d2db2 283
5cc4b6a0 284 # Stop bits must be 1. If not, we report an error.
97cca21f 285 if self.stopbit1[rxtx] != 1:
15ac6604 286 self.putp(['INVALID STOPBIT', rxtx, self.stopbit1[rxtx]])
6d6b32d6 287 self.putg([5, ['Frame error', 'Frame err', 'FE']])
5cc4b6a0 288 # TODO: Abort? Ignore the frame? Other?
f44d2db2 289
2b716038 290 self.state[rxtx] = 'WAIT FOR START BIT'
f44d2db2 291
15ac6604 292 self.putp(['STOPBIT', rxtx, self.stopbit1[rxtx]])
6d6b32d6 293 self.putg([4, ['Stop bit', 'Stop', 'T']])
f44d2db2 294
decde15e 295 def decode(self, ss, es, data):
f372d597
BV
296 if self.samplerate is None:
297 raise Exception("Cannot decode without samplerate.")
decde15e 298 # TODO: Either RX or TX could be omitted (optional probe).
2fcd7c22
UH
299 for (self.samplenum, pins) in data:
300
b0827236
UH
301 # Note: Ignoring identical samples here for performance reasons
302 # is not possible for this PD, at least not in the current state.
303 # if self.oldpins == pins:
304 # continue
2fcd7c22 305 self.oldpins, (rx, tx) = pins, pins
f44d2db2 306
f44d2db2 307 # State machine.
97cca21f
UH
308 for rxtx in (RX, TX):
309 signal = rx if (rxtx == RX) else tx
310
2b716038 311 if self.state[rxtx] == 'WAIT FOR START BIT':
97cca21f 312 self.wait_for_start_bit(rxtx, self.oldbit[rxtx], signal)
2b716038 313 elif self.state[rxtx] == 'GET START BIT':
97cca21f 314 self.get_start_bit(rxtx, signal)
2b716038 315 elif self.state[rxtx] == 'GET DATA BITS':
97cca21f 316 self.get_data_bits(rxtx, signal)
2b716038 317 elif self.state[rxtx] == 'GET PARITY BIT':
97cca21f 318 self.get_parity_bit(rxtx, signal)
2b716038 319 elif self.state[rxtx] == 'GET STOP BITS':
97cca21f
UH
320 self.get_stop_bits(rxtx, signal)
321 else:
0eeeb544 322 raise Exception('Invalid state: %s' % self.state[rxtx])
97cca21f
UH
323
324 # Save current RX/TX values for the next round.
325 self.oldbit[rxtx] = signal
f44d2db2 326