helper/command: get current target from dedicated API
Now that target override is uniformly implemented for all types of commands, there is no need for target-prefixed "native" commands (.jim_handler) to sneakily extract the overridden target from the struct command. Modify the commands to use the standard API get_current_target(). Change-Id: I732a09c3261e56524edd5217634fa409eb97a8c6 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5666 Tested-by: jenkins Reviewed-by: Oleksij Rempel <linux@rempel-privat.de>
This commit is contained in:
@@ -722,8 +722,9 @@ static int jim_nds32_bulk_write(Jim_Interp *interp, int argc, Jim_Obj * const *a
|
||||
return JIM_ERR;
|
||||
}
|
||||
|
||||
struct command *c = jim_to_command(goi.interp);
|
||||
struct target *target = c->jim_handler_data;
|
||||
struct command_context *cmd_ctx = current_command_context(interp);
|
||||
assert(cmd_ctx);
|
||||
struct target *target = get_current_target(cmd_ctx);
|
||||
int result;
|
||||
|
||||
result = target_write_buffer(target, address, count * 4, (const uint8_t *)data);
|
||||
@@ -752,8 +753,9 @@ static int jim_nds32_multi_write(Jim_Interp *interp, int argc, Jim_Obj * const *
|
||||
if (e != JIM_OK)
|
||||
return e;
|
||||
|
||||
struct command *c = jim_to_command(goi.interp);
|
||||
struct target *target = c->jim_handler_data;
|
||||
struct command_context *cmd_ctx = current_command_context(interp);
|
||||
assert(cmd_ctx);
|
||||
struct target *target = get_current_target(cmd_ctx);
|
||||
struct aice_port_s *aice = target_to_aice(target);
|
||||
int result;
|
||||
uint32_t address;
|
||||
@@ -814,8 +816,9 @@ static int jim_nds32_bulk_read(Jim_Interp *interp, int argc, Jim_Obj * const *ar
|
||||
if (goi.argc != 0)
|
||||
return JIM_ERR;
|
||||
|
||||
struct command *c = jim_to_command(goi.interp);
|
||||
struct target *target = c->jim_handler_data;
|
||||
struct command_context *cmd_ctx = current_command_context(interp);
|
||||
assert(cmd_ctx);
|
||||
struct target *target = get_current_target(cmd_ctx);
|
||||
uint32_t *data = malloc(count * sizeof(uint32_t));
|
||||
int result;
|
||||
result = target_read_buffer(target, address, count * 4, (uint8_t *)data);
|
||||
@@ -866,8 +869,9 @@ static int jim_nds32_read_edm_sr(Jim_Interp *interp, int argc, Jim_Obj * const *
|
||||
else
|
||||
return ERROR_FAIL;
|
||||
|
||||
struct command *c = jim_to_command(goi.interp);
|
||||
struct target *target = c->jim_handler_data;
|
||||
struct command_context *cmd_ctx = current_command_context(interp);
|
||||
assert(cmd_ctx);
|
||||
struct target *target = get_current_target(cmd_ctx);
|
||||
struct aice_port_s *aice = target_to_aice(target);
|
||||
char data_str[11];
|
||||
|
||||
@@ -915,8 +919,9 @@ static int jim_nds32_write_edm_sr(Jim_Interp *interp, int argc, Jim_Obj * const
|
||||
else
|
||||
return ERROR_FAIL;
|
||||
|
||||
struct command *c = jim_to_command(goi.interp);
|
||||
struct target *target = c->jim_handler_data;
|
||||
struct command_context *cmd_ctx = current_command_context(interp);
|
||||
assert(cmd_ctx);
|
||||
struct target *target = get_current_target(cmd_ctx);
|
||||
struct aice_port_s *aice = target_to_aice(target);
|
||||
|
||||
aice_write_debug_reg(aice, edm_sr_number, value);
|
||||
|
||||
Reference in New Issue
Block a user