blob: e4db25ffdb52784d4c23ed62a0cc694061d1fa05 [file] [log] [blame]
Ingo Molnar102d8322007-02-19 14:37:47 +02001#ifndef __LINUX_KVM_PARA_H
2#define __LINUX_KVM_PARA_H
3
Christian Borntraeger5f432382007-10-11 15:34:17 +02004/*
5 * This header file provides a method for making a hypercall to the host
6 * Architectures should define:
7 * - kvm_hypercall0, kvm_hypercall1...
8 * - kvm_arch_para_features
9 * - kvm_para_available
Anthony Liguori7aa81cc2007-09-17 14:57:50 -050010 */
Anthony Liguori7aa81cc2007-09-17 14:57:50 -050011
12/* Return values for hypercalls */
13#define KVM_ENOSYS 1000
14
15#ifdef __KERNEL__
Christian Borntraeger5f432382007-10-11 15:34:17 +020016/*
17 * hypercalls use architecture specific
Anthony Liguori7aa81cc2007-09-17 14:57:50 -050018 */
Christian Borntraeger5f432382007-10-11 15:34:17 +020019#include <asm/kvm_para.h>
Anthony Liguori7aa81cc2007-09-17 14:57:50 -050020
21static inline int kvm_para_has_feature(unsigned int feature)
22{
Christian Borntraeger5f432382007-10-11 15:34:17 +020023 if (kvm_arch_para_features() & (1UL << feature))
Anthony Liguori7aa81cc2007-09-17 14:57:50 -050024 return 1;
25 return 0;
26}
Christian Borntraeger5f432382007-10-11 15:34:17 +020027#endif /* __KERNEL__ */
28#endif /* __LINUX_KVM_PARA_H */
Anthony Liguori7aa81cc2007-09-17 14:57:50 -050029