altos/test: Adjust CRC error rate after FEC fix
[fw/altos] / ao-tools / ao-load / ao-load.c
1 /*
2  * Copyright © 2008 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 #include <stdlib.h>
20 #include <limits.h>
21 #include <stdint.h>
22 #include <unistd.h>
23 #include <getopt.h>
24 #include "ccdbg.h"
25 #include "cc.h"
26
27 #define AO_USB_DESC_STRING              3
28
29 static struct sym {
30         unsigned        addr;
31         char            *name;
32         int             required;
33 } ao_symbols[] = {
34         { 0,    "_ao_serial_number", 1 },
35 #define AO_SERIAL_NUMBER        (ao_symbols[0].addr)
36         { 0,    "_ao_usb_descriptors", 0 },
37 #define AO_USB_DESCRIPTORS      (ao_symbols[1].addr)
38         { 0,    "_ao_radio_cal", 1 },
39 #define AO_RADIO_CAL            (ao_symbols[2].addr)
40 };
41
42 #define NUM_SYMBOLS             3
43 #define NUM_REQUIRED_SYMBOLS    2
44
45 static int
46 find_symbols(FILE *map)
47 {
48         char    line[2048];
49         char    *addr, *addr_end;
50         char    *name;
51         char    *save;
52         char    *colon;
53         unsigned long   a;
54         int     s;
55         int     required = 0;
56
57         while (fgets(line, sizeof(line), map) != NULL) {
58                 line[sizeof(line)-1] = '\0';
59                 addr = strtok_r(line, " \t\n", &save);
60                 if (!addr)
61                         continue;
62                 name = strtok_r(NULL, " \t\n", &save);
63                 if (!name)
64                         continue;
65                 colon = strchr (addr, ':');
66                 if (!colon)
67                         continue;
68                 a = strtoul(colon+1, &addr_end, 16);
69                 if (a == ULONG_MAX || addr_end == addr)
70                         continue;
71                 for (s = 0; s < NUM_SYMBOLS; s++)
72                         if (!strcmp(ao_symbols[s].name, name)) {
73                                 ao_symbols[s].addr = (unsigned) a;
74                                 if (ao_symbols[s].required)
75                                         ++required;
76                                 break;
77                         }
78         }
79         return required >= NUM_REQUIRED_SYMBOLS;
80 }
81
82 static int
83 rewrite(struct ao_hex_image *image, unsigned addr, char *data, int len)
84 {
85         int i;
86         if (addr < image->address || image->address + image->length < addr + len)
87                 return 0;
88         printf("rewrite %04x:", addr);
89         for (i = 0; i < len; i++)
90                 printf (" %02x", image->data[addr - image->address + i]);
91         printf(" ->");
92         for (i = 0; i < len; i++)
93                 printf (" %02x", data[i]);
94         printf("\n");
95         memcpy(image->data + addr - image->address, data, len);
96         return 1;
97 }
98
99 static const struct option options[] = {
100         { .name = "tty", .has_arg = 1, .val = 'T' },
101         { .name = "device", .has_arg = 1, .val = 'D' },
102         { .name = "cal", .has_arg = 1, .val = 'c' },
103         { 0, 0, 0, 0},
104 };
105
106 static void usage(char *program)
107 {
108         fprintf(stderr, "usage: %s [--tty=<tty-name>] [--device=<device-name>] [--cal=<radio-cal>] file.ihx serial-number\n", program);
109         exit(1);
110 }
111
112 int
113 main (int argc, char **argv)
114 {
115         struct ccdbg    *dbg;
116         struct ao_hex_file      *hex;
117         struct ao_hex_image *image;
118         char            *filename;
119         FILE            *file;
120         FILE            *map;
121         char            *serial_string;
122         unsigned int    serial;
123         char            *mapname, *dot;
124         char            *serial_ucs2;
125         int             serial_ucs2_len;
126         char            serial_int[2];
127         unsigned int    s;
128         int             i;
129         int             string_num;
130         char            *tty = NULL;
131         char            *device = NULL;
132         uint32_t        cal = 0;
133         char            cal_int[4];
134         char            *cal_end;
135         int             c;
136
137         while ((c = getopt_long(argc, argv, "T:D:c:", options, NULL)) != -1) {
138                 switch (c) {
139                 case 'T':
140                         tty = optarg;
141                         break;
142                 case 'D':
143                         device = optarg;
144                         break;
145                 case 'c':
146                         cal = strtoul(optarg, &cal_end, 10);
147                         if (cal_end == optarg || *cal_end != '\0')
148                                 usage(argv[0]);
149                         break;
150                 default:
151                         usage(argv[0]);
152                         break;
153                 }
154         }
155         filename = argv[optind];
156         if (filename == NULL)
157                 usage(argv[0]);
158         mapname = strdup(filename);
159         dot = strrchr(mapname, '.');
160         if (!dot || strcmp(dot, ".ihx") != 0)
161                 usage(argv[0]);
162         strcpy(dot, ".map");
163
164         serial_string = argv[optind + 1];
165         if (serial_string == NULL)
166                 usage(argv[0]);
167
168         file = fopen(filename, "r");
169         if (!file) {
170                 perror(filename);
171                 exit(1);
172         }
173         map = fopen(mapname, "r");
174         if (!map) {
175                 perror(mapname);
176                 exit(1);
177         }
178         if (!find_symbols(map)) {
179                 fprintf(stderr, "Cannot find symbols in \"%s\"\n", mapname);
180                 exit(1);
181         }
182         fclose(map);
183
184         hex = ao_hex_file_read(file, filename);
185         fclose(file);
186         if (!hex) {
187                 perror(filename);
188                 exit (1);
189         }
190         image = ao_hex_image_create(hex);
191         if (!image) {
192                 fprintf(stderr, "image create failed\n");
193                 exit (1);
194         }
195         ao_hex_file_free(hex);
196
197         serial = strtoul(serial_string, NULL, 0);
198         if (!serial)
199                 usage(argv[0]);
200
201         serial_int[0] = serial & 0xff;
202         serial_int[1] = (serial >> 8) & 0xff;
203
204         if (!rewrite(image, AO_SERIAL_NUMBER, serial_int, sizeof (serial_int))) {
205                 fprintf(stderr, "Cannot rewrite serial integer at %04x\n",
206                         AO_SERIAL_NUMBER);
207                 exit(1);
208         }
209
210         if (AO_USB_DESCRIPTORS) {
211                 unsigned        usb_descriptors;
212                 usb_descriptors = AO_USB_DESCRIPTORS - image->address;
213                 string_num = 0;
214                 while (image->data[usb_descriptors] != 0 && usb_descriptors < image->length) {
215                         if (image->data[usb_descriptors+1] == AO_USB_DESC_STRING) {
216                                 ++string_num;
217                                 if (string_num == 4)
218                                         break;
219                         }
220                         usb_descriptors += image->data[usb_descriptors];
221                 }
222                 if (usb_descriptors >= image->length || image->data[usb_descriptors] == 0 ) {
223                         fprintf(stderr, "Cannot rewrite serial string at %04x\n", AO_USB_DESCRIPTORS);
224                         exit(1);
225                 }
226
227                 serial_ucs2_len = image->data[usb_descriptors] - 2;
228                 serial_ucs2 = malloc(serial_ucs2_len);
229                 if (!serial_ucs2) {
230                         fprintf(stderr, "Malloc(%d) failed\n", serial_ucs2_len);
231                         exit(1);
232                 }
233                 s = serial;
234                 for (i = serial_ucs2_len / 2; i; i--) {
235                         serial_ucs2[i * 2 - 1] = 0;
236                         serial_ucs2[i * 2 - 2] = (s % 10) + '0';
237                         s /= 10;
238                 }
239                 if (!rewrite(image, usb_descriptors + 2 + image->address, serial_ucs2, serial_ucs2_len))
240                         usage(argv[0]);
241         }
242
243         if (cal) {
244                 cal_int[0] = cal & 0xff;
245                 cal_int[1] = (cal >> 8) & 0xff;
246                 cal_int[2] = (cal >> 16) & 0xff;
247                 cal_int[3] = (cal >> 24) & 0xff;
248                 if (!AO_RADIO_CAL) {
249                         fprintf(stderr, "Cannot find radio calibration location in image\n");
250                         exit(1);
251                 }
252                 if (!rewrite(image, AO_RADIO_CAL, cal_int, sizeof (cal_int))) {
253                         fprintf(stderr, "Cannot rewrite radio calibration at %04x\n", AO_RADIO_CAL);
254                         exit(1);
255                 }
256         }
257         if (!tty)
258                 tty = cc_usbdevs_find_by_arg(device, "TIDongle");
259         dbg = ccdbg_open(tty);
260         if (!dbg)
261                 exit (1);
262
263         ccdbg_add_debug(CC_DEBUG_FLASH);
264
265         ccdbg_debug_mode(dbg);
266         ccdbg_halt(dbg);
267         if (image->address == 0xf000) {
268                 printf("Loading %d bytes to execute from RAM\n",
269                        image->length);
270                 ccdbg_write_hex_image(dbg, image, 0);
271         } else if (image->address == 0x0000) {
272                 printf("Loading %d bytes to execute from FLASH\n",
273                        image->length);
274                 ccdbg_flash_hex_image(dbg, image);
275         } else {
276                 printf("Cannot load code to 0x%04x\n",
277                        image->address);
278                 ao_hex_image_free(image);
279                 ccdbg_close(dbg);
280                 exit(1);
281         }
282         ccdbg_set_pc(dbg, image->address);
283         ccdbg_resume(dbg);
284         ccdbg_close(dbg);
285         exit (0);
286 }