@@ -26,7 +26,9 @@ struct isa_ext_info isa_info_arr[] = {
{"zbs", KVM_RISCV_ISA_EXT_ZBS},
{"zicbom", KVM_RISCV_ISA_EXT_ZICBOM},
{"zicboz", KVM_RISCV_ISA_EXT_ZICBOZ},
+ {"zicntr", KVM_RISCV_ISA_EXT_ZICNTR},
{"zihintpause", KVM_RISCV_ISA_EXT_ZIHINTPAUSE},
+ {"zihpm", KVM_RISCV_ISA_EXT_ZIHPM},
};
static void dump_fdt(const char *dtb_file, void *fdt)
@@ -55,9 +55,15 @@ struct kvm_config_arch {
OPT_BOOLEAN('\0', "disable-zicboz", \
&(cfg)->ext_disabled[KVM_RISCV_ISA_EXT_ZICBOZ], \
"Disable Zicboz Extension"), \
+ OPT_BOOLEAN('\0', "disable-zicntr", \
+ &(cfg)->ext_disabled[KVM_RISCV_ISA_EXT_ZICNTR], \
+ "Disable Zicntr Extension"), \
OPT_BOOLEAN('\0', "disable-zihintpause", \
&(cfg)->ext_disabled[KVM_RISCV_ISA_EXT_ZIHINTPAUSE],\
"Disable Zihintpause Extension"), \
+ OPT_BOOLEAN('\0', "disable-zihpm", \
+ &(cfg)->ext_disabled[KVM_RISCV_ISA_EXT_ZIHPM], \
+ "Disable Zihpm Extension"), \
OPT_BOOLEAN('\0', "disable-sbi-legacy", \
&(cfg)->sbi_ext_disabled[KVM_RISCV_SBI_EXT_V01], \
"Disable SBI Legacy Extensions"), \
When the Zicntr and Zihpm extension is available expose it to the guest via device tree so that guest can use it. Signed-off-by: Anup Patel <apatel@ventanamicro.com> --- riscv/fdt.c | 2 ++ riscv/include/kvm/kvm-config-arch.h | 6 ++++++ 2 files changed, 8 insertions(+)