]> sigrok.org Git - libsigrokdecode.git/blame - decoders/i2s/pd.py
i2s: Define/use common proto out format.
[libsigrokdecode.git] / decoders / i2s / pd.py
CommitLineData
2ab416c2 1##
50bd5d25 2## This file is part of the libsigrokdecode project.
2ab416c2
JH
3##
4## Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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# I2S protocol decoder
22
23import sigrokdecode as srd
24
4adb11a9
UH
25'''
26Protocol output format:
27
28Packet:
29[<ptype>, <pdata>]
30
31<ptype>, <pdata>:
32 - 'DATA', [<channel>, <value>]
33
34<channel>: 'L' or 'R'
35<value>: integer
36'''
37
2ab416c2
JH
38class Decoder(srd.Decoder):
39 api_version = 1
40 id = 'i2s'
41 name = 'I2S'
42 longname = 'Integrated Interchip Sound'
a465436e 43 desc = 'Serial bus for connecting digital audio devices.'
2ab416c2
JH
44 license = 'gplv2+'
45 inputs = ['logic']
46 outputs = ['i2s']
47 probes = [
48 {'id': 'sck', 'name': 'SCK', 'desc': 'Bit clock line'},
49 {'id': 'ws', 'name': 'WS', 'desc': 'Word select line'},
ee3e279c 50 {'id': 'sd', 'name': 'SD', 'desc': 'Serial data line'},
2ab416c2 51 ]
ee3e279c
UH
52 optional_probes = []
53 options = {}
2ab416c2 54 annotations = [
29fc3625
UH
55 ['left', 'Left channel'],
56 ['right', 'Right channel'],
57 ['warnings', 'Warnings'],
2ab416c2
JH
58 ]
59
60 def __init__(self, **kwargs):
61 self.oldsck = 1
62 self.oldws = 1
63 self.bitcount = 0
64 self.data = 0
65 self.samplesreceived = 0
780a5bee 66 self.first_sample = None
2ab416c2 67 self.start_sample = None
abbbd2ba 68 self.wordlength = -1
2ab416c2
JH
69
70 def start(self, metadata):
780a5bee 71 self.samplerate = metadata['samplerate']
2ab416c2
JH
72 self.out_proto = self.add(srd.OUTPUT_PROTO, 'i2s')
73 self.out_ann = self.add(srd.OUTPUT_ANN, 'i2s')
74
2b2b7c30
UH
75 def putpb(self, data):
76 self.put(self.start_sample, self.samplenum, self.out_proto, data)
77
78 def putb(self, data):
79 self.put(self.start_sample, self.samplenum, self.out_ann, data)
80
2ab416c2 81 def report(self):
780a5bee 82
ee3e279c 83 # Calculate the sample rate.
780a5bee
JH
84 samplerate = '?'
85 if self.start_sample != None and \
86 self.first_sample != None and \
87 self.start_sample > self.first_sample:
ee3e279c 88 samplerate = '%d' % (self.samplesreceived *
780a5bee
JH
89 self.samplerate / (self.start_sample -
90 self.first_sample))
91
92 return 'I2S: %d %d-bit samples received at %sHz' % \
93 (self.samplesreceived, self.wordlength, samplerate)
2ab416c2
JH
94
95 def decode(self, ss, es, data):
2b2b7c30 96 for self.samplenum, (sck, ws, sd) in data:
2ab416c2
JH
97
98 # Ignore sample if the bit clock hasn't changed.
99 if sck == self.oldsck:
100 continue
101
102 self.oldsck = sck
ee3e279c 103 if sck == 0: # Ignore the falling clock edge.
2ab416c2
JH
104 continue
105
106 self.data = (self.data << 1) | sd
107 self.bitcount += 1
108
ee3e279c 109 # This was not the LSB unless WS has flipped.
2ab416c2
JH
110 if ws == self.oldws:
111 continue
112
ee3e279c 113 # Only submit the sample, if we received the beginning of it.
2ab416c2
JH
114 if self.start_sample != None:
115 self.samplesreceived += 1
4adb11a9 116 self.putpb(['DATA', ['L' if self.oldws else 'R', self.data]])
2b2b7c30 117 self.putb([0 if self.oldws else 1, ['0x%08x' % self.data]])
abbbd2ba 118
ee3e279c 119 # Check that the data word was the correct length.
abbbd2ba 120 if self.wordlength != -1 and self.wordlength != self.bitcount:
2b2b7c30
UH
121 self.putb([2, ['Received %d-bit word, expected %d-bit '
122 'word' % (self.bitcount, self.wordlength)]])
abbbd2ba
JH
123
124 self.wordlength = self.bitcount
2ab416c2
JH
125
126 # Reset decoder state.
127 self.data = 0
128 self.bitcount = 0
2b2b7c30 129 self.start_sample = self.samplenum
780a5bee 130
ee3e279c 131 # Save the first sample position.
780a5bee 132 if self.first_sample == None:
2b2b7c30 133 self.first_sample = self.samplenum
780a5bee 134
2ab416c2 135 self.oldws = ws
ee3e279c 136