main: invoke jtag_interface_quit() explicitly
[openocd/dave.git] / src / openocd.c
blob22d45828ddc9f01cf5245c9504c2d27ebfdf2293
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) 2007,2008 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
7 * *
8 * Copyright (C) 2008 Richard Missenden *
9 * richard.missenden@googlemail.com *
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 * This program is distributed in the hope that it will be useful, *
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19 * GNU General Public License for more details. *
20 * *
21 * You should have received a copy of the GNU General Public License *
22 * along with this program; if not, write to the *
23 * Free Software Foundation, Inc., *
24 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
25 ***************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
31 #include "openocd.h"
32 #include "jtag.h"
33 #include "configuration.h"
34 #include "xsvf.h"
35 #include "svf.h"
36 #include "nand.h"
37 #include "pld.h"
38 #include "mflash.h"
40 #include "server.h"
41 #include "gdb_server.h"
42 #include "httpd.h"
44 #ifdef HAVE_STRINGS_H
45 #include <strings.h>
46 #endif
49 #define OPENOCD_VERSION \
50 "Open On-Chip Debugger " VERSION RELSTR " (" PKGBLDDATE ")"
52 /* Give TELNET a way to find out what version this is */
53 COMMAND_HANDLER(handle_version_command)
55 if (CMD_ARGC != 0)
56 return ERROR_COMMAND_SYNTAX_ERROR;
58 command_print(CMD_CTX, OPENOCD_VERSION);
60 return ERROR_OK;
64 static int log_target_callback_event_handler(struct target *target, enum target_event event, void *priv)
66 switch (event)
68 case TARGET_EVENT_GDB_START:
69 target->display = 0;
70 break;
71 case TARGET_EVENT_GDB_END:
72 target->display = 1;
73 break;
74 case TARGET_EVENT_HALTED:
75 if (target->display)
77 /* do not display information when debugger caused the halt */
78 target_arch_state(target);
80 break;
81 default:
82 break;
85 return ERROR_OK;
88 int ioutil_init(struct command_context *cmd_ctx);
90 static bool init_at_startup = true;
92 COMMAND_HANDLER(handle_noinit_command)
94 if (CMD_ARGC != 0)
95 return ERROR_COMMAND_SYNTAX_ERROR;
96 init_at_startup = false;
97 return ERROR_OK;
100 /* OpenOCD can't really handle failure of this command. Patches welcome! :-) */
101 COMMAND_HANDLER(handle_init_command)
104 if (CMD_ARGC != 0)
105 return ERROR_COMMAND_SYNTAX_ERROR;
107 int retval;
108 static int initialized = 0;
109 if (initialized)
110 return ERROR_OK;
112 initialized = 1;
114 command_context_mode(CMD_CTX, COMMAND_EXEC);
116 if (target_init(CMD_CTX) != ERROR_OK)
117 return ERROR_FAIL;
118 LOG_DEBUG("target init complete");
120 if ((retval = jtag_interface_init(CMD_CTX)) != ERROR_OK)
122 /* we must be able to set up the jtag interface */
123 return retval;
125 LOG_DEBUG("jtag interface init complete");
127 /* Try to initialize & examine the JTAG chain at this point, but
128 * continue startup regardless */
129 if (jtag_init(CMD_CTX) == ERROR_OK)
131 LOG_DEBUG("jtag init complete");
132 if (target_examine() == ERROR_OK)
134 LOG_DEBUG("jtag examine complete");
138 if (flash_init_drivers(CMD_CTX) != ERROR_OK)
139 return ERROR_FAIL;
140 LOG_DEBUG("flash init complete");
142 if (mflash_init_drivers(CMD_CTX) != ERROR_OK)
143 return ERROR_FAIL;
144 LOG_DEBUG("mflash init complete");
146 if (nand_init(CMD_CTX) != ERROR_OK)
147 return ERROR_FAIL;
148 LOG_DEBUG("NAND init complete");
150 if (pld_init(CMD_CTX) != ERROR_OK)
151 return ERROR_FAIL;
152 LOG_DEBUG("pld init complete");
154 /* initialize telnet subsystem */
155 gdb_target_add_all(all_targets);
157 target_register_event_callback(log_target_callback_event_handler, CMD_CTX);
159 return ERROR_OK;
162 static const struct command_registration openocd_command_handlers[] = {
164 .name = "version",
165 .handler = &handle_version_command,
166 .mode = COMMAND_ANY,
167 .help = "show program version",
170 .name = "noinit",
171 .handler = &handle_noinit_command,
172 .mode = COMMAND_CONFIG,
173 .help = "Prevent 'init' from being called at startup.",
176 .name = "init",
177 .handler = &handle_init_command,
178 .mode = COMMAND_CONFIG,
179 .help = "Initializes configured targets and servers. "
180 "Changes command mode from CONFIG to EXEC. "
181 "Unless 'noinit' is called, this command is "
182 "called automatically at the end of startup.",
185 COMMAND_REGISTRATION_DONE
188 struct command_context *global_cmd_ctx;
190 /* NB! this fn can be invoked outside this file for non PC hosted builds */
191 struct command_context *setup_command_handler(void)
193 log_init();
194 LOG_DEBUG("log_init: complete");
196 struct command_context *cmd_ctx;
198 global_cmd_ctx = cmd_ctx = command_init(openocd_startup_tcl);
200 register_commands(cmd_ctx, NULL, openocd_command_handlers);
201 /* register subsystem commands */
202 server_register_commands(cmd_ctx);
203 gdb_register_commands(cmd_ctx);
204 log_register_commands(cmd_ctx);
205 jtag_register_commands(cmd_ctx);
206 xsvf_register_commands(cmd_ctx);
207 svf_register_commands(cmd_ctx);
208 target_register_commands(cmd_ctx);
209 flash_register_commands(cmd_ctx);
210 nand_register_commands(cmd_ctx);
211 pld_register_commands(cmd_ctx);
212 mflash_register_commands(cmd_ctx);
214 LOG_DEBUG("command registration: complete");
216 LOG_OUTPUT(OPENOCD_VERSION "\n");
218 return cmd_ctx;
221 #if !BUILD_HTTPD && !BUILD_ECOSBOARD
222 /* implementations of OpenOCD that uses multithreading needs to know when
223 * OpenOCD is sleeping. No-op in vanilla OpenOCD
225 void openocd_sleep_prelude(void)
229 void openocd_sleep_postlude(void)
232 #endif
235 /* normally this is the main() function entry, but if OpenOCD is linked
236 * into application, then this fn will not be invoked, but rather that
237 * application will have it's own implementation of main(). */
238 int openocd_main(int argc, char *argv[])
240 int ret;
242 /* initialize commandline interface */
243 struct command_context *cmd_ctx;
245 cmd_ctx = setup_command_handler();
247 #if BUILD_IOUTIL
248 if (ioutil_init(cmd_ctx) != ERROR_OK)
250 return EXIT_FAILURE;
252 #endif
254 LOG_OUTPUT("For bug reports, read\n\t"
255 "http://openocd.berlios.de/doc/doxygen/bugs.html"
256 "\n");
259 command_context_mode(cmd_ctx, COMMAND_CONFIG);
260 command_set_output_handler(cmd_ctx, configuration_output_handler, NULL);
262 if (parse_cmdline_args(cmd_ctx, argc, argv) != ERROR_OK)
263 return EXIT_FAILURE;
265 ret = parse_config_file(cmd_ctx);
266 if (ret != ERROR_OK)
267 return EXIT_FAILURE;
269 #if BUILD_HTTPD
270 if (httpd_start(cmd_ctx) != ERROR_OK)
271 return EXIT_FAILURE;
272 #endif
274 ret = server_init(cmd_ctx);
275 if (ERROR_OK != ret)
276 return EXIT_FAILURE;
278 if (init_at_startup)
280 ret = command_run_line(cmd_ctx, "init");
281 if (ERROR_OK != ret)
282 ret = EXIT_FAILURE;
285 /* handle network connections */
286 if (ERROR_OK == ret)
287 server_loop(cmd_ctx);
289 server_quit();
291 #if BUILD_HTTPD
292 httpd_stop();
293 #endif
295 unregister_all_commands(cmd_ctx, NULL);
297 /* free commandline interface */
298 command_done(cmd_ctx);
300 jtag_interface_quit();
302 return ret;