2007-02-19 12:37:47 +00:00
|
|
|
#ifndef __LINUX_KVM_PARA_H
|
|
|
|
#define __LINUX_KVM_PARA_H
|
|
|
|
|
2007-10-11 13:34:17 +00:00
|
|
|
/*
|
|
|
|
* This header file provides a method for making a hypercall to the host
|
|
|
|
* Architectures should define:
|
|
|
|
* - kvm_hypercall0, kvm_hypercall1...
|
|
|
|
* - kvm_arch_para_features
|
|
|
|
* - kvm_para_available
|
2007-02-19 12:37:47 +00:00
|
|
|
*/
|
|
|
|
|
2007-09-17 19:57:50 +00:00
|
|
|
/* Return values for hypercalls */
|
|
|
|
#define KVM_ENOSYS 1000
|
2008-02-22 17:21:37 +00:00
|
|
|
#define KVM_EFAULT EFAULT
|
|
|
|
#define KVM_E2BIG E2BIG
|
2009-08-03 16:43:28 +00:00
|
|
|
#define KVM_EPERM EPERM
|
2007-02-19 12:37:47 +00:00
|
|
|
|
2008-02-22 17:21:37 +00:00
|
|
|
#define KVM_HC_VAPIC_POLL_IRQ 1
|
|
|
|
#define KVM_HC_MMU_OP 2
|
2010-07-29 12:47:48 +00:00
|
|
|
#define KVM_HC_FEATURES 3
|
2010-07-29 12:47:53 +00:00
|
|
|
#define KVM_HC_PPC_MAP_MAGIC_PAGE 4
|
2007-10-25 14:52:32 +00:00
|
|
|
|
2007-10-11 13:34:17 +00:00
|
|
|
/*
|
|
|
|
* hypercalls use architecture specific
|
2007-02-19 12:37:47 +00:00
|
|
|
*/
|
2007-10-11 13:34:17 +00:00
|
|
|
#include <asm/kvm_para.h>
|
2007-09-17 19:57:50 +00:00
|
|
|
|
2008-01-15 15:10:15 +00:00
|
|
|
#ifdef __KERNEL__
|
2008-02-22 17:21:36 +00:00
|
|
|
|
2007-09-17 19:57:50 +00:00
|
|
|
static inline int kvm_para_has_feature(unsigned int feature)
|
|
|
|
{
|
2007-10-11 13:34:17 +00:00
|
|
|
if (kvm_arch_para_features() & (1UL << feature))
|
2007-09-17 19:57:50 +00:00
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
2007-10-11 13:34:17 +00:00
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
#endif /* __LINUX_KVM_PARA_H */
|