]> sigrok.org Git - libsigrokdecode.git/blob - decoders/lpc/pd.py
adcac1dc5a441f8a267bb5e94f31626db283530c
[libsigrokdecode.git] / decoders / lpc / pd.py
1 ##
2 ## This file is part of the libsigrokdecode project.
3 ##
4 ## Copyright (C) 2012-2013 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 # LPC protocol decoder
22
23 import sigrokdecode as srd
24
25 # ...
26 fields = {
27     # START field (indicates start or stop of a transaction)
28     'START': {
29         0b0000: 'Start of cycle for a target',
30         0b0001: 'Reserved',
31         0b0010: 'Grant for bus master 0',
32         0b0011: 'Grant for bus master 1',
33         0b0100: 'Reserved',
34         0b0101: 'Reserved',
35         0b0110: 'Reserved',
36         0b0111: 'Reserved',
37         0b1000: 'Reserved',
38         0b1001: 'Reserved',
39         0b1010: 'Reserved',
40         0b1011: 'Reserved',
41         0b1100: 'Reserved',
42         0b1101: 'Start of cycle for a Firmware Memory Read cycle',
43         0b1110: 'Start of cycle for a Firmware Memory Write cycle',
44         0b1111: 'Stop/abort (end of a cycle for a target)',
45     },
46     # Cycle type / direction field
47     # Bit 0 (LAD[0]) is unused, should always be 0.
48     # Neither host nor peripheral are allowed to drive 0b11x0.
49     'CT_DR': {
50         0b0000: 'I/O read',
51         0b0010: 'I/O write',
52         0b0100: 'Memory read',
53         0b0110: 'Memory write',
54         0b1000: 'DMA read',
55         0b1010: 'DMA write',
56         0b1100: 'Reserved / not allowed',
57         0b1110: 'Reserved / not allowed',
58     },
59     # SIZE field (determines how many bytes are to be transferred)
60     # Bits[3:2] are reserved, must be driven to 0b00.
61     # Neither host nor peripheral are allowed to drive 0b0010.
62     'SIZE': {
63         0b0000: '8 bits (1 byte)',
64         0b0001: '16 bits (2 bytes)',
65         0b0010: 'Reserved / not allowed',
66         0b0011: '32 bits (4 bytes)',
67     },
68     # CHANNEL field (bits[2:0] contain the DMA channel number)
69     'CHANNEL': {
70         0b0000: '0',
71         0b0001: '1',
72         0b0010: '2',
73         0b0011: '3',
74         0b0100: '4',
75         0b0101: '5',
76         0b0110: '6',
77         0b0111: '7',
78     },
79     # SYNC field (used to add wait states)
80     'SYNC': {
81         0b0000: 'Ready',
82         0b0001: 'Reserved',
83         0b0010: 'Reserved',
84         0b0011: 'Reserved',
85         0b0100: 'Reserved',
86         0b0101: 'Short wait',
87         0b0110: 'Long wait',
88         0b0111: 'Reserved',
89         0b1000: 'Reserved',
90         0b1001: 'Ready more (DMA only)',
91         0b1010: 'Error',
92         0b1011: 'Reserved',
93         0b1100: 'Reserved',
94         0b1101: 'Reserved',
95         0b1110: 'Reserved',
96         0b1111: 'Reserved',
97     },
98 }
99
100 class Decoder(srd.Decoder):
101     api_version = 1
102     id = 'lpc'
103     name = 'LPC'
104     longname = 'Low-Pin-Count'
105     desc = 'Protocol for low-bandwidth devices on PC mainboards.'
106     license = 'gplv2+'
107     inputs = ['logic']
108     outputs = ['lpc']
109     probes = [
110         {'id': 'lframe', 'name': 'LFRAME#', 'desc': 'TODO'},
111         {'id': 'lclk',   'name': 'LCLK',    'desc': 'TODO'},
112         {'id': 'lad0',   'name': 'LAD[0]',  'desc': 'TODO'},
113         {'id': 'lad1',   'name': 'LAD[1]',  'desc': 'TODO'},
114         {'id': 'lad2',   'name': 'LAD[2]',  'desc': 'TODO'},
115         {'id': 'lad3',   'name': 'LAD[3]',  'desc': 'TODO'},
116     ]
117     optional_probes = [
118         {'id': 'lreset', 'name': 'LRESET#', 'desc': 'TODO'},
119         {'id': 'ldrq',   'name': 'LDRQ#',   'desc': 'TODO'},
120         {'id': 'serirq', 'name': 'SERIRQ',  'desc': 'TODO'},
121         {'id': 'clkrun', 'name': 'CLKRUN#', 'desc': 'TODO'},
122         {'id': 'lpme',   'name': 'LPME#',   'desc': 'TODO'},
123         {'id': 'lpcpd',  'name': 'LPCPD#',  'desc': 'TODO'},
124         {'id': 'lsmi',   'name': 'LSMI#',   'desc': 'TODO'},
125     ]
126     options = {}
127     annotations = [
128         ['Text', 'Human-readable text'],
129     ]
130
131     def __init__(self, **kwargs):
132         self.state = 'IDLE'
133         self.oldlclk = -1
134         self.samplenum = 0
135         self.clocknum = 0
136         self.lad = -1
137         self.addr = 0
138         self.cur_nibble = 0
139         self.cycle_type = -1
140         self.databyte = 0
141         self.tarcount = 0
142         self.synccount = 0
143         self.oldpins = None
144
145     def start(self, metadata):
146         # self.out_proto = self.add(srd.OUTPUT_PROTO, 'lpc')
147         self.out_ann = self.add(srd.OUTPUT_ANN, 'lpc')
148
149     def report(self):
150         pass
151
152     def putb(self, data):
153         self.put(0, 0, self.out_ann, data)
154
155     def handle_get_start(self, lad, lad_bits, lframe):
156         # LAD[3:0]: START field (1 clock cycle).
157
158         # The last value of LAD[3:0] before LFRAME# gets de-asserted is what
159         # the peripherals must use. However, the host can keep LFRAME# asserted
160         # multiple clocks, and we output all START fields that occur, even
161         # though the peripherals are supposed to ignore all but the last one.
162         s = fields['START'][lad]
163         self.putb([0, [s]])
164
165         # Output a warning if LAD[3:0] changes while LFRAME# is low.
166         # TODO
167         if (self.lad != -1 and self.lad != lad):
168             self.putb([0, ['Warning: LAD[3:0] changed while '
169                            'LFRAME# was asserted']])
170
171         # LFRAME# is asserted (low). Wait until it gets de-asserted again
172         # (the host is allowed to keep it asserted multiple clocks).
173         if lframe != 1:
174             return
175
176         self.start_field = self.lad
177         self.state = 'GET CT/DR'
178
179     def handle_get_ct_dr(self, lad, lad_bits):
180         # LAD[3:0]: Cycle type / direction field (1 clock cycle).
181
182         self.cycle_type = fields['CT_DR'][lad]
183
184         # TODO: Warning/error on invalid cycle types.
185         if self.cycle_type == 'Reserved':
186             self.putb([0, ['Warning: Invalid cycle type (%s)' % lad_bits]])
187
188         # ...
189         self.putb([0, ['Cycle type: %s' % self.cycle_type]])
190
191         self.state = 'GET ADDR'
192         self.addr = 0
193         self.cur_nibble = 0
194
195     def handle_get_addr(self, lad, lad_bits):
196         # LAD[3:0]: ADDR field (4/8/0 clock cycles).
197
198         # I/O cycles: 4 ADDR clocks. Memory cycles: 8 ADDR clocks.
199         # DMA cycles: no ADDR clocks at all.
200         if self.cycle_type in ('I/O read', 'I/O write'):
201             addr_nibbles = 4 # Address is 16bits.
202         elif self.cycle_type in ('Memory read', 'Memory write'):
203             addr_nibbles = 8 # Address is 32bits.
204         else:
205             addr_nibbles = 0 # TODO: How to handle later on?
206
207         # Addresses are driven MSN-first.
208         offset = ((addr_nibbles - 1) - self.cur_nibble) * 4
209         self.addr |= (lad << offset)
210
211         # Continue if we haven't seen all ADDR cycles, yet.
212         if (self.cur_nibble < addr_nibbles - 1):
213             self.cur_nibble += 1
214             return
215
216         s = 'Address: 0x%%0%dx' % addr_nibbles
217         self.putb([0, [s % self.addr]])
218
219         self.state = 'GET TAR'
220         self.tar_count = 0
221
222     def handle_get_tar(self, lad, lad_bits):
223         # LAD[3:0]: First TAR (turn-around) field (2 clock cycles).
224
225         self.putb([0, ['TAR, cycle %d: %s' % (self.tarcount, lad_bits)]])
226
227         # On the first TAR clock cycle LAD[3:0] is driven to 1111 by
228         # either the host or peripheral. On the second clock cycle,
229         # the host or peripheral tri-states LAD[3:0], but its value
230         # should still be 1111, due to pull-ups on the LAD lines.
231         if lad_bits != '1111':
232             self.putb([0, ['Warning: TAR, cycle %d: %s (expected 1111)' % \
233                            (self.tarcount, lad_bits)]])
234
235         if (self.tarcount != 1):
236             self.tarcount += 1
237             return
238
239         self.tarcount = 0
240         self.state = 'GET SYNC'
241
242     def handle_get_sync(self, lad, lad_bits):
243         # LAD[3:0]: SYNC field (1-n clock cycles).
244
245         self.sync_val = lad_bits
246         self.cycle_type = fields['SYNC'][lad]
247
248         # TODO: Warnings if reserved value are seen?
249         if self.cycle_type == 'Reserved':
250             self.putb([0, ['Warning: SYNC, cycle %d: %s (reserved value)' % \
251                            (self.synccount, self.sync_val)]])
252
253         self.putb([0, ['SYNC, cycle %d: %s' % (self.synccount, self.sync_val)]])
254
255         # TODO
256
257         self.cycle_count = 0
258         self.state = 'GET DATA'
259
260     def handle_get_data(self, lad, lad_bits):
261         # LAD[3:0]: DATA field (2 clock cycles).
262
263         # Data is driven LSN-first.
264         if (self.cycle_count == 0):
265             self.databyte = lad
266         elif (self.cycle_count == 1):
267             self.databyte |= (lad << 4)
268         else:
269             raise Exception('Invalid cycle_count: %d' % self.cycle_count)
270
271         if (self.cycle_count != 1):
272             self.cycle_count += 1
273             return
274
275         self.putb([0, ['DATA: 0x%02x' % self.databyte]])
276
277         self.cycle_count = 0
278         self.state = 'GET TAR2'
279
280     def handle_get_tar2(self, lad, lad_bits):
281         # LAD[3:0]: Second TAR field (2 clock cycles).
282
283         self.putb([0, ['TAR, cycle %d: %s' % (self.tarcount, lad_bits)]])
284
285         # On the first TAR clock cycle LAD[3:0] is driven to 1111 by
286         # either the host or peripheral. On the second clock cycle,
287         # the host or peripheral tri-states LAD[3:0], but its value
288         # should still be 1111, due to pull-ups on the LAD lines.
289         if lad_bits != '1111':
290             self.putb([0, ['Warning: TAR, cycle %d: %s (expected 1111)'
291                            % (self.tarcount, lad_bits)]])
292
293         if (self.tarcount != 1):
294             self.tarcount += 1
295             return
296
297         self.tarcount = 0
298         self.state = 'IDLE'
299
300     def decode(self, ss, es, data):
301         for (samplenum, pins) in data:
302
303             # If none of the pins changed, there's nothing to do.
304             if self.oldpins == pins:
305                 continue
306
307             # Store current pin values for the next round.
308             self.oldpins = pins
309
310             # Get individual pin values into local variables.
311             (lframe, lclk, lad0, lad1, lad2, lad3) = pins[:6]
312             (lreset, ldrq, serirq, clkrun, lpme, lpcpd, lsmi) = pins[6:]
313
314             # Only look at the signals upon rising LCLK edges. The LPC clock
315             # is the same as the PCI clock (which is sampled at rising edges).
316             if not (self.oldlclk == 0 and lclk == 1):
317                 self.oldlclk = lclk
318                 continue
319
320             # Store LAD[3:0] bit values (one nibble) in local variables.
321             # Most (but not all) states need this.
322             if self.state != 'IDLE':
323                 lad = (lad3 << 3) | (lad2 << 2) | (lad1 << 1) | lad0
324                 lad_bits = bin(lad)[2:].zfill(4)
325                 # self.putb([0, ['LAD: %s' % lad_bits]])
326
327             # TODO: Only memory read/write is currently supported/tested.
328
329             # State machine
330             if self.state == 'IDLE':
331                 # A valid LPC cycle starts with LFRAME# being asserted (low).
332                 if lframe != 0:
333                    continue
334                 self.state = 'GET START'
335                 self.lad = -1
336                 # self.clocknum = 0
337             elif self.state == 'GET START':
338                 self.handle_get_start(lad, lad_bits, lframe)
339             elif self.state == 'GET CT/DR':
340                 self.handle_get_ct_dr(lad, lad_bits)
341             elif self.state == 'GET ADDR':
342                 self.handle_get_addr(lad, lad_bits)
343             elif self.state == 'GET TAR':
344                 self.handle_get_tar(lad, lad_bits)
345             elif self.state == 'GET SYNC':
346                 self.handle_get_sync(lad, lad_bits)
347             elif self.state == 'GET DATA':
348                 self.handle_get_data(lad, lad_bits)
349             elif self.state == 'GET TAR2':
350                 self.handle_get_tar2(lad, lad_bits)
351             else:
352                 raise Exception('Invalid state: %s' % self.state)
353