target/riscv: use struct riscv_info instead of typedef riscv_info_t

Make the main RISC-V structure more compliant with OpenOCD coding style.
Other typedefs remains as is.

Change-Id: I5657ad28fea8108fd66ab27b2dfe1c868dc5805b
Signed-off-by: Tomas Vanek <vanekt@fbl.cz>
Reviewed-on: https://review.openocd.org/c/openocd/+/6998
Tested-by: jenkins
Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-by: Tim Newsome <tim@sifive.com>
This commit is contained in:
Tomas Vanek 2022-05-26 13:08:48 +02:00
parent 2c6571b9b1
commit 82e76262a1
4 changed files with 35 additions and 27 deletions

View File

@ -227,10 +227,10 @@ static int get_register(struct target *target, riscv_reg_t *value, int regid);
static riscv011_info_t *get_info(const struct target *target) static riscv011_info_t *get_info(const struct target *target)
{ {
riscv_info_t *info = (riscv_info_t *) target->arch_info; struct riscv_info *info = target->arch_info;
assert(info); assert(info);
assert(info->version_specific); assert(info->version_specific);
return (riscv011_info_t *) info->version_specific; return info->version_specific;
} }
static unsigned int slot_offset(const struct target *target, slot_t slot) static unsigned int slot_offset(const struct target *target, slot_t slot)
@ -1408,7 +1408,10 @@ static int halt(struct target *target)
static void deinit_target(struct target *target) static void deinit_target(struct target *target)
{ {
LOG_DEBUG("riscv_deinit_target()"); LOG_DEBUG("riscv_deinit_target()");
riscv_info_t *info = (riscv_info_t *) target->arch_info; struct riscv_info *info = target->arch_info;
if (!info)
return;
free(info->version_specific); free(info->version_specific);
info->version_specific = NULL; info->version_specific = NULL;
} }
@ -1549,7 +1552,7 @@ static int examine(struct target *target)
uint32_t word0 = cache_get32(target, 0); uint32_t word0 = cache_get32(target, 0);
uint32_t word1 = cache_get32(target, 1); uint32_t word1 = cache_get32(target, 1);
riscv_info_t *generic_info = (riscv_info_t *) target->arch_info; struct riscv_info *generic_info = riscv_info(target);
if (word0 == 1 && word1 == 0) { if (word0 == 1 && word1 == 0) {
generic_info->xlen = 32; generic_info->xlen = 32;
} else if (word0 == 0xffffffff && word1 == 3) { } else if (word0 == 0xffffffff && word1 == 3) {

View File

@ -34,7 +34,7 @@ static int riscv013_step_or_resume_current_hart(struct target *target,
bool step, bool use_hasel); bool step, bool use_hasel);
static void riscv013_clear_abstract_error(struct target *target); static void riscv013_clear_abstract_error(struct target *target);
/* Implementations of the functions in riscv_info_t. */ /* Implementations of the functions in struct riscv_info. */
static int riscv013_get_register(struct target *target, static int riscv013_get_register(struct target *target,
riscv_reg_t *value, int rid); riscv_reg_t *value, int rid);
static int riscv013_set_register(struct target *target, int regid, uint64_t value); static int riscv013_set_register(struct target *target, int regid, uint64_t value);
@ -225,10 +225,10 @@ LIST_HEAD(dm_list);
static riscv013_info_t *get_info(const struct target *target) static riscv013_info_t *get_info(const struct target *target)
{ {
riscv_info_t *info = (riscv_info_t *) target->arch_info; struct riscv_info *info = target->arch_info;
assert(info); assert(info);
assert(info->version_specific); assert(info->version_specific);
return (riscv013_info_t *) info->version_specific; return info->version_specific;
} }
/** /**
@ -1524,7 +1524,10 @@ static int wait_for_authbusy(struct target *target, uint32_t *dmstatus)
static void deinit_target(struct target *target) static void deinit_target(struct target *target)
{ {
LOG_DEBUG("riscv_deinit_target()"); LOG_DEBUG("riscv_deinit_target()");
riscv_info_t *info = (riscv_info_t *) target->arch_info; struct riscv_info *info = target->arch_info;
if (!info)
return;
free(info->version_specific); free(info->version_specific);
/* TODO: free register arch_info */ /* TODO: free register arch_info */
info->version_specific = NULL; info->version_specific = NULL;
@ -4173,7 +4176,7 @@ static int select_prepped_harts(struct target *target, bool *use_hasel)
unsigned total_selected = 0; unsigned total_selected = 0;
list_for_each_entry(entry, &dm->target_list, list) { list_for_each_entry(entry, &dm->target_list, list) {
struct target *t = entry->target; struct target *t = entry->target;
riscv_info_t *r = riscv_info(t); struct riscv_info *r = riscv_info(t);
riscv013_info_t *info = get_info(t); riscv013_info_t *info = get_info(t);
unsigned index = info->index; unsigned index = info->index;
LOG_DEBUG("index=%d, coreid=%d, prepped=%d", index, t->coreid, r->prepped); LOG_DEBUG("index=%d, coreid=%d, prepped=%d", index, t->coreid, r->prepped);

View File

@ -405,13 +405,12 @@ static uint32_t dtmcontrol_scan(struct target *target, uint32_t out)
static struct target_type *get_target_type(struct target *target) static struct target_type *get_target_type(struct target *target)
{ {
riscv_info_t *info = (riscv_info_t *) target->arch_info; if (!target->arch_info) {
if (!info) {
LOG_ERROR("Target has not been initialized"); LOG_ERROR("Target has not been initialized");
return NULL; return NULL;
} }
RISCV_INFO(info);
switch (info->dtm_version) { switch (info->dtm_version) {
case 0: case 0:
return &riscv011_target; return &riscv011_target;
@ -426,7 +425,7 @@ static struct target_type *get_target_type(struct target *target)
static int riscv_create_target(struct target *target, Jim_Interp *interp) static int riscv_create_target(struct target *target, Jim_Interp *interp)
{ {
LOG_DEBUG("riscv_create_target()"); LOG_DEBUG("riscv_create_target()");
target->arch_info = calloc(1, sizeof(riscv_info_t)); target->arch_info = calloc(1, sizeof(struct riscv_info));
if (!target->arch_info) { if (!target->arch_info) {
LOG_ERROR("Failed to allocate RISC-V target structure."); LOG_ERROR("Failed to allocate RISC-V target structure.");
return ERROR_FAIL; return ERROR_FAIL;
@ -489,14 +488,17 @@ static void riscv_deinit_target(struct target *target)
{ {
LOG_DEBUG("riscv_deinit_target()"); LOG_DEBUG("riscv_deinit_target()");
riscv_info_t *info = target->arch_info; struct riscv_info *info = target->arch_info;
struct target_type *tt = get_target_type(target); struct target_type *tt = get_target_type(target);
if (tt && info->version_specific) if (tt && info && info->version_specific)
tt->deinit_target(target); tt->deinit_target(target);
riscv_free_registers(target); riscv_free_registers(target);
if (!info)
return;
range_list_t *entry, *tmp; range_list_t *entry, *tmp;
list_for_each_entry_safe(entry, tmp, &info->expose_csr, list) { list_for_each_entry_safe(entry, tmp, &info->expose_csr, list) {
free(entry->name); free(entry->name);
@ -1200,7 +1202,7 @@ int riscv_halt_go_all_harts(struct target *target)
int halt_go(struct target *target) int halt_go(struct target *target)
{ {
riscv_info_t *r = riscv_info(target); RISCV_INFO(r);
int result; int result;
if (!r->is_halted) { if (!r->is_halted) {
struct target_type *tt = get_target_type(target); struct target_type *tt = get_target_type(target);
@ -1242,7 +1244,7 @@ int riscv_halt(struct target *target)
foreach_smp_target(tlist, target->smp_targets) { foreach_smp_target(tlist, target->smp_targets) {
struct target *t = tlist->target; struct target *t = tlist->target;
riscv_info_t *i = riscv_info(t); struct riscv_info *i = riscv_info(t);
if (i->prepped) { if (i->prepped) {
if (halt_go(t) != ERROR_OK) if (halt_go(t) != ERROR_OK)
result = ERROR_FAIL; result = ERROR_FAIL;
@ -1434,7 +1436,7 @@ static int resume_prep(struct target *target, int current,
static int resume_go(struct target *target, int current, static int resume_go(struct target *target, int current,
target_addr_t address, int handle_breakpoints, int debug_execution) target_addr_t address, int handle_breakpoints, int debug_execution)
{ {
riscv_info_t *r = riscv_info(target); RISCV_INFO(r);
int result; int result;
if (!r->is_halted) { if (!r->is_halted) {
struct target_type *tt = get_target_type(target); struct target_type *tt = get_target_type(target);
@ -1483,7 +1485,7 @@ int riscv_resume(
foreach_smp_target_direction(resume_order == RO_NORMAL, foreach_smp_target_direction(resume_order == RO_NORMAL,
tlist, target->smp_targets) { tlist, target->smp_targets) {
struct target *t = tlist->target; struct target *t = tlist->target;
riscv_info_t *i = riscv_info(t); struct riscv_info *i = riscv_info(t);
if (i->prepped) { if (i->prepped) {
if (resume_go(t, current, address, handle_breakpoints, if (resume_go(t, current, address, handle_breakpoints,
debug_execution) != ERROR_OK) debug_execution) != ERROR_OK)
@ -2189,7 +2191,7 @@ int riscv_openocd_poll(struct target *target)
struct target_list *list; struct target_list *list;
foreach_smp_target(list, target->smp_targets) { foreach_smp_target(list, target->smp_targets) {
struct target *t = list->target; struct target *t = list->target;
riscv_info_t *r = riscv_info(t); struct riscv_info *r = riscv_info(t);
enum riscv_poll_hart out = riscv_poll_hart(t, r->current_hartid); enum riscv_poll_hart out = riscv_poll_hart(t, r->current_hartid);
switch (out) { switch (out) {
case RPH_NO_CHANGE: case RPH_NO_CHANGE:
@ -3197,7 +3199,7 @@ struct target_type riscv_target = {
/*** RISC-V Interface ***/ /*** RISC-V Interface ***/
void riscv_info_init(struct target *target, riscv_info_t *r) void riscv_info_init(struct target *target, struct riscv_info *r)
{ {
memset(r, 0, sizeof(*r)); memset(r, 0, sizeof(*r));
r->dtm_version = 1; r->dtm_version = 1;

View File

@ -85,7 +85,7 @@ typedef struct {
char *name; char *name;
} range_list_t; } range_list_t;
typedef struct { struct riscv_info {
unsigned dtm_version; unsigned dtm_version;
struct command_context *cmd_ctx; struct command_context *cmd_ctx;
@ -225,7 +225,7 @@ typedef struct {
riscv_sample_config_t sample_config; riscv_sample_config_t sample_config;
struct riscv_sample_buf sample_buf; struct riscv_sample_buf sample_buf;
} riscv_info_t; };
COMMAND_HELPER(riscv_print_info_line, const char *section, const char *key, COMMAND_HELPER(riscv_print_info_line, const char *section, const char *key,
unsigned int value); unsigned int value);
@ -261,13 +261,13 @@ extern bool riscv_ebreaku;
/* Everything needs the RISC-V specific info structure, so here's a nice macro /* Everything needs the RISC-V specific info structure, so here's a nice macro
* that provides that. */ * that provides that. */
static inline riscv_info_t *riscv_info(const struct target *target) __attribute__((unused)); static inline struct riscv_info *riscv_info(const struct target *target) __attribute__((unused));
static inline riscv_info_t *riscv_info(const struct target *target) static inline struct riscv_info *riscv_info(const struct target *target)
{ {
assert(target->arch_info); assert(target->arch_info);
return target->arch_info; return target->arch_info;
} }
#define RISCV_INFO(R) riscv_info_t *R = riscv_info(target); #define RISCV_INFO(R) struct riscv_info *R = riscv_info(target);
extern uint8_t ir_dtmcontrol[4]; extern uint8_t ir_dtmcontrol[4];
extern struct scan_field select_dtmcontrol; extern struct scan_field select_dtmcontrol;
@ -313,7 +313,7 @@ int riscv_openocd_deassert_reset(struct target *target);
/*** RISC-V Interface ***/ /*** RISC-V Interface ***/
/* Initializes the shared RISC-V structure. */ /* Initializes the shared RISC-V structure. */
void riscv_info_init(struct target *target, riscv_info_t *r); void riscv_info_init(struct target *target, struct riscv_info *r);
/* Steps the hart that's currently selected in the RTOS, or if there is no RTOS /* Steps the hart that's currently selected in the RTOS, or if there is no RTOS
* then the only hart. */ * then the only hart. */