2020-03-13 03:15:55

by Xing Li

[permalink] [raw]
Subject: [PATCH v2 Resend 1/3] KVM: MIPS: Change KVM_ENTRYHI_ASID to cpu_asid_mask(&current_cpu_data)

The code in decode_config4 of arch/mips/kernel/cpu-probe.c

asid_mask = MIPS_ENTRYHI_ASID;
if (config4 & MIPS_CONF4_AE)
asid_mask |= MIPS_ENTRYHI_ASIDX;
set_cpu_asid_mask(c, asid_mask);

set asid_mask to cpuinfo->asid_mask

So KVM_ENTRYHI_ASID should change to cpu_asid_mask(&current_cpu_data)
for support 10bits ASID_MASK

Signed-off-by: Xing Li <[email protected]>
---
arch/mips/include/asm/kvm_host.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/mips/include/asm/kvm_host.h b/arch/mips/include/asm/kvm_host.h
index 41204a4..6be70d5 100644
--- a/arch/mips/include/asm/kvm_host.h
+++ b/arch/mips/include/asm/kvm_host.h
@@ -275,7 +275,7 @@ enum emulation_result {
#define MIPS3_PG_FRAME 0x3fffffc0

#define VPN2_MASK 0xffffe000
-#define KVM_ENTRYHI_ASID MIPS_ENTRYHI_ASID
+#define KVM_ENTRYHI_ASID cpu_asid_mask(&current_cpu_data)
#define TLB_IS_GLOBAL(x) ((x).tlb_lo[0] & (x).tlb_lo[1] & ENTRYLO_G)
#define TLB_VPN2(x) ((x).tlb_hi & VPN2_MASK)
#define TLB_ASID(x) ((x).tlb_hi & KVM_ENTRYHI_ASID)
--
2.1.0


2020-03-13 03:15:56

by Xing Li

[permalink] [raw]
Subject: [PATCH v2 Resend 3/3] KVM: MIPS: Support kvm modules autoprobed when startup system

Currently, the module_init of kvm_mips_init cannot force the kvm
modules insmod when startup system.

Add new feature CPU_MIPS_VZ in elf_hwcap to support KVM auto probe
when hardware virtualization supported.

Signed-off-by: Xing Li <[email protected]>
---
arch/mips/include/uapi/asm/hwcap.h | 1 +
arch/mips/kernel/cpu-probe.c | 4 +++-
arch/mips/kvm/mips.c | 3 ++-
3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/arch/mips/include/uapi/asm/hwcap.h b/arch/mips/include/uapi/asm/hwcap.h
index 1ade1da..9e66509 100644
--- a/arch/mips/include/uapi/asm/hwcap.h
+++ b/arch/mips/include/uapi/asm/hwcap.h
@@ -17,5 +17,6 @@
#define HWCAP_LOONGSON_MMI (1 << 11)
#define HWCAP_LOONGSON_EXT (1 << 12)
#define HWCAP_LOONGSON_EXT2 (1 << 13)
+#define HWCAP_MIPS_VZ (1 << 14)

#endif /* _UAPI_ASM_HWCAP_H */
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c
index c543326..b305269 100644
--- a/arch/mips/kernel/cpu-probe.c
+++ b/arch/mips/kernel/cpu-probe.c
@@ -2242,8 +2242,10 @@ void cpu_probe(void)
if (cpu_has_loongson_ext2)
elf_hwcap |= HWCAP_LOONGSON_EXT2;

- if (cpu_has_vz)
+ if (cpu_has_vz) {
cpu_probe_vz(c);
+ elf_hwcap |= HWCAP_MIPS_VZ;
+ }

cpu_probe_vmbits(c);

diff --git a/arch/mips/kvm/mips.c b/arch/mips/kvm/mips.c
index 1109924..1da5df3 100644
--- a/arch/mips/kvm/mips.c
+++ b/arch/mips/kvm/mips.c
@@ -19,6 +19,7 @@
#include <linux/sched/signal.h>
#include <linux/fs.h>
#include <linux/memblock.h>
+#include <linux/cpufeature.h>

#include <asm/fpu.h>
#include <asm/page.h>
@@ -1742,7 +1743,7 @@ static void __exit kvm_mips_exit(void)
unregister_die_notifier(&kvm_mips_csr_die_notifier);
}

-module_init(kvm_mips_init);
+module_cpu_feature_match(MIPS_VZ, kvm_mips_init);
module_exit(kvm_mips_exit);

EXPORT_TRACEPOINT_SYMBOL(kvm_exit);
--
2.1.0

2020-03-13 06:35:08

by Huacai Chen

[permalink] [raw]
Subject: Re: [PATCH v2 Resend 3/3] KVM: MIPS: Support kvm modules autoprobed when startup system

Hi, Lixing,

On Fri, Mar 13, 2020 at 11:14 AM Xing Li <[email protected]> wrote:
>
> Currently, the module_init of kvm_mips_init cannot force the kvm
> modules insmod when startup system.
>
> Add new feature CPU_MIPS_VZ in elf_hwcap to support KVM auto probe
> when hardware virtualization supported.
I think this patch is not suitable, because:
1, KVM has VZ mode and TE mode, you only consider VZ mode?
2, As X86 does, you can use udev or modprobe.conf to autoprobe kvm module.

Regards,
Huacai
>
> Signed-off-by: Xing Li <[email protected]>
> ---
> arch/mips/include/uapi/asm/hwcap.h | 1 +
> arch/mips/kernel/cpu-probe.c | 4 +++-
> arch/mips/kvm/mips.c | 3 ++-
> 3 files changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/arch/mips/include/uapi/asm/hwcap.h b/arch/mips/include/uapi/asm/hwcap.h
> index 1ade1da..9e66509 100644
> --- a/arch/mips/include/uapi/asm/hwcap.h
> +++ b/arch/mips/include/uapi/asm/hwcap.h
> @@ -17,5 +17,6 @@
> #define HWCAP_LOONGSON_MMI (1 << 11)
> #define HWCAP_LOONGSON_EXT (1 << 12)
> #define HWCAP_LOONGSON_EXT2 (1 << 13)
> +#define HWCAP_MIPS_VZ (1 << 14)
>
> #endif /* _UAPI_ASM_HWCAP_H */
> diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c
> index c543326..b305269 100644
> --- a/arch/mips/kernel/cpu-probe.c
> +++ b/arch/mips/kernel/cpu-probe.c
> @@ -2242,8 +2242,10 @@ void cpu_probe(void)
> if (cpu_has_loongson_ext2)
> elf_hwcap |= HWCAP_LOONGSON_EXT2;
>
> - if (cpu_has_vz)
> + if (cpu_has_vz) {
> cpu_probe_vz(c);
> + elf_hwcap |= HWCAP_MIPS_VZ;
> + }
>
> cpu_probe_vmbits(c);
>
> diff --git a/arch/mips/kvm/mips.c b/arch/mips/kvm/mips.c
> index 1109924..1da5df3 100644
> --- a/arch/mips/kvm/mips.c
> +++ b/arch/mips/kvm/mips.c
> @@ -19,6 +19,7 @@
> #include <linux/sched/signal.h>
> #include <linux/fs.h>
> #include <linux/memblock.h>
> +#include <linux/cpufeature.h>
>
> #include <asm/fpu.h>
> #include <asm/page.h>
> @@ -1742,7 +1743,7 @@ static void __exit kvm_mips_exit(void)
> unregister_die_notifier(&kvm_mips_csr_die_notifier);
> }
>
> -module_init(kvm_mips_init);
> +module_cpu_feature_match(MIPS_VZ, kvm_mips_init);
> module_exit(kvm_mips_exit);
>
> EXPORT_TRACEPOINT_SYMBOL(kvm_exit);
> --
> 2.1.0
>