]> sigrok.org Git - libsigrokdecode.git/blob - decoders/ieee488/pd.py
ieee488: introduce 'delim' option for improved text output
[libsigrokdecode.git] / decoders / ieee488 / pd.py
1 ##
2 ## This file is part of the libsigrokdecode project.
3 ##
4 ## Copyright (C) 2016 Rudolf Reuter <reuterru@arcor.de>
5 ## Copyright (C) 2017 Marcus Comstedt <marcus@mc.pp.se>
6 ## Copyright (C) 2019 Gerhard Sittig <gerhard.sittig@gmx.net>
7 ##
8 ## This program is free software; you can redistribute it and/or modify
9 ## it under the terms of the GNU General Public License as published by
10 ## the Free Software Foundation; either version 2 of the License, or
11 ## (at your option) any later version.
12 ##
13 ## This program is distributed in the hope that it will be useful,
14 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 ## GNU General Public License for more details.
17 ##
18 ## You should have received a copy of the GNU General Public License
19 ## along with this program; if not, see <http://www.gnu.org/licenses/>.
20 ##
21
22 # This file was created from earlier implementations of the 'gpib' and
23 # the 'iec' protocol decoders. It combines the parallel and the serial
24 # transmission variants in a single instance with optional inputs for
25 # maximum code re-use.
26
27 # TODO
28 # - Extend annotations for improved usability.
29 #   - Keep talkers' data streams on separate annotation rows? Is this useful
30 #     here at the GPIB level, or shall stacked decoders dispatch these? May
31 #     depend on how often captures get inspected which involve multiple peers.
32 #   - Make serial bit annotations optional? Could slow down interactive
33 #     exploration for long captures (see USB).
34 # - Move the inlined Commodore IEC peripherals support to a stacked decoder
35 #   when more peripherals get added.
36 # - SCPI over GPIB may "represent somewhat naturally" here already when
37 #   text lines are a single run of data at the GPIB layer (each line between
38 #   the address spec and either EOI or ATN). So a stacked SCPI decoder may
39 #   only become necessary when the text lines' content shall get inspected.
40
41 import sigrokdecode as srd
42 from common.srdhelper import bitpack
43
44 '''
45 OUTPUT_PYTHON format for stacked decoders:
46
47 General packet format:
48 [<ptype>, <addr>, <pdata>]
49
50 This is the list of <ptype>s and their respective <pdata> values:
51
52 Raw bits and bytes at the physical transport level:
53  - 'IEC_BIT': <addr> is not applicable, <pdata> is the transport's bit value.
54  - 'GPIB_RAW': <addr> is not applicable, <pdata> is the transport's
55    byte value. Data bytes are in the 0x00-0xff range, command/address
56    bytes are in the 0x100-0x1ff range.
57
58 GPIB level byte fields (commands, addresses, pieces of data):
59  - 'COMMAND': <addr> is not applicable, <pdata> is the command's byte value.
60  - 'LISTEN': <addr> is the listener address (0-30), <pdata> is the raw
61    byte value (including the 0x20 offset).
62  - 'TALK': <addr> is the talker address (0-30), <pdata> is the raw byte
63    value (including the 0x40 offset).
64  - 'SECONDARY': <addr> is the secondary address (0-31), <pdata> is the
65    raw byte value (including the 0x60 offset).
66  - 'MSB_SET': <addr> as well as <pdata> are the raw byte value (including
67    the 0x80 offset). This usually does not happen for GPIB bytes with ATN
68    active, but was observed with the IEC bus and Commodore floppy drives,
69    when addressing channels within the device.
70  - 'DATA_BYTE': <addr> is the talker address (when available), <pdata>
71    is the raw data byte (transport layer, ATN inactive).
72
73 Extracted payload information (peers and their communicated data):
74  - 'TALK_LISTEN': <addr> is the current talker, <pdata> is the list of
75    current listeners. These updates for the current "connected peers"
76    are sent when the set of peers changes, i.e. after talkers/listeners
77    got selected or deselected. Of course the data only covers what could
78    be gathered from the input data. Some controllers may not explicitly
79    address themselves, or captures may not include an early setup phase.
80  - 'TALKER_BYTES': <addr> is the talker address (when available), <pdata>
81    is the accumulated byte sequence between addressing a talker and EOI,
82    or the next command/address.
83  - 'TALKER_TEXT': <addr> is the talker address (when available), <pdata>
84    is the accumulated text sequence between addressing a talker and EOI,
85    or the next command/address.
86 '''
87
88 class ChannelError(Exception):
89     pass
90
91 def _format_ann_texts(fmts, **args):
92     if not fmts:
93         return None
94     return [fmt.format(**args) for fmt in fmts]
95
96 _cmd_table = {
97     # Command codes in the 0x00-0x1f range.
98     0x01: ['Go To Local', 'GTL'],
99     0x04: ['Selected Device Clear', 'SDC'],
100     0x05: ['Parallel Poll Configure', 'PPC'],
101     0x08: ['Global Execute Trigger', 'GET'],
102     0x09: ['Take Control', 'TCT'],
103     0x11: ['Local Lock Out', 'LLO'],
104     0x14: ['Device Clear', 'DCL'],
105     0x15: ['Parallel Poll Unconfigure', 'PPU'],
106     0x18: ['Serial Poll Enable', 'SPE'],
107     0x19: ['Serial Poll Disable', 'SPD'],
108     # Unknown type of command.
109     None: ['Unknown command 0x{cmd:02x}', 'command 0x{cmd:02x}', 'cmd {cmd:02x}', 'C{cmd_ord:c}'],
110     # Special listener/talker "addresses" (deselecting previous peers).
111     0x3f: ['Unlisten', 'UNL'],
112     0x5f: ['Untalk', 'UNT'],
113 }
114
115 def _is_command(b):
116     # Returns a tuple of booleans (or None when not applicable) whether
117     # the raw GPIB byte is: a command, an un-listen, an un-talk command.
118     if b in range(0x00, 0x20):
119         return True, None, None
120     if b in range(0x20, 0x40) and (b & 0x1f) == 31:
121         return True, True, False
122     if b in range(0x40, 0x60) and (b & 0x1f) == 31:
123         return True, False, True
124     return False, None, None
125
126 def _is_listen_addr(b):
127     if b in range(0x20, 0x40):
128         return b & 0x1f
129     return None
130
131 def _is_talk_addr(b):
132     if b in range(0x40, 0x60):
133         return b & 0x1f
134     return None
135
136 def _is_secondary_addr(b):
137     if b in range(0x60, 0x80):
138         return b & 0x1f
139     return None
140
141 def _is_msb_set(b):
142     if b & 0x80:
143         return b
144     return None
145
146 def _get_raw_byte(b, atn):
147     # "Decorate" raw byte values for stacked decoders.
148     return b | 0x100 if atn else b
149
150 def _get_raw_text(b, atn):
151     return ['{leader}{data:02x}'.format(leader = '/' if atn else '', data = b)]
152
153 def _get_command_texts(b):
154     fmts = _cmd_table.get(b, None)
155     known = fmts is not None
156     if not fmts:
157         fmts = _cmd_table.get(None, None)
158     if not fmts:
159         return known, None
160     return known, _format_ann_texts(fmts, cmd = b, cmd_ord = ord('0') + b)
161
162 def _get_address_texts(b):
163     laddr = _is_listen_addr(b)
164     taddr = _is_talk_addr(b)
165     saddr = _is_secondary_addr(b)
166     msb = _is_msb_set(b)
167     fmts = None
168     if laddr is not None:
169         fmts = ['Listen {addr:d}', 'L {addr:d}', 'L{addr_ord:c}']
170         addr = laddr
171     elif taddr is not None:
172         fmts = ['Talk {addr:d}', 'T {addr:d}', 'T{addr_ord:c}']
173         addr = taddr
174     elif saddr is not None:
175         fmts = ['Secondary {addr:d}', 'S {addr:d}', 'S{addr_ord:c}']
176         addr = saddr
177     elif msb is not None: # For IEC bus compat.
178         fmts = ['Secondary {addr:d}', 'S {addr:d}', 'S{addr_ord:c}']
179         addr = msb
180     return _format_ann_texts(fmts, addr = addr, addr_ord = ord('0') + addr)
181
182 def _get_data_text(b):
183     # TODO Move the table of ASCII control characters to a common location?
184     # TODO Move the "printable with escapes" logic to a common helper?
185     _control_codes = {
186         0x00: 'NUL',
187         0x01: 'SOH',
188         0x02: 'STX',
189         0x03: 'ETX',
190         0x04: 'EOT',
191         0x05: 'ENQ',
192         0x06: 'ACK',
193         0x07: 'BEL',
194         0x08: 'BS',
195         0x09: 'TAB',
196         0x0a: 'LF',
197         0x0b: 'VT',
198         0x0c: 'FF',
199         0x0d: 'CR',
200         0x0e: 'SO',
201         0x0f: 'SI',
202         0x10: 'DLE',
203         0x11: 'DC1',
204         0x12: 'DC2',
205         0x13: 'DC3',
206         0x14: 'DC4',
207         0x15: 'NAK',
208         0x16: 'SYN',
209         0x17: 'ETB',
210         0x18: 'CAN',
211         0x19: 'EM',
212         0x1a: 'SUB',
213         0x1b: 'ESC',
214         0x1c: 'FS',
215         0x1d: 'GS',
216         0x1e: 'RS',
217         0x1f: 'US',
218     }
219     # Yes, exclude 0x7f (DEL) here. It's considered non-printable.
220     if b in range(0x20, 0x7f) and b not in ('[', ']'):
221         return '{:s}'.format(chr(b))
222     elif b in _control_codes:
223         return '[{:s}]'.format(_control_codes[b])
224     # Use a compact yet readable and unambigous presentation for bytes
225     # which contain non-printables. The format that is used here is
226     # compatible with 93xx EEPROM and UART decoders.
227     return '[{:02x}]'.format(b)
228
229 (
230     PIN_DIO1, PIN_DIO2, PIN_DIO3, PIN_DIO4,
231     PIN_DIO5, PIN_DIO6, PIN_DIO7, PIN_DIO8,
232     PIN_EOI, PIN_DAV, PIN_NRFD, PIN_NDAC,
233     PIN_IFC, PIN_SRQ, PIN_ATN, PIN_REN,
234     PIN_CLK,
235 ) = range(17)
236 PIN_DATA = PIN_DIO1
237
238 (
239     ANN_RAW_BIT, ANN_RAW_BYTE,
240     ANN_CMD, ANN_LADDR, ANN_TADDR, ANN_SADDR, ANN_DATA,
241     ANN_EOI,
242     ANN_TEXT,
243     # TODO Want to provide one annotation class per talker address (0-30)?
244     ANN_IEC_PERIPH,
245     ANN_WARN,
246 ) = range(11)
247
248 (
249     BIN_RAW,
250     BIN_DATA,
251     # TODO Want to provide one binary annotation class per talker address (0-30)?
252 ) = range(2)
253
254 class Decoder(srd.Decoder):
255     api_version = 3
256     id = 'ieee488'
257     name = 'IEEE-488'
258     longname = 'IEEE-488 GPIB/HPIB/IEC'
259     desc = 'IEEE-488 General Purpose Interface Bus (GPIB/HPIB or IEC).'
260     license = 'gplv2+'
261     inputs = ['logic']
262     outputs = ['ieee488']
263     tags = ['PC', 'Retro computing']
264     channels = (
265         {'id': 'dio1' , 'name': 'DIO1/DATA',
266             'desc': 'Data I/O bit 1, or serial data'},
267     )
268     optional_channels = (
269         {'id': 'dio2' , 'name': 'DIO2', 'desc': 'Data I/O bit 2'},
270         {'id': 'dio3' , 'name': 'DIO3', 'desc': 'Data I/O bit 3'},
271         {'id': 'dio4' , 'name': 'DIO4', 'desc': 'Data I/O bit 4'},
272         {'id': 'dio5' , 'name': 'DIO5', 'desc': 'Data I/O bit 5'},
273         {'id': 'dio6' , 'name': 'DIO6', 'desc': 'Data I/O bit 6'},
274         {'id': 'dio7' , 'name': 'DIO7', 'desc': 'Data I/O bit 7'},
275         {'id': 'dio8' , 'name': 'DIO8', 'desc': 'Data I/O bit 8'},
276         {'id': 'eoi', 'name': 'EOI', 'desc': 'End or identify'},
277         {'id': 'dav', 'name': 'DAV', 'desc': 'Data valid'},
278         {'id': 'nrfd', 'name': 'NRFD', 'desc': 'Not ready for data'},
279         {'id': 'ndac', 'name': 'NDAC', 'desc': 'Not data accepted'},
280         {'id': 'ifc', 'name': 'IFC', 'desc': 'Interface clear'},
281         {'id': 'srq', 'name': 'SRQ', 'desc': 'Service request'},
282         {'id': 'atn', 'name': 'ATN', 'desc': 'Attention'},
283         {'id': 'ren', 'name': 'REN', 'desc': 'Remote enable'},
284         {'id': 'clk', 'name': 'CLK', 'desc': 'Serial clock'},
285     )
286     options = (
287         {'id': 'iec_periph', 'desc': 'Decode Commodore IEC bus peripherals details',
288             'default': 'no', 'values': ('no', 'yes')},
289         {'id': 'delim', 'desc': 'Payload data delimiter',
290             'default': 'eol', 'values': ('none', 'eol')},
291     )
292     annotations = (
293         ('bit', 'IEC bit'),
294         ('raw', 'Raw byte'),
295         ('cmd', 'Command'),
296         ('laddr', 'Listener address'),
297         ('taddr', 'Talker address'),
298         ('saddr', 'Secondary address'),
299         ('data', 'Data byte'),
300         ('eoi', 'EOI'),
301         ('text', 'Talker text'),
302         ('periph', 'IEC bus peripherals'),
303         ('warn', 'Warning'),
304     )
305     annotation_rows = (
306         ('bits', 'IEC bits', (ANN_RAW_BIT,)),
307         ('raws', 'Raw bytes', (ANN_RAW_BYTE,)),
308         ('gpib', 'Commands/data', (ANN_CMD, ANN_LADDR, ANN_TADDR, ANN_SADDR, ANN_DATA,)),
309         ('eois', 'EOI', (ANN_EOI,)),
310         ('texts', 'Talker texts', (ANN_TEXT,)),
311         ('periphs', 'IEC peripherals', (ANN_IEC_PERIPH,)),
312         ('warns', 'Warnings', (ANN_WARN,)),
313     )
314     binary = (
315         ('raw', 'Raw bytes'),
316         ('data', 'Talker bytes'),
317     )
318
319     def __init__(self):
320         self.reset()
321
322     def reset(self):
323         self.curr_raw = None
324         self.curr_atn = None
325         self.curr_eoi = None
326         self.latch_atn = None
327         self.latch_eoi = None
328         self.accu_bytes = []
329         self.accu_text = []
330         self.ss_raw = None
331         self.es_raw = None
332         self.ss_eoi = None
333         self.es_eoi = None
334         self.ss_text = None
335         self.es_text = None
336         self.last_talker = None
337         self.last_listener = []
338         self.last_iec_addr = None
339         self.last_iec_sec = None
340
341     def start(self):
342         self.out_ann = self.register(srd.OUTPUT_ANN)
343         self.out_bin = self.register(srd.OUTPUT_BINARY)
344         self.out_python = self.register(srd.OUTPUT_PYTHON)
345
346     def putg(self, ss, es, data):
347         self.put(ss, es, self.out_ann, data)
348
349     def putbin(self, ss, es, data):
350         self.put(ss, es, self.out_bin, data)
351
352     def putpy(self, ss, es, ptype, addr, pdata):
353         self.put(ss, es, self.out_python, [ptype, addr, pdata])
354
355     def emit_eoi_ann(self, ss, es):
356         self.putg(ss, es, [ANN_EOI, ['EOI']])
357
358     def emit_bin_ann(self, ss, es, ann_cls, data):
359         self.putbin(ss, es, [ann_cls, bytes(data)])
360
361     def emit_data_ann(self, ss, es, ann_cls, data):
362         self.putg(ss, es, [ann_cls, data])
363
364     def emit_warn_ann(self, ss, es, data):
365         self.putg(ss, es, [ANN_WARN, data])
366
367     def flush_bytes_text_accu(self):
368         if self.accu_bytes and self.ss_text is not None and self.es_text is not None:
369             self.emit_bin_ann(self.ss_text, self.es_text, BIN_DATA, bytearray(self.accu_bytes))
370             self.putpy(self.ss_text, self.es_text, 'TALKER_BYTES', self.last_talker, bytearray(self.accu_bytes))
371             self.accu_bytes = []
372         if self.accu_text and self.ss_text is not None and self.es_text is not None:
373             text = ''.join(self.accu_text)
374             self.emit_data_ann(self.ss_text, self.es_text, ANN_TEXT, [text])
375             self.putpy(self.ss_text, self.es_text, 'TALKER_TEXT', self.last_talker, text)
376             self.accu_text = []
377         self.ss_text = self.es_text = None
378
379     def check_extra_flush(self, b):
380         # Optionally flush previously accumulated runs of payload data
381         # according to user specified conditions.
382         if self.options['delim'] == 'none':
383             return
384         if not self.accu_bytes:
385             return
386
387         # This implementation exlusively handles "text lines", but adding
388         # support for more variants here is straight forward.
389         #
390         # Search for the first data byte _after_ a user specified text
391         # line termination sequence was seen. The termination sequence's
392         # alphabet may be variable, and the sequence may span multiple
393         # data bytes. We accept either CR or LF, and combine the CR+LF
394         # sequence to strive for maximum length annotations for improved
395         # readability at different zoom levels. It's acceptable that this
396         # implementation would also combine multiple line terminations
397         # like LF+LF.
398         term_chars = (10, 13)
399         is_eol = b in term_chars
400         had_eol = self.accu_bytes[-1] in term_chars
401         if had_eol and not is_eol:
402             self.flush_bytes_text_accu()
403
404     def handle_ifc_change(self, ifc):
405         # Track IFC line for parallel input.
406         # Assertion of IFC de-selects all talkers and listeners.
407         if ifc:
408             self.last_talker = None
409             self.last_listener = []
410
411     def handle_eoi_change(self, eoi):
412         # Track EOI line for parallel and serial input.
413         if eoi:
414             self.ss_eoi = self.samplenum
415             self.curr_eoi = eoi
416         else:
417             self.es_eoi = self.samplenum
418             if self.ss_eoi and self.latch_eoi:
419                self.emit_eoi_ann(self.ss_eoi, self.es_eoi)
420             self.es_text = self.es_eoi
421             self.flush_bytes_text_accu()
422             self.ss_eoi = self.es_eoi = None
423             self.curr_eoi = None
424
425     def handle_atn_change(self, atn):
426         # Track ATN line for parallel and serial input.
427         self.curr_atn = atn
428         if atn:
429             self.flush_bytes_text_accu()
430
431     def handle_iec_periph(self, ss, es, addr, sec, data):
432         # The annotation is optional.
433         if self.options['iec_periph'] != 'yes':
434             return
435         # Void internal state.
436         if addr is None and sec is None and data is None:
437             self.last_iec_addr = None
438             self.last_iec_sec = None
439             return
440         # Grab and evaluate new input.
441         _iec_addr_names = {
442             # TODO Add more items here. See the "Device numbering" section
443             # of the https://en.wikipedia.org/wiki/Commodore_bus page.
444             8: 'Disk 0',
445             9: 'Disk 1',
446         }
447         _iec_disk_range = range(8, 16)
448         if addr is not None:
449             self.last_iec_addr = addr
450             name = _iec_addr_names.get(addr, None)
451             if name:
452                 self.emit_data_ann(ss, es, ANN_IEC_PERIPH, [name])
453         addr = self.last_iec_addr # Simplify subsequent logic.
454         if sec is not None:
455             # BEWARE! The secondary address is a full byte and includes
456             # the 0x60 offset, to also work when the MSB was set.
457             self.last_iec_sec = sec
458             subcmd, channel = sec & 0xf0, sec & 0x0f
459             channel_ord = ord('0') + channel
460             if addr is not None and addr in _iec_disk_range:
461                 subcmd_fmts = {
462                     0x60: ['Reopen {ch:d}', 'Re {ch:d}', 'R{ch_ord:c}'],
463                     0xe0: ['Close {ch:d}', 'Cl {ch:d}', 'C{ch_ord:c}'],
464                     0xf0: ['Open {ch:d}', 'Op {ch:d}', 'O{ch_ord:c}'],
465                 }.get(subcmd, None)
466                 if subcmd_fmts:
467                     texts = _format_ann_texts(subcmd_fmts, ch = channel, ch_ord = channel_ord)
468                     self.emit_data_ann(ss, es, ANN_IEC_PERIPH, texts)
469         sec = self.last_iec_sec # Simplify subsequent logic.
470         if data is not None:
471             if addr is None or sec is None:
472                 return
473             # TODO Process data depending on peripheral type and channel?
474
475     def handle_data_byte(self):
476         if not self.curr_atn:
477             self.check_extra_flush(self.curr_raw)
478         b = self.curr_raw
479         texts = _get_raw_text(b, self.curr_atn)
480         self.emit_data_ann(self.ss_raw, self.es_raw, ANN_RAW_BYTE, texts)
481         self.emit_bin_ann(self.ss_raw, self.es_raw, BIN_RAW, b.to_bytes(1, byteorder='big'))
482         self.putpy(self.ss_raw, self.es_raw, 'GPIB_RAW', None, _get_raw_byte(b, self.curr_atn))
483         if self.curr_atn:
484             ann_cls = None
485             upd_iec = False,
486             py_type = None
487             py_peers = False
488             is_cmd, is_unl, is_unt = _is_command(b)
489             laddr = _is_listen_addr(b)
490             taddr = _is_talk_addr(b)
491             saddr = _is_secondary_addr(b)
492             msb = _is_msb_set(b)
493             if is_cmd:
494                 known, texts = _get_command_texts(b)
495                 if not known:
496                     warn_texts = ['Unknown GPIB command', 'unknown', 'UNK']
497                     self.emit_warn_ann(self.ss_raw, self.es_raw, warn_texts)
498                 ann_cls = ANN_CMD
499                 py_type, py_addr = 'COMMAND', None
500                 if is_unl:
501                     self.last_listener = []
502                     py_peers = True
503                 if is_unt:
504                     self.last_talker = None
505                     py_peers = True
506                 if is_unl or is_unt:
507                     upd_iec = True, None, None, None
508             elif laddr is not None:
509                 addr = laddr
510                 texts = _get_address_texts(b)
511                 ann_cls = ANN_LADDR
512                 py_type, py_addr = 'LISTEN', addr
513                 if addr == self.last_talker:
514                     self.last_talker = None
515                 self.last_listener.append(addr)
516                 upd_iec = True, addr, None, None
517                 py_peers = True
518             elif taddr is not None:
519                 addr = taddr
520                 texts = _get_address_texts(b)
521                 ann_cls = ANN_TADDR
522                 py_type, py_addr = 'TALK', addr
523                 if addr in self.last_listener:
524                     self.last_listener.remove(addr)
525                 self.last_talker = addr
526                 upd_iec = True, addr, None, None
527                 py_peers = True
528             elif saddr is not None:
529                 addr = saddr
530                 texts = _get_address_texts(b)
531                 ann_cls = ANN_SADDR
532                 upd_iec = True, None, b, None
533                 py_type, py_addr = 'SECONDARY', addr
534             elif msb is not None:
535                 # These are not really "secondary addresses", but they
536                 # are used by the Commodore IEC bus (floppy channels).
537                 texts = _get_address_texts(b)
538                 ann_cls = ANN_SADDR
539                 upd_iec = True, None, b, None
540                 py_type, py_addr = 'MSB_SET', b
541             if ann_cls is not None and texts is not None:
542                 self.emit_data_ann(self.ss_raw, self.es_raw, ann_cls, texts)
543             if upd_iec[0]:
544                 self.handle_iec_periph(self.ss_raw, self.es_raw, upd_iec[1], upd_iec[2], upd_iec[3])
545             if py_type:
546                 self.putpy(self.ss_raw, self.es_raw, py_type, py_addr, b)
547             if py_peers:
548                 self.last_listener.sort()
549                 self.putpy(self.ss_raw, self.es_raw, 'TALK_LISTEN', self.last_talker, self.last_listener)
550         else:
551             self.accu_bytes.append(b)
552             text = _get_data_text(b)
553             if not self.accu_text:
554                 self.ss_text = self.ss_raw
555             self.accu_text.append(text)
556             self.es_text = self.es_raw
557             self.emit_data_ann(self.ss_raw, self.es_raw, ANN_DATA, [text])
558             self.handle_iec_periph(self.ss_raw, self.es_raw, None, None, b)
559             self.putpy(self.ss_raw, self.es_raw, 'DATA_BYTE', self.last_talker, b)
560
561     def handle_dav_change(self, dav, data):
562         if dav:
563             # Data availability starts when the flag goes active.
564             self.ss_raw = self.samplenum
565             self.curr_raw = bitpack(data)
566             self.latch_atn = self.curr_atn
567             self.latch_eoi = self.curr_eoi
568             return
569         # Data availability ends when the flag goes inactive. Handle the
570         # previously captured data byte according to associated flags.
571         self.es_raw = self.samplenum
572         self.handle_data_byte()
573         self.ss_raw = self.es_raw = None
574         self.curr_raw = None
575
576     def inject_dav_phase(self, ss, es, data):
577         # Inspection of serial input has resulted in one raw byte which
578         # spans a given period of time. Pretend we had seen a DAV active
579         # phase, to re-use code for the parallel transmission.
580         self.ss_raw = ss
581         self.curr_raw = bitpack(data)
582         self.latch_atn = self.curr_atn
583         self.latch_eoi = self.curr_eoi
584         self.es_raw = es
585         self.handle_data_byte()
586         self.ss_raw = self.es_raw = None
587         self.curr_raw = None
588
589     def invert_pins(self, pins):
590         # All lines (including data bits!) are low active and thus need
591         # to get inverted to receive their logical state (high active,
592         # regular data bit values). Cope with inputs being optional.
593         return [1 - p if p in (0, 1) else p for p in pins]
594
595     def decode_serial(self, has_clk, has_data_1, has_atn, has_srq):
596         if not has_clk or not has_data_1 or not has_atn:
597             raise ChannelError('IEC bus needs at least ATN and serial CLK and DATA.')
598
599         # This is a rephrased version of decoders/iec/pd.py:decode().
600         # SRQ was not used there either. Magic numbers were eliminated.
601         (
602             STEP_WAIT_READY_TO_SEND,
603             STEP_WAIT_READY_FOR_DATA,
604             STEP_PREP_DATA_TEST_EOI,
605             STEP_CLOCK_DATA_BITS,
606         ) = range(4)
607         step_wait_conds = (
608             [{PIN_ATN: 'f'}, {PIN_DATA: 'l', PIN_CLK: 'h'}],
609             [{PIN_ATN: 'f'}, {PIN_DATA: 'h', PIN_CLK: 'h'}, {PIN_CLK: 'l'}],
610             [{PIN_ATN: 'f'}, {PIN_DATA: 'f'}, {PIN_CLK: 'l'}],
611             [{PIN_ATN: 'f'}, {PIN_CLK: 'e'}],
612         )
613         step = STEP_WAIT_READY_TO_SEND
614         bits = []
615
616         while True:
617
618             # Sample input pin values. Keep DATA/CLK in verbatim form to
619             # re-use 'iec' decoder logic. Turn ATN to positive logic for
620             # easier processing. The data bits get handled during byte
621             # accumulation.
622             pins = self.wait(step_wait_conds[step])
623             data, clk = pins[PIN_DATA], pins[PIN_CLK]
624             atn, = self.invert_pins([pins[PIN_ATN]])
625
626             if self.matched[0]:
627                 # Falling edge on ATN, reset step.
628                 step = STEP_WAIT_READY_TO_SEND
629
630             if step == STEP_WAIT_READY_TO_SEND:
631                 # Don't use self.matched[1] here since we might come from
632                 # a step with different conds due to the code above.
633                 if data == 0 and clk == 1:
634                     # Rising edge on CLK while DATA is low: Ready to send.
635                     step = STEP_WAIT_READY_FOR_DATA
636             elif step == STEP_WAIT_READY_FOR_DATA:
637                 if data == 1 and clk == 1:
638                     # Rising edge on DATA while CLK is high: Ready for data.
639                     ss_byte = self.samplenum
640                     self.handle_atn_change(atn)
641                     if self.curr_eoi:
642                         self.handle_eoi_change(False)
643                     bits = []
644                     step = STEP_PREP_DATA_TEST_EOI
645                 elif clk == 0:
646                     # CLK low again, transfer aborted.
647                     step = STEP_WAIT_READY_TO_SEND
648             elif step == STEP_PREP_DATA_TEST_EOI:
649                 if data == 0 and clk == 1:
650                     # DATA goes low while CLK is still high, EOI confirmed.
651                     self.handle_eoi_change(True)
652                 elif clk == 0:
653                     step = STEP_CLOCK_DATA_BITS
654                     ss_bit = self.samplenum
655             elif step == STEP_CLOCK_DATA_BITS:
656                 if self.matched[1]:
657                     if clk == 1:
658                         # Rising edge on CLK; latch DATA.
659                         bits.append(data)
660                     elif clk == 0:
661                         # Falling edge on CLK; end of bit.
662                         es_bit = self.samplenum
663                         self.emit_data_ann(ss_bit, es_bit, ANN_RAW_BIT, ['{:d}'.format(bits[-1])])
664                         self.putpy(ss_bit, es_bit, 'IEC_BIT', None, bits[-1])
665                         ss_bit = self.samplenum
666                         if len(bits) == 8:
667                             es_byte = self.samplenum
668                             self.inject_dav_phase(ss_byte, es_byte, bits)
669                             if self.curr_eoi:
670                                 self.handle_eoi_change(False)
671                             step = STEP_WAIT_READY_TO_SEND
672
673     def decode_parallel(self, has_data_n, has_dav, has_atn, has_eoi, has_srq):
674
675         if False in has_data_n or not has_dav or not has_atn:
676             raise ChannelError('IEEE-488 needs at least ATN and DAV and eight DIO lines.')
677         has_ifc = self.has_channel(PIN_IFC)
678
679         # Capture data lines at the falling edge of DAV, process their
680         # values at rising DAV edge (when data validity ends). Also make
681         # sure to start inspection when the capture happens to start with
682         # low signal levels, i.e. won't include the initial falling edge.
683         # Scan for ATN/EOI edges as well (including the trick which works
684         # around initial pin state).
685         # Map low-active physical transport lines to positive logic here,
686         # to simplify logical inspection/decoding of communicated data,
687         # and to avoid redundancy and inconsistency in later code paths.
688         waitcond = []
689         idx_dav = len(waitcond)
690         waitcond.append({PIN_DAV: 'l'})
691         idx_atn = len(waitcond)
692         waitcond.append({PIN_ATN: 'l'})
693         idx_eoi = None
694         if has_eoi:
695             idx_eoi = len(waitcond)
696             waitcond.append({PIN_EOI: 'l'})
697         idx_ifc = None
698         if has_ifc:
699             idx_ifc = len(waitcond)
700             waitcond.append({PIN_IFC: 'l'})
701         while True:
702             pins = self.wait(waitcond)
703             pins = self.invert_pins(pins)
704
705             # BEWARE! Order of evaluation does matter. For low samplerate
706             # captures, many edges fall onto the same sample number. So
707             # we process active edges of flags early (before processing
708             # data bits), and inactive edges late (after data got processed).
709             if idx_ifc is not None and self.matched[idx_ifc] and pins[PIN_IFC] == 1:
710                 self.handle_ifc_change(pins[PIN_IFC])
711             if idx_eoi is not None and self.matched[idx_eoi] and pins[PIN_EOI] == 1:
712                 self.handle_eoi_change(pins[PIN_EOI])
713             if self.matched[idx_atn] and pins[PIN_ATN] == 1:
714                 self.handle_atn_change(pins[PIN_ATN])
715             if self.matched[idx_dav]:
716                 self.handle_dav_change(pins[PIN_DAV], pins[PIN_DIO1:PIN_DIO8 + 1])
717             if self.matched[idx_atn] and pins[PIN_ATN] == 0:
718                 self.handle_atn_change(pins[PIN_ATN])
719             if idx_eoi is not None and self.matched[idx_eoi] and pins[PIN_EOI] == 0:
720                 self.handle_eoi_change(pins[PIN_EOI])
721             if idx_ifc is not None and self.matched[idx_ifc] and pins[PIN_IFC] == 0:
722                 self.handle_ifc_change(pins[PIN_IFC])
723
724             waitcond[idx_dav][PIN_DAV] = 'e'
725             waitcond[idx_atn][PIN_ATN] = 'e'
726             if has_eoi:
727                 waitcond[idx_eoi][PIN_EOI] = 'e'
728             if has_ifc:
729                 waitcond[idx_ifc][PIN_IFC] = 'e'
730
731     def decode(self):
732         # The decoder's boilerplate declares some of the input signals as
733         # optional, but only to support both serial and parallel variants.
734         # The CLK signal discriminates the two. For either variant some
735         # of the "optional" signals are not really optional for proper
736         # operation of the decoder. Check these conditions here.
737         has_clk = self.has_channel(PIN_CLK)
738         has_data_1 = self.has_channel(PIN_DIO1)
739         has_data_n = [bool(self.has_channel(pin) for pin in range(PIN_DIO1, PIN_DIO8 + 1))]
740         has_dav = self.has_channel(PIN_DAV)
741         has_atn = self.has_channel(PIN_ATN)
742         has_eoi = self.has_channel(PIN_EOI)
743         has_srq = self.has_channel(PIN_SRQ)
744         if has_clk:
745             self.decode_serial(has_clk, has_data_1, has_atn, has_srq)
746         else:
747             self.decode_parallel(has_data_n, has_dav, has_atn, has_eoi, has_srq)