]> sigrok.org Git - libsigrokdecode.git/blob - decoders/onewire/onewire.py
srd: onewire: Get optional 'pwr' probe value, too.
[libsigrokdecode.git] / decoders / onewire / onewire.py
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
23 import sigrokdecode as srd
24
25 # Annotation feed formats
26 ANN_ASCII = 0
27 ANN_DEC = 1
28 ANN_HEX = 2
29 ANN_OCT = 3
30 ANN_BITS = 4
31
32 class 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
65         self.lnk_state = 'WAIT FOR NEGEDGE'
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')
87         self.out_ann   = self.add(srd.OUTPUT_ANN  , 'onewire')
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
96     def decode(self, ss, es, data):
97         for (self.samplenum, (owr, pwr)) in data:
98
99             # Data link layer
100
101             # Clear events.
102             self.lnk_event = "RESET"
103             # State machine.
104             if self.lnk_state == 'WAIT FOR FALLING EDGE':
105                 # The start of a cycle is a falling edge.
106                 if (owr == 0):
107                     # Save the sample number for the falling edge.
108                     self.lnk_fall = self.samplenum
109                     # Go to waiting for sample time
110                     self.lnk_state = 'WAIT FOR DATA SAMPLE'
111             elif self.lnk_state == 'WAIT FOR DATA SAMPLE':
112                 # Data should be sample one 'time unit' after a falling edge
113                 if (self.samplenum - self.lnk_fall == 1*self.time_base):
114                     self.lnk_bit  = owr & 0x1
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'
118             elif self.lnk_state == 'WAIT FOR RISING EDGE':
119                 # The end of a cycle is a rising edge.
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:
136                 raise Exception('Invalid lnk_state: %d' % self.lnk_state)
137
138             # Network layer
139             
140             # Clear events.
141             self.net_event = "RESET"
142             # State machine.
143             if (self.lnk_event == "RESET"):
144                 self.net_state = "WAIT FOR COMMAND"
145                 self.net_cnt = 0
146                 self.net_cmd = 0
147             elif (self.lnk_event == "DATA BIT"):
148                 if (self.net_state == "WAIT FOR COMMAND"):
149                     self.net_cnt = self.net_cnt + 1
150                     self.net_cmd = (self.net_cmd << 1) & self.lnk_bit
151                     if (self.lnk_cnt == 8):
152                         self.put(self.startsample, self.samplenum, self.out_proto, ['LNK: BYTE', self.lnk_byte])
153                         self.put(self.startsample, self.samplenum, self.out_ann  , ['LNK: BYTE', self.lnk_byte])
154                         if   (self.net_cmd == 0x33):
155                             # READ ROM
156                             break
157                         elif (self.net_cmd == 0x0f):
158                             # READ ROM
159                             break
160                         elif (self.net_cmd == 0xcc):
161                             # SKIP ROM
162                             break
163                         elif (self.net_cmd == 0x55):
164                             # MATCH ROM
165                             break
166                         elif (self.net_cmd == 0xf0):
167                             # SEARCH ROM
168                             break
169                         elif (self.net_cmd == 0x3c):
170                             # OVERDRIVE SKIP ROM
171                             break
172                         elif (self.net_cmd == 0x69):
173                             # OVERDRIVE MATCH ROM
174                             break
175                         self.lnk_cnt = 0
176                 if (self.net_state == "WAIT FOR ROM"):
177                     #
178                     break
179                 else:
180                     raise Exception('Invalid net_state: %d' % self.net_state)
181             elif not (self.lnk_event == "NONE"):
182                 raise Exception('Invalid net_event: %d' % self.net_event)
183
184
185
186 #                    if (self.samplenum == self.lnk_start + 8*self.time_base):
187 #                        self.put(self.startsample, self.samplenum - 1, self.out_proto, ['RESET'])