]> sigrok.org Git - libsigrokdecode.git/blame - decoders/em4100/pd.py
em4100: Use ss/es naming for consistency across PDs.
[libsigrokdecode.git] / decoders / em4100 / pd.py
CommitLineData
8f265907
BL
1##
2## This file is part of the libsigrokdecode project.
3##
4## Copyright (C) 2015 Benjamin Larsson <benjamin@southpole.se>
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 data 2 of the License, or
9## (at your option) any later data.
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
21import sigrokdecode as srd
22
23class SamplerateError(Exception):
24 pass
25
26class Decoder(srd.Decoder):
27 api_version = 2
28 id = 'em4100'
29 name = 'EM4100'
30 longname = 'RFID EM4100'
31 desc = 'EM4100 100-150kHz RFID protocol.'
32 license = 'gplv2+'
33 inputs = ['logic']
34 outputs = ['em4100']
35 channels = (
36 {'id': 'data', 'name': 'Data', 'desc': 'Data line'},
37 )
38 options = (
39 {'id': 'polarity', 'desc': 'Polarity', 'default': 'active-high',
40 'values': ('active-low', 'active-high')},
1a782fad
UH
41 {'id': 'datarate' , 'desc': 'Data rate', 'default': 64,
42 'values': (64, 32, 16)},
8f265907
BL
43# {'id': 'coding', 'desc': 'Bit coding', 'default': 'biphase',
44# 'values': ('biphase', 'manchester', 'psk')},
1a782fad 45 {'id': 'coilfreq', 'desc': 'Coil frequency', 'default': 125000},
8f265907
BL
46 )
47 annotations = (
428e40cb
UH
48 ('bit', 'Bit'),
49 ('header', 'Header'),
50 ('version-customer', 'Version/customer'),
51 ('data', 'Data'),
52 ('rowparity-ok', 'Row parity OK'),
53 ('rowparity-err', 'Row parity error'),
54 ('colparity-ok', 'Column parity OK'),
55 ('colparity-err', 'Column parity error'),
8f265907 56 ('stopbit', 'Stop bit'),
428e40cb 57 ('tag', 'Tag'),
8f265907
BL
58 )
59 annotation_rows = (
60 ('bits', 'Bits', (0,)),
428e40cb
UH
61 ('fields', 'Fields', (1, 2, 3, 4, 5, 6, 7, 8)),
62 ('tags', 'Tags', (9,)),
8f265907
BL
63 )
64
65 def __init__(self, **kwargs):
66 self.samplerate = None
67 self.oldpin = None
68 self.last_samplenum = None
69 self.lastlast_samplenum = None
70 self.last_edge = 0
71 self.bit_width = 0
72 self.halfbit_limit = 0
73 self.oldpp = 0
74 self.oldpl = 0
75 self.oldsamplenum = 0
76 self.last_bit_pos = 0
13090f24 77 self.first_ss = 0
8f265907
BL
78 self.first_one = 0
79 self.state = 'HEADER'
80 self.data = 0
81 self.data_bits = 0
13090f24 82 self.data_ss = 0
8f265907
BL
83 self.data_parity = 0
84 self.payload_cnt = 0
85 self.data_col_parity = [0, 0, 0, 0, 0, 0]
86 self.col_parity = [0, 0, 0, 0, 0, 0]
428e40cb
UH
87 self.tag = 0
88 self.all_row_parity_ok = True
89 self.col_parity_pos = []
8f265907
BL
90
91 def metadata(self, key, value):
92 if key == srd.SRD_CONF_SAMPLERATE:
93 self.samplerate = value
1a782fad 94 self.bit_width = (self.samplerate / self.options['coilfreq']) * self.options['datarate']
8f265907
BL
95 self.halfbit_limit = self.bit_width/2 + self.bit_width/4
96 self.polarity = 0 if self.options['polarity'] == 'active-low' else 1
97
98 def start(self):
99 self.out_ann = self.register(srd.OUTPUT_ANN)
100
13090f24 101 def add_bit(self, bit, ss, es):
8f265907
BL
102 if self.state == 'HEADER':
103 if bit == 1:
104 if self.first_one > 0:
105 self.first_one += 1
106 if self.first_one == 9:
13090f24 107 self.put(self.first_ss, es, self.out_ann,
8f265907
BL
108 [1, ['Header', 'Head', 'He', 'H']])
109 self.first_one = 0
110 self.state = 'PAYLOAD'
111 return
112 if self.first_one == 0:
113 self.first_one = 1
13090f24 114 self.first_ss = ss
8f265907
BL
115
116 if bit == 0:
117 self.first_one = 0
118 return
119
120 if self.state == 'PAYLOAD':
121 self.payload_cnt += 1
122 if self.data_bits == 0:
13090f24 123 self.data_ss = ss
8f265907
BL
124 self.data = 0
125 self.data_parity = 0
126 self.data_bits += 1
127 if self.data_bits == 5:
428e40cb
UH
128 s = 'Version/customer' if self.payload_cnt <= 10 else 'Data'
129 c = 2 if self.payload_cnt <= 10 else 3
13090f24 130 self.put(self.data_ss, ss, self.out_ann,
428e40cb
UH
131 [c, [s + ': %X' % self.data, '%X' % self.data]])
132 s = 'OK' if self.data_parity == bit else 'ERROR'
133 c = 4 if s == 'OK' else 5
134 if s == 'ERROR':
135 self.all_row_parity_ok = False
13090f24 136 self.put(ss, es, self.out_ann,
428e40cb
UH
137 [c, ['Row parity: ' + s, 'RP: ' + s, 'RP', 'R']])
138 self.tag = (self.tag << 4) | self.data
8f265907
BL
139 self.data_bits = 0
140 if self.payload_cnt == 50:
141 self.state = 'TRAILER'
142 self.payload_cnt = 0
143
144 self.data_parity ^= bit
145 self.data_col_parity[self.data_bits] ^= bit
146 self.data = (self.data << 1) | bit
147 return
148
149 if self.state == 'TRAILER':
150 self.payload_cnt += 1
151 if self.data_bits == 0:
13090f24 152 self.data_ss = ss
8f265907
BL
153 self.data = 0
154 self.data_parity = 0
155 self.data_bits += 1
156 self.col_parity[self.data_bits] = bit
13090f24 157 self.col_parity_pos.append([ss, es])
8f265907
BL
158
159 if self.data_bits == 5:
13090f24 160 self.put(ss, es, self.out_ann, [8, ['Stop bit', 'SB', 'S']])
428e40cb
UH
161
162 for i in range(1, 5):
163 s = 'OK' if self.data_col_parity[i] == \
164 self.col_parity[i] else 'ERROR'
165 c = 6 if s == 'OK' else 7
166 self.put(self.col_parity_pos[i - 1][0],
167 self.col_parity_pos[i - 1][1], self.out_ann,
168 [c, ['Column parity %d: %s' % (i, s),
169 'CP%d: %s' % (i, s), 'CP%d' % i, 'C']])
170
171 # Emit an annotation for valid-looking tags.
172 all_col_parity_ok = (self.data_col_parity[1:5] == self.col_parity[1:5])
173 if all_col_parity_ok and self.all_row_parity_ok:
13090f24 174 self.put(self.first_ss, es, self.out_ann,
428e40cb 175 [9, ['Tag: %010X' % self.tag, 'Tag', 'T']])
8f265907 176
428e40cb 177 self.tag = 0
8f265907 178 self.data_bits = 0
428e40cb 179
8f265907
BL
180 if self.payload_cnt == 5:
181 self.state = 'HEADER'
182 self.payload_cnt = 0
183 self.data_col_parity = [0, 0, 0, 0, 0, 0]
184 self.col_parity = [0, 0, 0, 0, 0, 0]
428e40cb
UH
185 self.col_parity_pos = []
186 self.all_row_parity_ok = True
8f265907 187
13090f24
UH
188 def putbit(self, bit, ss, es):
189 self.put(ss, es, self.out_ann, [0, [str(bit)]])
190 self.add_bit(bit, ss, es)
8f265907
BL
191
192 def manchester_decode(self, samplenum, pl, pp, pin):
13090f24 193 ss, es = 0, 0
8f265907
BL
194 bit = self.oldpin ^ self.polarity
195 if pl > self.halfbit_limit:
196 samples = samplenum - self.oldsamplenum
197 t = samples / self.samplerate
198
199 if self.oldpl > self.halfbit_limit:
13090f24
UH
200 ss = int(self.oldsamplenum - self.oldpl/2)
201 es = int(samplenum - pl/2)
202 self.putbit(bit, ss, es)
8f265907 203 if self.oldpl <= self.halfbit_limit:
13090f24
UH
204 ss = int(self.oldsamplenum - self.oldpl)
205 es = int(samplenum - pl/2)
206 self.putbit(bit, ss, es)
8f265907
BL
207 self.last_bit_pos = int(samplenum - pl/2)
208
209 if pl < self.halfbit_limit:
210 samples = samplenum - self.oldsamplenum
211 t = samples / self.samplerate
212
213 if self.oldpl > self.halfbit_limit:
13090f24
UH
214 ss = int(self.oldsamplenum - self.oldpl/2)
215 es = int(samplenum)
216 self.putbit(bit, ss, es)
8f265907
BL
217 self.last_bit_pos = int(samplenum)
218 if self.oldpl <= self.halfbit_limit:
219 if self.last_bit_pos <= self.oldsamplenum - self.oldpl:
13090f24
UH
220 ss = int(self.oldsamplenum - self.oldpl)
221 es = int(samplenum)
222 self.putbit(bit, ss, es)
8f265907
BL
223 self.last_bit_pos = int(samplenum)
224
225 def decode(self, ss, es, data):
226 if not self.samplerate:
227 raise SamplerateError('Cannot decode without samplerate.')
228 for (samplenum, (pin,)) in data:
229 # Ignore identical samples early on (for performance reasons).
230 if self.oldpin == pin:
231 continue
232
233 if self.oldpin is None:
234 self.oldpin = pin
235 self.last_samplenum = samplenum
236 self.lastlast_samplenum = samplenum
237 self.last_edge = samplenum
238 self.oldpl = 0
239 self.oldpp = 0
240 self.oldsamplenum = 0
241 self.last_bit_pos = 0
242 continue
243
244 if self.oldpin != pin:
245 pl = samplenum - self.oldsamplenum
246 pp = pin
247
248 self.manchester_decode(samplenum, pl, pp, pin)
249
250 self.oldpl = pl
251 self.oldpp = pp
252 self.oldsamplenum = samplenum
253 self.oldpin = pin