1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (C) 2019 Arm Ltd. */
4 #ifndef __KVM_ARM_HYPERCALLS_H
5 #define __KVM_ARM_HYPERCALLS_H
7 #include <asm/kvm_emulate.h>
9 int kvm_hvc_call_handler(struct kvm_vcpu *vcpu);
11 static inline u32 smccc_get_function(struct kvm_vcpu *vcpu)
13 return vcpu_get_reg(vcpu, 0);
16 static inline unsigned long smccc_get_arg1(struct kvm_vcpu *vcpu)
18 return vcpu_get_reg(vcpu, 1);
21 static inline unsigned long smccc_get_arg2(struct kvm_vcpu *vcpu)
23 return vcpu_get_reg(vcpu, 2);
26 static inline unsigned long smccc_get_arg3(struct kvm_vcpu *vcpu)
28 return vcpu_get_reg(vcpu, 3);
31 static inline void smccc_set_retval(struct kvm_vcpu *vcpu,
37 vcpu_set_reg(vcpu, 0, a0);
38 vcpu_set_reg(vcpu, 1, a1);
39 vcpu_set_reg(vcpu, 2, a2);
40 vcpu_set_reg(vcpu, 3, a3);