]> sigrok.org Git - libsigrokdecode.git/blob - decoders/avr_isp/pd.py
6a3a241015db89f7d21204fa9058a5bd6de06966
[libsigrokdecode.git] / decoders / avr_isp / pd.py
1 ##
2 ## This file is part of the libsigrokdecode project.
3 ##
4 ## Copyright (C) 2012-2014 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, see <http://www.gnu.org/licenses/>.
18 ##
19
20 import sigrokdecode as srd
21 from .parts import *
22
23 VENDOR_CODE_ATMEL = 0x1e
24
25 class Decoder(srd.Decoder):
26     api_version = 2
27     id = 'avr_isp'
28     name = 'AVR ISP'
29     longname = 'AVR In-System Programming'
30     desc = 'Protocol for in-system programming Atmel AVR MCUs.'
31     license = 'gplv2+'
32     inputs = ['spi']
33     outputs = ['avr_isp']
34     annotations = (
35         ('pe', 'Programming enable'),
36         ('rsb0', 'Read signature byte 0'),
37         ('rsb1', 'Read signature byte 1'),
38         ('rsb2', 'Read signature byte 2'),
39         ('ce', 'Chip erase'),
40         ('rfb', 'Read fuse bits'),
41         ('rhfb', 'Read high fuse bits'),
42         ('refb', 'Read extended fuse bits'),
43         ('warnings', 'Warnings'),
44         ('dev', 'Device'),
45     )
46     annotation_rows = (
47         ('bits', 'Bits', ()),
48         ('commands', 'Commands', tuple(range(7 + 1))),
49         ('warnings', 'Warnings', (8,)),
50         ('dev', 'Device', (9,)),
51     )
52
53     def __init__(self):
54         self.state = 'IDLE'
55         self.mosi_bytes, self.miso_bytes = [], []
56         self.ss_cmd, self.es_cmd = 0, 0
57         self.xx, self.yy, self.zz, self.mm = 0, 0, 0, 0
58         self.ss_device = None
59
60     def start(self):
61         self.out_ann = self.register(srd.OUTPUT_ANN)
62
63     def putx(self, data):
64         self.put(self.ss_cmd, self.es_cmd, self.out_ann, data)
65
66     def handle_cmd_programming_enable(self, cmd, ret):
67         # Programming enable.
68         # Note: The chip doesn't send any ACK for 'Programming enable'.
69         self.putx([0, ['Programming enable']])
70
71         # Sanity check on reply.
72         if ret[1:4] != [0xac, 0x53, cmd[2]]:
73             self.putx([8, ['Warning: Unexpected bytes in reply!']])
74
75     def handle_cmd_read_signature_byte_0x00(self, cmd, ret):
76         # Signature byte 0x00: vendor code.
77         self.vendor_code = ret[3]
78         v = vendor_code[self.vendor_code]
79         self.putx([1, ['Vendor code: 0x%02x (%s)' % (ret[3], v)]])
80
81         # Store for later.
82         self.xx = cmd[1] # Same as ret[2].
83         self.yy = cmd[3]
84         self.zz = ret[0]
85
86         # Sanity check on reply.
87         if ret[1] != 0x30 or ret[2] != cmd[1]:
88             self.putx([8, ['Warning: Unexpected bytes in reply!']])
89
90         # Sanity check for the vendor code.
91         if self.vendor_code != VENDOR_CODE_ATMEL:
92             self.putx([8, ['Warning: Vendor code was not 0x1e (Atmel)!']])
93
94     def handle_cmd_read_signature_byte_0x01(self, cmd, ret):
95         # Signature byte 0x01: part family and memory size.
96         self.part_fam_flash_size = ret[3]
97         self.putx([2, ['Part family / memory size: 0x%02x' % ret[3]]])
98
99         # Store for later.
100         self.mm = cmd[3]
101         self.ss_device = self.ss_cmd
102
103         # Sanity check on reply.
104         if ret[1] != 0x30 or ret[2] != cmd[1] or ret[0] != self.yy:
105             self.putx([8, ['Warning: Unexpected bytes in reply!']])
106
107     def handle_cmd_read_signature_byte_0x02(self, cmd, ret):
108         # Signature byte 0x02: part number.
109         self.part_number = ret[3]
110         self.putx([3, ['Part number: 0x%02x' % ret[3]]])
111
112         p = part[(self.part_fam_flash_size, self.part_number)]
113         data = [9, ['Device: Atmel %s' % p]]
114         self.put(self.ss_device, self.es_cmd, self.out_ann, data)
115
116         # Sanity check on reply.
117         if ret[1] != 0x30 or ret[2] != self.xx or ret[0] != self.mm:
118             self.putx([8, ['Warning: Unexpected bytes in reply!']])
119
120         self.xx, self.yy, self.zz, self.mm = 0, 0, 0, 0
121
122     def handle_cmd_chip_erase(self, cmd, ret):
123         # Chip erase (erases both flash an EEPROM).
124         # Upon successful chip erase, the lock bits will also be erased.
125         # The only way to end a Chip Erase cycle is to release RESET#.
126         self.putx([4, ['Chip erase']])
127
128         # TODO: Check/handle RESET#.
129
130         # Sanity check on reply.
131         bit = (ret[2] & (1 << 7)) >> 7
132         if ret[1] != 0xac or bit != 1 or ret[3] != cmd[2]:
133             self.putx([8, ['Warning: Unexpected bytes in reply!']])
134
135     def handle_cmd_read_fuse_bits(self, cmd, ret):
136         # Read fuse bits.
137         self.putx([5, ['Read fuse bits: 0x%02x' % ret[3]]])
138
139         # TODO: Decode fuse bits.
140         # TODO: Sanity check on reply.
141
142     def handle_cmd_read_fuse_high_bits(self, cmd, ret):
143         # Read fuse high bits.
144         self.putx([6, ['Read fuse high bits: 0x%02x' % ret[3]]])
145
146         # TODO: Decode fuse bits.
147         # TODO: Sanity check on reply.
148
149     def handle_cmd_read_extended_fuse_bits(self, cmd, ret):
150         # Read extended fuse bits.
151         self.putx([7, ['Read extended fuse bits: 0x%02x' % ret[3]]])
152
153         # TODO: Decode fuse bits.
154         # TODO: Sanity check on reply.
155
156     def handle_command(self, cmd, ret):
157         if cmd[:2] == [0xac, 0x53]:
158             self.handle_cmd_programming_enable(cmd, ret)
159         elif cmd[0] == 0xac and (cmd[1] & (1 << 7)) == (1 << 7):
160             self.handle_cmd_chip_erase(cmd, ret)
161         elif cmd[:3] == [0x50, 0x00, 0x00]:
162             self.handle_cmd_read_fuse_bits(cmd, ret)
163         elif cmd[:3] == [0x58, 0x08, 0x00]:
164             self.handle_cmd_read_fuse_high_bits(cmd, ret)
165         elif cmd[:3] == [0x50, 0x08, 0x00]:
166             self.handle_cmd_read_extended_fuse_bits(cmd, ret)
167         elif cmd[0] == 0x30 and cmd[2] == 0x00:
168             self.handle_cmd_read_signature_byte_0x00(cmd, ret)
169         elif cmd[0] == 0x30 and cmd[2] == 0x01:
170             self.handle_cmd_read_signature_byte_0x01(cmd, ret)
171         elif cmd[0] == 0x30 and cmd[2] == 0x02:
172             self.handle_cmd_read_signature_byte_0x02(cmd, ret)
173         else:
174             c = '%02x %02x %02x %02x' % tuple(cmd)
175             r = '%02x %02x %02x %02x' % tuple(ret)
176             self.putx([0, ['Unknown command: %s (reply: %s)!' % (c, r)]])
177
178     def decode(self, ss, es, data):
179         ptype, mosi, miso = data
180
181         # For now, only use DATA and BITS packets.
182         if ptype not in ('DATA', 'BITS'):
183             return
184
185         # Store the individual bit values and ss/es numbers. The next packet
186         # is guaranteed to be a 'DATA' packet belonging to this 'BITS' one.
187         if ptype == 'BITS':
188             self.miso_bits, self.mosi_bits = miso, mosi
189             return
190
191         self.ss, self.es = ss, es
192
193         if len(self.mosi_bytes) == 0:
194             self.ss_cmd = ss
195
196         # Append new bytes.
197         self.mosi_bytes.append(mosi)
198         self.miso_bytes.append(miso)
199
200         # All commands consist of 4 bytes.
201         if len(self.mosi_bytes) < 4:
202             return
203
204         self.es_cmd = es
205
206         self.handle_command(self.mosi_bytes, self.miso_bytes)
207
208         self.mosi_bytes = []
209         self.miso_bytes = []