Merge branch 'linux-linaro-lsk-v4.4' into linux-linaro-lsk-v4.4-android
[firefly-linux-kernel-4.4.55.git] / arch / arm64 / include / asm / kvm_asm.h
1 /*
2  * Copyright (C) 2012,2013 - ARM Ltd
3  * Author: Marc Zyngier <marc.zyngier@arm.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #ifndef __ARM_KVM_ASM_H__
19 #define __ARM_KVM_ASM_H__
20
21 #include <asm/virt.h>
22
23 #define ARM_EXCEPTION_IRQ         0
24 #define ARM_EXCEPTION_TRAP        1
25 /* The hyp-stub will return this for any kvm_call_hyp() call */
26 #define ARM_EXCEPTION_HYP_GONE    2
27
28 #define KVM_ARM64_DEBUG_DIRTY_SHIFT     0
29 #define KVM_ARM64_DEBUG_DIRTY           (1 << KVM_ARM64_DEBUG_DIRTY_SHIFT)
30
31 #define kvm_ksym_ref(sym)               phys_to_virt((u64)&sym - kimage_voffset)
32
33 #ifndef __ASSEMBLY__
34 #if __GNUC__ > 4
35 #define kvm_ksym_shift                  (PAGE_OFFSET - KIMAGE_VADDR)
36 #else
37 /*
38  * GCC versions 4.9 and older will fold the constant below into the addend of
39  * the reference to 'sym' above if kvm_ksym_shift is declared static or if the
40  * constant is used directly. However, since we use the small code model for
41  * the core kernel, the reference to 'sym' will be emitted as a adrp/add pair,
42  * with a +/- 4 GB range, resulting in linker relocation errors if the shift
43  * is sufficiently large. So prevent the compiler from folding the shift into
44  * the addend, by making the shift a variable with external linkage.
45  */
46 __weak u64 kvm_ksym_shift = PAGE_OFFSET - KIMAGE_VADDR;
47 #endif
48
49 struct kvm;
50 struct kvm_vcpu;
51
52 extern char __kvm_hyp_init[];
53 extern char __kvm_hyp_init_end[];
54 extern char __kvm_hyp_reset[];
55
56 extern char __kvm_hyp_vector[];
57
58 #define __kvm_hyp_code_start    __hyp_text_start
59 #define __kvm_hyp_code_end      __hyp_text_end
60
61 extern void __kvm_flush_vm_context(void);
62 extern void __kvm_tlb_flush_vmid_ipa(struct kvm *kvm, phys_addr_t ipa);
63 extern void __kvm_tlb_flush_vmid(struct kvm *kvm);
64
65 extern int __kvm_vcpu_run(struct kvm_vcpu *vcpu);
66
67 extern u64 __vgic_v3_get_ich_vtr_el2(void);
68
69 extern u32 __kvm_get_mdcr_el2(void);
70
71 #endif
72
73 #endif /* __ARM_KVM_ASM_H__ */