6c1725e93b0b4d530ca74ef7775d186515072c47
[firefly-linux-kernel-4.4.55.git] / arch / arm64 / include / asm / kvm_emulate.h
1 /*
2  * Copyright (C) 2012,2013 - ARM Ltd
3  * Author: Marc Zyngier <marc.zyngier@arm.com>
4  *
5  * Derived from arch/arm/include/kvm_emulate.h
6  * Copyright (C) 2012 - Virtual Open Systems and Columbia University
7  * Author: Christoffer Dall <c.dall@virtualopensystems.com>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22 #ifndef __ARM64_KVM_EMULATE_H__
23 #define __ARM64_KVM_EMULATE_H__
24
25 #include <linux/kvm_host.h>
26 #include <asm/kvm_asm.h>
27 #include <asm/kvm_arm.h>
28 #include <asm/kvm_mmio.h>
29 #include <asm/ptrace.h>
30
31 void kvm_inject_undefined(struct kvm_vcpu *vcpu);
32 void kvm_inject_dabt(struct kvm_vcpu *vcpu, unsigned long addr);
33 void kvm_inject_pabt(struct kvm_vcpu *vcpu, unsigned long addr);
34
35 static inline unsigned long *vcpu_pc(const struct kvm_vcpu *vcpu)
36 {
37         return (unsigned long *)&vcpu_gp_regs(vcpu)->regs.pc;
38 }
39
40 static inline unsigned long *vcpu_elr_el1(const struct kvm_vcpu *vcpu)
41 {
42         return (unsigned long *)&vcpu_gp_regs(vcpu)->elr_el1;
43 }
44
45 static inline unsigned long *vcpu_cpsr(const struct kvm_vcpu *vcpu)
46 {
47         return (unsigned long *)&vcpu_gp_regs(vcpu)->regs.pstate;
48 }
49
50 static inline bool vcpu_mode_is_32bit(const struct kvm_vcpu *vcpu)
51 {
52         return false;   /* 32bit? Bahhh... */
53 }
54
55 static inline bool kvm_condition_valid(const struct kvm_vcpu *vcpu)
56 {
57         return true;    /* No conditionals on arm64 */
58 }
59
60 static inline void kvm_skip_instr(struct kvm_vcpu *vcpu, bool is_wide_instr)
61 {
62         *vcpu_pc(vcpu) += 4;
63 }
64
65 static inline void vcpu_set_thumb(struct kvm_vcpu *vcpu)
66 {
67 }
68
69 static inline unsigned long *vcpu_reg(const struct kvm_vcpu *vcpu, u8 reg_num)
70 {
71         return (unsigned long *)&vcpu_gp_regs(vcpu)->regs.regs[reg_num];
72 }
73
74 /* Get vcpu SPSR for current mode */
75 static inline unsigned long *vcpu_spsr(const struct kvm_vcpu *vcpu)
76 {
77         return (unsigned long *)&vcpu_gp_regs(vcpu)->spsr[KVM_SPSR_EL1];
78 }
79
80 static inline bool vcpu_mode_priv(const struct kvm_vcpu *vcpu)
81 {
82         u32 mode = *vcpu_cpsr(vcpu) & PSR_MODE_MASK;
83
84         return mode != PSR_MODE_EL0t;
85 }
86
87 static inline u32 kvm_vcpu_get_hsr(const struct kvm_vcpu *vcpu)
88 {
89         return vcpu->arch.fault.esr_el2;
90 }
91
92 static inline unsigned long kvm_vcpu_get_hfar(const struct kvm_vcpu *vcpu)
93 {
94         return vcpu->arch.fault.far_el2;
95 }
96
97 static inline phys_addr_t kvm_vcpu_get_fault_ipa(const struct kvm_vcpu *vcpu)
98 {
99         return ((phys_addr_t)vcpu->arch.fault.hpfar_el2 & HPFAR_MASK) << 8;
100 }
101
102 static inline bool kvm_vcpu_dabt_isvalid(const struct kvm_vcpu *vcpu)
103 {
104         return !!(kvm_vcpu_get_hsr(vcpu) & ESR_EL2_ISV);
105 }
106
107 static inline bool kvm_vcpu_dabt_iswrite(const struct kvm_vcpu *vcpu)
108 {
109         return !!(kvm_vcpu_get_hsr(vcpu) & ESR_EL2_WNR);
110 }
111
112 static inline bool kvm_vcpu_dabt_issext(const struct kvm_vcpu *vcpu)
113 {
114         return !!(kvm_vcpu_get_hsr(vcpu) & ESR_EL2_SSE);
115 }
116
117 static inline int kvm_vcpu_dabt_get_rd(const struct kvm_vcpu *vcpu)
118 {
119         return (kvm_vcpu_get_hsr(vcpu) & ESR_EL2_SRT_MASK) >> ESR_EL2_SRT_SHIFT;
120 }
121
122 static inline bool kvm_vcpu_dabt_isextabt(const struct kvm_vcpu *vcpu)
123 {
124         return !!(kvm_vcpu_get_hsr(vcpu) & ESR_EL2_EA);
125 }
126
127 static inline bool kvm_vcpu_dabt_iss1tw(const struct kvm_vcpu *vcpu)
128 {
129         return !!(kvm_vcpu_get_hsr(vcpu) & ESR_EL2_S1PTW);
130 }
131
132 static inline int kvm_vcpu_dabt_get_as(const struct kvm_vcpu *vcpu)
133 {
134         return 1 << ((kvm_vcpu_get_hsr(vcpu) & ESR_EL2_SAS) >> ESR_EL2_SAS_SHIFT);
135 }
136
137 /* This one is not specific to Data Abort */
138 static inline bool kvm_vcpu_trap_il_is32bit(const struct kvm_vcpu *vcpu)
139 {
140         return !!(kvm_vcpu_get_hsr(vcpu) & ESR_EL2_IL);
141 }
142
143 static inline u8 kvm_vcpu_trap_get_class(const struct kvm_vcpu *vcpu)
144 {
145         return kvm_vcpu_get_hsr(vcpu) >> ESR_EL2_EC_SHIFT;
146 }
147
148 static inline bool kvm_vcpu_trap_is_iabt(const struct kvm_vcpu *vcpu)
149 {
150         return kvm_vcpu_trap_get_class(vcpu) == ESR_EL2_EC_IABT;
151 }
152
153 static inline u8 kvm_vcpu_trap_get_fault(const struct kvm_vcpu *vcpu)
154 {
155         return kvm_vcpu_get_hsr(vcpu) & ESR_EL2_FSC_TYPE;
156 }
157
158 #endif /* __ARM64_KVM_EMULATE_H__ */