4ea5fe997d
These inline helpers are all used by target specific code so move them out of the general header so we don't needlessly pollute the rest of the API with target specific stuff. Note we have to include cpu.h in semihosting as it was relying on a side effect before. Reviewed-by: Taylor Simpson <tsimpson@quicinc.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20230302190846.2593720-21-alex.bennee@linaro.org> Message-Id: <20230303025805.625589-21-richard.henderson@linaro.org>
351 lines
9.7 KiB
C
351 lines
9.7 KiB
C
/*
|
|
* RISC-V GDB Server Stub
|
|
*
|
|
* Copyright (c) 2016-2017 Sagar Karandikar, sagark@eecs.berkeley.edu
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2 or later, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "exec/gdbstub.h"
|
|
#include "gdbstub/helpers.h"
|
|
#include "cpu.h"
|
|
|
|
struct TypeSize {
|
|
const char *gdb_type;
|
|
const char *id;
|
|
int size;
|
|
const char suffix;
|
|
};
|
|
|
|
static const struct TypeSize vec_lanes[] = {
|
|
/* quads */
|
|
{ "uint128", "quads", 128, 'q' },
|
|
/* 64 bit */
|
|
{ "uint64", "longs", 64, 'l' },
|
|
/* 32 bit */
|
|
{ "uint32", "words", 32, 'w' },
|
|
/* 16 bit */
|
|
{ "uint16", "shorts", 16, 's' },
|
|
/*
|
|
* TODO: currently there is no reliable way of telling
|
|
* if the remote gdb actually understands ieee_half so
|
|
* we don't expose it in the target description for now.
|
|
* { "ieee_half", 16, 'h', 'f' },
|
|
*/
|
|
/* bytes */
|
|
{ "uint8", "bytes", 8, 'b' },
|
|
};
|
|
|
|
int riscv_cpu_gdb_read_register(CPUState *cs, GByteArray *mem_buf, int n)
|
|
{
|
|
RISCVCPU *cpu = RISCV_CPU(cs);
|
|
CPURISCVState *env = &cpu->env;
|
|
target_ulong tmp;
|
|
|
|
if (n < 32) {
|
|
tmp = env->gpr[n];
|
|
} else if (n == 32) {
|
|
tmp = env->pc;
|
|
} else {
|
|
return 0;
|
|
}
|
|
|
|
switch (env->misa_mxl_max) {
|
|
case MXL_RV32:
|
|
return gdb_get_reg32(mem_buf, tmp);
|
|
case MXL_RV64:
|
|
case MXL_RV128:
|
|
return gdb_get_reg64(mem_buf, tmp);
|
|
default:
|
|
g_assert_not_reached();
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int riscv_cpu_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n)
|
|
{
|
|
RISCVCPU *cpu = RISCV_CPU(cs);
|
|
CPURISCVState *env = &cpu->env;
|
|
int length = 0;
|
|
target_ulong tmp;
|
|
|
|
switch (env->misa_mxl_max) {
|
|
case MXL_RV32:
|
|
tmp = (int32_t)ldl_p(mem_buf);
|
|
length = 4;
|
|
break;
|
|
case MXL_RV64:
|
|
case MXL_RV128:
|
|
if (env->xl < MXL_RV64) {
|
|
tmp = (int32_t)ldq_p(mem_buf);
|
|
} else {
|
|
tmp = ldq_p(mem_buf);
|
|
}
|
|
length = 8;
|
|
break;
|
|
default:
|
|
g_assert_not_reached();
|
|
}
|
|
if (n > 0 && n < 32) {
|
|
env->gpr[n] = tmp;
|
|
} else if (n == 32) {
|
|
env->pc = tmp;
|
|
}
|
|
|
|
return length;
|
|
}
|
|
|
|
static int riscv_gdb_get_fpu(CPURISCVState *env, GByteArray *buf, int n)
|
|
{
|
|
if (n < 32) {
|
|
if (env->misa_ext & RVD) {
|
|
return gdb_get_reg64(buf, env->fpr[n]);
|
|
}
|
|
if (env->misa_ext & RVF) {
|
|
return gdb_get_reg32(buf, env->fpr[n]);
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int riscv_gdb_set_fpu(CPURISCVState *env, uint8_t *mem_buf, int n)
|
|
{
|
|
if (n < 32) {
|
|
env->fpr[n] = ldq_p(mem_buf); /* always 64-bit */
|
|
return sizeof(uint64_t);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int riscv_gdb_get_vector(CPURISCVState *env, GByteArray *buf, int n)
|
|
{
|
|
uint16_t vlenb = env_archcpu(env)->cfg.vlen >> 3;
|
|
if (n < 32) {
|
|
int i;
|
|
int cnt = 0;
|
|
for (i = 0; i < vlenb; i += 8) {
|
|
cnt += gdb_get_reg64(buf,
|
|
env->vreg[(n * vlenb + i) / 8]);
|
|
}
|
|
return cnt;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int riscv_gdb_set_vector(CPURISCVState *env, uint8_t *mem_buf, int n)
|
|
{
|
|
uint16_t vlenb = env_archcpu(env)->cfg.vlen >> 3;
|
|
if (n < 32) {
|
|
int i;
|
|
for (i = 0; i < vlenb; i += 8) {
|
|
env->vreg[(n * vlenb + i) / 8] = ldq_p(mem_buf + i);
|
|
}
|
|
return vlenb;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int riscv_gdb_get_csr(CPURISCVState *env, GByteArray *buf, int n)
|
|
{
|
|
if (n < CSR_TABLE_SIZE) {
|
|
target_ulong val = 0;
|
|
int result;
|
|
|
|
result = riscv_csrrw_debug(env, n, &val, 0, 0);
|
|
if (result == RISCV_EXCP_NONE) {
|
|
return gdb_get_regl(buf, val);
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int riscv_gdb_set_csr(CPURISCVState *env, uint8_t *mem_buf, int n)
|
|
{
|
|
if (n < CSR_TABLE_SIZE) {
|
|
target_ulong val = ldtul_p(mem_buf);
|
|
int result;
|
|
|
|
result = riscv_csrrw_debug(env, n, NULL, val, -1);
|
|
if (result == RISCV_EXCP_NONE) {
|
|
return sizeof(target_ulong);
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int riscv_gdb_get_virtual(CPURISCVState *cs, GByteArray *buf, int n)
|
|
{
|
|
if (n == 0) {
|
|
#ifdef CONFIG_USER_ONLY
|
|
return gdb_get_regl(buf, 0);
|
|
#else
|
|
return gdb_get_regl(buf, cs->priv);
|
|
#endif
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int riscv_gdb_set_virtual(CPURISCVState *cs, uint8_t *mem_buf, int n)
|
|
{
|
|
if (n == 0) {
|
|
#ifndef CONFIG_USER_ONLY
|
|
cs->priv = ldtul_p(mem_buf) & 0x3;
|
|
if (cs->priv == PRV_H) {
|
|
cs->priv = PRV_S;
|
|
}
|
|
#endif
|
|
return sizeof(target_ulong);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int riscv_gen_dynamic_csr_xml(CPUState *cs, int base_reg)
|
|
{
|
|
RISCVCPU *cpu = RISCV_CPU(cs);
|
|
CPURISCVState *env = &cpu->env;
|
|
GString *s = g_string_new(NULL);
|
|
riscv_csr_predicate_fn predicate;
|
|
int bitsize = 16 << env->misa_mxl_max;
|
|
int i;
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
env->debugger = true;
|
|
#endif
|
|
|
|
/* Until gdb knows about 128-bit registers */
|
|
if (bitsize > 64) {
|
|
bitsize = 64;
|
|
}
|
|
|
|
g_string_printf(s, "<?xml version=\"1.0\"?>");
|
|
g_string_append_printf(s, "<!DOCTYPE feature SYSTEM \"gdb-target.dtd\">");
|
|
g_string_append_printf(s, "<feature name=\"org.gnu.gdb.riscv.csr\">");
|
|
|
|
for (i = 0; i < CSR_TABLE_SIZE; i++) {
|
|
if (env->priv_ver < csr_ops[i].min_priv_ver) {
|
|
continue;
|
|
}
|
|
predicate = csr_ops[i].predicate;
|
|
if (predicate && (predicate(env, i) == RISCV_EXCP_NONE)) {
|
|
if (csr_ops[i].name) {
|
|
g_string_append_printf(s, "<reg name=\"%s\"", csr_ops[i].name);
|
|
} else {
|
|
g_string_append_printf(s, "<reg name=\"csr%03x\"", i);
|
|
}
|
|
g_string_append_printf(s, " bitsize=\"%d\"", bitsize);
|
|
g_string_append_printf(s, " regnum=\"%d\"/>", base_reg + i);
|
|
}
|
|
}
|
|
|
|
g_string_append_printf(s, "</feature>");
|
|
|
|
cpu->dyn_csr_xml = g_string_free(s, false);
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
env->debugger = false;
|
|
#endif
|
|
|
|
return CSR_TABLE_SIZE;
|
|
}
|
|
|
|
static int ricsv_gen_dynamic_vector_xml(CPUState *cs, int base_reg)
|
|
{
|
|
RISCVCPU *cpu = RISCV_CPU(cs);
|
|
GString *s = g_string_new(NULL);
|
|
g_autoptr(GString) ts = g_string_new("");
|
|
int reg_width = cpu->cfg.vlen;
|
|
int num_regs = 0;
|
|
int i;
|
|
|
|
g_string_printf(s, "<?xml version=\"1.0\"?>");
|
|
g_string_append_printf(s, "<!DOCTYPE target SYSTEM \"gdb-target.dtd\">");
|
|
g_string_append_printf(s, "<feature name=\"org.gnu.gdb.riscv.vector\">");
|
|
|
|
/* First define types and totals in a whole VL */
|
|
for (i = 0; i < ARRAY_SIZE(vec_lanes); i++) {
|
|
int count = reg_width / vec_lanes[i].size;
|
|
g_string_printf(ts, "%s", vec_lanes[i].id);
|
|
g_string_append_printf(s,
|
|
"<vector id=\"%s\" type=\"%s\" count=\"%d\"/>",
|
|
ts->str, vec_lanes[i].gdb_type, count);
|
|
}
|
|
|
|
/* Define unions */
|
|
g_string_append_printf(s, "<union id=\"riscv_vector\">");
|
|
for (i = 0; i < ARRAY_SIZE(vec_lanes); i++) {
|
|
g_string_append_printf(s, "<field name=\"%c\" type=\"%s\"/>",
|
|
vec_lanes[i].suffix,
|
|
vec_lanes[i].id);
|
|
}
|
|
g_string_append(s, "</union>");
|
|
|
|
/* Define vector registers */
|
|
for (i = 0; i < 32; i++) {
|
|
g_string_append_printf(s,
|
|
"<reg name=\"v%d\" bitsize=\"%d\""
|
|
" regnum=\"%d\" group=\"vector\""
|
|
" type=\"riscv_vector\"/>",
|
|
i, reg_width, base_reg++);
|
|
num_regs++;
|
|
}
|
|
|
|
g_string_append_printf(s, "</feature>");
|
|
|
|
cpu->dyn_vreg_xml = g_string_free(s, false);
|
|
return num_regs;
|
|
}
|
|
|
|
void riscv_cpu_register_gdb_regs_for_features(CPUState *cs)
|
|
{
|
|
RISCVCPU *cpu = RISCV_CPU(cs);
|
|
CPURISCVState *env = &cpu->env;
|
|
if (env->misa_ext & RVD) {
|
|
gdb_register_coprocessor(cs, riscv_gdb_get_fpu, riscv_gdb_set_fpu,
|
|
32, "riscv-64bit-fpu.xml", 0);
|
|
} else if (env->misa_ext & RVF) {
|
|
gdb_register_coprocessor(cs, riscv_gdb_get_fpu, riscv_gdb_set_fpu,
|
|
32, "riscv-32bit-fpu.xml", 0);
|
|
}
|
|
if (env->misa_ext & RVV) {
|
|
int base_reg = cs->gdb_num_regs;
|
|
gdb_register_coprocessor(cs, riscv_gdb_get_vector, riscv_gdb_set_vector,
|
|
ricsv_gen_dynamic_vector_xml(cs, base_reg),
|
|
"riscv-vector.xml", 0);
|
|
}
|
|
switch (env->misa_mxl_max) {
|
|
case MXL_RV32:
|
|
gdb_register_coprocessor(cs, riscv_gdb_get_virtual,
|
|
riscv_gdb_set_virtual,
|
|
1, "riscv-32bit-virtual.xml", 0);
|
|
break;
|
|
case MXL_RV64:
|
|
case MXL_RV128:
|
|
gdb_register_coprocessor(cs, riscv_gdb_get_virtual,
|
|
riscv_gdb_set_virtual,
|
|
1, "riscv-64bit-virtual.xml", 0);
|
|
break;
|
|
default:
|
|
g_assert_not_reached();
|
|
}
|
|
|
|
if (cpu->cfg.ext_icsr) {
|
|
int base_reg = cs->gdb_num_regs;
|
|
gdb_register_coprocessor(cs, riscv_gdb_get_csr, riscv_gdb_set_csr,
|
|
riscv_gen_dynamic_csr_xml(cs, base_reg),
|
|
"riscv-csr.xml", 0);
|
|
}
|
|
}
|