target/riscv: make CPUCFG() macro public
The RISC-V KVM driver uses a CPUCFG() macro that calculates the offset of a certain field in the struct RISCVCPUConfig. We're going to use this macro in target/riscv/cpu.c as well in the next patches. Make it public. Rename it to CPU_CFG_OFFSET() for more clarity while we're at it. Signed-off-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Andrew Jones <ajones@ventanamicro.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20230912132423.268494-15-dbarboza@ventanamicro.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
5f2c80f1a0
commit
238fd586e0
@ -48,7 +48,7 @@ struct isa_ext_data {
|
||||
};
|
||||
|
||||
#define ISA_EXT_DATA_ENTRY(_name, _min_ver, _prop) \
|
||||
{#_name, _min_ver, offsetof(struct RISCVCPUConfig, _prop)}
|
||||
{#_name, _min_ver, CPU_CFG_OFFSET(_prop)}
|
||||
|
||||
/*
|
||||
* From vector_helper.c
|
||||
|
@ -62,6 +62,8 @@
|
||||
const char *riscv_get_misa_ext_name(uint32_t bit);
|
||||
const char *riscv_get_misa_ext_description(uint32_t bit);
|
||||
|
||||
#define CPU_CFG_OFFSET(_prop) offsetof(struct RISCVCPUConfig, _prop)
|
||||
|
||||
/* Privileged specification version */
|
||||
enum {
|
||||
PRIV_VERSION_1_10_0 = 0,
|
||||
|
@ -205,10 +205,8 @@ static void kvm_riscv_update_cpu_misa_ext(RISCVCPU *cpu, CPUState *cs)
|
||||
}
|
||||
}
|
||||
|
||||
#define CPUCFG(_prop) offsetof(struct RISCVCPUConfig, _prop)
|
||||
|
||||
#define KVM_EXT_CFG(_name, _prop, _reg_id) \
|
||||
{.name = _name, .offset = CPUCFG(_prop), \
|
||||
{.name = _name, .offset = CPU_CFG_OFFSET(_prop), \
|
||||
.kvm_reg_id = _reg_id}
|
||||
|
||||
static KVMCPUConfig kvm_multi_ext_cfgs[] = {
|
||||
@ -285,13 +283,13 @@ static void kvm_cpu_set_multi_ext_cfg(Object *obj, Visitor *v,
|
||||
|
||||
static KVMCPUConfig kvm_cbom_blocksize = {
|
||||
.name = "cbom_blocksize",
|
||||
.offset = CPUCFG(cbom_blocksize),
|
||||
.offset = CPU_CFG_OFFSET(cbom_blocksize),
|
||||
.kvm_reg_id = KVM_REG_RISCV_CONFIG_REG(zicbom_block_size)
|
||||
};
|
||||
|
||||
static KVMCPUConfig kvm_cboz_blocksize = {
|
||||
.name = "cboz_blocksize",
|
||||
.offset = CPUCFG(cboz_blocksize),
|
||||
.offset = CPU_CFG_OFFSET(cboz_blocksize),
|
||||
.kvm_reg_id = KVM_REG_RISCV_CONFIG_REG(zicboz_block_size)
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user