-
Notifications
You must be signed in to change notification settings - Fork 52
/
adapter-an1388-uart.c
402 lines (355 loc) · 10.4 KB
/
adapter-an1388-uart.c
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
/*
* Interface to PIC32 Microchip AN1388 UART bootloader (new).
*
* Copyright (C) 2011-2015 Serge Vakulenko
*
* This file is part of PIC32PROG project, which is distributed
* under the terms of the GNU General Public License (GPL).
* See the accompanying file "COPYING" for more details.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "adapter.h"
#include "pic32.h"
#include "serial.h"
#define FRAME_SOH 0x01
#define FRAME_EOT 0x04
#define FRAME_DLE 0x10
#define CMD_READ_VERSION 0x01
#define CMD_ERASE_FLASH 0x02
#define CMD_PROGRAM_FLASH 0x03
#define CMD_READ_CRC 0x04
#define CMD_JUMP_APP 0x05
typedef struct {
/* Common part */
adapter_t adapter;
unsigned char reply [64];
int reply_len;
} an1388_adapter_t;
/*
* Identifiers of USB adapter.
*/
#define MICROCHIP_VID 0x04d8
#define BOOTLOADER_PID 0x003c /* Microchip AN1388 Bootloader */
/*
* Calculate checksum.
*/
static unsigned calculate_crc(unsigned crc, unsigned char *data, unsigned nbytes)
{
static const unsigned short crc_table [16] = {
0x0000, 0x1021, 0x2042, 0x3063, 0x4084, 0x50a5, 0x60c6, 0x70e7,
0x8108, 0x9129, 0xa14a, 0xb16b, 0xc18c, 0xd1ad, 0xe1ce, 0xf1ef,
};
unsigned i;
while (nbytes--) {
i = (crc >> 12) ^ (*data >> 4);
crc = crc_table[i & 0x0F] ^ (crc << 4);
i = (crc >> 12) ^ (*data >> 0);
crc = crc_table[i & 0x0F] ^ (crc << 4);
data++;
}
return crc & 0xffff;
}
static inline unsigned add_byte(unsigned char c,
unsigned char *buf, unsigned indx)
{
if (c == FRAME_EOT || c == FRAME_SOH || c == FRAME_DLE)
buf[indx++] = FRAME_DLE;
buf[indx++] = c;
return indx;
}
/*
* Send a request to the device.
* Store the reply into the a->reply[] array.
*/
static void an1388_command(an1388_adapter_t *a, unsigned char cmd,
unsigned char *data, unsigned data_len)
{
unsigned char buf [64];
unsigned i, n, c, crc;
int res, esc;
if (debug_level > 0) {
int k;
fprintf(stderr, "---Cmd%d", cmd);
for (k=0; k<data_len; ++k) {
if (k != 0 && (k & 15) == 0)
fprintf(stderr, "\n ");
fprintf(stderr, " %02x", data[k]);
}
fprintf(stderr, "\n");
}
memset(buf, FRAME_EOT, sizeof(buf));
n = 0;
buf[n++] = FRAME_SOH;
n = add_byte(cmd, buf, n);
crc = calculate_crc(0, &cmd, 1);
if (data_len > 0) {
for (i=0; i<data_len; ++i)
n = add_byte(data[i], buf, n);
crc = calculate_crc(crc, data, data_len);
}
n = add_byte(crc, buf, n);
n = add_byte(crc >> 8, buf, n);
buf[n++] = FRAME_EOT;
if (debug_level > 0) {
int k;
fprintf(stderr, "---Send");
for (k=0; k<n; ++k) {
if (k != 0 && (k & 15) == 0)
fprintf(stderr, "\n ");
fprintf(stderr, " %02x", buf[k]);
}
fprintf(stderr, "\n");
}
serial_write(buf, n);
if (cmd == CMD_JUMP_APP) {
/* No reply expected. */
return;
}
/* serial port receives chunks of bytes */
c = 0;
esc = 0;
while(1) {
res = serial_read(buf, 64, 1000);
/* timeout */
if (res < 0) {
a->reply_len = 0;
return;
}
for (i=0; i<res; ++i) {
switch (buf[i]) {
default:
a->reply[c++] = buf[i];
continue;
case FRAME_DLE:
if (esc) {
a->reply[c++] = buf[i];
esc = 0;
} else {
esc = 1;
}
continue;
case FRAME_SOH:
if (esc) {
a->reply[c++] = buf[i];
esc = 0;
} else {
c = 0;
}
continue;
case FRAME_EOT:
if (esc) {
a->reply[c++] = buf[i];
esc = 0;
continue;
}
a->reply_len = 0;
if (c > 2) {
unsigned crc = a->reply[c-2] | (a->reply[c-1] << 8);
if (crc == calculate_crc(0, a->reply, c-2)) {
a->reply_len = c - 2;
}
}
if (a->reply_len > 0 && debug_level > 0) {
int k;
fprintf(stderr, "--->>>>");
for (k=0; k<a->reply_len; ++k) {
if (k != 0 && (k & 15) == 0)
fprintf(stderr, "\n ");
fprintf(stderr, " %02x", a->reply[k]);
}
fprintf(stderr, "\n");
}
return;
}
}
}
}
static void an1388_close(adapter_t *adapter, int power_on)
{
an1388_adapter_t *a = (an1388_adapter_t*) adapter;
/* Jump to application. */
an1388_command(a, CMD_JUMP_APP, 0, 0);
/* restore and close serial port */
serial_close();
free(a);
}
/*
* Return the Device Identification code
*/
static unsigned an1388_get_idcode(adapter_t *adapter)
{
return 0xDEAFB00B;
}
/*
* Read a configuration word from memory.
*/
static unsigned an1388_read_word(adapter_t *adapter, unsigned addr)
{
/* Not supported by booloader. */
return 0;
}
/*
* Write a configuration word to flash memory.
*/
static void an1388_program_word(adapter_t *adapter,
unsigned addr, unsigned word)
{
/* Not supported by booloader. */
if (debug_level > 0)
fprintf(stderr, "uart: program word at %08x: %08x\n", addr, word);
}
/*
* Verify a block of memory.
*/
static void an1388_verify_data(adapter_t *adapter,
unsigned addr, unsigned nwords, unsigned *data)
{
an1388_adapter_t *a = (an1388_adapter_t*) adapter;
unsigned char request [8];
unsigned data_crc, flash_crc, nbytes = nwords * 4;
//fprintf(stderr, "uart: verify %d bytes at %08x\n", nbytes, addr);
request[0] = addr;
request[1] = addr >> 8;
request[2] = addr >> 16;
request[3] = (addr >> 24) + 0x80;
request[4] = nbytes;
request[5] = nbytes >> 8;
request[6] = nbytes >> 16;
request[7] = nbytes >> 24;
an1388_command(a, CMD_READ_CRC, request, 8);
if (a->reply_len != 3 || a->reply[0] != CMD_READ_CRC) {
fprintf(stderr, "uart: cannot read crc at %08x\n", addr);
exit(-1);
}
flash_crc = a->reply[1] | a->reply[2] << 8;
data_crc = calculate_crc(0, (unsigned char*) data, nbytes);
if (flash_crc != data_crc) {
fprintf(stderr, "uart: checksum failed at %08x: sum=%04x, expected=%04x\n",
addr, flash_crc, data_crc);
//exit(-1);
}
}
static void set_flash_address(an1388_adapter_t *a, unsigned addr)
{
unsigned char request[7];
unsigned sum, i;
request[0] = 2;
request[1] = 0;
request[2] = 0;
request[3] = 4; /* Type: linear address record */
request[4] = addr >> 24;
request[5] = addr >> 16;
/* Compute checksum. */
sum = 0;
for (i=0; i<6; i++)
sum += request[i];
request[6] = -sum;
an1388_command(a, CMD_PROGRAM_FLASH, request, 7);
if (a->reply_len != 1 || a->reply[0] != CMD_PROGRAM_FLASH) {
fprintf(stderr, "uart: error setting flash address at %08x\n", addr);
exit(-1);
}
}
static void program_flash(an1388_adapter_t *a,
unsigned addr, unsigned char *data, unsigned nbytes)
{
unsigned char request[64];
unsigned sum, empty, i;
/* Skip empty blocks. */
empty = 1;
for (i=0; i<nbytes; i++) {
if (data[i] != 0xff) {
empty = 0;
break;
}
}
if (empty)
return;
//fprintf(stderr, "uart: program %d bytes at %08x: %02x-%02x-...-%02x\n",
// nbytes, addr, data[0], data[1], data[31]);
request[0] = nbytes;
request[1] = addr >> 8;
request[2] = addr;
request[3] = 0; /* Type: data record */
memcpy(request+4, data, nbytes);
/* Compute checksum. */
sum = 0;
empty = 1;
for (i=0; i<nbytes+4; i++) {
sum += request[i];
}
request[nbytes+4] = -sum;
an1388_command(a, CMD_PROGRAM_FLASH, request, nbytes + 5);
if (a->reply_len != 1 || a->reply[0] != CMD_PROGRAM_FLASH) {
fprintf(stderr, "uart: error programming flash at %08x\n", addr);
exit(-1);
}
}
/*
* Flash write, 1-kbyte blocks.
*/
static void an1388_program_block(adapter_t *adapter,
unsigned addr, unsigned *data)
{
an1388_adapter_t *a = (an1388_adapter_t*) adapter;
unsigned i;
set_flash_address(a, addr);
for (i=0; i<256; i+=8) {
/* 8 words per cycle. */
program_flash(a, addr, (unsigned char*) data, 32);
data += 8;
addr += 32;
}
}
/*
* Erase all flash memory.
*/
static void an1388_erase_chip(adapter_t *adapter)
{
an1388_adapter_t *a = (an1388_adapter_t*) adapter;
//fprintf(stderr, "uart: erase chip\n");
an1388_command(a, CMD_ERASE_FLASH, 0, 0);
if (a->reply_len != 1 || a->reply[0] != CMD_ERASE_FLASH) {
fprintf(stderr, "uart: Erase failed\n");
exit(-1);
}
}
adapter_t *adapter_open_an1388_uart(const char *port, int baud_rate)
{
an1388_adapter_t *a;
/* open serial port */
if (serial_open(port, baud_rate) < 0) {
/* failed to open serial port */
return 0;
}
a = calloc(1, sizeof(*a));
if (! a) {
fprintf(stderr, "Out of memory\n");
return 0;
}
/* Read version of adapter. */
an1388_command(a, CMD_READ_VERSION, 0, 0);
if (a->reply_len == 0) {
/* bad reply or no device connected */
return 0;
}
printf(" Adapter: AN1388 UART Bootloader Version %d.%d\n",
a->reply[1], a->reply[2]);
a->adapter.user_start = 0x1d000000;
a->adapter.user_nbytes = 512 * 1024;
printf(" Program area: %08x-%08x\n", a->adapter.user_start,
a->adapter.user_start + a->adapter.user_nbytes - 1);
a->adapter.block_override = 0;
a->adapter.flags = (AD_PROBE | AD_ERASE | AD_READ | AD_WRITE);
/* User functions. */
a->adapter.close = an1388_close;
a->adapter.get_idcode = an1388_get_idcode;
a->adapter.read_word = an1388_read_word;
a->adapter.verify_data = an1388_verify_data;
a->adapter.erase_chip = an1388_erase_chip;
a->adapter.program_block = an1388_program_block;
a->adapter.program_word = an1388_program_word;
return &a->adapter;
}