2 * Copyright © 2008 Keith Packard <keithp@keithp.com>
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.
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.
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.
27 #define AO_USB_DESC_STRING 3
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)
43 #define NUM_REQUIRED_SYMBOLS 2
46 find_symbols(FILE *map)
49 char *addr, *addr_end;
57 while (fgets(line, sizeof(line), map) != NULL) {
58 line[sizeof(line)-1] = '\0';
59 addr = strtok_r(line, " \t\n", &save);
62 name = strtok_r(NULL, " \t\n", &save);
65 colon = strchr (addr, ':');
68 a = strtoul(colon+1, &addr_end, 16);
69 if (a == ULONG_MAX || addr_end == addr)
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)
79 return required >= NUM_REQUIRED_SYMBOLS;
83 rewrite(struct ao_hex_image *image, unsigned addr, char *data, int len)
86 if (addr < image->address || image->address + image->length < addr + len)
88 printf("rewrite %04x:", addr);
89 for (i = 0; i < len; i++)
90 printf (" %02x", image->data[addr - image->address + i]);
92 for (i = 0; i < len; i++)
93 printf (" %02x", data[i]);
95 memcpy(image->data + addr - image->address, data, len);
98 static const struct option options[] = {
99 { .name = "tty", .has_arg = 1, .val = 'T' },
100 { .name = "device", .has_arg = 1, .val = 'D' },
101 { .name = "cal", .has_arg = 1, .val = 'c' },
105 static void usage(char *program)
107 fprintf(stderr, "usage: %s [--tty=<tty-name>] [--device=<device-name>] [--cal=<radio-cal>] file.ihx serial-number\n", program);
112 main (int argc, char **argv)
117 struct ao_hex_file *hex;
118 struct ao_hex_image *image;
138 while ((c = getopt_long(argc, argv, "T:D:c:", options, NULL)) != -1) {
147 cal = strtoul(optarg, &cal_end, 10);
148 if (cal_end == optarg || *cal_end != '\0')
156 filename = argv[optind];
157 if (filename == NULL)
159 mapname = strdup(filename);
160 dot = strrchr(mapname, '.');
161 if (!dot || strcmp(dot, ".ihx") != 0)
165 serial_string = argv[optind + 1];
166 if (serial_string == NULL)
169 file = fopen(filename, "r");
174 map = fopen(mapname, "r");
179 if (!find_symbols(map)) {
180 fprintf(stderr, "Cannot find symbols in \"%s\"\n", mapname);
185 hex = ao_hex_file_read(file, filename);
191 image = ao_hex_image_create(hex);
193 fprintf(stderr, "image create failed\n");
196 ao_hex_file_free(hex);
198 serial = strtoul(serial_string, NULL, 0);
202 serial_int[0] = serial & 0xff;
203 serial_int[1] = (serial >> 8) & 0xff;
205 if (!rewrite(image, AO_SERIAL_NUMBER, serial_int, sizeof (serial_int))) {
206 fprintf(stderr, "Cannot rewrite serial integer at %04x\n",
211 if (AO_USB_DESCRIPTORS) {
212 unsigned usb_descriptors;
213 usb_descriptors = AO_USB_DESCRIPTORS - image->address;
215 while (image->data[usb_descriptors] != 0 && usb_descriptors < image->length) {
216 if (image->data[usb_descriptors+1] == AO_USB_DESC_STRING) {
221 usb_descriptors += image->data[usb_descriptors];
223 if (usb_descriptors >= image->length || image->data[usb_descriptors] == 0 ) {
224 fprintf(stderr, "Cannot rewrite serial string at %04x\n", AO_USB_DESCRIPTORS);
228 serial_ucs2_len = image->data[usb_descriptors] - 2;
229 serial_ucs2 = malloc(serial_ucs2_len);
231 fprintf(stderr, "Malloc(%d) failed\n", serial_ucs2_len);
235 for (i = serial_ucs2_len / 2; i; i--) {
236 serial_ucs2[i * 2 - 1] = 0;
237 serial_ucs2[i * 2 - 2] = (s % 10) + '0';
240 if (!rewrite(image, usb_descriptors + 2 + image->address, serial_ucs2, serial_ucs2_len))
245 cal_int[0] = cal & 0xff;
246 cal_int[1] = (cal >> 8) & 0xff;
247 cal_int[2] = (cal >> 16) & 0xff;
248 cal_int[3] = (cal >> 24) & 0xff;
250 fprintf(stderr, "Cannot find radio calibration location in image\n");
253 if (!rewrite(image, AO_RADIO_CAL, cal_int, sizeof (cal_int))) {
254 fprintf(stderr, "Cannot rewrite radio calibration at %04x\n", AO_RADIO_CAL);
259 tty = cc_usbdevs_find_by_arg(device, "TIDongle");
260 dbg = ccdbg_open(tty);
264 ccdbg_add_debug(CC_DEBUG_FLASH);
266 ccdbg_debug_mode(dbg);
268 if (image->address == 0xf000) {
269 printf("Loading %d bytes to execute from RAM\n",
271 ccdbg_write_hex_image(dbg, image, 0);
272 } else if (image->address == 0x0000) {
273 printf("Loading %d bytes to execute from FLASH\n",
275 ccdbg_flash_hex_image(dbg, image);
277 printf("Cannot load code to 0x%04x\n",
279 ao_hex_image_free(image);
283 ccdbg_set_pc(dbg, image->address);