]> sigrok.org Git - libsigrokdecode.git/commitdiff
srd: Initial decoder for AVR ISP protocol.
authorUwe Hermann <redacted>
Thu, 26 Jul 2012 16:55:02 +0000 (18:55 +0200)
committerUwe Hermann <redacted>
Sat, 28 Jul 2012 21:39:46 +0000 (23:39 +0200)
configure.ac
decoders/Makefile.am
decoders/avr_isp/Makefile.am [new file with mode: 0644]
decoders/avr_isp/__init__.py [new file with mode: 0644]
decoders/avr_isp/pd.py [new file with mode: 0644]

index c999efd3e0822482ce9889b28a6887b633dc17f3..bbbb6276d6852ffcee4247682b273d72f22bea44 100644 (file)
@@ -148,6 +148,7 @@ AC_CONFIG_FILES([Makefile
                 sigrokdecode.h
                 libsigrokdecode.pc
                 decoders/Makefile
                 sigrokdecode.h
                 libsigrokdecode.pc
                 decoders/Makefile
+                decoders/avr_isp/Makefile
                 decoders/dcf77/Makefile
                 decoders/edid/Makefile
                 decoders/i2c/Makefile
                 decoders/dcf77/Makefile
                 decoders/edid/Makefile
                 decoders/i2c/Makefile
index 1646a1b7637c678f8f4671c5b12f6a483d4285e7..f8e7f619d16e76077520c85c07b2143976a1f568 100644 (file)
@@ -20,6 +20,7 @@
 
 # Please keep this list in alphabetical order.
 SUBDIRS = \
 
 # Please keep this list in alphabetical order.
 SUBDIRS = \
+       avr_isp \
        dcf77 \
        edid \
        i2c \
        dcf77 \
        edid \
        i2c \
diff --git a/decoders/avr_isp/Makefile.am b/decoders/avr_isp/Makefile.am
new file mode 100644 (file)
index 0000000..7960b11
--- /dev/null
@@ -0,0 +1,26 @@
+##
+## This file is part of the sigrok project.
+##
+## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2 of the License, or
+## (at your option) any later version.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software
+## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+##
+
+pkgdatadir = $(DECODERS_DIR)/avr_isp
+
+dist_pkgdata_DATA = __init__.py pd.py
+
+CLEANFILES = *.pyc
+
diff --git a/decoders/avr_isp/__init__.py b/decoders/avr_isp/__init__.py
new file mode 100644 (file)
index 0000000..f3eddd5
--- /dev/null
@@ -0,0 +1,33 @@
+##
+## This file is part of the sigrok project.
+##
+## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2 of the License, or
+## (at your option) any later version.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software
+## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+##
+
+'''
+AVR ISP protocol decoder.
+
+TODO: Description.
+
+TODO: SPI is MSB-first.
+
+Details:
+TODO
+'''
+
+from .pd import *
+
diff --git a/decoders/avr_isp/pd.py b/decoders/avr_isp/pd.py
new file mode 100644 (file)
index 0000000..be6c190
--- /dev/null
@@ -0,0 +1,215 @@
+##
+## This file is part of the sigrok project.
+##
+## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2 of the License, or
+## (at your option) any later version.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software
+## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+##
+
+# AVR ISP protocol decoder
+
+import sigrokdecode as srd
+
+# Device code addresses:
+# 0x00: vendor code, 0x01: part family + flash size, 0x02: part number
+
+# Vendor code
+vendor_code = {
+    0x1e: 'Atmel',
+    0x00: 'Device locked',
+}
+
+# (Part family + flash size, part number)
+part = {
+    (0x90, 0x01): 'AT90S1200',
+    (0x91, 0x01): 'AT90S2313',
+    (0x92, 0x01): 'AT90S4414',
+    (0x92, 0x05): 'ATmega48', # 4kB flash
+    (0x93, 0x01): 'AT90S8515',
+    (0x93, 0x0a): 'ATmega88', # 8kB flash
+    (0x94, 0x06): 'ATmega168', # 16kB flash
+    (0xff, 0xff): 'Device code erased, or target missing',
+    (0x01, 0x02): 'Device locked',
+    # TODO: Lots more entries.
+}
+
+VENDOR_CODE_ATMEL = 0x1e
+
+class Decoder(srd.Decoder):
+    api_version = 1
+    id = 'avr_isp'
+    name = 'AVR ISP'
+    longname = 'AVR in-system programming'
+    desc = 'Protocol for in-system programming Atmel AVR MCUs.'
+    license = 'gplv2+'
+    inputs = ['spi', 'logic']
+    outputs = ['avr_isp']
+    probes = []
+    optional_probes = [
+        {'id': 'reset', 'name': 'RESET#', 'desc': 'Target AVR MCU reset'},
+    ]
+    options = {}
+    annotations = [
+        ['Text', 'Human-readable text'],
+        ['Warnings', 'Human-readable warnings'],
+    ]
+
+    def __init__(self, **kwargs):
+        self.state = 'IDLE'
+        self.mosi_bytes, self.miso_bytes = [], []
+        self.cmd_ss, self.cmd_es = 0, 0
+        self.xx, self.yy, self.zz, self.mm = 0, 0, 0, 0
+
+    def start(self, metadata):
+        # self.out_proto = self.add(srd.OUTPUT_PROTO, 'avr_isp')
+        self.out_ann = self.add(srd.OUTPUT_ANN, 'avr_isp')
+
+    def report(self):
+        pass
+
+    def putx(self, data):
+        self.put(self.cmd_ss, self.cmd_es, self.out_ann, data)
+
+    def handle_cmd_programming_enable(self, cmd, ret):
+        # Programming enable.
+        # Note: The chip doesn't send any ACK for 'Programming enable'.
+        self.putx([0, ['Programming enable']])
+
+        # Sanity check on reply.
+        if ret[1:4] != [0xac, 0x53, cmd[2]]:
+            self.putx([1, ['Warning: Unexpected bytes in reply!']])
+
+    def handle_cmd_read_signature_byte_0x00(self, cmd, ret):
+        # Signature byte 0x00: vendor code.
+        self.vendor_code = ret[3]
+        v = vendor_code[self.vendor_code]
+        self.putx([0, ['Vendor code: 0x%02x (%s)' % (ret[3], v)]])
+
+        # Store for later.
+        self.xx = cmd[1] # Same as ret[2].
+        self.yy = cmd[3]
+        self.zz = ret[0]
+
+        # Sanity check on reply.
+        if ret[1] != 0x30 or ret[2] != cmd[1]:
+            self.putx([1, ['Warning: Unexpected bytes in reply!']])
+
+        # Sanity check for the vendor code.
+        if self.vendor_code != VENDOR_CODE_ATMEL:
+            self.putx([1, ['Warning: Vendor code was not 0x1e (Atmel)!']])
+
+    def handle_cmd_read_signature_byte_0x01(self, cmd, ret):
+        # Signature byte 0x01: part family and memory size.
+        self.part_fam_flash_size = ret[3]
+        self.putx([0, ['Part family / memory size: 0x%02x' % ret[3]]])
+
+        # Store for later.
+        self.mm = cmd[3]
+
+        # Sanity check on reply.
+        if ret[1] != 0x30 or ret[2] != cmd[1] or ret[0] != self.yy:
+            self.putx([1, ['Warning: Unexpected bytes in reply!']])
+
+    def handle_cmd_read_signature_byte_0x02(self, cmd, ret):
+        # Signature byte 0x02: part number.
+        self.part_number = ret[3]
+        self.putx([0, ['Part number: 0x%02x' % ret[3]]])
+
+        # TODO: Fix range.
+        p = part[(self.part_fam_flash_size, self.part_number)]
+        self.putx([0, ['Device: Atmel %s' % p]])
+
+        # Sanity check on reply.
+        if ret[1] != 0x30 or ret[2] != self.xx or ret[0] != self.mm:
+            self.putx([1, ['Warning: Unexpected bytes in reply!']])
+
+        self.xx, self.yy, self.zz, self.mm = 0, 0, 0, 0
+
+    def handle_cmd_chip_erase(self, cmd, ret):
+        # TODO
+        self.putx([0, ['Chip erase']])
+
+    def handle_cmd_read_fuse_bits(self, cmd, ret):
+        # Read fuse bits.
+        self.putx([0, ['Read fuse bits: 0x%02x' % ret[3]]])
+
+        # TODO: Decode fuse bits.
+        # TODO: Sanity check on reply.
+
+    def handle_cmd_read_fuse_high_bits(self, cmd, ret):
+        # Read fuse high bits.
+        self.putx([0, ['Read fuse high bits: 0x%02x' % ret[3]]])
+
+        # TODO: Decode fuse bits.
+        # TODO: Sanity check on reply.
+
+    def handle_cmd_read_extended_fuse_bits(self, cmd, ret):
+        # Read extended fuse bits.
+        self.putx([0, ['Read extended fuse bits: 0x%02x' % ret[3]]])
+
+        # TODO: Decode fuse bits.
+        # TODO: Sanity check on reply.
+
+    def handle_command(self, cmd, ret):
+        if cmd[:2] == [0xac, 0x53]:
+            self.handle_cmd_programming_enable(cmd, ret)
+        elif cmd[0] == 0xac and (cmd[1] & (1 << 7)) == (1 << 7):
+            self.handle_cmd_chip_erase(cmd, ret)
+        elif cmd[:3] == [0x50, 0x00, 0x00]:
+            self.handle_cmd_read_fuse_bits(cmd, ret)
+        elif cmd[:3] == [0x58, 0x08, 0x00]:
+            self.handle_cmd_read_fuse_high_bits(cmd, ret)
+        elif cmd[:3] == [0x50, 0x08, 0x00]:
+            self.handle_cmd_read_extended_fuse_bits(cmd, ret)
+        elif cmd[0] == 0x30 and cmd[2] == 0x00:
+            self.handle_cmd_read_signature_byte_0x00(cmd, ret)
+        elif cmd[0] == 0x30 and cmd[2] == 0x01:
+            self.handle_cmd_read_signature_byte_0x01(cmd, ret)
+        elif cmd[0] == 0x30 and cmd[2] == 0x02:
+            self.handle_cmd_read_signature_byte_0x02(cmd, ret)
+        else:
+            c = '%02x %02x %02x %02x' % tuple(cmd)
+            r = '%02x %02x %02x %02x' % tuple(ret)
+            self.putx([0, ['Unknown command: %s (reply: %s)!' % (c, r)]])
+
+    def decode(self, ss, es, data):
+        ptype, mosi, miso = data
+
+        if ptype != 'DATA':
+            return
+
+        # self.put(0, 0, self.out_ann,
+        #          [0, ['MOSI: 0x%02x, MISO: 0x%02x' % (mosi, miso)]])
+
+        self.ss, self.es = ss, es
+
+        # Append new bytes.
+        self.mosi_bytes.append(mosi)
+        self.miso_bytes.append(miso)
+
+        if len(self.mosi_bytes) == 0:
+            self.cmd_ss = ss
+
+        # All commands consist of 4 bytes.
+        if len(self.mosi_bytes) < 4:
+            return
+
+        self.cmd_es = es
+
+        self.handle_command(self.mosi_bytes, self.miso_bytes)
+
+        self.mosi_bytes = []
+        self.miso_bytes = []
+