]> sigrok.org Git - libsigrokdecode.git/blame - decoders/em4100/pd.py
em4100/t55xx: Fix accidentally broken wording in license header.
[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
88df2c9a
UH
8## the Free Software Foundation; either version 2 of the License, or
9## (at your option) any later version.
8f265907
BL
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
91ae892d
UH
101 def putbit(self, bit, ss, es):
102 self.put(ss, es, self.out_ann, [0, [str(bit)]])
8f265907
BL
103 if self.state == 'HEADER':
104 if bit == 1:
105 if self.first_one > 0:
106 self.first_one += 1
107 if self.first_one == 9:
13090f24 108 self.put(self.first_ss, es, self.out_ann,
8f265907
BL
109 [1, ['Header', 'Head', 'He', 'H']])
110 self.first_one = 0
111 self.state = 'PAYLOAD'
112 return
113 if self.first_one == 0:
114 self.first_one = 1
13090f24 115 self.first_ss = ss
8f265907
BL
116
117 if bit == 0:
118 self.first_one = 0
119 return
120
121 if self.state == 'PAYLOAD':
122 self.payload_cnt += 1
123 if self.data_bits == 0:
13090f24 124 self.data_ss = ss
8f265907
BL
125 self.data = 0
126 self.data_parity = 0
127 self.data_bits += 1
128 if self.data_bits == 5:
428e40cb
UH
129 s = 'Version/customer' if self.payload_cnt <= 10 else 'Data'
130 c = 2 if self.payload_cnt <= 10 else 3
13090f24 131 self.put(self.data_ss, ss, self.out_ann,
428e40cb
UH
132 [c, [s + ': %X' % self.data, '%X' % self.data]])
133 s = 'OK' if self.data_parity == bit else 'ERROR'
134 c = 4 if s == 'OK' else 5
135 if s == 'ERROR':
136 self.all_row_parity_ok = False
13090f24 137 self.put(ss, es, self.out_ann,
428e40cb
UH
138 [c, ['Row parity: ' + s, 'RP: ' + s, 'RP', 'R']])
139 self.tag = (self.tag << 4) | self.data
8f265907
BL
140 self.data_bits = 0
141 if self.payload_cnt == 50:
142 self.state = 'TRAILER'
143 self.payload_cnt = 0
144
145 self.data_parity ^= bit
146 self.data_col_parity[self.data_bits] ^= bit
147 self.data = (self.data << 1) | bit
148 return
149
150 if self.state == 'TRAILER':
151 self.payload_cnt += 1
152 if self.data_bits == 0:
13090f24 153 self.data_ss = ss
8f265907
BL
154 self.data = 0
155 self.data_parity = 0
156 self.data_bits += 1
157 self.col_parity[self.data_bits] = bit
13090f24 158 self.col_parity_pos.append([ss, es])
8f265907
BL
159
160 if self.data_bits == 5:
13090f24 161 self.put(ss, es, self.out_ann, [8, ['Stop bit', 'SB', 'S']])
428e40cb
UH
162
163 for i in range(1, 5):
164 s = 'OK' if self.data_col_parity[i] == \
165 self.col_parity[i] else 'ERROR'
166 c = 6 if s == 'OK' else 7
167 self.put(self.col_parity_pos[i - 1][0],
168 self.col_parity_pos[i - 1][1], self.out_ann,
169 [c, ['Column parity %d: %s' % (i, s),
170 'CP%d: %s' % (i, s), 'CP%d' % i, 'C']])
171
172 # Emit an annotation for valid-looking tags.
173 all_col_parity_ok = (self.data_col_parity[1:5] == self.col_parity[1:5])
174 if all_col_parity_ok and self.all_row_parity_ok:
13090f24 175 self.put(self.first_ss, es, self.out_ann,
428e40cb 176 [9, ['Tag: %010X' % self.tag, 'Tag', 'T']])
8f265907 177
428e40cb 178 self.tag = 0
8f265907 179 self.data_bits = 0
428e40cb 180
8f265907
BL
181 if self.payload_cnt == 5:
182 self.state = 'HEADER'
183 self.payload_cnt = 0
184 self.data_col_parity = [0, 0, 0, 0, 0, 0]
185 self.col_parity = [0, 0, 0, 0, 0, 0]
428e40cb
UH
186 self.col_parity_pos = []
187 self.all_row_parity_ok = True
8f265907 188
8f265907 189 def manchester_decode(self, samplenum, pl, pp, pin):
8f265907
BL
190 bit = self.oldpin ^ self.polarity
191 if pl > self.halfbit_limit:
91ae892d 192 es = int(samplenum - pl/2)
8f265907 193 if self.oldpl > self.halfbit_limit:
13090f24 194 ss = int(self.oldsamplenum - self.oldpl/2)
91ae892d 195 else:
13090f24 196 ss = int(self.oldsamplenum - self.oldpl)
91ae892d 197 self.putbit(bit, ss, es)
8f265907 198 self.last_bit_pos = int(samplenum - pl/2)
91ae892d
UH
199 else:
200 es = int(samplenum)
8f265907 201 if self.oldpl > self.halfbit_limit:
13090f24 202 ss = int(self.oldsamplenum - self.oldpl/2)
13090f24 203 self.putbit(bit, ss, es)
8f265907 204 self.last_bit_pos = int(samplenum)
91ae892d 205 else:
8f265907 206 if self.last_bit_pos <= self.oldsamplenum - self.oldpl:
13090f24 207 ss = int(self.oldsamplenum - self.oldpl)
13090f24 208 self.putbit(bit, ss, es)
8f265907
BL
209 self.last_bit_pos = int(samplenum)
210
211 def decode(self, ss, es, data):
212 if not self.samplerate:
213 raise SamplerateError('Cannot decode without samplerate.')
214 for (samplenum, (pin,)) in data:
215 # Ignore identical samples early on (for performance reasons).
216 if self.oldpin == pin:
217 continue
218
219 if self.oldpin is None:
220 self.oldpin = pin
221 self.last_samplenum = samplenum
222 self.lastlast_samplenum = samplenum
223 self.last_edge = samplenum
224 self.oldpl = 0
225 self.oldpp = 0
226 self.oldsamplenum = 0
227 self.last_bit_pos = 0
228 continue
229
230 if self.oldpin != pin:
231 pl = samplenum - self.oldsamplenum
232 pp = pin
8f265907 233 self.manchester_decode(samplenum, pl, pp, pin)
8f265907
BL
234 self.oldpl = pl
235 self.oldpp = pp
236 self.oldsamplenum = samplenum
237 self.oldpin = pin