2008-02-25 17:48:04 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2005 by Dominic Rath *
|
|
|
|
* Dominic.Rath@gmx.de *
|
|
|
|
* *
|
2010-09-10 11:16:13 +00:00
|
|
|
* Copyright (C) 2007-2010 Øyvind Harboe *
|
2008-09-21 08:24:23 +00:00
|
|
|
* oyvind.harboe@zylin.com *
|
|
|
|
* *
|
2008-10-08 13:07:21 +00:00
|
|
|
* Copyright (C) 2008 Richard Missenden *
|
|
|
|
* richard.missenden@googlemail.com *
|
|
|
|
* *
|
2008-02-25 17:48:04 +00:00
|
|
|
* 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 2 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, write to the *
|
|
|
|
* Free Software Foundation, Inc., *
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2009-11-17 17:15:09 +00:00
|
|
|
#include "openocd.h"
|
2010-03-11 17:47:47 +00:00
|
|
|
#include <jtag/driver.h>
|
2009-12-03 12:14:31 +00:00
|
|
|
#include <jtag/jtag.h>
|
2011-06-13 13:42:46 +00:00
|
|
|
#include <transport/transport.h>
|
2009-12-03 12:14:26 +00:00
|
|
|
#include <helper/ioutil.h>
|
2010-08-01 07:35:58 +00:00
|
|
|
#include <helper/util.h>
|
2009-12-03 12:14:26 +00:00
|
|
|
#include <helper/configuration.h>
|
2009-12-05 00:40:19 +00:00
|
|
|
#include <flash/nor/core.h>
|
2009-12-05 06:04:37 +00:00
|
|
|
#include <flash/nand/core.h>
|
2009-12-03 12:15:04 +00:00
|
|
|
#include <pld/pld.h>
|
2009-12-03 12:14:55 +00:00
|
|
|
#include <flash/mflash.h>
|
2008-02-25 17:48:04 +00:00
|
|
|
|
2009-12-03 12:15:03 +00:00
|
|
|
#include <server/server.h>
|
2009-12-03 12:15:02 +00:00
|
|
|
#include <server/gdb_server.h>
|
2008-02-25 17:48:04 +00:00
|
|
|
|
2009-05-11 05:00:17 +00:00
|
|
|
#ifdef HAVE_STRINGS_H
|
2008-02-25 17:48:04 +00:00
|
|
|
#include <strings.h>
|
2009-05-11 05:00:17 +00:00
|
|
|
#endif
|
2008-02-25 17:48:04 +00:00
|
|
|
|
2009-05-01 01:18:05 +00:00
|
|
|
|
|
|
|
#define OPENOCD_VERSION \
|
2009-10-07 05:43:05 +00:00
|
|
|
"Open On-Chip Debugger " VERSION RELSTR " (" PKGBLDDATE ")"
|
2009-05-01 01:18:05 +00:00
|
|
|
|
2010-09-10 11:16:13 +00:00
|
|
|
/* Give scripts and TELNET a way to find out what version this is */
|
|
|
|
static int jim_version_command(Jim_Interp *interp, int argc,
|
|
|
|
Jim_Obj * const *argv)
|
2008-02-25 17:48:04 +00:00
|
|
|
{
|
2010-09-10 11:16:13 +00:00
|
|
|
if (argc > 2)
|
|
|
|
{
|
|
|
|
return JIM_ERR;
|
|
|
|
}
|
|
|
|
const char *str = "";
|
|
|
|
char * version_str;
|
|
|
|
version_str = OPENOCD_VERSION;
|
|
|
|
|
|
|
|
if (argc == 2)
|
|
|
|
str = Jim_GetString(argv[1], NULL);
|
|
|
|
|
|
|
|
if (strcmp("git", str) == 0)
|
|
|
|
{
|
|
|
|
version_str = GITVERSION;
|
|
|
|
}
|
|
|
|
|
|
|
|
Jim_SetResult(interp, Jim_NewStringObj(interp, version_str, -1));
|
2008-02-25 17:48:04 +00:00
|
|
|
|
2010-09-10 11:16:13 +00:00
|
|
|
return JIM_OK;
|
2008-02-25 17:48:04 +00:00
|
|
|
}
|
|
|
|
|
2009-11-13 18:11:13 +00:00
|
|
|
static int log_target_callback_event_handler(struct target *target, enum target_event event, void *priv)
|
2008-08-05 14:58:37 +00:00
|
|
|
{
|
|
|
|
switch (event)
|
|
|
|
{
|
2008-11-05 08:48:50 +00:00
|
|
|
case TARGET_EVENT_GDB_START:
|
2009-06-23 22:42:54 +00:00
|
|
|
target->display = 0;
|
2008-11-05 08:48:50 +00:00
|
|
|
break;
|
|
|
|
case TARGET_EVENT_GDB_END:
|
2009-06-23 22:42:54 +00:00
|
|
|
target->display = 1;
|
2008-11-05 08:48:50 +00:00
|
|
|
break;
|
2008-08-05 14:58:37 +00:00
|
|
|
case TARGET_EVENT_HALTED:
|
2008-11-05 08:48:50 +00:00
|
|
|
if (target->display)
|
|
|
|
{
|
|
|
|
/* do not display information when debugger caused the halt */
|
|
|
|
target_arch_state(target);
|
|
|
|
}
|
2008-08-05 14:58:37 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-29 22:04:21 +00:00
|
|
|
static bool init_at_startup = true;
|
|
|
|
|
|
|
|
COMMAND_HANDLER(handle_noinit_command)
|
|
|
|
{
|
|
|
|
if (CMD_ARGC != 0)
|
|
|
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
|
|
|
init_at_startup = false;
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2008-04-09 05:50:34 +00:00
|
|
|
/* OpenOCD can't really handle failure of this command. Patches welcome! :-) */
|
2009-11-10 07:56:52 +00:00
|
|
|
COMMAND_HANDLER(handle_init_command)
|
2008-04-09 05:50:34 +00:00
|
|
|
{
|
2008-12-17 14:55:12 +00:00
|
|
|
|
2009-11-15 12:57:12 +00:00
|
|
|
if (CMD_ARGC != 0)
|
2008-12-17 14:55:12 +00:00
|
|
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
|
|
|
|
2008-04-13 11:42:49 +00:00
|
|
|
int retval;
|
2009-06-23 22:42:54 +00:00
|
|
|
static int initialized = 0;
|
2008-04-09 05:50:34 +00:00
|
|
|
if (initialized)
|
|
|
|
return ERROR_OK;
|
2008-11-05 08:48:50 +00:00
|
|
|
|
2009-06-23 22:42:54 +00:00
|
|
|
initialized = 1;
|
2008-11-05 08:48:50 +00:00
|
|
|
|
2009-12-01 02:45:38 +00:00
|
|
|
retval = command_run_line(CMD_CTX, "target init");
|
|
|
|
if (ERROR_OK != retval)
|
2008-04-09 05:50:34 +00:00
|
|
|
return ERROR_FAIL;
|
|
|
|
|
2010-03-14 20:13:39 +00:00
|
|
|
if ((retval = adapter_init(CMD_CTX)) != ERROR_OK)
|
2008-04-13 11:42:49 +00:00
|
|
|
{
|
2010-03-14 20:13:39 +00:00
|
|
|
/* we must be able to set up the debug adapter */
|
2008-04-13 11:42:49 +00:00
|
|
|
return retval;
|
|
|
|
}
|
2010-07-02 20:45:28 +00:00
|
|
|
|
2010-03-14 20:13:39 +00:00
|
|
|
LOG_DEBUG("Debug Adapter init complete");
|
2008-04-13 11:42:49 +00:00
|
|
|
|
2010-07-02 20:45:28 +00:00
|
|
|
/* "transport init" verifies the expected devices are present;
|
|
|
|
* for JTAG, it checks the list of configured TAPs against
|
|
|
|
* what's discoverable, possibly with help from the platform's
|
|
|
|
* JTAG event handlers. (which require COMMAND_EXEC)
|
2009-12-03 22:44:03 +00:00
|
|
|
*/
|
|
|
|
command_context_mode(CMD_CTX, COMMAND_EXEC);
|
2010-07-02 20:45:28 +00:00
|
|
|
|
|
|
|
retval = command_run_line(CMD_CTX, "transport init");
|
|
|
|
if (ERROR_OK != retval)
|
|
|
|
return ERROR_FAIL;
|
|
|
|
|
|
|
|
LOG_DEBUG("Examining targets...");
|
|
|
|
if (target_examine() != ERROR_OK)
|
|
|
|
LOG_DEBUG("target examination failed");
|
|
|
|
|
2009-12-03 22:44:03 +00:00
|
|
|
command_context_mode(CMD_CTX, COMMAND_CONFIG);
|
2008-11-05 08:48:50 +00:00
|
|
|
|
2009-12-01 01:38:02 +00:00
|
|
|
if (command_run_line(CMD_CTX, "flash init") != ERROR_OK)
|
2008-04-09 05:50:34 +00:00
|
|
|
return ERROR_FAIL;
|
|
|
|
|
2009-12-01 01:32:56 +00:00
|
|
|
if (command_run_line(CMD_CTX, "mflash init") != ERROR_OK)
|
2008-10-16 06:15:03 +00:00
|
|
|
return ERROR_FAIL;
|
|
|
|
|
2009-12-01 01:27:21 +00:00
|
|
|
if (command_run_line(CMD_CTX, "nand init") != ERROR_OK)
|
2008-04-09 05:50:34 +00:00
|
|
|
return ERROR_FAIL;
|
|
|
|
|
2009-12-01 01:20:18 +00:00
|
|
|
if (command_run_line(CMD_CTX, "pld init") != ERROR_OK)
|
2008-04-09 05:50:34 +00:00
|
|
|
return ERROR_FAIL;
|
2009-12-01 01:20:18 +00:00
|
|
|
command_context_mode(CMD_CTX, COMMAND_EXEC);
|
2008-04-09 05:50:34 +00:00
|
|
|
|
|
|
|
/* initialize telnet subsystem */
|
2009-11-29 02:56:23 +00:00
|
|
|
gdb_target_add_all(all_targets);
|
2008-04-09 05:50:34 +00:00
|
|
|
|
2009-11-15 13:57:37 +00:00
|
|
|
target_register_event_callback(log_target_callback_event_handler, CMD_CTX);
|
2008-11-05 08:48:50 +00:00
|
|
|
|
2008-04-09 05:50:34 +00:00
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2010-03-17 09:57:44 +00:00
|
|
|
COMMAND_HANDLER(handle_add_script_search_dir_command)
|
|
|
|
{
|
|
|
|
if (CMD_ARGC != 1)
|
|
|
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
|
|
|
|
|
|
|
add_script_search_dir(CMD_ARGV[0]);
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-21 00:58:45 +00:00
|
|
|
static const struct command_registration openocd_command_handlers[] = {
|
|
|
|
{
|
|
|
|
.name = "version",
|
2010-09-10 11:16:13 +00:00
|
|
|
.jim_handler = jim_version_command,
|
2009-11-29 22:04:21 +00:00
|
|
|
.mode = COMMAND_ANY,
|
2009-11-21 00:58:45 +00:00
|
|
|
.help = "show program version",
|
|
|
|
},
|
2009-11-29 22:04:21 +00:00
|
|
|
{
|
|
|
|
.name = "noinit",
|
|
|
|
.handler = &handle_noinit_command,
|
|
|
|
.mode = COMMAND_CONFIG,
|
|
|
|
.help = "Prevent 'init' from being called at startup.",
|
|
|
|
},
|
2009-11-21 00:58:45 +00:00
|
|
|
{
|
|
|
|
.name = "init",
|
|
|
|
.handler = &handle_init_command,
|
2009-12-03 13:23:16 +00:00
|
|
|
.mode = COMMAND_ANY,
|
2009-11-21 00:58:45 +00:00
|
|
|
.help = "Initializes configured targets and servers. "
|
2009-11-29 22:04:21 +00:00
|
|
|
"Changes command mode from CONFIG to EXEC. "
|
|
|
|
"Unless 'noinit' is called, this command is "
|
|
|
|
"called automatically at the end of startup.",
|
|
|
|
|
2010-03-17 09:57:44 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "add_script_search_dir",
|
|
|
|
.handler = &handle_add_script_search_dir_command,
|
|
|
|
.mode = COMMAND_ANY,
|
|
|
|
.help = "dir to search for config files and scripts",
|
|
|
|
|
2009-11-21 00:58:45 +00:00
|
|
|
},
|
|
|
|
COMMAND_REGISTRATION_DONE
|
|
|
|
};
|
|
|
|
|
2010-04-10 14:04:03 +00:00
|
|
|
static int openocd_register_commands(struct command_context *cmd_ctx)
|
2009-12-04 01:38:24 +00:00
|
|
|
{
|
|
|
|
return register_commands(cmd_ctx, NULL, openocd_command_handlers);
|
|
|
|
}
|
|
|
|
|
2009-11-13 21:25:47 +00:00
|
|
|
struct command_context *global_cmd_ctx;
|
2008-07-24 10:16:44 +00:00
|
|
|
|
2010-06-22 11:02:00 +00:00
|
|
|
/* NB! this fn can be invoked outside this file for non PC hosted builds
|
|
|
|
* NB! do not change to 'static'!!!!
|
|
|
|
*/
|
|
|
|
struct command_context *setup_command_handler(Jim_Interp *interp)
|
2008-07-06 22:03:07 +00:00
|
|
|
{
|
2009-11-21 00:36:32 +00:00
|
|
|
log_init();
|
|
|
|
LOG_DEBUG("log_init: complete");
|
|
|
|
|
2009-12-04 01:38:24 +00:00
|
|
|
const char *startup = openocd_startup_tcl;
|
|
|
|
struct command_context *cmd_ctx = command_init(startup, interp);
|
2008-11-05 08:48:50 +00:00
|
|
|
|
2008-02-25 17:48:04 +00:00
|
|
|
/* register subsystem commands */
|
2010-12-29 20:15:48 +00:00
|
|
|
typedef int (*command_registrant_t)(struct command_context *cmd_ctx_value);
|
2010-03-09 03:10:05 +00:00
|
|
|
static const command_registrant_t command_registrants[] = {
|
2009-12-04 01:38:24 +00:00
|
|
|
&openocd_register_commands,
|
|
|
|
&server_register_commands,
|
|
|
|
&gdb_register_commands,
|
|
|
|
&log_register_commands,
|
2010-07-02 20:45:28 +00:00
|
|
|
&transport_register_commands,
|
2010-03-11 17:47:47 +00:00
|
|
|
&interface_register_commands,
|
2009-12-04 01:38:24 +00:00
|
|
|
&target_register_commands,
|
|
|
|
&flash_register_commands,
|
|
|
|
&nand_register_commands,
|
|
|
|
&pld_register_commands,
|
|
|
|
&mflash_register_commands,
|
2010-07-04 20:19:02 +00:00
|
|
|
NULL
|
2009-12-04 01:38:24 +00:00
|
|
|
};
|
|
|
|
for (unsigned i = 0; NULL != command_registrants[i]; i++)
|
|
|
|
{
|
|
|
|
int retval = (*command_registrants[i])(cmd_ctx);
|
|
|
|
if (ERROR_OK != retval)
|
|
|
|
{
|
|
|
|
command_done(cmd_ctx);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2009-11-21 00:36:32 +00:00
|
|
|
LOG_DEBUG("command registration: complete");
|
2008-07-04 06:31:43 +00:00
|
|
|
|
2010-02-15 12:41:08 +00:00
|
|
|
LOG_OUTPUT(OPENOCD_VERSION "\n"
|
|
|
|
"Licensed under GNU GPL v2\n");
|
2008-11-05 08:48:50 +00:00
|
|
|
|
2009-12-04 01:38:24 +00:00
|
|
|
global_cmd_ctx = cmd_ctx;
|
|
|
|
|
2008-07-06 22:03:07 +00:00
|
|
|
return cmd_ctx;
|
|
|
|
}
|
|
|
|
|
2011-06-16 07:09:41 +00:00
|
|
|
/** OpenOCD runtime meat that can become single-thread in future. It parse
|
|
|
|
* commandline, reads configuration, sets up the target and starts server loop.
|
|
|
|
* Commandline arguments are passed into this function from openocd_main().
|
|
|
|
*/
|
|
|
|
static int openocd_thread(int argc, char *argv[], struct command_context *cmd_ctx)
|
2008-07-06 22:03:07 +00:00
|
|
|
{
|
2008-10-08 13:07:21 +00:00
|
|
|
int ret;
|
|
|
|
|
2008-07-17 08:39:06 +00:00
|
|
|
if (parse_cmdline_args(cmd_ctx, argc, argv) != ERROR_OK)
|
2008-07-10 18:24:30 +00:00
|
|
|
return EXIT_FAILURE;
|
2008-11-05 08:48:50 +00:00
|
|
|
|
2009-12-10 14:31:28 +00:00
|
|
|
if (server_preinit() != ERROR_OK)
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
2008-10-08 13:07:21 +00:00
|
|
|
ret = parse_config_file(cmd_ctx);
|
2009-11-29 22:04:21 +00:00
|
|
|
if (ret != ERROR_OK)
|
2008-02-25 17:48:04 +00:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
2009-11-30 02:27:45 +00:00
|
|
|
ret = server_init(cmd_ctx);
|
2009-11-29 22:04:21 +00:00
|
|
|
if (ERROR_OK != ret)
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
2009-11-29 22:04:21 +00:00
|
|
|
if (init_at_startup)
|
2008-10-08 13:07:21 +00:00
|
|
|
{
|
2009-11-29 22:04:21 +00:00
|
|
|
ret = command_run_line(cmd_ctx, "init");
|
|
|
|
if (ERROR_OK != ret)
|
2011-03-31 11:32:28 +00:00
|
|
|
return EXIT_FAILURE;
|
2009-11-29 22:04:21 +00:00
|
|
|
}
|
2008-11-05 08:48:50 +00:00
|
|
|
|
2011-03-31 11:32:28 +00:00
|
|
|
server_loop(cmd_ctx);
|
2008-02-25 17:48:04 +00:00
|
|
|
|
|
|
|
server_quit();
|
|
|
|
|
2011-03-31 11:32:28 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* normally this is the main() function entry, but if OpenOCD is linked
|
|
|
|
* into application, then this fn will not be invoked, but rather that
|
|
|
|
* application will have it's own implementation of main(). */
|
|
|
|
int openocd_main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* initialize commandline interface */
|
|
|
|
struct command_context *cmd_ctx;
|
|
|
|
|
|
|
|
cmd_ctx = setup_command_handler(NULL);
|
|
|
|
|
|
|
|
if (util_init(cmd_ctx) != ERROR_OK)
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
|
|
|
if (ioutil_init(cmd_ctx) != ERROR_OK)
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
|
|
|
LOG_OUTPUT("For bug reports, read\n\t"
|
2011-10-11 16:18:05 +00:00
|
|
|
"http://openocd.sourceforge.net/doc/doxygen/bugs.html"
|
2011-03-31 11:32:28 +00:00
|
|
|
"\n");
|
|
|
|
|
|
|
|
command_context_mode(cmd_ctx, COMMAND_CONFIG);
|
|
|
|
command_set_output_handler(cmd_ctx, configuration_output_handler, NULL);
|
|
|
|
|
2011-06-16 07:09:41 +00:00
|
|
|
/* Start the executable meat that can evolve into thread in future. */
|
|
|
|
ret = openocd_thread(argc, argv, cmd_ctx);
|
2011-03-31 11:32:28 +00:00
|
|
|
|
2009-11-19 16:38:17 +00:00
|
|
|
unregister_all_commands(cmd_ctx, NULL);
|
2008-11-05 08:48:50 +00:00
|
|
|
|
2008-02-25 17:48:04 +00:00
|
|
|
/* free commandline interface */
|
|
|
|
command_done(cmd_ctx);
|
|
|
|
|
2010-03-14 20:13:39 +00:00
|
|
|
adapter_quit();
|
2009-11-30 08:13:56 +00:00
|
|
|
|
2009-11-29 22:04:21 +00:00
|
|
|
return ret;
|
2008-02-25 17:48:04 +00:00
|
|
|
}
|