svf: add nil option that just runs through the svf file
useful for debugging without access to hardware to e.g. regression test, reproduce memory corruption problems, etc. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
This commit is contained in:
parent
95de667e24
commit
e5677ce9e5
|
@ -223,6 +223,7 @@ static int svf_getline (char **lineptr, size_t *n, FILE *stream);
|
||||||
static uint8_t *svf_tdi_buffer = NULL, *svf_tdo_buffer = NULL, *svf_mask_buffer = NULL;
|
static uint8_t *svf_tdi_buffer = NULL, *svf_tdo_buffer = NULL, *svf_mask_buffer = NULL;
|
||||||
static int svf_buffer_index = 0, svf_buffer_size = 0;
|
static int svf_buffer_index = 0, svf_buffer_size = 0;
|
||||||
static int svf_quiet = 0;
|
static int svf_quiet = 0;
|
||||||
|
static int svf_nil = 0;
|
||||||
|
|
||||||
// Targetting particular tap
|
// Targetting particular tap
|
||||||
static int svf_tap_is_specified = 0;
|
static int svf_tap_is_specified = 0;
|
||||||
|
@ -288,6 +289,9 @@ int svf_add_statemove(tap_state_t state_to)
|
||||||
|
|
||||||
/* when resetting, be paranoid and ignore current state */
|
/* when resetting, be paranoid and ignore current state */
|
||||||
if (state_to == TAP_RESET) {
|
if (state_to == TAP_RESET) {
|
||||||
|
if (svf_nil)
|
||||||
|
return ERROR_OK;
|
||||||
|
|
||||||
jtag_add_tlr();
|
jtag_add_tlr();
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
|
@ -297,6 +301,10 @@ int svf_add_statemove(tap_state_t state_to)
|
||||||
if ((svf_statemoves[index_var].from == state_from)
|
if ((svf_statemoves[index_var].from == state_from)
|
||||||
&& (svf_statemoves[index_var].to == state_to))
|
&& (svf_statemoves[index_var].to == state_to))
|
||||||
{
|
{
|
||||||
|
if (svf_nil)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
/* recorded path includes current state ... avoid extra TCKs! */
|
/* recorded path includes current state ... avoid extra TCKs! */
|
||||||
if (svf_statemoves[index_var].num_of_moves > 1)
|
if (svf_statemoves[index_var].num_of_moves > 1)
|
||||||
jtag_add_pathmove(svf_statemoves[index_var].num_of_moves - 1,
|
jtag_add_pathmove(svf_statemoves[index_var].num_of_moves - 1,
|
||||||
|
@ -333,6 +341,7 @@ COMMAND_HANDLER(handle_svf_command)
|
||||||
|
|
||||||
// parse command line
|
// parse command line
|
||||||
svf_quiet = 0;
|
svf_quiet = 0;
|
||||||
|
svf_nil = 0;
|
||||||
for (unsigned int i = 0; i < CMD_ARGC; i++)
|
for (unsigned int i = 0; i < CMD_ARGC; i++)
|
||||||
{
|
{
|
||||||
if (strcmp(CMD_ARGV[i], "-tap") == 0)
|
if (strcmp(CMD_ARGV[i], "-tap") == 0)
|
||||||
|
@ -349,6 +358,10 @@ COMMAND_HANDLER(handle_svf_command)
|
||||||
{
|
{
|
||||||
svf_quiet = 1;
|
svf_quiet = 1;
|
||||||
}
|
}
|
||||||
|
else if ((strcmp(CMD_ARGV[i], "nil") == 0) || (strcmp(CMD_ARGV[i], "-nil") == 0))
|
||||||
|
{
|
||||||
|
svf_nil = 1;
|
||||||
|
}
|
||||||
else if ((strcmp(CMD_ARGV[i], "progress") == 0) || (strcmp(CMD_ARGV[i], "-progress") == 0))
|
else if ((strcmp(CMD_ARGV[i], "progress") == 0) || (strcmp(CMD_ARGV[i], "-progress") == 0))
|
||||||
{
|
{
|
||||||
svf_progress_enabled = 1;
|
svf_progress_enabled = 1;
|
||||||
|
@ -417,8 +430,11 @@ COMMAND_HANDLER(handle_svf_command)
|
||||||
|
|
||||||
memcpy(&svf_para, &svf_para_init, sizeof(svf_para));
|
memcpy(&svf_para, &svf_para_init, sizeof(svf_para));
|
||||||
|
|
||||||
|
if (!svf_nil)
|
||||||
|
{
|
||||||
// TAP_RESET
|
// TAP_RESET
|
||||||
jtag_add_tlr();
|
jtag_add_tlr();
|
||||||
|
}
|
||||||
|
|
||||||
if (tap)
|
if (tap)
|
||||||
{
|
{
|
||||||
|
@ -519,7 +535,8 @@ COMMAND_HANDLER(handle_svf_command)
|
||||||
}
|
}
|
||||||
command_num++;
|
command_num++;
|
||||||
}
|
}
|
||||||
if (ERROR_OK != jtag_execute_queue())
|
|
||||||
|
if ((!svf_nil) && (ERROR_OK != jtag_execute_queue()))
|
||||||
{
|
{
|
||||||
ret = ERROR_FAIL;
|
ret = ERROR_FAIL;
|
||||||
}
|
}
|
||||||
|
@ -956,7 +973,7 @@ static int svf_add_check_para(uint8_t enabled, int buffer_offset, int bit_len)
|
||||||
|
|
||||||
static int svf_execute_tap(void)
|
static int svf_execute_tap(void)
|
||||||
{
|
{
|
||||||
if (ERROR_OK != jtag_execute_queue())
|
if ((!svf_nil) && (ERROR_OK != jtag_execute_queue()))
|
||||||
{
|
{
|
||||||
return ERROR_FAIL;
|
return ERROR_FAIL;
|
||||||
}
|
}
|
||||||
|
@ -1284,8 +1301,11 @@ static int svf_run_command(struct command_context *cmd_ctx, char *cmd_str)
|
||||||
field.num_bits = i;
|
field.num_bits = i;
|
||||||
field.out_value = &svf_tdi_buffer[svf_buffer_index];
|
field.out_value = &svf_tdi_buffer[svf_buffer_index];
|
||||||
field.in_value = &svf_tdi_buffer[svf_buffer_index];
|
field.in_value = &svf_tdi_buffer[svf_buffer_index];
|
||||||
|
if (!svf_nil)
|
||||||
|
{
|
||||||
/* NOTE: doesn't use SVF-specified state paths */
|
/* NOTE: doesn't use SVF-specified state paths */
|
||||||
jtag_add_plain_dr_scan(field.num_bits, field.out_value, field.in_value, svf_para.dr_end_state);
|
jtag_add_plain_dr_scan(field.num_bits, field.out_value, field.in_value, svf_para.dr_end_state);
|
||||||
|
}
|
||||||
|
|
||||||
svf_buffer_index += (i + 7) >> 3;
|
svf_buffer_index += (i + 7) >> 3;
|
||||||
}
|
}
|
||||||
|
@ -1379,9 +1399,12 @@ static int svf_run_command(struct command_context *cmd_ctx, char *cmd_str)
|
||||||
field.num_bits = i;
|
field.num_bits = i;
|
||||||
field.out_value = &svf_tdi_buffer[svf_buffer_index];
|
field.out_value = &svf_tdi_buffer[svf_buffer_index];
|
||||||
field.in_value = &svf_tdi_buffer[svf_buffer_index];
|
field.in_value = &svf_tdi_buffer[svf_buffer_index];
|
||||||
|
if (!svf_nil)
|
||||||
|
{
|
||||||
/* NOTE: doesn't use SVF-specified state paths */
|
/* NOTE: doesn't use SVF-specified state paths */
|
||||||
jtag_add_plain_ir_scan(field.num_bits, field.out_value, field.in_value,
|
jtag_add_plain_ir_scan(field.num_bits, field.out_value, field.in_value,
|
||||||
svf_para.ir_end_state);
|
svf_para.ir_end_state);
|
||||||
|
}
|
||||||
|
|
||||||
svf_buffer_index += (i + 7) >> 3;
|
svf_buffer_index += (i + 7) >> 3;
|
||||||
}
|
}
|
||||||
|
@ -1495,10 +1518,12 @@ static int svf_run_command(struct command_context *cmd_ctx, char *cmd_str)
|
||||||
|
|
||||||
// add clocks and/or min wait
|
// add clocks and/or min wait
|
||||||
if (run_count > 0) {
|
if (run_count > 0) {
|
||||||
|
if (!svf_nil)
|
||||||
jtag_add_clocks(run_count);
|
jtag_add_clocks(run_count);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (min_usec > 0) {
|
if (min_usec > 0) {
|
||||||
|
if (!svf_nil)
|
||||||
jtag_add_sleep(min_usec);
|
jtag_add_sleep(min_usec);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1515,6 +1540,7 @@ static int svf_run_command(struct command_context *cmd_ctx, char *cmd_str)
|
||||||
return ERROR_FAIL;
|
return ERROR_FAIL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!svf_nil)
|
||||||
jtag_add_runtest(run_count, svf_para.runtest_end_state);
|
jtag_add_runtest(run_count, svf_para.runtest_end_state);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -1558,8 +1584,10 @@ static int svf_run_command(struct command_context *cmd_ctx, char *cmd_str)
|
||||||
/* FIXME last state MUST be stable! */
|
/* FIXME last state MUST be stable! */
|
||||||
if (i > 0)
|
if (i > 0)
|
||||||
{
|
{
|
||||||
|
if (!svf_nil)
|
||||||
jtag_add_pathmove(i, path);
|
jtag_add_pathmove(i, path);
|
||||||
}
|
}
|
||||||
|
if (!svf_nil)
|
||||||
jtag_add_tlr();
|
jtag_add_tlr();
|
||||||
num_of_argu -= i + 1;
|
num_of_argu -= i + 1;
|
||||||
i = -1;
|
i = -1;
|
||||||
|
@ -1571,6 +1599,7 @@ static int svf_run_command(struct command_context *cmd_ctx, char *cmd_str)
|
||||||
if (svf_tap_state_is_stable(path[num_of_argu - 1]))
|
if (svf_tap_state_is_stable(path[num_of_argu - 1]))
|
||||||
{
|
{
|
||||||
// last state MUST be stable state
|
// last state MUST be stable state
|
||||||
|
if (!svf_nil)
|
||||||
jtag_add_pathmove(num_of_argu, path);
|
jtag_add_pathmove(num_of_argu, path);
|
||||||
LOG_DEBUG("\tmove to %s by path_move",
|
LOG_DEBUG("\tmove to %s by path_move",
|
||||||
tap_state_name(path[num_of_argu - 1]));
|
tap_state_name(path[num_of_argu - 1]));
|
||||||
|
@ -1626,10 +1655,12 @@ static int svf_run_command(struct command_context *cmd_ctx, char *cmd_str)
|
||||||
switch (i_tmp)
|
switch (i_tmp)
|
||||||
{
|
{
|
||||||
case TRST_ON:
|
case TRST_ON:
|
||||||
|
if (!svf_nil)
|
||||||
jtag_add_reset(1, 0);
|
jtag_add_reset(1, 0);
|
||||||
break;
|
break;
|
||||||
case TRST_Z:
|
case TRST_Z:
|
||||||
case TRST_OFF:
|
case TRST_OFF:
|
||||||
|
if (!svf_nil)
|
||||||
jtag_add_reset(0, 0);
|
jtag_add_reset(0, 0);
|
||||||
break;
|
break;
|
||||||
case TRST_ABSENT:
|
case TRST_ABSENT:
|
||||||
|
@ -1705,7 +1736,7 @@ static const struct command_registration svf_command_handlers[] = {
|
||||||
.handler = handle_svf_command,
|
.handler = handle_svf_command,
|
||||||
.mode = COMMAND_EXEC,
|
.mode = COMMAND_EXEC,
|
||||||
.help = "Runs a SVF file.",
|
.help = "Runs a SVF file.",
|
||||||
.usage = "svf [-tap device.tap] <file> [quiet] [progress]",
|
.usage = "svf [-tap device.tap] <file> [quiet] [nil] [progress]",
|
||||||
},
|
},
|
||||||
COMMAND_REGISTRATION_DONE
|
COMMAND_REGISTRATION_DONE
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue