- remove target specific variant and use target->variant member
[openocd.git] / src / openocd.c
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 ***************************************************************************/
26
27 #define OPENOCD_VERSION "Open On-Chip Debugger " VERSION " (" PKGBLDDATE ") svn:" PKGBLDREV
28
29 #ifdef HAVE_CONFIG_H
30 #include "config.h"
31 #endif
32
33 #include "log.h"
34 #include "types.h"
35 #include "jtag.h"
36 #include "configuration.h"
37 #include "xsvf.h"
38 #include "target.h"
39 #include "flash.h"
40 #include "nand.h"
41 #include "pld.h"
42 #include "mflash.h"
43
44 #include "command.h"
45 #include "server.h"
46 #include "telnet_server.h"
47 #include "gdb_server.h"
48 #include "tcl_server.h"
49
50 #include <sys/time.h>
51 #include <sys/types.h>
52 #include <strings.h>
53 #include <stdio.h>
54 #include <stdlib.h>
55 #include <string.h>
56 #include <unistd.h>
57 #include <errno.h>
58
59 #ifdef _WIN32
60 #include <malloc.h>
61 #else
62 #include <alloca.h>
63 #endif
64
65 #include "replacements.h"
66
67 void print_version(void)
68 {
69 /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */
70 /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */
71 /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */
72 /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */
73 /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */
74 LOG_OUTPUT("$URL$\n");
75 /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */
76 /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */
77 /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */
78 /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */
79 /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */
80 }
81
82 /* Give TELNET a way to find out what version this is */
83 int handle_version_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
84 {
85 command_print(cmd_ctx, OPENOCD_VERSION);
86
87 return ERROR_OK;
88 }
89
90 void exit_handler(void)
91 {
92 /* close JTAG interface */
93 if (jtag && jtag->quit)
94 jtag->quit();
95 }
96
97 static int log_target_callback_event_handler(struct target_s *target, enum target_event event, void *priv)
98 {
99 switch (event)
100 {
101 case TARGET_EVENT_GDB_START:
102 target->display=0;
103 break;
104 case TARGET_EVENT_GDB_END:
105 target->display=1;
106 break;
107 case TARGET_EVENT_HALTED:
108 if (target->display)
109 {
110 /* do not display information when debugger caused the halt */
111 target_arch_state(target);
112 }
113 break;
114 default:
115 break;
116 }
117
118 return ERROR_OK;
119 }
120
121 /* OpenOCD can't really handle failure of this command. Patches welcome! :-) */
122 int handle_init_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
123 {
124 int retval;
125 static int initialized=0;
126 if (initialized)
127 return ERROR_OK;
128
129 initialized=1;
130
131 atexit(exit_handler);
132
133 if (target_init(cmd_ctx) != ERROR_OK)
134 return ERROR_FAIL;
135 LOG_DEBUG("target init complete");
136
137 if ((retval=jtag_interface_init(cmd_ctx)) != ERROR_OK)
138 {
139 /* we must be able to set up the jtag interface */
140 return retval;
141 }
142 LOG_DEBUG("jtag interface init complete");
143
144 /* Try to initialize & examine the JTAG chain at this point, but
145 * continue startup regardless */
146 if (jtag_init(cmd_ctx) == ERROR_OK)
147 {
148 LOG_DEBUG("jtag init complete");
149 if (target_examine() == ERROR_OK)
150 {
151 LOG_DEBUG("jtag examine complete");
152 }
153 }
154
155 if (flash_init_drivers(cmd_ctx) != ERROR_OK)
156 return ERROR_FAIL;
157 LOG_DEBUG("flash init complete");
158
159 if (mflash_init_drivers(cmd_ctx) != ERROR_OK)
160 return ERROR_FAIL;
161 LOG_DEBUG("mflash init complete");
162
163 if (nand_init(cmd_ctx) != ERROR_OK)
164 return ERROR_FAIL;
165 LOG_DEBUG("NAND init complete");
166
167 if (pld_init(cmd_ctx) != ERROR_OK)
168 return ERROR_FAIL;
169 LOG_DEBUG("pld init complete");
170
171 /* initialize tcp server */
172 server_init();
173
174 /* initialize telnet subsystem */
175 telnet_init("Open On-Chip Debugger");
176 gdb_init();
177 tcl_init(); /* allows tcl to just connect without going thru telnet */
178
179 target_register_event_callback(log_target_callback_event_handler, cmd_ctx);
180
181 return ERROR_OK;
182 }
183
184 command_context_t *global_cmd_ctx;
185
186 command_context_t *setup_command_handler(void)
187 {
188 command_context_t *cmd_ctx;
189
190 global_cmd_ctx = cmd_ctx = command_init();
191
192 register_command(cmd_ctx, NULL, "version", handle_version_command,
193 COMMAND_EXEC, "show OpenOCD version");
194
195 /* register subsystem commands */
196 server_register_commands(cmd_ctx);
197 telnet_register_commands(cmd_ctx);
198 gdb_register_commands(cmd_ctx);
199 tcl_register_commands(cmd_ctx); /* tcl server commands */
200 log_register_commands(cmd_ctx);
201 jtag_register_commands(cmd_ctx);
202 xsvf_register_commands(cmd_ctx);
203 target_register_commands(cmd_ctx);
204 flash_register_commands(cmd_ctx);
205 nand_register_commands(cmd_ctx);
206 pld_register_commands(cmd_ctx);
207 mflash_register_commands(cmd_ctx);
208
209 if (log_init(cmd_ctx) != ERROR_OK)
210 {
211 exit(-1);
212 }
213 LOG_DEBUG("log init complete");
214
215 LOG_OUTPUT( OPENOCD_VERSION "\n" );
216
217 register_command(cmd_ctx, NULL, "init", handle_init_command,
218 COMMAND_ANY, "initializes target and servers - nop on subsequent invocations");
219
220 return cmd_ctx;
221 }
222
223 /* normally this is the main() function entry, but if OpenOCD is linked
224 * into application, then this fn will not be invoked, but rather that
225 * application will have it's own implementation of main(). */
226 int openocd_main(int argc, char *argv[])
227 {
228 int ret;
229
230 /* initialize commandline interface */
231 command_context_t *cmd_ctx;
232
233 cmd_ctx = setup_command_handler();
234
235 LOG_OUTPUT("\n\nBUGS? Read http://svn.berlios.de/svnroot/repos/openocd/trunk/BUGS\n\n\n");
236
237 print_version();
238
239 command_context_mode(cmd_ctx, COMMAND_CONFIG);
240 command_set_output_handler(cmd_ctx, configuration_output_handler, NULL);
241
242 if (parse_cmdline_args(cmd_ctx, argc, argv) != ERROR_OK)
243 return EXIT_FAILURE;
244
245 ret = parse_config_file(cmd_ctx);
246 if ( (ret != ERROR_OK) && (ret != ERROR_COMMAND_CLOSE_CONNECTION) )
247 return EXIT_FAILURE;
248
249 if (ret != ERROR_COMMAND_CLOSE_CONNECTION)
250 {
251 command_context_mode(cmd_ctx, COMMAND_EXEC);
252 if (command_run_line(cmd_ctx, "init")!=ERROR_OK)
253 return EXIT_FAILURE;
254
255 /* handle network connections */
256 server_loop(cmd_ctx);
257 }
258
259 /* shut server down */
260 server_quit();
261
262 unregister_all_commands(cmd_ctx);
263
264 /* free commandline interface */
265 command_done(cmd_ctx);
266
267 return EXIT_SUCCESS;
268 }

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)