]> sigrok.org Git - libsigrokdecode.git/blame - decoders/onewire/onewire.py
srd: Add National LM75 protocol decoder.
[libsigrokdecode.git] / decoders / onewire / onewire.py
CommitLineData
51990c45
IJ
1##
2## This file is part of the sigrok project.
3##
4## Copyright (C) 2011-2012 Uwe Hermann <uwe@hermann-uwe.de>
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, write to the Free Software
18## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19##
20
21# 1-Wire protocol decoder
22
23import sigrokdecode as srd
24
25# Annotation feed formats
26ANN_ASCII = 0
27ANN_DEC = 1
28ANN_HEX = 2
29ANN_OCT = 3
30ANN_BITS = 4
31
32class Decoder(srd.Decoder):
33 api_version = 1
34 id = 'onewire'
35 name = '1-Wire'
36 longname = ''
37 desc = '1-Wire bus and MicroLan'
38 license = 'gplv2+'
39 inputs = ['logic']
40 outputs = ['onewire']
41 probes = [
42 {'id': 'owr', 'name': 'OWR', 'desc': '1-Wire bus'},
43 ]
44 optional_probes = [
45 {'id': 'pwr', 'name': 'PWR', 'desc': '1-Wire power'},
46 ]
47 options = {
48 'overdrive': ['Overdrive', 0],
49 }
50 annotations = [
51 ['ASCII', 'Data bytes as ASCII characters'],
52 ['Decimal', 'Databytes as decimal, integer values'],
53 ['Hex', 'Data bytes in hex format'],
54 ['Octal', 'Data bytes as octal numbers'],
55 ['Bits', 'Data bytes in bit notation (sequence of 0/1 digits)'],
56 ]
57
58 def putx(self, data):
59 self.put(self.startsample, self.samplenum - 1, self.out_ann, data)
60
61 def __init__(self, **kwargs):
62 # Common variables
63 self.samplenum = 0
64 # Link layer variables
39a0219a 65 self.lnk_state = 'WAIT FOR NEGEDGE'
51990c45
IJ
66 self.lnk_event = 'NONE'
67 self.lnk_start = -1
68 self.lnk_bit = -1
69 self.lnk_cnt = 0
70 self.lnk_byte = -1
71 # Network layer variables
72 self.net_state = 'WAIT FOR EVENT'
73 self.net_event = 'NONE'
74 self.net_command = -1
75 # Transport layer variables
76 self.trn_state = 'WAIT FOR EVENT'
77 self.trn_event = 'NONE'
78
79 self.data_sample = -1
80 self.cur_data_bit = 0
81 self.databyte = 0
82 self.startsample = -1
83
84 def start(self, metadata):
85 self.samplerate = metadata['samplerate']
86 self.out_proto = self.add(srd.OUTPUT_PROTO, 'onewire')
4fe36ec3 87 self.out_ann = self.add(srd.OUTPUT_ANN , 'onewire')
51990c45
IJ
88
89 # The width of the 1-Wire time base (30us) in number of samples.
90 # TODO: optimize this value
91 self.time_base = float(self.samplerate) / float(0.000030)
92
93 def report(self):
94 pass
95
51990c45 96 def decode(self, ss, es, data):
4a583ba4 97 for (self.samplenum, (owr, pwr)) in data:
51990c45 98
51990c45 99 # Data link layer
39a0219a
IJ
100
101 # Clear events.
102 self.lnk_event = "RESET"
103 # State machine.
51990c45
IJ
104 if self.lnk_state == 'WAIT FOR FALLING EDGE':
105 # The start of a cycle is a falling edge.
39a0219a
IJ
106 if (owr == 0):
107 # Save the sample number for the falling edge.
108 self.lnk_fall = self.samplenum
51990c45 109 # Go to waiting for sample time
39a0219a
IJ
110 self.lnk_state = 'WAIT FOR DATA SAMPLE'
111 elif self.lnk_state == 'WAIT FOR DATA SAMPLE':
51990c45 112 # Data should be sample one 'time unit' after a falling edge
39a0219a 113 if (self.samplenum - self.lnk_fall == 1*self.time_base):
51990c45 114 self.lnk_bit = owr & 0x1
39a0219a
IJ
115 self.lnk_event = "DATA BIT"
116 if (self.lnk_bit) : self.lnk_state = 'WAIT FOR FALLING EDGE'
117 else : self.lnk_state = 'WAIT FOR RISING EDGE'
51990c45
IJ
118 elif self.lnk_state == 'WAIT FOR RISING EDGE':
119 # The end of a cycle is a rising edge.
39a0219a
IJ
120 if (owr == 1):
121 # A reset cycle is longer than 8T
122 if (self.samplenum - self.lnk_fall > 8*self.time_base):
123 # Save the sample number for the falling edge.
124 self.lnk_rise = self.samplenum
125 # Send a reset event to the next protocol layer
126 self.lnk_event = "RESET"
127 self.lnk_state = "WAIT FOR PRESENCE DETECT"
128 elif self.lnk_state == 'WAIT FOR PRESENCE DETECT':
129 # Data should be sample one 'time unit' after a falling edge
130 if (self.samplenum - self.lnk_rise == 2.5*self.time_base):
131 self.lnk_bit = owr & 0x1
132 self.lnk_event = "PRESENCE DETECT"
133 if (self.lnk_bit) : self.lnk_state = 'WAIT FOR FALLING EDGE'
134 else : self.lnk_state = 'WAIT FOR RISING EDGE'
135 else:
080243a8 136 raise Exception('Invalid lnk_state: %s' % self.lnk_state)
39a0219a
IJ
137
138 # Network layer
139
140 # Clear events.
141 self.net_event = "RESET"
142 # State machine.
4fe36ec3 143 if (self.lnk_event == "RESET"):
39a0219a
IJ
144 self.net_state = "WAIT FOR COMMAND"
145 self.net_cnt = 0
146 self.net_cmd = 0
4fe36ec3
IJ
147 elif (self.lnk_event == "DATA BIT"):
148 if (self.net_state == "WAIT FOR COMMAND"):
39a0219a
IJ
149 self.net_cnt = self.net_cnt + 1
150 self.net_cmd = (self.net_cmd << 1) & self.lnk_bit
4fe36ec3 151 if (self.lnk_cnt == 8):
1227e585
UH
152 self.put(self.startsample, self.samplenum,
153 self.out_proto, ['LNK: BYTE', self.lnk_byte])
154 self.put(self.startsample, self.samplenum, self.out_ann,
155 [ANN_DEC, ['LNK: BYTE: ' + self.lnk_byte]])
4fe36ec3 156 if (self.net_cmd == 0x33):
39a0219a 157 # READ ROM
4fe36ec3
IJ
158 break
159 elif (self.net_cmd == 0x0f):
39a0219a 160 # READ ROM
4fe36ec3
IJ
161 break
162 elif (self.net_cmd == 0xcc):
39a0219a 163 # SKIP ROM
4fe36ec3
IJ
164 break
165 elif (self.net_cmd == 0x55):
39a0219a 166 # MATCH ROM
4fe36ec3
IJ
167 break
168 elif (self.net_cmd == 0xf0):
39a0219a 169 # SEARCH ROM
4fe36ec3
IJ
170 break
171 elif (self.net_cmd == 0x3c):
39a0219a 172 # OVERDRIVE SKIP ROM
4fe36ec3
IJ
173 break
174 elif (self.net_cmd == 0x69):
39a0219a 175 # OVERDRIVE MATCH ROM
4fe36ec3 176 break
39a0219a 177 self.lnk_cnt = 0
4fe36ec3 178 if (self.net_state == "WAIT FOR ROM"):
39a0219a 179 #
4fe36ec3 180 break
39a0219a 181 else:
080243a8 182 raise Exception('Invalid net_state: %s' % self.net_state)
39a0219a 183 elif not (self.lnk_event == "NONE"):
080243a8 184 raise Exception('Invalid net_event: %s' % self.net_event)
51990c45 185
51990c45 186
51990c45 187
4fe36ec3
IJ
188# if (self.samplenum == self.lnk_start + 8*self.time_base):
189# self.put(self.startsample, self.samplenum - 1, self.out_proto, ['RESET'])