mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
target/riscv/cpu.c: add .instance_post_init()
All generic CPUs call riscv_cpu_add_user_properties(). The 'max' CPU calls riscv_init_max_cpu_extensions(). Both can be moved to a common instance_post_init() callback, implemented in riscv_cpu_post_init(), called by all CPUs. The call order then becomes: riscv_cpu_init() -> cpu_init() of each CPU -> .instance_post_init() In the near future riscv_cpu_post_init() will call the init() function of the current accelerator, providing a hook for KVM and TCG accel classes to change the init() process of the CPU. Signed-off-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> Reviewed-by: Andrew Jones <ajones@ventanamicro.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-ID: <20230925175709.35696-6-dbarboza@ventanamicro.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
e7443334a8
commit
977bbb0452
1 changed files with 32 additions and 11 deletions
|
@ -427,8 +427,6 @@ static void riscv_max_cpu_init(Object *obj)
|
||||||
mlx = MXL_RV32;
|
mlx = MXL_RV32;
|
||||||
#endif
|
#endif
|
||||||
set_misa(env, mlx, 0);
|
set_misa(env, mlx, 0);
|
||||||
riscv_cpu_add_user_properties(obj);
|
|
||||||
riscv_init_max_cpu_extensions(obj);
|
|
||||||
env->priv_ver = PRIV_VERSION_LATEST;
|
env->priv_ver = PRIV_VERSION_LATEST;
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
set_satp_mode_max_supported(RISCV_CPU(obj), mlx == MXL_RV32 ?
|
set_satp_mode_max_supported(RISCV_CPU(obj), mlx == MXL_RV32 ?
|
||||||
|
@ -442,7 +440,6 @@ static void rv64_base_cpu_init(Object *obj)
|
||||||
CPURISCVState *env = &RISCV_CPU(obj)->env;
|
CPURISCVState *env = &RISCV_CPU(obj)->env;
|
||||||
/* We set this in the realise function */
|
/* We set this in the realise function */
|
||||||
set_misa(env, MXL_RV64, 0);
|
set_misa(env, MXL_RV64, 0);
|
||||||
riscv_cpu_add_user_properties(obj);
|
|
||||||
/* Set latest version of privileged specification */
|
/* Set latest version of privileged specification */
|
||||||
env->priv_ver = PRIV_VERSION_LATEST;
|
env->priv_ver = PRIV_VERSION_LATEST;
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
@ -566,7 +563,6 @@ static void rv128_base_cpu_init(Object *obj)
|
||||||
CPURISCVState *env = &RISCV_CPU(obj)->env;
|
CPURISCVState *env = &RISCV_CPU(obj)->env;
|
||||||
/* We set this in the realise function */
|
/* We set this in the realise function */
|
||||||
set_misa(env, MXL_RV128, 0);
|
set_misa(env, MXL_RV128, 0);
|
||||||
riscv_cpu_add_user_properties(obj);
|
|
||||||
/* Set latest version of privileged specification */
|
/* Set latest version of privileged specification */
|
||||||
env->priv_ver = PRIV_VERSION_LATEST;
|
env->priv_ver = PRIV_VERSION_LATEST;
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
@ -579,7 +575,6 @@ static void rv32_base_cpu_init(Object *obj)
|
||||||
CPURISCVState *env = &RISCV_CPU(obj)->env;
|
CPURISCVState *env = &RISCV_CPU(obj)->env;
|
||||||
/* We set this in the realise function */
|
/* We set this in the realise function */
|
||||||
set_misa(env, MXL_RV32, 0);
|
set_misa(env, MXL_RV32, 0);
|
||||||
riscv_cpu_add_user_properties(obj);
|
|
||||||
/* Set latest version of privileged specification */
|
/* Set latest version of privileged specification */
|
||||||
env->priv_ver = PRIV_VERSION_LATEST;
|
env->priv_ver = PRIV_VERSION_LATEST;
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
@ -666,7 +661,6 @@ static void riscv_host_cpu_init(Object *obj)
|
||||||
#elif defined(TARGET_RISCV64)
|
#elif defined(TARGET_RISCV64)
|
||||||
set_misa(env, MXL_RV64, 0);
|
set_misa(env, MXL_RV64, 0);
|
||||||
#endif
|
#endif
|
||||||
riscv_cpu_add_user_properties(obj);
|
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_KVM */
|
#endif /* CONFIG_KVM */
|
||||||
|
|
||||||
|
@ -1215,6 +1209,37 @@ static void riscv_cpu_set_irq(void *opaque, int irq, int level)
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_USER_ONLY */
|
#endif /* CONFIG_USER_ONLY */
|
||||||
|
|
||||||
|
static bool riscv_cpu_is_dynamic(Object *cpu_obj)
|
||||||
|
{
|
||||||
|
return object_dynamic_cast(cpu_obj, TYPE_RISCV_DYNAMIC_CPU) != NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool riscv_cpu_has_max_extensions(Object *cpu_obj)
|
||||||
|
{
|
||||||
|
return object_dynamic_cast(cpu_obj, TYPE_RISCV_CPU_MAX) != NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool riscv_cpu_has_user_properties(Object *cpu_obj)
|
||||||
|
{
|
||||||
|
if (kvm_enabled() &&
|
||||||
|
object_dynamic_cast(cpu_obj, TYPE_RISCV_CPU_HOST) != NULL) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return riscv_cpu_is_dynamic(cpu_obj);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void riscv_cpu_post_init(Object *obj)
|
||||||
|
{
|
||||||
|
if (riscv_cpu_has_user_properties(obj)) {
|
||||||
|
riscv_cpu_add_user_properties(obj);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (riscv_cpu_has_max_extensions(obj)) {
|
||||||
|
riscv_init_max_cpu_extensions(obj);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void riscv_cpu_init(Object *obj)
|
static void riscv_cpu_init(Object *obj)
|
||||||
{
|
{
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
@ -1764,11 +1789,6 @@ static const struct SysemuCPUOps riscv_sysemu_ops = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static bool riscv_cpu_is_dynamic(Object *cpu_obj)
|
|
||||||
{
|
|
||||||
return object_dynamic_cast(cpu_obj, TYPE_RISCV_DYNAMIC_CPU) != NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void cpu_set_mvendorid(Object *obj, Visitor *v, const char *name,
|
static void cpu_set_mvendorid(Object *obj, Visitor *v, const char *name,
|
||||||
void *opaque, Error **errp)
|
void *opaque, Error **errp)
|
||||||
{
|
{
|
||||||
|
@ -2005,6 +2025,7 @@ static const TypeInfo riscv_cpu_type_infos[] = {
|
||||||
.instance_size = sizeof(RISCVCPU),
|
.instance_size = sizeof(RISCVCPU),
|
||||||
.instance_align = __alignof(RISCVCPU),
|
.instance_align = __alignof(RISCVCPU),
|
||||||
.instance_init = riscv_cpu_init,
|
.instance_init = riscv_cpu_init,
|
||||||
|
.instance_post_init = riscv_cpu_post_init,
|
||||||
.abstract = true,
|
.abstract = true,
|
||||||
.class_size = sizeof(RISCVCPUClass),
|
.class_size = sizeof(RISCVCPUClass),
|
||||||
.class_init = riscv_cpu_class_init,
|
.class_init = riscv_cpu_class_init,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue