mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-01 22:42:13 -06:00
target/riscv: Add V extension state description
In the case of supporting V extension, add V extension description to vmstate_riscv_cpu. Signed-off-by: Yifei Jiang <jiangyifei@huawei.com> Signed-off-by: Yipeng Yin <yinyipeng1@huawei.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-id: 20201026115530.304-6-jiangyifei@huawei.com Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
35e07821ff
commit
bb02edcd86
1 changed files with 25 additions and 0 deletions
|
@ -76,6 +76,30 @@ static bool hyper_needed(void *opaque)
|
||||||
return riscv_has_ext(env, RVH);
|
return riscv_has_ext(env, RVH);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool vector_needed(void *opaque)
|
||||||
|
{
|
||||||
|
RISCVCPU *cpu = opaque;
|
||||||
|
CPURISCVState *env = &cpu->env;
|
||||||
|
|
||||||
|
return riscv_has_ext(env, RVV);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const VMStateDescription vmstate_vector = {
|
||||||
|
.name = "cpu/vector",
|
||||||
|
.version_id = 1,
|
||||||
|
.minimum_version_id = 1,
|
||||||
|
.needed = vector_needed,
|
||||||
|
.fields = (VMStateField[]) {
|
||||||
|
VMSTATE_UINT64_ARRAY(env.vreg, RISCVCPU, 32 * RV_VLEN_MAX / 64),
|
||||||
|
VMSTATE_UINTTL(env.vxrm, RISCVCPU),
|
||||||
|
VMSTATE_UINTTL(env.vxsat, RISCVCPU),
|
||||||
|
VMSTATE_UINTTL(env.vl, RISCVCPU),
|
||||||
|
VMSTATE_UINTTL(env.vstart, RISCVCPU),
|
||||||
|
VMSTATE_UINTTL(env.vtype, RISCVCPU),
|
||||||
|
VMSTATE_END_OF_LIST()
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
static const VMStateDescription vmstate_hyper = {
|
static const VMStateDescription vmstate_hyper = {
|
||||||
.name = "cpu/hyper",
|
.name = "cpu/hyper",
|
||||||
.version_id = 1,
|
.version_id = 1,
|
||||||
|
@ -166,6 +190,7 @@ const VMStateDescription vmstate_riscv_cpu = {
|
||||||
.subsections = (const VMStateDescription * []) {
|
.subsections = (const VMStateDescription * []) {
|
||||||
&vmstate_pmp,
|
&vmstate_pmp,
|
||||||
&vmstate_hyper,
|
&vmstate_hyper,
|
||||||
|
&vmstate_vector,
|
||||||
NULL
|
NULL
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue