@@ -155,10 +155,20 @@ static __always_inline long kvm_hypercall5(u64 fid,
return ret;
}
+#ifdef CONFIG_PARAVIRT
+bool kvm_para_available(void);
+unsigned int kvm_arch_para_features(void);
+#else
+static inline bool kvm_para_available(void)
+{
+ return false;
+}
+
static inline unsigned int kvm_arch_para_features(void)
{
return 0;
}
+#endif
static inline unsigned int kvm_arch_para_hints(void)
{
@@ -151,11 +151,14 @@ static void pv_init_ipi(void)
}
#endif
-static bool kvm_para_available(void)
+bool kvm_para_available(void)
{
int config;
static int hypervisor_type;
+ if (!cpu_has_hypervisor)
+ return false;
+
if (!hypervisor_type) {
config = read_cpucfg(CPUCFG_KVM_SIG);
if (!memcmp(&config, KVM_SIGNATURE, 4))
@@ -165,16 +168,23 @@ static bool kvm_para_available(void)
return hypervisor_type == HYPERVISOR_KVM;
}
+unsigned int kvm_arch_para_features(void)
+{
+ static int feature;
+
+ if (!feature)
+ feature = read_cpucfg(CPUCFG_KVM_FEATURE);
+ return feature;
+}
+
int __init pv_ipi_init(void)
{
int feature;
- if (!cpu_has_hypervisor)
- return 0;
if (!kvm_para_available())
return 0;
- feature = read_cpucfg(CPUCFG_KVM_FEATURE);
+ feature = kvm_arch_para_features();
if (!(feature & KVM_FEATURE_IPI))
return 0;
@@ -260,12 +270,10 @@ int __init pv_time_init(void)
{
int r, feature;
- if (!cpu_has_hypervisor)
- return 0;
if (!kvm_para_available())
return 0;
- feature = read_cpucfg(CPUCFG_KVM_FEATURE);
+ feature = kvm_arch_para_features();
if (!(feature & KVM_FEATURE_STEAL_TIME))
return 0;
Function kvm_arch_para_features() is to detect supported paravirt features, it can be used by device driver to detect and enable paravirt features, such as extioi irqchip driver can detect KVM_FEATURE_VIRT_EXTIOI and do some optimization. Signed-off-by: Bibo Mao <maobibo@loongson.cn> --- arch/loongarch/include/asm/kvm_para.h | 10 ++++++++++ arch/loongarch/kernel/paravirt.c | 22 +++++++++++++++------- 2 files changed, 25 insertions(+), 7 deletions(-)