Merge pull request #1044 from en-sc/en-sc/riscv-011-sep-reg-acc

target/riscv: stop using register_get/set for 0.11 targets
This commit is contained in:
Evgeniy Naydanov 2024-06-07 17:01:42 +03:00 committed by GitHub
commit 568baf8c0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 102 additions and 18 deletions

View File

@ -1261,7 +1261,7 @@ static int register_read(struct target *target, riscv_reg_t *value, int regnum)
return ERROR_OK;
}
/* Write the register. No caching or games. */
/* Write the register. */
static int register_write(struct target *target, unsigned int number,
uint64_t value)
{
@ -1337,6 +1337,10 @@ static int get_register(struct target *target, riscv_reg_t *value,
maybe_write_tselect(target);
if (regid <= GDB_REGNO_XPR31) {
/* FIXME: Here the implementation assumes that the value
* written to GPR will be the same as the value read back. This
* is not true for a write of a non-zero value to x0.
*/
*value = reg_cache_get(target, regid);
} else if (regid == GDB_REGNO_PC || regid == GDB_REGNO_DPC) {
*value = info->dpc;
@ -1368,16 +1372,32 @@ static int get_register(struct target *target, riscv_reg_t *value,
return result;
}
if (regid == GDB_REGNO_MSTATUS)
target->reg_cache->reg_list[regid].valid = true;
return ERROR_OK;
}
/* This function is intended to handle accesses to registers through register
* cache. */
static int set_register(struct target *target, enum gdb_regno regid,
riscv_reg_t value)
{
return register_write(target, regid, value);
assert(target->reg_cache);
assert(target->reg_cache->reg_list);
struct reg * const reg = &target->reg_cache->reg_list[regid];
assert(reg);
/* On RISC-V 0.11 targets valid value of some registers (e.g. `dcsr`)
* is stored in `riscv011_info_t` itself, not in register cache. This
* complicates register cache implementation.
* Therefore, for now, caching registers in register cache is disabled
* for all registers, except for reads of GPRs.
*/
assert(!reg->dirty);
int result = register_write(target, regid, value);
if (result != ERROR_OK)
return result;
reg_cache_set(target, regid, value);
/* FIXME: x0 (zero) should not be cached on writes. */
reg->valid = regid <= GDB_REGNO_XPR31;
return ERROR_OK;
}
static int halt(struct target *target)
@ -1584,8 +1604,6 @@ static int examine(struct target *target)
return result;
target_set_examined(target);
for (size_t i = 0; i < 32; ++i)
reg_cache_set(target, i, -1);
LOG_INFO("Examined RISCV core; XLEN=%d, misa=0x%" PRIx64,
riscv_xlen(target), r->misa);

View File

@ -5669,7 +5669,10 @@ static int riscv_set_or_write_register(struct target *target,
enum gdb_regno regid, riscv_reg_t value, bool write_through)
{
RISCV_INFO(r);
assert(r);
assert(r->set_register);
if (r->dtm_version == DTM_DTMCS_VERSION_0_11)
return r->set_register(target, regid, value);
keep_alive();
@ -5766,7 +5769,10 @@ int riscv_get_register(struct target *target, riscv_reg_t *value,
enum gdb_regno regid)
{
RISCV_INFO(r);
assert(r);
assert(r->get_register);
if (r->dtm_version == DTM_DTMCS_VERSION_0_11)
return r->get_register(target, value, regid);
keep_alive();
@ -6222,13 +6228,17 @@ const char *gdb_regno_name(const struct target *target, enum gdb_regno regno)
return NULL;
}
static struct target *get_target_from_reg(const struct reg *reg);
/**
* This function is the handler of user's request to read a register.
*/
static int register_get(struct reg *reg)
static int riscv013_reg_get(struct reg *reg)
{
struct target *target = ((riscv_reg_info_t *)reg->arch_info)->target;
struct target *target = get_target_from_reg(reg);
RISCV_INFO(r);
assert(r);
assert(r->dtm_version == DTM_DTMCS_VERSION_1_0);
/* TODO: Hack to deal with gdb that thinks these registers still exist. */
if (reg->number > GDB_REGNO_XPR15 && reg->number <= GDB_REGNO_XPR31 &&
@ -6266,10 +6276,12 @@ static int register_get(struct reg *reg)
/**
* This function is the handler of user's request to write a register.
*/
static int register_set(struct reg *reg, uint8_t *buf)
static int riscv013_reg_set(struct reg *reg, uint8_t *buf)
{
struct target *target = ((riscv_reg_info_t *)reg->arch_info)->target;
struct target *target = get_target_from_reg(reg);
RISCV_INFO(r);
assert(r);
assert(r->dtm_version == DTM_DTMCS_VERSION_1_0);
char *str = buf_to_hex_str(buf, reg->size);
LOG_TARGET_DEBUG(target, "Write 0x%s to %s (valid=%d).", str, reg->name,
@ -6315,11 +6327,6 @@ static int register_set(struct reg *reg, uint8_t *buf)
return ERROR_OK;
}
static struct reg_arch_type riscv_reg_arch_type = {
.get = register_get,
.set = register_set
};
static int init_custom_register_names(struct list_head *expose_custom,
struct reg_name_table *custom_register_names)
{
@ -6370,7 +6377,7 @@ static bool is_known_standard_csr(unsigned int csr_num)
return is_csr_in_buf[csr_num];
}
bool reg_is_initialized(const struct reg *reg)
static bool reg_is_initialized(const struct reg *reg)
{
assert(reg);
if (!reg->feature) {
@ -6385,6 +6392,65 @@ bool reg_is_initialized(const struct reg *reg)
return true;
}
static struct target *get_target_from_reg(const struct reg *reg)
{
assert(reg_is_initialized(reg));
return ((const riscv_reg_info_t *)reg->arch_info)->target;
}
static int riscv011_reg_get(struct reg *reg)
{
struct target * const target = get_target_from_reg(reg);
RISCV_INFO(r);
assert(r);
assert(r->dtm_version == DTM_DTMCS_VERSION_0_11);
riscv_reg_t value;
const int result = r->get_register(target, &value, reg->number);
if (result != ERROR_OK)
return result;
buf_set_u64(reg->value, 0, reg->size, value);
return ERROR_OK;
}
static int riscv011_reg_set(struct reg *reg, uint8_t *buf)
{
const riscv_reg_t value = buf_get_u64(buf, 0, reg->size);
struct target * const target = get_target_from_reg(reg);
RISCV_INFO(r);
assert(r);
assert(r->dtm_version == DTM_DTMCS_VERSION_0_11);
if (reg->number == GDB_REGNO_TDATA1 || reg->number == GDB_REGNO_TDATA2) {
r->manual_hwbp_set = true;
/* When enumerating triggers, we clear any triggers with DMODE set,
* assuming they were left over from a previous debug session. So make
* sure that is done before a user might be setting their own triggers.
*/
if (riscv_enumerate_triggers(target) != ERROR_OK)
return ERROR_FAIL;
}
return r->set_register(target, reg->number, value);
}
static struct reg_arch_type *gdb_regno_reg_type(const struct target *target,
uint32_t regno)
{
RISCV_INFO(info);
assert(info);
if (info->dtm_version == DTM_DTMCS_VERSION_0_11) {
static struct reg_arch_type riscv011_reg_type = {
.get = riscv011_reg_get,
.set = riscv011_reg_set
};
return &riscv011_reg_type;
}
static struct reg_arch_type riscv013_reg_type = {
.get = riscv013_reg_get,
.set = riscv013_reg_set
};
return &riscv013_reg_type;
}
static struct reg_feature *gdb_regno_feature(uint32_t regno)
{
if (regno <= GDB_REGNO_XPR31 || regno == GDB_REGNO_PC) {
@ -6758,7 +6824,7 @@ static int init_reg(struct target *target, uint32_t regno)
if (reg_is_initialized(reg))
return ERROR_OK;
reg->number = regno;
reg->type = &riscv_reg_arch_type;
reg->type = gdb_regno_reg_type(target, regno);
reg->dirty = false;
reg->valid = false;
reg->hidden = false;