target/riscv: Add property check for Zvfh{min} extensions
Add check for Zvfh and Zvfhmin. Signed-off-by: Weiwei Li <liweiwei@iscas.ac.cn> Signed-off-by: Junqiang Wang <wangjunqiang@iscas.ac.cn> Reviewed-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> Message-ID: <20230215020539.4788-7-liweiwei@iscas.ac.cn> [Palmer: commit text] Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
This commit is contained in:
parent
e7f0a803a7
commit
2e60f9ec2c
@ -768,6 +768,20 @@ static void riscv_cpu_validate_set_extensions(RISCVCPU *cpu, Error **errp)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (cpu->cfg.ext_zvfh) {
|
||||||
|
cpu->cfg.ext_zvfhmin = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cpu->cfg.ext_zvfhmin && !cpu->cfg.ext_zve32f) {
|
||||||
|
error_setg(errp, "Zvfh/Zvfhmin extensions require Zve32f extension");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cpu->cfg.ext_zvfh && !cpu->cfg.ext_zfhmin) {
|
||||||
|
error_setg(errp, "Zvfh extensions requires Zfhmin extension");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/* Set the ISA extensions, checks should have happened above */
|
/* Set the ISA extensions, checks should have happened above */
|
||||||
if (cpu->cfg.ext_zhinx) {
|
if (cpu->cfg.ext_zhinx) {
|
||||||
cpu->cfg.ext_zhinxmin = true;
|
cpu->cfg.ext_zhinxmin = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user