1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
5 * Copyright (C) 2007,2008 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
8 * Copyright (C) 2008 Richard Missenden *
9 * richard.missenden@googlemail.com *
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. *
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. *
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 ***************************************************************************/
32 #include "configuration.h"
42 #include "telnet_server.h"
43 #include "gdb_server.h"
44 #include "tcl_server.h"
51 #define OPENOCD_VERSION \
52 "Open On-Chip Debugger " VERSION RELSTR " (" PKGBLDDATE ")"
54 static void print_version(void)
56 /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */
57 /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */
58 /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */
59 /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */
60 /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */
61 LOG_OUTPUT("$URL$\n");
62 /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */
63 /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */
64 /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */
65 /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */
66 /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */
69 /* Give TELNET a way to find out what version this is */
70 static int handle_version_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
)
73 return ERROR_COMMAND_SYNTAX_ERROR
;
75 command_print(cmd_ctx
, OPENOCD_VERSION
);
80 static void exit_handler(void)
82 jtag_interface_quit();
85 static int log_target_callback_event_handler(struct target_s
*target
, enum target_event event
, void *priv
)
89 case TARGET_EVENT_GDB_START
:
92 case TARGET_EVENT_GDB_END
:
95 case TARGET_EVENT_HALTED
:
98 /* do not display information when debugger caused the halt */
99 target_arch_state(target
);
109 int ioutil_init(struct command_context_s
*cmd_ctx
);
111 /* OpenOCD can't really handle failure of this command. Patches welcome! :-) */
112 static int handle_init_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
)
116 return ERROR_COMMAND_SYNTAX_ERROR
;
119 static int initialized
= 0;
125 atexit(exit_handler
);
127 if (target_init(cmd_ctx
) != ERROR_OK
)
129 LOG_DEBUG("target init complete");
131 if ((retval
= jtag_interface_init(cmd_ctx
)) != ERROR_OK
)
133 /* we must be able to set up the jtag interface */
136 LOG_DEBUG("jtag interface init complete");
138 /* Try to initialize & examine the JTAG chain at this point, but
139 * continue startup regardless */
140 if (jtag_init(cmd_ctx
) == ERROR_OK
)
142 LOG_DEBUG("jtag init complete");
143 if (target_examine() == ERROR_OK
)
145 LOG_DEBUG("jtag examine complete");
149 if (flash_init_drivers(cmd_ctx
) != ERROR_OK
)
151 LOG_DEBUG("flash init complete");
153 if (mflash_init_drivers(cmd_ctx
) != ERROR_OK
)
155 LOG_DEBUG("mflash init complete");
157 if (nand_init(cmd_ctx
) != ERROR_OK
)
159 LOG_DEBUG("NAND init complete");
161 if (pld_init(cmd_ctx
) != ERROR_OK
)
163 LOG_DEBUG("pld init complete");
165 /* initialize tcp server */
168 /* initialize telnet subsystem */
169 telnet_init("Open On-Chip Debugger");
171 tcl_init(); /* allows tcl to just connect without going thru telnet */
173 target_register_event_callback(log_target_callback_event_handler
, cmd_ctx
);
178 command_context_t
*global_cmd_ctx
;
180 /* NB! this fn can be invoked outside this file for non PC hosted builds */
181 command_context_t
*setup_command_handler(void)
183 command_context_t
*cmd_ctx
;
185 global_cmd_ctx
= cmd_ctx
= command_init();
187 register_command(cmd_ctx
, NULL
, "version", handle_version_command
,
188 COMMAND_EXEC
, "show OpenOCD version");
190 /* register subsystem commands */
191 server_register_commands(cmd_ctx
);
192 telnet_register_commands(cmd_ctx
);
193 gdb_register_commands(cmd_ctx
);
194 tcl_register_commands(cmd_ctx
); /* tcl server commands */
195 log_register_commands(cmd_ctx
);
196 jtag_register_commands(cmd_ctx
);
197 xsvf_register_commands(cmd_ctx
);
198 svf_register_commands(cmd_ctx
);
199 target_register_commands(cmd_ctx
);
200 flash_register_commands(cmd_ctx
);
201 nand_register_commands(cmd_ctx
);
202 pld_register_commands(cmd_ctx
);
203 mflash_register_commands(cmd_ctx
);
205 if (log_init(cmd_ctx
) != ERROR_OK
)
209 LOG_DEBUG("log init complete");
211 LOG_OUTPUT(OPENOCD_VERSION
"\n");
213 register_command(cmd_ctx
, NULL
, "init", handle_init_command
,
214 COMMAND_ANY
, "initializes target and servers - nop on subsequent invocations");
219 int httpd_start(void);
220 void httpd_stop(void);
223 #if !BUILD_HTTPD && !BUILD_ECOSBOARD
224 /* implementations of OpenOCD that uses multithreading needs to know when
225 * OpenOCD is sleeping. No-op in vanilla OpenOCD
227 void openocd_sleep_prelude(void)
231 void openocd_sleep_postlude(void)
237 /* normally this is the main() function entry, but if OpenOCD is linked
238 * into application, then this fn will not be invoked, but rather that
239 * application will have it's own implementation of main(). */
240 int openocd_main(int argc
, char *argv
[])
244 /* initialize commandline interface */
245 command_context_t
*cmd_ctx
;
247 cmd_ctx
= setup_command_handler();
250 if (ioutil_init(cmd_ctx
) != ERROR_OK
)
258 LOG_OUTPUT("For bug reports, read\n\t"
259 "http://openocd.berlios.de/doc/doxygen/bugs.html"
263 command_context_mode(cmd_ctx
, COMMAND_CONFIG
);
264 command_set_output_handler(cmd_ctx
, configuration_output_handler
, NULL
);
266 if (parse_cmdline_args(cmd_ctx
, argc
, argv
) != ERROR_OK
)
269 ret
= parse_config_file(cmd_ctx
);
270 if ((ret
!= ERROR_OK
) && (ret
!= ERROR_COMMAND_CLOSE_CONNECTION
))
274 if (httpd_start() != ERROR_OK
)
278 if (ret
!= ERROR_COMMAND_CLOSE_CONNECTION
)
280 command_context_mode(cmd_ctx
, COMMAND_EXEC
);
281 if (command_run_line(cmd_ctx
, "init") != ERROR_OK
)
284 /* handle network connections */
285 server_loop(cmd_ctx
);
288 /* shut server down */
295 unregister_all_commands(cmd_ctx
);
297 /* free commandline interface */
298 command_done(cmd_ctx
);