2018-06-13 09:55:44 -04:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/*
|
|
|
|
* Copyright © 2019 Oracle and/or its affiliates. All rights reserved.
|
|
|
|
* Copyright © 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* KVM Xen emulation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARCH_X86_KVM_XEN_H__
|
|
|
|
#define __ARCH_X86_KVM_XEN_H__
|
|
|
|
|
2021-02-02 15:48:05 +00:00
|
|
|
#include <linux/jump_label_ratelimit.h>
|
|
|
|
|
|
|
|
extern struct static_key_false_deferred kvm_xen_enabled;
|
|
|
|
|
2020-12-03 15:52:25 +00:00
|
|
|
int kvm_xen_hvm_set_attr(struct kvm *kvm, struct kvm_xen_hvm_attr *data);
|
|
|
|
int kvm_xen_hvm_get_attr(struct kvm *kvm, struct kvm_xen_hvm_attr *data);
|
2018-06-13 09:55:44 -04:00
|
|
|
int kvm_xen_hypercall(struct kvm_vcpu *vcpu);
|
|
|
|
int kvm_xen_write_hypercall_page(struct kvm_vcpu *vcpu, u64 data);
|
2021-02-02 13:19:35 +00:00
|
|
|
int kvm_xen_hvm_config(struct kvm *kvm, struct kvm_xen_hvm_config *xhc);
|
2021-02-02 15:48:05 +00:00
|
|
|
void kvm_xen_destroy_vm(struct kvm *kvm);
|
2018-06-13 09:55:44 -04:00
|
|
|
|
|
|
|
static inline bool kvm_xen_hypercall_enabled(struct kvm *kvm)
|
|
|
|
{
|
2021-02-02 15:48:05 +00:00
|
|
|
return static_branch_unlikely(&kvm_xen_enabled.key) &&
|
|
|
|
(kvm->arch.xen_hvm_config.flags &
|
|
|
|
KVM_XEN_HVM_CONFIG_INTERCEPT_HCALL);
|
2018-06-13 09:55:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __ARCH_X86_KVM_XEN_H__ */
|