jtag: add jtag_flush_queue_sleep debug command

it can be useful to throttle performance: test
differences in behavior, test performance effect
of long roundtrips.

Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
This commit is contained in:
Øyvind Harboe
2010-07-31 21:45:56 +02:00
parent 630fc86ee3
commit 803351ec59
3 changed files with 45 additions and 0 deletions

View File

@@ -1248,7 +1248,31 @@ COMMAND_HANDLER(handle_tms_sequence_command)
return ERROR_OK;
}
COMMAND_HANDLER(handle_jtag_flush_queue_sleep)
{
if (CMD_ARGC != 1)
return ERROR_COMMAND_SYNTAX_ERROR;
int sleep_ms;
COMMAND_PARSE_NUMBER(int, CMD_ARGV[0], sleep_ms);
jtag_set_flush_queue_sleep(sleep_ms);
return ERROR_OK;
}
static const struct command_registration jtag_command_handlers[] = {
{
.name = "jtag_flush_queue_sleep",
.handler = handle_jtag_flush_queue_sleep,
.mode = COMMAND_ANY,
.help = "For debug purposes(simulate long delays of interface) "
"to test performance or change in behavior. Default 0ms.",
.usage = "[sleep in ms]",
},
{
.name = "jtag_rclk",
.handler = handle_jtag_rclk_command,