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