1 /***************************************************************************
2 * Copyright (C) 2007 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
5 * Copyright (C) 2007,2008 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
8 * Copyright (C) 2008 by Spencer Oliver *
9 * spen@spen-soft.co.uk *
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 ***************************************************************************/
30 #include "replacements.h"
33 #include "target_request.h"
34 #include "binarybuffer.h"
41 command_t *target_request_cmd = NULL;
43 int target_asciimsg(target_t *target, u32 length)
45 char *msg = malloc(CEIL(length + 1, 4) * 4);
46 debug_msg_receiver_t *c = target->dbgmsg;
48 target->type->target_request_data(target, CEIL(length, 4), (u8*)msg);
55 command_print(c->cmd_ctx, "%s", msg);
62 int target_charmsg(target_t *target, u8 msg)
64 LOG_USER_N("%c", msg);
69 int target_hexmsg(target_t *target, int size, u32 length)
71 u8 *data = malloc(CEIL(length * size, 4) * 4);
74 debug_msg_receiver_t *c = target->dbgmsg;
77 LOG_DEBUG("size: %i, length: %i", size, length);
79 target->type->target_request_data(target, CEIL(length * size, 4), (u8*)data);
82 for (i = 0; i < length; i++)
87 line_len += snprintf(line + line_len, 128 - line_len, "%8.8x ", le_to_h_u32(data + (4*i)));
90 line_len += snprintf(line + line_len, 128 - line_len, "%4.4x ", le_to_h_u16(data + (2*i)));
93 line_len += snprintf(line + line_len, 128 - line_len, "%2.2x ", data[i]);
97 if ((i%8 == 7) || (i == length - 1))
99 LOG_DEBUG("%s", line);
103 command_print(c->cmd_ctx, "%s", line);
116 /* handle requests from the target received by a target specific
117 * side-band channel (e.g. ARM7/9 DCC)
119 int target_request(target_t *target, u32 request)
121 target_req_cmd_t target_req_cmd = request & 0xff;
123 switch (target_req_cmd)
125 case TARGET_REQ_TRACEMSG:
126 trace_point(target, (request & 0xffffff00) >> 8);
128 case TARGET_REQ_DEBUGMSG:
129 if (((request & 0xff00) >> 8) == 0)
131 target_asciimsg(target, (request & 0xffff0000) >> 16);
135 target_hexmsg(target, (request & 0xff00) >> 8, (request & 0xffff0000) >> 16);
138 case TARGET_REQ_DEBUGCHAR:
139 target_charmsg(target, (request & 0x00ff0000) >> 16);
141 /* case TARGET_REQ_SEMIHOSTING:
145 LOG_ERROR("unknown target request: %2.2x", target_req_cmd);
152 int add_debug_msg_receiver(struct command_context_s *cmd_ctx, target_t *target)
154 debug_msg_receiver_t **p = &target->dbgmsg;
157 return ERROR_INVALID_ARGUMENTS;
159 /* see if there's already a list */
162 /* find end of linked list */
169 /* add new debug message receiver */
170 (*p) = malloc(sizeof(debug_msg_receiver_t));
171 (*p)->cmd_ctx = cmd_ctx;
174 /* enable callback */
175 target->dbg_msg_enabled = 1;
180 debug_msg_receiver_t* find_debug_msg_receiver(struct command_context_s *cmd_ctx, target_t *target)
182 int do_all_targets = 0;
183 debug_msg_receiver_t **p = &target->dbgmsg;
185 /* if no target has been specified search all of them */
188 /* if no targets haven been specified */
189 if (all_targets == NULL)
192 target = all_targets;
200 if ((*p)->cmd_ctx == cmd_ctx)
207 target = target->next;
208 } while (target && do_all_targets);
213 int delete_debug_msg_receiver(struct command_context_s *cmd_ctx, target_t *target)
215 debug_msg_receiver_t **p;
216 debug_msg_receiver_t *c;
217 int do_all_targets = 0;
219 /* if no target has been specified search all of them */
222 /* if no targets haven been specified */
223 if (all_targets == NULL)
226 target = all_targets;
236 debug_msg_receiver_t *next = c->next;
237 if (c->cmd_ctx == cmd_ctx)
243 /* disable callback */
244 target->dbg_msg_enabled = 0;
253 target = target->next;
254 } while (target && do_all_targets);
259 int handle_target_request_debugmsgs_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
261 target_t *target = get_current_target(cmd_ctx);
265 /* see if reciever is already registered */
266 if (find_debug_msg_receiver(cmd_ctx, target) != NULL)
271 if (!strcmp(args[0], "enable"))
273 /* don't register if this command context is already receiving */
277 add_debug_msg_receiver(cmd_ctx, target);
280 else if (!strcmp(args[0], "disable"))
282 /* no need to delete a receiver if none is registered */
286 delete_debug_msg_receiver(cmd_ctx, target);
291 command_print(cmd_ctx, "usage: target_request debugmsgs ['enable'|'disable']");
295 command_print(cmd_ctx, "receiving debug messages from current target %s",
296 (receiving) ? "enabled" : "disabled");
301 int target_request_register_commands(struct command_context_s *cmd_ctx)
304 register_command(cmd_ctx, NULL, "target_request", NULL, COMMAND_ANY, "target_request commands");
306 register_command(cmd_ctx, target_request_cmd, "debugmsgs", handle_target_request_debugmsgs_command,
307 COMMAND_EXEC, "enable/disable reception of debug messgages from target");