summaryrefslogtreecommitdiff
path: root/downloader/downloader.py
blob: 3a66f3b29daaa4e4a5f2003abcf51dc2f621e04e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
#!/usr/bin/python
#
#  spreadspace pic utils
#
#
#  Copyright (C) 2011 Christian Pointner <equinox@spreadspace.org>
#
#  This file is part of spreadspace pic utils.
#
#  spreadspace pic utils 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 3 of the License, or
#  any later version.
#
#  spreadspace pic utils 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 spreadspace pic utils. If not, see <http://www.gnu.org/licenses/>.
#

'''spreadspace simple pic downloader.'''

VERSION_MAJ = 0
VERSION_MIN = 1

### HEX File Magic

def load_hex(file):
    from intelhex import IntelHex

    fin = file
    if fin == '-':
        fin = sys.stdin
    elif not os.path.isfile(fin):
        print "ERROR: File not found: %s" % fin
        sys.exit(1)

    codedata = {}
    ih = IntelHex(fin)
    for a in ih.addresses():
        if a/2 not in codedata.keys():
            codedata[a/2] = 0
        if a%2 == 0:
            codedata[a/2] += ih[a]
        else:
            codedata[a/2] += (ih[a] << 8)

    return codedata

def get_lowest_flash_addr(codedata, fss):
    lowest_code_addr = sorted(codedata.keys())[0]
    return lowest_code_addr - (lowest_code_addr%fss)

def get_highest_flash_addr(codedata, fss):
    highest_code_addr = sorted(codedata.keys())[-1]
    return highest_code_addr + (fss - highest_code_addr%fss)

def create_flash_image(codedata, fss, sa, ea):
    img = ( sa, [0xFFFF]*(ea-sa) )
    for a,d in codedata.items():
        img[1][a-sa] = d
    return img

def create_flash_segments(codedata, fss):
    sa = get_lowest_flash_addr(codedata, fss)
    ea = get_highest_flash_addr(codedata, fss)
    img = create_flash_image(codedata, fss, sa, ea)
    for i in xrange(0, ea, fss):
        slice = img[1][i:i+fss]
        if not all( (elem == 0xFFFF) for elem in slice):
            yield (i, slice)


### Interface to Bootloader

def open_serial(device, baud):
    import os
    import tty
    import termios

    print "opening %s (%s Baud)" % (device, baud)

    baudrates = { 50: termios.B50, 75: termios.B75, 110: termios.B110, 134: termios.B134,
                  150: termios.B150, 200: termios.B200, 300: termios.B300, 600: termios.B600,
                  1200: termios.B1200, 1800: termios.B1800, 2400: termios.B2400, 4800: termios.B4800,
                  9600: termios.B9600, 19200: termios.B19200, 38400: termios.B38400,
                  57600: termios.B57600, 115200: termios.B115200, 230400: termios.B230400 }

    baudreate = termios.B57600
    try:
        baudrate = baudrates[int(baud)]
    except (KeyError, ValueError):
        print "ERROR: invalid baudrate"
        sys.exit(3)

    try:
        dev = os.open(device, os.O_RDWR | os.O_NOCTTY)
        tty.setraw(dev, termios.TCSAFLUSH)
        tio = termios.tcgetattr(dev)
        tio[4] = tio[5] = baudrate
        termios.tcsetattr(dev, termios.TCSAFLUSH, tio)
        termios.tcflush(dev, termios.TCIFLUSH)
        return dev

    except OSError, msg:
        print "ERROR: opening serial device: %s" % msg
        sys.exit(3)
    except termios.error, msg:
        print "ERROR: configuring serial device: %s" % msg
        sys.exit(3)

def calc_csum(str):
    cs = 0
    for c in str:
        cs ^= ord(c)
    return cs

def exec_command(dev, cmd, answer):
    import struct

    return_codes = { 0: "OK", 1: "invalid command", 2: "bad checksum",
                     3: "not implemented", 4: "flash write error",
                     5: "address invalid", 6: "address prohibited",
                     7: "value out of bounds" }

    cstr = cmd + chr(calc_csum(cmd))
    os.write(dev, cstr)

    astr = b''
    while len(astr) < 3:
        astr += os.read(dev, 3 - len(astr))

    if astr[0] != cmd[0]:
        print "ERROR: bootloader returned wrong command code"
        sys.exit(4)

    ret = ord(astr[1])
    if ret != 0:
        rstr = "invalid return code"
        try:
            rstr = return_codes[ret]
        except KeyError:
            pass
        print "ERROR: bootloader returned %d: %s" % (ret, rstr)
        sys.exit(4)

    answer_len = struct.calcsize(answer) + len(astr)
    while len(astr) < answer_len:
        astr += os.read(dev, answer_len - len(astr))

    if 0 != calc_csum(astr):
        print "ERROR: checksum error"
        sys.exit(4)

    return struct.unpack_from(answer, astr, 2)

### Commands

def identify(dev):
    data = exec_command(dev, 'i', '<BB10sHBHH')
    id = { 'ver_min': data[0], 'ver_maj': data[1], 'name': data[2], 'devid': data[3],
           'fss': data[4], 'mess': data[5], 'supported': data[6] }

    if id['ver_maj'] != VERSION_MAJ:
        print "incompatible protocol version, expected: %d, got: %d" % (VERSION_MAJ, id['ver_maj'])
        sys.exit(4)
    if id['fss'] == 0:
        print "FSS value is 0 "
        sys.exit(4)

    print "connected with Bootloader '%s' Version %d.%d, (ID=%04X, FSS=%d, MESS=%d)" % (id['name'], id['ver_maj'], id['ver_min'], id['devid'], id['fss'], id['mess'])
    return id

def boot(dev):
    exec_command(dev, 'b', '<')

def reset(dev, id):
    exec_command(dev, 'r', '<')

def read_flash_segment(dev, id, addr):
    cmd = struct.pack('<cH', 'f', addr)
    return exec_command(dev, cmd, '<%dH' % id['fss'])

def write_flash_segment(dev, id, addr, data):
    cmd = struct.pack('<cH%dH' % id['fss'], 'F', addr, *data)
    return exec_command(dev, cmd, '<')

def read_eeprom(dev, id, addr, len):
    cmd = struct.pack('<cHH', 'e', addr, len)
    return exec_command(dev, cmd, '<%dB' % len)

def write_eeprom(dev, id, addr, data):
    cmd = struct.pack('<cHH%dB' % len(data), 'E', addr, len(data), *data)
    return exec_command(dev, cmd, '<')

def read_config(dev, id, nr):
    cmd = struct.pack('<cB', 'c', nr)
    data = exec_command(dev, cmd, '<H')
    return data[0]

def write_config(dev, id, nr, word):
    cmd = struct.pack('<cBH', 'C', nr, word)
    return exec_command(dev, cmd, '<')


### Main

if __name__ == '__main__':
    import getopt
    import sys
    import os
    import struct

    usage = '''spreadspace simple pic downloader.
Usage:
    python downloader.py [options] INFILE

Arguments:
    INFILE      name of hex file for downloading.
                Use '-' for reading from stdin.

Options:
    -h, --help              this help message.
    -v, --version           version info.
    --device=N              the serial port to use (default: /dev/ttyUSB0).
    --baud=N                baudrate to use (default: 57600).
'''

    device = "/dev/ttyUSB0"
    baudrate = 57600

    try:
        opts, args = getopt.getopt(sys.argv[1:], "hv",
                                  ["help", "version", "device=", "baud="])

        for o, a in opts:
            if o in ("-h", "--help"):
                print(usage)
                sys.exit(0)
            elif o in ("-v", "--version"):
                print("Version %d.%d" % (VERSION_MAJ, VERSION_MIN))
                sys.exit(0)
            elif o in ("--device"):
                device = a
            elif o in ("--baud"):
                baudrate = a

        if not args:
            raise getopt.GetoptError('Input file is not specified')

        if len(args) > 1:
            raise getopt.GetoptError('Too many arguments')

    except getopt.GetoptError, msg:
        print "ERROR: %s" % msg
        print usage
        sys.exit(2)

    dev = open_serial(device, baudrate)
    codedata = load_hex(args[0])
    id = identify(dev)

    # for segment in create_flash_segments(codedata, id['fss']):
    #     print "%05X: %s" % (segment[0], ''.join('%04X'%i for i in segment[1]))