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
|
/*********************************************************************
*
* ISP (In-System Programming) tool for NXP LPC Microcontrollers
*
* This tool does not give access to each isp command, instead it
* provides wrappers for flashing a device.
*
*
* Copyright (C) 2012 Nathael Pajani <nathael.pajani@nathael.net>
*
* This program 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
* (at your option) any later version.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*
*********************************************************************/
#include <stdlib.h> /* malloc, free */
#include <stdio.h>
#include <stdint.h>
#include <unistd.h> /* open, getopt, close, usleep */
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <getopt.h>
#include <termios.h> /* for serial config */
#include <ctype.h>
#include <string.h> /* strncmp, strlen, strdup */
#include "isp_utils.h"
#include "isp_commands.h"
#include "prog_commands.h"
#include "parts.h"
#define PROG_NAME "LPC ISP Prog tool"
#define VERSION "1.07"
void help(char *prog_name)
{
fprintf(stderr, "---------------- "PROG_NAME" --------------------------------\n");
fprintf(stderr, "Usage: %s -d <dev_name> -c <command> [options] [dump/prog file name]\n" \
" Default parts description files are /etc/lpctools_parts.def or ./lpctools_parts.def\n" \
" Default baudrate is B115200\n" \
" Default oscilator frequency used is 10000 KHz\n" \
" <command> is one of:\n" \
" \t dump, flash, id, blank, go\n" \
" \t dump file_name: dump flash content to 'file'\n" \
" \t flash file_name : put 'file' to flash, erasing requiered sectors\n" \
" \t blank : erase whole flash\n" \
" \t id : get all id information\n" \
" \t go : execute program from reset handler in thumb mode and open terminal\n" \
" Available options:\n" \
" \t -p | --parts=file : Parts description file (see defaults)\n" \
" \t -c | --command=cmd : \n" \
" \t -d | --device=dev_path : Host serial line used to program the device\n" \
" \t -b | --baudrate=N : Use this baudrate (Same baudrate must be used across whole session)\n" \
" \t -t | --trace : turn on trace output of serial communication\n" \
" \t -f | --freq=N : Oscilator frequency of target device\n" \
" \t -n | --no-user-code : do not compute a valid user code for exception vector 7\n" \
" \t -h | --help : display this help\n" \
" \t -v | --version : display version information\n", prog_name);
fprintf(stderr, "-----------------------------------------------------------------------\n");
}
#define SERIAL_BAUD B115200
int trace_on = 0;
int quiet = 0;
static int calc_user_code = 1; /* User code is computed by default */
char* parts_file_name = NULL;
#define DEFAULT_PART_FILE_NAME_ETC "/etc/lpctools_parts.def"
#define DEFAULT_PART_FILE_NAME_CURRENT "./lpctools_parts.def"
static int prog_connect_and_id(int freq);
static int prog_handle_command(char* cmd, int dev_id, int arg_count, char** args);
int main(int argc, char** argv)
{
int baudrate = SERIAL_BAUD;
int crystal_freq = 10000;
char* isp_serial_device = NULL;
int dev_id = 0;
/* For "command" handling */
char* command = NULL;
char** cmd_args = NULL;
int nb_cmd_args = 0;
/* parameter parsing */
while(1) {
int option_index = 0;
int c = 0;
struct option long_options[] = {
{"parts", required_argument, 0, 'p'},
{"command", required_argument, 0, 'c'},
{"device", required_argument, 0, 'd'},
{"baudrate", required_argument, 0, 'b'},
{"trace", no_argument, 0, 't'},
{"freq", required_argument, 0, 'f'},
{"no-user-code", no_argument, 0, 'n'},
{"help", no_argument, 0, 'h'},
{"version", no_argument, 0, 'v'},
{0, 0, 0, 0}
};
c = getopt_long(argc, argv, "p:c:d:b:tf:nhv", long_options, &option_index);
/* no more options to parse */
if (c == -1) break;
switch (c) {
/* p, parts description file */
case 'p':
parts_file_name = strdup(optarg);
break;
/* c, command */
case 'c':
command = strdup(optarg);
break;
/* d, device */
case 'd':
isp_serial_device = strdup(optarg);
break;
/* b, baudrate */
case 'b':
baudrate = atoi(optarg);
/* FIXME: validate baudrate */
break;
/* t, trace */
case 't':
trace_on = 1;
break;
/* f, freq */
case 'f':
crystal_freq = atoi(optarg);
break;
/* n, user-code */
case 'n':
calc_user_code = 0;
break;
/* v, version */
case 'v':
printf("%s Version %s\n", PROG_NAME, VERSION);
return 0;
break;
/* h, help */
case 'h':
default:
help(argv[0]);
return 0;
}
}
/* Command is mandatory */
if (command == NULL) {
printf("No command given. use -h or --help for help on available commands.\n");
return -1;
}
/* Check for default parts file availability if none given as argument */
if (parts_file_name == NULL) {
FILE* parts_file = NULL;
parts_file_name = DEFAULT_PART_FILE_NAME_CURRENT;
parts_file = fopen(parts_file_name, "r");
if (parts_file == NULL) {
parts_file_name = DEFAULT_PART_FILE_NAME_ETC;
parts_file = fopen(parts_file_name, "r");
}
if (parts_file == NULL) {
printf("Unable to open default parts file to read LPC descriptions !\n");
printf("Tried : '%s' and '%s'\n", DEFAULT_PART_FILE_NAME_ETC, DEFAULT_PART_FILE_NAME_CURRENT);
return -1;
}
fclose(parts_file);
}
/* Open serial device */
if (isp_serial_device == NULL) {
printf("No serial device given, exiting\n");
help(argv[0]);
return 0;
} else if (isp_serial_open(baudrate, isp_serial_device) != 0) {
printf("Serial open failed, unable to initiate serial communication with target.\n");
return -1;
}
if (trace_on) {
printf("Serial device : %s\n", isp_serial_device);
printf("Command : %s\n", command);
}
/* Parse remaining command line arguments (not options). They are command arguments */
if (optind < argc) {
nb_cmd_args = argc - optind;
cmd_args = malloc(nb_cmd_args * sizeof(char *));
if (trace_on) {
printf("Command arguments :\n");
}
while (optind < argc) {
static unsigned int idx = 0;
cmd_args[idx++] = argv[optind++];
if (trace_on) {
printf("%s\n", cmd_args[idx - 1]);
}
}
}
/* First : sync with device */
dev_id = prog_connect_and_id(crystal_freq);
if (dev_id < 0) {
printf("Unable to connect to target, consider hard reset of target or link\n");
return -1;
}
if (command != NULL) {
int err = 0;
err = prog_handle_command(command, dev_id, nb_cmd_args, cmd_args);
if (err >= 0) {
if (trace_on) {
printf("Command \"%s\" handled OK.\n", command);
}
} else {
printf("Error handling command \"%s\" : %d\n", command, err);
}
}
if (cmd_args != NULL) {
free(cmd_args);
}
isp_serial_close();
return 0;
}
struct prog_command {
int cmd_num;
char* name;
};
static struct prog_command prog_cmds_list[] = {
{0, "dump"},
{1, "flash"},
{2, "id"},
{3, "blank"},
{4, "go"},
{5, NULL}
};
/*
* Try to connect to the target and identify the device.
* First try sync, and if it fails, try to read id twice. if both fail, then we are not connected
*/
static int prog_connect_and_id(int freq)
{
int sync_ret = 0;
/* Try to connect */
sync_ret = isp_connect(freq, 1);
/* Synchro failed or already synchronised ? */
if (sync_ret < 0) {
/* If already synchronized, then sync command and the next command fail.
Sync failed, maybe we are already sync'ed, then send one command for nothing */
isp_cmd_part_id(1);
}
return isp_cmd_part_id(1);
}
static int prog_handle_command(char* cmd, int dev_id, int arg_count, char** args)
{
int cmd_found = -1;
int ret = 0;
int index = 0;
struct part_desc* part = NULL;
if (cmd == NULL) {
printf("prog_handle_command called with no command !\n");
return -1;
}
part = find_part_in_file(dev_id, parts_file_name);
if (part == NULL) {
printf("Unknown part number : 0x%08x.\n", dev_id);
return -2;
}
while ((cmd_found == -1) && (prog_cmds_list[index].name != NULL)) {
if (strncmp(prog_cmds_list[index].name, cmd, strlen(prog_cmds_list[index].name)) == 0) {
cmd_found = index;
break;
}
index++;
}
if (cmd_found == -1) {
printf("Unknown command \"%s\", use -h or --help for a list.\n", cmd);
return -3;
}
switch (prog_cmds_list[cmd_found].cmd_num) {
case 0: /* dump, need one arg : filename */
if (arg_count != 1) {
printf("command dump needs one arg (filename), got %d.\n", arg_count);
return -4;
}
ret = dump_to_file(part, args[0]);
break;
case 1: /* flash, need one arg : filename */
if (arg_count != 1) {
printf("command flash needs one arg (filename), got %d.\n", arg_count);
return -4;
}
ret = flash_target(part, args[0], calc_user_code);
break;
case 2: /* id : no args */
ret = get_ids();
break;
case 3: /* blank : no args */
ret = erase_flash(part);
break;
case 4: /* go : no args */
ret = start_prog(part);
break;
}
return ret;
}
|