提交 7508e16c 编写于 作者: A Alexander Graf 提交者: Avi Kivity

KVM: PPC: Add feature bitmap for magic page

We will soon add SR PV support to the shared page, so we need some
infrastructure that allows the guest to query for features KVM exports.

This patch adds a second return value to the magic mapping that
indicated to the guest which features are available.
Signed-off-by: NAlexander Graf <agraf@suse.de>
上级 cb24c508
...@@ -47,6 +47,8 @@ struct kvm_vcpu_arch_shared { ...@@ -47,6 +47,8 @@ struct kvm_vcpu_arch_shared {
#define KVM_FEATURE_MAGIC_PAGE 1 #define KVM_FEATURE_MAGIC_PAGE 1
#define KVM_MAGIC_FEAT_SR (1 << 0)
#ifdef __KERNEL__ #ifdef __KERNEL__
#ifdef CONFIG_KVM_GUEST #ifdef CONFIG_KVM_GUEST
......
...@@ -266,12 +266,20 @@ static void kvm_patch_ins_wrteei(u32 *inst) ...@@ -266,12 +266,20 @@ static void kvm_patch_ins_wrteei(u32 *inst)
static void kvm_map_magic_page(void *data) static void kvm_map_magic_page(void *data)
{ {
kvm_hypercall2(KVM_HC_PPC_MAP_MAGIC_PAGE, u32 *features = data;
KVM_MAGIC_PAGE, /* Physical Address */
KVM_MAGIC_PAGE); /* Effective Address */ ulong in[8];
ulong out[8];
in[0] = KVM_MAGIC_PAGE;
in[1] = KVM_MAGIC_PAGE;
kvm_hypercall(in, out, HC_VENDOR_KVM | KVM_HC_PPC_MAP_MAGIC_PAGE);
*features = out[0];
} }
static void kvm_check_ins(u32 *inst) static void kvm_check_ins(u32 *inst, u32 features)
{ {
u32 _inst = *inst; u32 _inst = *inst;
u32 inst_no_rt = _inst & ~KVM_MASK_RT; u32 inst_no_rt = _inst & ~KVM_MASK_RT;
...@@ -367,9 +375,10 @@ static void kvm_use_magic_page(void) ...@@ -367,9 +375,10 @@ static void kvm_use_magic_page(void)
u32 *p; u32 *p;
u32 *start, *end; u32 *start, *end;
u32 tmp; u32 tmp;
u32 features;
/* Tell the host to map the magic page to -4096 on all CPUs */ /* Tell the host to map the magic page to -4096 on all CPUs */
on_each_cpu(kvm_map_magic_page, NULL, 1); on_each_cpu(kvm_map_magic_page, &features, 1);
/* Quick self-test to see if the mapping works */ /* Quick self-test to see if the mapping works */
if (__get_user(tmp, (u32*)KVM_MAGIC_PAGE)) { if (__get_user(tmp, (u32*)KVM_MAGIC_PAGE)) {
...@@ -382,7 +391,7 @@ static void kvm_use_magic_page(void) ...@@ -382,7 +391,7 @@ static void kvm_use_magic_page(void)
end = (void*)_etext; end = (void*)_etext;
for (p = start; p < end; p++) for (p = start; p < end; p++)
kvm_check_ins(p); kvm_check_ins(p, features);
printk(KERN_INFO "KVM: Live patching for a fast VM %s\n", printk(KERN_INFO "KVM: Live patching for a fast VM %s\n",
kvm_patching_worked ? "worked" : "failed"); kvm_patching_worked ? "worked" : "failed");
......
...@@ -66,6 +66,8 @@ int kvmppc_kvm_pv(struct kvm_vcpu *vcpu) ...@@ -66,6 +66,8 @@ int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
vcpu->arch.magic_page_pa = param1; vcpu->arch.magic_page_pa = param1;
vcpu->arch.magic_page_ea = param2; vcpu->arch.magic_page_ea = param2;
r2 = 0;
r = HC_EV_SUCCESS; r = HC_EV_SUCCESS;
break; break;
} }
...@@ -76,13 +78,14 @@ int kvmppc_kvm_pv(struct kvm_vcpu *vcpu) ...@@ -76,13 +78,14 @@ int kvmppc_kvm_pv(struct kvm_vcpu *vcpu)
#endif #endif
/* Second return value is in r4 */ /* Second return value is in r4 */
kvmppc_set_gpr(vcpu, 4, r2);
break; break;
default: default:
r = HC_EV_UNIMPLEMENTED; r = HC_EV_UNIMPLEMENTED;
break; break;
} }
kvmppc_set_gpr(vcpu, 4, r2);
return r; return r;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册