2008-02-25 17:48:04 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2005 by Dominic Rath *
|
|
|
|
* Dominic.Rath@gmx.de *
|
|
|
|
* *
|
2009-07-17 19:54:25 +00:00
|
|
|
* Copyright (C) 2007,2008 Ø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"
|
2008-02-25 17:48:04 +00:00
|
|
|
#include "jtag.h"
|
|
|
|
#include "configuration.h"
|
|
|
|
#include "xsvf.h"
|
2009-01-19 07:13:02 +00:00
|
|
|
#include "svf.h"
|
2008-02-25 17:48:04 +00:00
|
|
|
#include "nand.h"
|
|
|
|
#include "pld.h"
|
2008-10-16 06:15:03 +00:00
|
|
|
#include "mflash.h"
|
2008-02-25 17:48:04 +00:00
|
|
|
|
|
|
|
#include "server.h"
|
|
|
|
#include "gdb_server.h"
|
2009-11-24 18:58:32 +00:00
|
|
|
#include "httpd.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
|
|
|
|
2008-02-25 17:48:04 +00:00
|
|
|
/* Give TELNET a way to find out what version this is */
|
2009-11-10 07:56:52 +00:00
|
|
|
COMMAND_HANDLER(handle_version_command)
|
2008-02-25 17:48:04 +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;
|
|
|
|
|
2009-11-15 13:57:37 +00:00
|
|
|
command_print(CMD_CTX, OPENOCD_VERSION);
|
2008-02-25 17:48:04 +00:00
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-05-01 03:07:32 +00:00
|
|
|
static void exit_handler(void)
|
2008-02-25 17:48:04 +00:00
|
|
|
{
|
2009-05-30 22:23:12 +00:00
|
|
|
jtag_interface_quit();
|
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-13 21:25:47 +00:00
|
|
|
int ioutil_init(struct command_context *cmd_ctx);
|
2008-12-15 11:32:22 +00:00
|
|
|
|
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
|
|
|
|
2008-04-09 05:50:34 +00:00
|
|
|
atexit(exit_handler);
|
2008-11-05 08:48:50 +00:00
|
|
|
|
2009-11-29 07:08:05 +00:00
|
|
|
command_context_mode(CMD_CTX, COMMAND_EXEC);
|
|
|
|
|
2009-11-15 13:57:37 +00:00
|
|
|
if (target_init(CMD_CTX) != ERROR_OK)
|
2008-04-09 05:50:34 +00:00
|
|
|
return ERROR_FAIL;
|
|
|
|
LOG_DEBUG("target init complete");
|
|
|
|
|
2009-11-15 13:57:37 +00:00
|
|
|
if ((retval = jtag_interface_init(CMD_CTX)) != ERROR_OK)
|
2008-04-13 11:42:49 +00:00
|
|
|
{
|
|
|
|
/* we must be able to set up the jtag interface */
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
LOG_DEBUG("jtag interface init complete");
|
|
|
|
|
|
|
|
/* Try to initialize & examine the JTAG chain at this point, but
|
2008-07-08 08:55:53 +00:00
|
|
|
* continue startup regardless */
|
2009-11-15 13:57:37 +00:00
|
|
|
if (jtag_init(CMD_CTX) == ERROR_OK)
|
2008-04-13 11:42:49 +00:00
|
|
|
{
|
|
|
|
LOG_DEBUG("jtag init complete");
|
2008-08-06 14:36:37 +00:00
|
|
|
if (target_examine() == ERROR_OK)
|
2008-04-13 11:42:49 +00:00
|
|
|
{
|
|
|
|
LOG_DEBUG("jtag examine complete");
|
|
|
|
}
|
|
|
|
}
|
2008-11-05 08:48:50 +00:00
|
|
|
|
2009-11-15 13:57:37 +00:00
|
|
|
if (flash_init_drivers(CMD_CTX) != ERROR_OK)
|
2008-04-09 05:50:34 +00:00
|
|
|
return ERROR_FAIL;
|
|
|
|
LOG_DEBUG("flash init complete");
|
|
|
|
|
2009-11-15 13:57:37 +00:00
|
|
|
if (mflash_init_drivers(CMD_CTX) != ERROR_OK)
|
2008-10-16 06:15:03 +00:00
|
|
|
return ERROR_FAIL;
|
|
|
|
LOG_DEBUG("mflash init complete");
|
|
|
|
|
2009-11-15 13:57:37 +00:00
|
|
|
if (nand_init(CMD_CTX) != ERROR_OK)
|
2008-04-09 05:50:34 +00:00
|
|
|
return ERROR_FAIL;
|
|
|
|
LOG_DEBUG("NAND init complete");
|
|
|
|
|
2009-11-15 13:57:37 +00:00
|
|
|
if (pld_init(CMD_CTX) != ERROR_OK)
|
2008-04-09 05:50:34 +00:00
|
|
|
return ERROR_FAIL;
|
|
|
|
LOG_DEBUG("pld init complete");
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
2009-11-21 00:58:45 +00:00
|
|
|
static const struct command_registration openocd_command_handlers[] = {
|
|
|
|
{
|
|
|
|
.name = "version",
|
|
|
|
.handler = &handle_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-11-29 22:04:21 +00:00
|
|
|
.mode = COMMAND_CONFIG,
|
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.",
|
|
|
|
|
2009-11-21 00:58:45 +00:00
|
|
|
},
|
|
|
|
COMMAND_REGISTRATION_DONE
|
|
|
|
};
|
|
|
|
|
2009-11-13 21:25:47 +00:00
|
|
|
struct command_context *global_cmd_ctx;
|
2008-07-24 10:16:44 +00:00
|
|
|
|
2009-05-03 20:48:20 +00:00
|
|
|
/* NB! this fn can be invoked outside this file for non PC hosted builds */
|
2009-11-13 21:25:47 +00:00
|
|
|
struct command_context *setup_command_handler(void)
|
2008-07-06 22:03:07 +00:00
|
|
|
{
|
2009-11-21 00:36:32 +00:00
|
|
|
log_init();
|
|
|
|
LOG_DEBUG("log_init: complete");
|
|
|
|
|
2009-11-13 21:25:47 +00:00
|
|
|
struct command_context *cmd_ctx;
|
2008-11-05 08:48:50 +00:00
|
|
|
|
2009-11-17 17:15:09 +00:00
|
|
|
global_cmd_ctx = cmd_ctx = command_init(openocd_startup_tcl);
|
2008-11-05 08:48:50 +00:00
|
|
|
|
2009-11-21 00:58:45 +00:00
|
|
|
register_commands(cmd_ctx, NULL, openocd_command_handlers);
|
2008-02-25 17:48:04 +00:00
|
|
|
/* register subsystem commands */
|
|
|
|
server_register_commands(cmd_ctx);
|
|
|
|
gdb_register_commands(cmd_ctx);
|
|
|
|
log_register_commands(cmd_ctx);
|
|
|
|
jtag_register_commands(cmd_ctx);
|
|
|
|
xsvf_register_commands(cmd_ctx);
|
2009-01-19 07:13:02 +00:00
|
|
|
svf_register_commands(cmd_ctx);
|
2008-02-25 17:48:04 +00:00
|
|
|
target_register_commands(cmd_ctx);
|
|
|
|
flash_register_commands(cmd_ctx);
|
|
|
|
nand_register_commands(cmd_ctx);
|
|
|
|
pld_register_commands(cmd_ctx);
|
2008-10-16 06:15:03 +00:00
|
|
|
mflash_register_commands(cmd_ctx);
|
|
|
|
|
2009-11-21 00:36:32 +00:00
|
|
|
LOG_DEBUG("command registration: complete");
|
2008-07-04 06:31:43 +00:00
|
|
|
|
2009-06-23 22:47:42 +00:00
|
|
|
LOG_OUTPUT(OPENOCD_VERSION "\n");
|
2008-11-05 08:48:50 +00:00
|
|
|
|
2008-07-06 22:03:07 +00:00
|
|
|
return cmd_ctx;
|
|
|
|
}
|
|
|
|
|
2009-05-03 20:48:20 +00:00
|
|
|
#if !BUILD_HTTPD && !BUILD_ECOSBOARD
|
2009-05-02 19:31:30 +00:00
|
|
|
/* implementations of OpenOCD that uses multithreading needs to know when
|
|
|
|
* OpenOCD is sleeping. No-op in vanilla OpenOCD
|
|
|
|
*/
|
|
|
|
void openocd_sleep_prelude(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void openocd_sleep_postlude(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2008-07-08 08:55:53 +00:00
|
|
|
/* 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(). */
|
2008-07-06 22:03:07 +00:00
|
|
|
int openocd_main(int argc, char *argv[])
|
|
|
|
{
|
2008-10-08 13:07:21 +00:00
|
|
|
int ret;
|
|
|
|
|
2008-07-06 22:03:07 +00:00
|
|
|
/* initialize commandline interface */
|
2009-11-13 21:25:47 +00:00
|
|
|
struct command_context *cmd_ctx;
|
2008-07-18 06:24:57 +00:00
|
|
|
|
|
|
|
cmd_ctx = setup_command_handler();
|
2008-11-05 08:48:50 +00:00
|
|
|
|
2009-01-09 11:44:01 +00:00
|
|
|
#if BUILD_IOUTIL
|
|
|
|
if (ioutil_init(cmd_ctx) != ERROR_OK)
|
|
|
|
{
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-10-08 00:13:50 +00:00
|
|
|
LOG_OUTPUT("For bug reports, read\n\t"
|
|
|
|
"http://openocd.berlios.de/doc/doxygen/bugs.html"
|
|
|
|
"\n");
|
2009-06-30 05:33:41 +00:00
|
|
|
|
|
|
|
|
2008-07-17 08:39:06 +00:00
|
|
|
command_context_mode(cmd_ctx, COMMAND_CONFIG);
|
|
|
|
command_set_output_handler(cmd_ctx, configuration_output_handler, NULL);
|
2008-02-25 17:48:04 +00:00
|
|
|
|
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
|
|
|
|
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;
|
|
|
|
|
2008-12-16 22:20:10 +00:00
|
|
|
#if BUILD_HTTPD
|
2009-11-24 18:58:32 +00:00
|
|
|
if (httpd_start(cmd_ctx) != ERROR_OK)
|
2008-12-16 22:20:10 +00:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
#endif
|
|
|
|
|
2009-11-29 22:04:21 +00:00
|
|
|
ret = server_init();
|
|
|
|
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)
|
|
|
|
ret = EXIT_FAILURE;
|
|
|
|
}
|
2008-11-05 08:48:50 +00:00
|
|
|
|
2009-11-29 22:04:21 +00:00
|
|
|
/* handle network connections */
|
|
|
|
if (ERROR_OK == ret)
|
2008-10-08 13:07:21 +00:00
|
|
|
server_loop(cmd_ctx);
|
2008-02-25 17:48:04 +00:00
|
|
|
|
|
|
|
server_quit();
|
|
|
|
|
2008-12-16 22:20:10 +00:00
|
|
|
#if BUILD_HTTPD
|
|
|
|
httpd_stop();
|
|
|
|
#endif
|
|
|
|
|
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);
|
|
|
|
|
2009-11-29 22:04:21 +00:00
|
|
|
return ret;
|
2008-02-25 17:48:04 +00:00
|
|
|
}
|