]> sigrok.org Git - libsigrokdecode.git/blame - decoders/jitter/pd.py
instance.c: Fix a memory leak reported by scan-build.
[libsigrokdecode.git] / decoders / jitter / pd.py
CommitLineData
c2049e2c
SB
1##
2## This file is part of the libsigrokdecode project.
3##
4## Copyright (C) 2014 Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
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/>.
c2049e2c
SB
18##
19
20import sigrokdecode as srd
21
22# Helper dictionary for edge detection.
23edge_detector = {
24 'rising': lambda x, y: bool(not x and y),
25 'falling': lambda x, y: bool(x and not y),
26 'both': lambda x, y: bool(x ^ y),
27}
28
29class SamplerateError(Exception):
30 pass
31
32class Decoder(srd.Decoder):
54dad54a 33 api_version = 3
c2049e2c
SB
34 id = 'jitter'
35 name = 'Jitter'
36 longname = 'Timing jitter calculation'
37 desc = 'Retrieves the timing jitter between two digital signals.'
38 license = 'gplv2+'
39 inputs = ['logic']
40 outputs = ['jitter']
41 channels = (
42 {'id': 'clk', 'name': 'Clock', 'desc': 'Clock reference channel'},
43 {'id': 'sig', 'name': 'Resulting signal', 'desc': 'Resulting signal controlled by the clock'},
44 )
45 options = (
46 {'id': 'clk_polarity', 'desc': 'Clock edge polarity',
47 'default': 'rising', 'values': ('rising', 'falling', 'both')},
48 {'id': 'sig_polarity', 'desc': 'Resulting signal edge polarity',
49 'default': 'rising', 'values': ('rising', 'falling', 'both')},
50 )
51 annotations = (
52 ('jitter', 'Jitter value'),
53 ('clk_missed', 'Clock missed'),
54 ('sig_missed', 'Signal missed'),
55 )
56 annotation_rows = (
57 ('jitter', 'Jitter values', (0,)),
58 ('clk_missed', 'Clock missed', (1,)),
59 ('sig_missed', 'Signal missed', (2,)),
60 )
5f987d6f 61 binary = (
05aaa486 62 ('ascii-float', 'Jitter values as newline-separated ASCII floats'),
5f987d6f 63 )
c2049e2c 64
92b7b49f 65 def __init__(self):
10aeb8ea
GS
66 self.reset()
67
68 def reset(self):
c2049e2c
SB
69 self.state = 'CLK'
70 self.samplerate = None
54dad54a 71 self.oldclk, self.oldsig = 0, 0
c2049e2c
SB
72 self.clk_start = None
73 self.sig_start = None
74 self.clk_missed = 0
75 self.sig_missed = 0
76
77 def start(self):
78 self.clk_edge = edge_detector[self.options['clk_polarity']]
79 self.sig_edge = edge_detector[self.options['sig_polarity']]
80 self.out_ann = self.register(srd.OUTPUT_ANN)
2f370328 81 self.out_binary = self.register(srd.OUTPUT_BINARY)
c2049e2c
SB
82 self.out_clk_missed = self.register(srd.OUTPUT_META,
83 meta=(int, 'Clock missed', 'Clock transition missed'))
84 self.out_sig_missed = self.register(srd.OUTPUT_META,
85 meta=(int, 'Signal missed', 'Resulting signal transition missed'))
86
87 def metadata(self, key, value):
88 if key == srd.SRD_CONF_SAMPLERATE:
89 self.samplerate = value
90
91 # Helper function for jitter time annotations.
92 def putx(self, delta):
93 # Adjust granularity.
94 if delta == 0 or delta >= 1:
a9f7935a 95 delta_s = '%.1fs' % (delta)
c2049e2c 96 elif delta <= 1e-12:
a9f7935a 97 delta_s = '%.1ffs' % (delta * 1e15)
c2049e2c 98 elif delta <= 1e-9:
a9f7935a 99 delta_s = '%.1fps' % (delta * 1e12)
c2049e2c 100 elif delta <= 1e-6:
a9f7935a 101 delta_s = '%.1fns' % (delta * 1e9)
c2049e2c 102 elif delta <= 1e-3:
a9f7935a 103 delta_s = '%.1fμs' % (delta * 1e6)
c2049e2c 104 else:
a9f7935a 105 delta_s = '%.1fms' % (delta * 1e3)
c2049e2c
SB
106
107 self.put(self.clk_start, self.sig_start, self.out_ann, [0, [delta_s]])
108
05aaa486 109 # Helper function for ASCII float jitter values (one value per line).
5f987d6f
SB
110 def putb(self, delta):
111 if delta is None:
112 return
70aa53ec
UH
113 # Format the delta to an ASCII float value terminated by a newline.
114 x = str(delta) + '\n'
2f370328 115 self.put(self.clk_start, self.sig_start, self.out_binary,
2824e811 116 [0, x.encode('UTF-8')])
5f987d6f 117
c2049e2c
SB
118 # Helper function for missed clock and signal annotations.
119 def putm(self, data):
120 self.put(self.samplenum, self.samplenum, self.out_ann, data)
121
34cfd419
UH
122 def handle_clk(self, clk, sig):
123 if self.clk_start == self.samplenum:
124 # Clock transition already treated.
125 # We have done everything we can with this sample.
126 return True
127
128 if self.clk_edge(self.oldclk, clk):
129 # Clock edge found.
130 # We note the sample and move to the next state.
131 self.clk_start = self.samplenum
132 self.state = 'SIG'
133 return False
134 else:
135 if self.sig_start is not None \
136 and self.sig_start != self.samplenum \
137 and self.sig_edge(self.oldsig, sig):
138 # If any transition in the resulting signal
139 # occurs while we are waiting for a clock,
140 # we increase the missed signal counter.
141 self.sig_missed += 1
961699aa 142 self.put(self.samplenum, self.samplenum, self.out_sig_missed, self.sig_missed)
34cfd419
UH
143 self.putm([2, ['Missed signal', 'MS']])
144 # No clock edge found, we have done everything we
145 # can with this sample.
146 return True
147
148 def handle_sig(self, clk, sig):
149 if self.sig_start == self.samplenum:
150 # Signal transition already treated.
151 # We have done everything we can with this sample.
152 return True
153
154 if self.sig_edge(self.oldsig, sig):
155 # Signal edge found.
156 # We note the sample, calculate the jitter
157 # and move to the next state.
158 self.sig_start = self.samplenum
159 self.state = 'CLK'
160 # Calculate and report the timing jitter.
5f987d6f
SB
161 delta = (self.sig_start - self.clk_start) / self.samplerate
162 self.putx(delta)
163 self.putb(delta)
34cfd419
UH
164 return False
165 else:
166 if self.clk_start != self.samplenum \
167 and self.clk_edge(self.oldclk, clk):
168 # If any transition in the clock signal
169 # occurs while we are waiting for a resulting
170 # signal, we increase the missed clock counter.
171 self.clk_missed += 1
961699aa 172 self.put(self.samplenum, self.samplenum, self.out_clk_missed, self.clk_missed)
34cfd419
UH
173 self.putm([1, ['Missed clock', 'MC']])
174 # No resulting signal edge found, we have done
175 # everything we can with this sample.
176 return True
177
54dad54a 178 def decode(self):
c2049e2c
SB
179 if not self.samplerate:
180 raise SamplerateError('Cannot decode without samplerate.')
54dad54a
UH
181 while True:
182 # Wait for a transition on CLK and/or SIG.
183 clk, sig = self.wait([{0: 'e'}, {1: 'e'}])
c2049e2c
SB
184
185 # State machine:
186 # For each sample we can move 2 steps forward in the state machine.
187 while True:
c2049e2c
SB
188 # Clock state has the lead.
189 if self.state == 'CLK':
34cfd419 190 if self.handle_clk(clk, sig):
c2049e2c 191 break
c2049e2c 192 if self.state == 'SIG':
34cfd419 193 if self.handle_sig(clk, sig):
c2049e2c 194 break
c2049e2c
SB
195
196 # Save current CLK/SIG values for the next round.
197 self.oldclk, self.oldsig = clk, sig