]> sigrok.org Git - libsigrokdecode.git/blame - decoders/spi.py
srd: SPI: Add support for bit order option.
[libsigrokdecode.git] / decoders / spi.py
CommitLineData
6eb87578
GM
1##
2## This file is part of the sigrok project.
3##
4## Copyright (C) 2011 Gareth McMullin <gareth@blacksphere.co.nz>
d6bace96 5## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
6eb87578
GM
6##
7## This program is free software; you can redistribute it and/or modify
8## it under the terms of the GNU General Public License as published by
9## the Free Software Foundation; either version 2 of the License, or
10## (at your option) any later version.
11##
12## This program is distributed in the hope that it will be useful,
13## but WITHOUT ANY WARRANTY; without even the implied warranty of
14## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15## GNU General Public License for more details.
16##
17## You should have received a copy of the GNU General Public License
18## along with this program; if not, write to the Free Software
19## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20##
ad2dc0de 21
677d597b 22import sigrokdecode as srd
67e847fd 23
238b4080
UH
24# Chip-select options
25ACTIVE_LOW = 0
26ACTIVE_HIGH = 1
27
28# Clock polarity options
29CPOL_0 = 0 # Clock is low when inactive
30CPOL_1 = 1 # Clock is high when inactive
31
32# Clock phase options
33CPHA_0 = 0 # Data is valid on the rising clock edge
34CPHA_1 = 1 # Data is valid on the falling clock edge
35
36# Bit order options
37MSB_FIRST = 0
0c3089c1 38LSB_FIRST = 1
238b4080 39
d6bace96
UH
40# Annotation formats
41ANN_HEX = 0
42
677d597b 43class Decoder(srd.Decoder):
67e847fd 44 id = 'spi'
2b7d0e2b 45 name = 'SPI'
2b7d0e2b 46 longname = 'Serial Peripheral Interface (SPI) bus'
9a12a6e7 47 desc = '...desc...'
6eb87578
GM
48 longdesc = '...longdesc...'
49 author = 'Gareth McMullin'
50 email = 'gareth@blacksphere.co.nz'
51 license = 'gplv2+'
52 inputs = ['logic']
53 outputs = ['spi']
6b5b91d2 54 probes = [
de9cee24
UH
55 {'id': 'mosi', 'name': 'MOSI',
56 'desc': 'SPI MOSI line (Master out, slave in)'},
4e570fa9
UH
57 {'id': 'miso', 'name': 'MISO',
58 'desc': 'SPI MISO line (Master in, slave out)'},
6b5b91d2 59 {'id': 'sck', 'name': 'CLK', 'desc': 'SPI clock line'},
4e570fa9 60 {'id': 'cs', 'name': 'CS#', 'desc': 'SPI CS (chip select) line'},
6b5b91d2 61 ]
238b4080
UH
62 options = {
63 'cs_active_low': ['CS# active low', ACTIVE_LOW],
64 'clock_polarity': ['Clock polarity', CPOL_0],
65 'clock_phase': ['Clock phase', CPHA_0],
66 'bit_order': ['Bit order within the SPI data', MSB_FIRST],
67 'word_size': ['Word size of SPI data', 8], # 1-64?
68 }
b1bb5eed 69 annotations = [
d6bace96 70 ['Hex', 'SPI data bytes in hex format'],
b1bb5eed 71 ]
6eb87578 72
3643fc3f 73 def __init__(self):
c66baa8c 74 self.oldsck = 1
a10bfc48 75 self.bitcount = 0
4917bb31 76 self.mosidata = 0
d6bace96 77 self.misodata = 0
6eb87578 78 self.bytesreceived = 0
d6bace96 79 self.samplenum = -1
6eb87578 80
0db89774
UH
81 # Set protocol decoder option defaults.
82 self.cs_active_low = Decoder.options['cs_active_low'][1]
83 self.clock_polarity = Decoder.options['clock_polarity'][1]
84 self.clock_phase = Decoder.options['clock_phase'][1]
85 self.bit_order = Decoder.options['bit_order'][1]
86 self.word_size = Decoder.options['word_size'][1]
87
3643fc3f 88 def start(self, metadata):
d6bace96 89 self.out_proto = self.add(srd.OUTPUT_PROTO, 'spi')
56202222 90 self.out_ann = self.add(srd.OUTPUT_ANN, 'spi')
3643fc3f 91
6eb87578 92 def report(self):
e100d51e 93 return 'SPI: %d bytes received' % self.bytesreceived
6eb87578 94
2b9837d9 95 def decode(self, ss, es, data):
6b5b91d2
UH
96 # HACK! At the moment the number of probes is not handled correctly.
97 # E.g. if an input file (-i foo.sr) has more than two probes enabled.
de9cee24 98 # for (samplenum, (mosi, sck, x, y, z, a)) in data:
b1bb5eed 99 # for (samplenum, (cs, miso, sck, mosi, wp, hold)) in data:
de9cee24 100 for (samplenum, (cs, miso, sck, mosi, wp, hold)) in data:
6eb87578 101
d6bace96
UH
102 self.samplenum += 1 # FIXME
103
de9cee24 104 # Sample data on rising SCK edges.
6eb87578
GM
105 if sck == self.oldsck:
106 continue
107 self.oldsck = sck
b1bb5eed 108 if sck == 0:
ad2dc0de 109 continue
6eb87578 110
d6bace96 111 # If this is the first bit, save its sample number.
a10bfc48 112 if self.bitcount == 0:
d6bace96 113 self.start_sample = samplenum
b1bb5eed 114
1ea831e9
UH
115 # Receive MOSI bit into our shift register.
116 if self.bit_order == MSB_FIRST:
117 self.mosidata |= mosi << (7 - self.bitcount)
118 else:
119 self.mosidata |= mosi << self.bitcount
120
121 # Receive MISO bit into our shift register.
122 if self.bit_order == MSB_FIRST:
123 self.misodata |= miso << (7 - self.bitcount)
124 else:
125 self.misodata |= miso << self.bitcount
b1bb5eed 126
a10bfc48 127 self.bitcount += 1
b1bb5eed
UH
128
129 # Continue to receive if not a byte yet.
a10bfc48 130 if self.bitcount != 8:
6eb87578 131 continue
b1bb5eed 132
d6bace96
UH
133 self.put(self.start_sample, self.samplenum, self.out_proto,
134 ['data', self.mosidata, self.misodata])
135 self.put(self.start_sample, self.samplenum, self.out_ann,
136 [ANN_HEX, ['MOSI: 0x%02x, MISO: 0x%02x' % (self.mosidata,
137 self.misodata)]])
b1bb5eed
UH
138
139 # Reset decoder state.
4917bb31 140 self.mosidata = 0
d6bace96 141 self.misodata = 0
a10bfc48 142 self.bitcount = 0
b1bb5eed
UH
143
144 # Keep stats for summary.
6eb87578 145 self.bytesreceived += 1
ad2dc0de 146