]> sigrok.org Git - libsigrokdecode.git/blame - decoders/dsi/pd.py
decoders: Add/update tags for each PD.
[libsigrokdecode.git] / decoders / dsi / pd.py
CommitLineData
23a8a383
JS
1##
2## This file is part of the libsigrokdecode project.
3##
4## Copyright (C) 2015 Jeremy Swanson <jeremy@rakocontrols.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
17## along with this program. If not, see <http://www.gnu.org/licenses/>.
18##
19
20import sigrokdecode as srd
21
22class SamplerateError(Exception):
23 pass
24
25class Decoder(srd.Decoder):
de594dd1 26 api_version = 3
23a8a383
JS
27 id = 'dsi'
28 name = 'DSI'
92c117d6 29 longname = 'Digital Serial Interface'
23a8a383
JS
30 desc = 'DSI lighting control protocol.'
31 license = 'gplv2+'
32 inputs = ['logic']
33 outputs = ['dsi']
d6d8a8a4 34 tags = ['Embedded/industrial', 'Lighting']
23a8a383
JS
35 channels = (
36 {'id': 'dsi', 'name': 'DSI', 'desc': 'DSI data line'},
37 )
38 options = (
39 {'id': 'polarity', 'desc': 'Polarity', 'default': 'active-high',
40 'values': ('active-low', 'active-high')},
41 )
42 annotations = (
43 ('bit', 'Bit'),
6e333d9e
UH
44 ('startbit', 'Start bit'),
45 ('level', 'Dimmer level'),
23a8a383
JS
46 ('raw', 'Raw data'),
47 )
48 annotation_rows = (
49 ('bits', 'Bits', (0,)),
6e333d9e
UH
50 ('raw', 'Raw data', (3,)),
51 ('fields', 'Fields', (1, 2)),
23a8a383
JS
52 )
53
54 def __init__(self):
10aeb8ea
GS
55 self.reset()
56
57 def reset(self):
23a8a383
JS
58 self.samplerate = None
59 self.samplenum = None
60 self.edges, self.bits, self.ss_es_bits = [], [], []
61 self.state = 'IDLE'
23a8a383
JS
62
63 def start(self):
64 self.out_ann = self.register(srd.OUTPUT_ANN)
41b37321 65 self.old_dsi = 1 if self.options['polarity'] == 'active-low' else 0
23a8a383
JS
66
67 def metadata(self, key, value):
68 if key == srd.SRD_CONF_SAMPLERATE:
69 self.samplerate = value
70 # One bit: 1666.7us (one half low, one half high).
71 # This is how many samples are in 1TE.
72 self.halfbit = int((self.samplerate * 0.0016667) / 2.0)
73
74 def putb(self, bit1, bit2, data):
75 ss, es = self.ss_es_bits[bit1][0], self.ss_es_bits[bit2][1]
76 self.put(ss, es, self.out_ann, data)
77
78 def handle_bits(self, length):
79 a, c, f, g, b = 0, 0, 0, 0, self.bits
80 # Individual raw bits.
81 for i in range(length):
82 if i == 0:
83 ss = max(0, self.bits[0][0])
84 else:
85 ss = self.ss_es_bits[i - 1][1]
86 es = self.bits[i][0] + (self.halfbit * 2)
87 self.ss_es_bits.append([ss, es])
88 self.putb(i, i, [0, ['%d' % self.bits[i][1]]])
89 # Bits[0:0]: Startbit
90 s = ['Startbit: %d' % b[0][1], 'ST: %d' % b[0][1], 'ST', 'S', 'S']
91 self.putb(0, 0, [1, s])
92 self.putb(0, 0, [3, s])
93 # Bits[1:8]
94 for i in range(8):
95 f |= (b[1 + i][1] << (7 - i))
96 g = f / 2.55
97 if length == 9: # BACKWARD Frame
98 s = ['Data: %02X' % f, 'Dat: %02X' % f,
99 'Dat: %02X' % f, 'D: %02X' % f, 'D']
100 self.putb(1, 8, [3, s])
101 s = ['Level: %d%%' % g, 'Lev: %d%%' % g,
102 'Lev: %d%%' % g, 'L: %d' % g, 'D']
103 self.putb(1, 8, [2, s])
104 return
105
106 def reset_decoder_state(self):
107 self.edges, self.bits, self.ss_es_bits = [], [], []
108 self.state = 'IDLE'
109
de594dd1 110 def decode(self):
23a8a383
JS
111 if not self.samplerate:
112 raise SamplerateError('Cannot decode without samplerate.')
6e333d9e 113 bit = 0
de594dd1 114 while True:
1b9ef18b 115 (self.dsi,) = self.wait()
23a8a383 116 if self.options['polarity'] == 'active-high':
41b37321 117 self.dsi ^= 1 # Invert.
23a8a383
JS
118
119 # State machine.
120 if self.state == 'IDLE':
121 # Wait for any edge (rising or falling).
41b37321 122 if self.old_dsi == self.dsi:
23a8a383
JS
123 continue
124 # Add in the first half of the start bit.
125 self.edges.append(self.samplenum - int(self.halfbit))
126 self.edges.append(self.samplenum)
127 # Start bit is 0->1.
41b37321 128 self.phase0 = self.dsi ^ 1
23a8a383 129 self.state = 'PHASE1'
41b37321 130 self.old_dsi = self.dsi
23a8a383 131 # Get the next sample point.
41b37321 132 self.old_dsi = self.dsi
23a8a383
JS
133 continue
134
41b37321 135 if self.old_dsi != self.dsi:
23a8a383
JS
136 self.edges.append(self.samplenum)
137 elif self.samplenum == (self.edges[-1] + int(self.halfbit * 1.5)):
138 self.edges.append(self.samplenum - int(self.halfbit * 0.5))
139 else:
140 continue
141
41b37321 142 bit = self.old_dsi
23a8a383
JS
143 if self.state == 'PHASE0':
144 self.phase0 = bit
145 self.state = 'PHASE1'
146 elif self.state == 'PHASE1':
6e333d9e 147 if (bit == 1) and (self.phase0 == 1): # Stop bit.
23a8a383 148 if len(self.bits) == 17 or len(self.bits) == 9:
6e333d9e 149 # Forward or Backward.
23a8a383
JS
150 self.handle_bits(len(self.bits))
151 self.reset_decoder_state() # Reset upon errors.
152 continue
153 else:
154 self.bits.append([self.edges[-3], bit])
155 self.state = 'PHASE0'
156
41b37321 157 self.old_dsi = self.dsi