3f0e14289f047d3a75e309ff5d083e5ccce999f4
[openocd.git] / src / openocd.c
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) 2007-2010 Ø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 ***************************************************************************/
26
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include "openocd.h"
32 #include <jtag/driver.h>
33 #include <jtag/jtag.h>
34 #include <transport/transport.h>
35 #include <helper/ioutil.h>
36 #include <helper/util.h>
37 #include <helper/configuration.h>
38 #include <flash/nor/core.h>
39 #include <flash/nand/core.h>
40 #include <pld/pld.h>
41 #include <flash/mflash.h>
42
43 #include <server/server.h>
44 #include <server/gdb_server.h>
45
46 #ifdef HAVE_STRINGS_H
47 #include <strings.h>
48 #endif
49
50 #define OPENOCD_VERSION \
51 "Open On-Chip Debugger " VERSION RELSTR " (" PKGBLDDATE ")"
52
53 /* Give scripts and TELNET a way to find out what version this is */
54 static int jim_version_command(Jim_Interp *interp, int argc,
55 Jim_Obj * const *argv)
56 {
57 if (argc > 2)
58 {
59 return JIM_ERR;
60 }
61 const char *str = "";
62 char * version_str;
63 version_str = OPENOCD_VERSION;
64
65 if (argc == 2)
66 str = Jim_GetString(argv[1], NULL);
67
68 if (strcmp("git", str) == 0)
69 {
70 version_str = GITVERSION;
71 }
72
73 Jim_SetResult(interp, Jim_NewStringObj(interp, version_str, -1));
74
75 return JIM_OK;
76 }
77
78 static int log_target_callback_event_handler(struct target *target, enum target_event event, void *priv)
79 {
80 switch (event)
81 {
82 case TARGET_EVENT_GDB_START:
83 target->display = 0;
84 break;
85 case TARGET_EVENT_GDB_END:
86 target->display = 1;
87 break;
88 case TARGET_EVENT_HALTED:
89 if (target->display)
90 {
91 /* do not display information when debugger caused the halt */
92 target_arch_state(target);
93 }
94 break;
95 default:
96 break;
97 }
98
99 return ERROR_OK;
100 }
101
102 static bool init_at_startup = true;
103
104 COMMAND_HANDLER(handle_noinit_command)
105 {
106 if (CMD_ARGC != 0)
107 return ERROR_COMMAND_SYNTAX_ERROR;
108 init_at_startup = false;
109 return ERROR_OK;
110 }
111
112 /* OpenOCD can't really handle failure of this command. Patches welcome! :-) */
113 COMMAND_HANDLER(handle_init_command)
114 {
115
116 if (CMD_ARGC != 0)
117 return ERROR_COMMAND_SYNTAX_ERROR;
118
119 int retval;
120 static int initialized = 0;
121 if (initialized)
122 return ERROR_OK;
123
124 initialized = 1;
125
126 retval = command_run_line(CMD_CTX, "target init");
127 if (ERROR_OK != retval)
128 return ERROR_FAIL;
129
130 if ((retval = adapter_init(CMD_CTX)) != ERROR_OK)
131 {
132 /* we must be able to set up the debug adapter */
133 return retval;
134 }
135
136 LOG_DEBUG("Debug Adapter init complete");
137
138 /* "transport init" verifies the expected devices are present;
139 * for JTAG, it checks the list of configured TAPs against
140 * what's discoverable, possibly with help from the platform's
141 * JTAG event handlers. (which require COMMAND_EXEC)
142 */
143 command_context_mode(CMD_CTX, COMMAND_EXEC);
144
145 retval = command_run_line(CMD_CTX, "transport init");
146 if (ERROR_OK != retval)
147 return ERROR_FAIL;
148
149 LOG_DEBUG("Examining targets...");
150 if (target_examine() != ERROR_OK)
151 LOG_DEBUG("target examination failed");
152
153 command_context_mode(CMD_CTX, COMMAND_CONFIG);
154
155 if (command_run_line(CMD_CTX, "flash init") != ERROR_OK)
156 return ERROR_FAIL;
157
158 if (command_run_line(CMD_CTX, "mflash init") != ERROR_OK)
159 return ERROR_FAIL;
160
161 if (command_run_line(CMD_CTX, "nand init") != ERROR_OK)
162 return ERROR_FAIL;
163
164 if (command_run_line(CMD_CTX, "pld init") != ERROR_OK)
165 return ERROR_FAIL;
166 command_context_mode(CMD_CTX, COMMAND_EXEC);
167
168 /* initialize telnet subsystem */
169 gdb_target_add_all(all_targets);
170
171 target_register_event_callback(log_target_callback_event_handler, CMD_CTX);
172
173 return ERROR_OK;
174 }
175
176 COMMAND_HANDLER(handle_add_script_search_dir_command)
177 {
178 if (CMD_ARGC != 1)
179 return ERROR_COMMAND_SYNTAX_ERROR;
180
181 add_script_search_dir(CMD_ARGV[0]);
182
183 return ERROR_OK;
184 }
185
186 static const struct command_registration openocd_command_handlers[] = {
187 {
188 .name = "version",
189 .jim_handler = jim_version_command,
190 .mode = COMMAND_ANY,
191 .help = "show program version",
192 },
193 {
194 .name = "noinit",
195 .handler = &handle_noinit_command,
196 .mode = COMMAND_CONFIG,
197 .help = "Prevent 'init' from being called at startup.",
198 },
199 {
200 .name = "init",
201 .handler = &handle_init_command,
202 .mode = COMMAND_ANY,
203 .help = "Initializes configured targets and servers. "
204 "Changes command mode from CONFIG to EXEC. "
205 "Unless 'noinit' is called, this command is "
206 "called automatically at the end of startup.",
207
208 },
209 {
210 .name = "add_script_search_dir",
211 .handler = &handle_add_script_search_dir_command,
212 .mode = COMMAND_ANY,
213 .help = "dir to search for config files and scripts",
214
215 },
216 COMMAND_REGISTRATION_DONE
217 };
218
219 static int openocd_register_commands(struct command_context *cmd_ctx)
220 {
221 return register_commands(cmd_ctx, NULL, openocd_command_handlers);
222 }
223
224 struct command_context *global_cmd_ctx;
225
226 /* NB! this fn can be invoked outside this file for non PC hosted builds
227 * NB! do not change to 'static'!!!!
228 */
229 struct command_context *setup_command_handler(Jim_Interp *interp)
230 {
231 log_init();
232 LOG_DEBUG("log_init: complete");
233
234 const char *startup = openocd_startup_tcl;
235 struct command_context *cmd_ctx = command_init(startup, interp);
236
237 /* register subsystem commands */
238 typedef int (*command_registrant_t)(struct command_context *cmd_ctx_value);
239 static const command_registrant_t command_registrants[] = {
240 &openocd_register_commands,
241 &server_register_commands,
242 &gdb_register_commands,
243 &log_register_commands,
244 &transport_register_commands,
245 &interface_register_commands,
246 &target_register_commands,
247 &flash_register_commands,
248 &nand_register_commands,
249 &pld_register_commands,
250 &mflash_register_commands,
251 NULL
252 };
253 for (unsigned i = 0; NULL != command_registrants[i]; i++)
254 {
255 int retval = (*command_registrants[i])(cmd_ctx);
256 if (ERROR_OK != retval)
257 {
258 command_done(cmd_ctx);
259 return NULL;
260 }
261 }
262 LOG_DEBUG("command registration: complete");
263
264 LOG_OUTPUT(OPENOCD_VERSION "\n"
265 "Licensed under GNU GPL v2\n");
266
267 global_cmd_ctx = cmd_ctx;
268
269 return cmd_ctx;
270 }
271
272 /** OpenOCD runtime meat that can become single-thread in future. It parse
273 * commandline, reads configuration, sets up the target and starts server loop.
274 * Commandline arguments are passed into this function from openocd_main().
275 */
276 static int openocd_thread(int argc, char *argv[], struct command_context *cmd_ctx)
277 {
278 int ret;
279
280 if (parse_cmdline_args(cmd_ctx, argc, argv) != ERROR_OK)
281 return EXIT_FAILURE;
282
283 if (server_preinit() != ERROR_OK)
284 return EXIT_FAILURE;
285
286 ret = parse_config_file(cmd_ctx);
287 if (ret != ERROR_OK)
288 return EXIT_FAILURE;
289
290 ret = server_init(cmd_ctx);
291 if (ERROR_OK != ret)
292 return EXIT_FAILURE;
293
294 if (init_at_startup)
295 {
296 ret = command_run_line(cmd_ctx, "init");
297 if (ERROR_OK != ret)
298 return EXIT_FAILURE;
299 }
300
301 server_loop(cmd_ctx);
302
303 server_quit();
304
305 return ret;
306 }
307
308 /* normally this is the main() function entry, but if OpenOCD is linked
309 * into application, then this fn will not be invoked, but rather that
310 * application will have it's own implementation of main(). */
311 int openocd_main(int argc, char *argv[])
312 {
313 int ret;
314
315 /* initialize commandline interface */
316 struct command_context *cmd_ctx;
317
318 cmd_ctx = setup_command_handler(NULL);
319
320 if (util_init(cmd_ctx) != ERROR_OK)
321 return EXIT_FAILURE;
322
323 if (ioutil_init(cmd_ctx) != ERROR_OK)
324 return EXIT_FAILURE;
325
326 LOG_OUTPUT("For bug reports, read\n\t"
327 "http://openocd.sourceforge.net/doc/doxygen/bugs.html"
328 "\n");
329
330 command_context_mode(cmd_ctx, COMMAND_CONFIG);
331 command_set_output_handler(cmd_ctx, configuration_output_handler, NULL);
332
333 /* Start the executable meat that can evolve into thread in future. */
334 ret = openocd_thread(argc, argv, cmd_ctx);
335
336 unregister_all_commands(cmd_ctx, NULL);
337
338 /* free commandline interface */
339 command_done(cmd_ctx);
340
341 adapter_quit();
342
343 return ret;
344 }

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)