Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 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> |
Mark Rutland | c6d01a9 | 2014-11-24 13:59:30 +0000 | [diff] [blame] | 26 | |
| 27 | #include <asm/esr.h> |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 28 | #include <asm/kvm_arm.h> |
Christoffer Dall | 00536ec | 2017-12-27 20:01:52 +0100 | [diff] [blame] | 29 | #include <asm/kvm_hyp.h> |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 30 | #include <asm/kvm_mmio.h> |
| 31 | #include <asm/ptrace.h> |
Andre Przywara | 4429fc6 | 2014-06-02 15:37:13 +0200 | [diff] [blame] | 32 | #include <asm/cputype.h> |
Marc Zyngier | 68908bf | 2015-01-29 15:47:55 +0000 | [diff] [blame] | 33 | #include <asm/virt.h> |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 34 | |
Marc Zyngier | b547631 | 2013-02-06 19:40:29 +0000 | [diff] [blame] | 35 | unsigned long *vcpu_reg32(const struct kvm_vcpu *vcpu, u8 reg_num); |
Christoffer Dall | a892819 | 2017-12-27 21:59:09 +0100 | [diff] [blame] | 36 | unsigned long vcpu_read_spsr32(const struct kvm_vcpu *vcpu); |
| 37 | void vcpu_write_spsr32(struct kvm_vcpu *vcpu, unsigned long v); |
Marc Zyngier | b547631 | 2013-02-06 19:40:29 +0000 | [diff] [blame] | 38 | |
Marc Zyngier | 27b190b | 2013-02-06 19:54:04 +0000 | [diff] [blame] | 39 | bool kvm_condition_valid32(const struct kvm_vcpu *vcpu); |
| 40 | void kvm_skip_instr32(struct kvm_vcpu *vcpu, bool is_wide_instr); |
| 41 | |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 42 | void kvm_inject_undefined(struct kvm_vcpu *vcpu); |
Marc Zyngier | 10cf339 | 2016-09-06 14:02:01 +0100 | [diff] [blame] | 43 | void kvm_inject_vabt(struct kvm_vcpu *vcpu); |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 44 | void kvm_inject_dabt(struct kvm_vcpu *vcpu, unsigned long addr); |
| 45 | void kvm_inject_pabt(struct kvm_vcpu *vcpu, unsigned long addr); |
Marc Zyngier | 74a64a9 | 2017-10-29 02:18:09 +0000 | [diff] [blame] | 46 | void kvm_inject_undef32(struct kvm_vcpu *vcpu); |
| 47 | void kvm_inject_dabt32(struct kvm_vcpu *vcpu, unsigned long addr); |
| 48 | void kvm_inject_pabt32(struct kvm_vcpu *vcpu, unsigned long addr); |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 49 | |
Christoffer Dall | e72341c | 2017-12-13 22:56:48 +0100 | [diff] [blame] | 50 | static inline bool vcpu_el1_is_32bit(struct kvm_vcpu *vcpu) |
| 51 | { |
| 52 | return !(vcpu->arch.hcr_el2 & HCR_RW); |
| 53 | } |
| 54 | |
Christoffer Dall | b856a59 | 2014-10-16 17:21:16 +0200 | [diff] [blame] | 55 | static inline void vcpu_reset_hcr(struct kvm_vcpu *vcpu) |
| 56 | { |
| 57 | vcpu->arch.hcr_el2 = HCR_GUEST_FLAGS; |
Marc Zyngier | 68908bf | 2015-01-29 15:47:55 +0000 | [diff] [blame] | 58 | if (is_kernel_in_hyp_mode()) |
| 59 | vcpu->arch.hcr_el2 |= HCR_E2H; |
Dongjiu Geng | 558daf6 | 2018-01-15 19:39:06 +0000 | [diff] [blame] | 60 | if (cpus_have_const_cap(ARM64_HAS_RAS_EXTN)) { |
| 61 | /* route synchronous external abort exceptions to EL2 */ |
| 62 | vcpu->arch.hcr_el2 |= HCR_TEA; |
| 63 | /* trap error record accesses */ |
| 64 | vcpu->arch.hcr_el2 |= HCR_TERR; |
| 65 | } |
| 66 | |
Marc Zyngier | 801f677 | 2015-01-11 14:10:11 +0100 | [diff] [blame] | 67 | if (test_bit(KVM_ARM_VCPU_EL1_32BIT, vcpu->arch.features)) |
| 68 | vcpu->arch.hcr_el2 &= ~HCR_RW; |
Dave Martin | 005781b | 2017-12-01 15:19:40 +0000 | [diff] [blame] | 69 | |
| 70 | /* |
| 71 | * TID3: trap feature register accesses that we virtualise. |
| 72 | * For now this is conditional, since no AArch32 feature regs |
| 73 | * are currently virtualised. |
| 74 | */ |
Christoffer Dall | e72341c | 2017-12-13 22:56:48 +0100 | [diff] [blame] | 75 | if (!vcpu_el1_is_32bit(vcpu)) |
Dave Martin | 005781b | 2017-12-01 15:19:40 +0000 | [diff] [blame] | 76 | vcpu->arch.hcr_el2 |= HCR_TID3; |
Christoffer Dall | b856a59 | 2014-10-16 17:21:16 +0200 | [diff] [blame] | 77 | } |
| 78 | |
Christoffer Dall | 3df59d8 | 2017-08-03 12:09:05 +0200 | [diff] [blame] | 79 | static inline unsigned long *vcpu_hcr(struct kvm_vcpu *vcpu) |
Marc Zyngier | 3c1e716 | 2014-12-19 16:05:31 +0000 | [diff] [blame] | 80 | { |
Christoffer Dall | 3df59d8 | 2017-08-03 12:09:05 +0200 | [diff] [blame] | 81 | return (unsigned long *)&vcpu->arch.hcr_el2; |
Marc Zyngier | 3c1e716 | 2014-12-19 16:05:31 +0000 | [diff] [blame] | 82 | } |
| 83 | |
James Morse | 4715c14 | 2018-01-15 19:39:01 +0000 | [diff] [blame] | 84 | static inline void vcpu_set_vsesr(struct kvm_vcpu *vcpu, u64 vsesr) |
| 85 | { |
| 86 | vcpu->arch.vsesr_el2 = vsesr; |
| 87 | } |
| 88 | |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 89 | static inline unsigned long *vcpu_pc(const struct kvm_vcpu *vcpu) |
| 90 | { |
| 91 | return (unsigned long *)&vcpu_gp_regs(vcpu)->regs.pc; |
| 92 | } |
| 93 | |
Christoffer Dall | 6d4bd90 | 2017-12-27 20:51:04 +0100 | [diff] [blame] | 94 | static inline unsigned long *__vcpu_elr_el1(const struct kvm_vcpu *vcpu) |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 95 | { |
| 96 | return (unsigned long *)&vcpu_gp_regs(vcpu)->elr_el1; |
| 97 | } |
| 98 | |
Christoffer Dall | 6d4bd90 | 2017-12-27 20:51:04 +0100 | [diff] [blame] | 99 | static inline unsigned long vcpu_read_elr_el1(const struct kvm_vcpu *vcpu) |
| 100 | { |
| 101 | if (vcpu->arch.sysregs_loaded_on_cpu) |
| 102 | return read_sysreg_el1(elr); |
| 103 | else |
| 104 | return *__vcpu_elr_el1(vcpu); |
| 105 | } |
| 106 | |
| 107 | static inline void vcpu_write_elr_el1(const struct kvm_vcpu *vcpu, unsigned long v) |
| 108 | { |
| 109 | if (vcpu->arch.sysregs_loaded_on_cpu) |
| 110 | write_sysreg_el1(v, elr); |
| 111 | else |
| 112 | *__vcpu_elr_el1(vcpu) = v; |
| 113 | } |
| 114 | |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 115 | static inline unsigned long *vcpu_cpsr(const struct kvm_vcpu *vcpu) |
| 116 | { |
| 117 | return (unsigned long *)&vcpu_gp_regs(vcpu)->regs.pstate; |
| 118 | } |
| 119 | |
| 120 | static inline bool vcpu_mode_is_32bit(const struct kvm_vcpu *vcpu) |
| 121 | { |
Marc Zyngier | b547631 | 2013-02-06 19:40:29 +0000 | [diff] [blame] | 122 | return !!(*vcpu_cpsr(vcpu) & PSR_MODE32_BIT); |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | static inline bool kvm_condition_valid(const struct kvm_vcpu *vcpu) |
| 126 | { |
Marc Zyngier | 27b190b | 2013-02-06 19:54:04 +0000 | [diff] [blame] | 127 | if (vcpu_mode_is_32bit(vcpu)) |
| 128 | return kvm_condition_valid32(vcpu); |
| 129 | |
| 130 | return true; |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | static inline void kvm_skip_instr(struct kvm_vcpu *vcpu, bool is_wide_instr) |
| 134 | { |
Marc Zyngier | 27b190b | 2013-02-06 19:54:04 +0000 | [diff] [blame] | 135 | if (vcpu_mode_is_32bit(vcpu)) |
| 136 | kvm_skip_instr32(vcpu, is_wide_instr); |
| 137 | else |
| 138 | *vcpu_pc(vcpu) += 4; |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | static inline void vcpu_set_thumb(struct kvm_vcpu *vcpu) |
| 142 | { |
Marc Zyngier | b547631 | 2013-02-06 19:40:29 +0000 | [diff] [blame] | 143 | *vcpu_cpsr(vcpu) |= COMPAT_PSR_T_BIT; |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 144 | } |
| 145 | |
Marc Zyngier | c0f0963 | 2015-11-16 10:28:17 +0000 | [diff] [blame] | 146 | /* |
Pavel Fedin | f6be563 | 2015-12-04 15:03:14 +0300 | [diff] [blame] | 147 | * vcpu_get_reg and vcpu_set_reg should always be passed a register number |
| 148 | * coming from a read of ESR_EL2. Otherwise, it may give the wrong result on |
| 149 | * AArch32 with banked registers. |
Marc Zyngier | c0f0963 | 2015-11-16 10:28:17 +0000 | [diff] [blame] | 150 | */ |
Pavel Fedin | bc45a51 | 2015-12-04 15:03:11 +0300 | [diff] [blame] | 151 | static inline unsigned long vcpu_get_reg(const struct kvm_vcpu *vcpu, |
| 152 | u8 reg_num) |
| 153 | { |
| 154 | return (reg_num == 31) ? 0 : vcpu_gp_regs(vcpu)->regs.regs[reg_num]; |
| 155 | } |
| 156 | |
| 157 | static inline void vcpu_set_reg(struct kvm_vcpu *vcpu, u8 reg_num, |
| 158 | unsigned long val) |
| 159 | { |
| 160 | if (reg_num != 31) |
| 161 | vcpu_gp_regs(vcpu)->regs.regs[reg_num] = val; |
| 162 | } |
| 163 | |
Christoffer Dall | 00536ec | 2017-12-27 20:01:52 +0100 | [diff] [blame] | 164 | static inline unsigned long vcpu_read_spsr(const struct kvm_vcpu *vcpu) |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 165 | { |
Christoffer Dall | a892819 | 2017-12-27 21:59:09 +0100 | [diff] [blame] | 166 | if (vcpu_mode_is_32bit(vcpu)) |
| 167 | return vcpu_read_spsr32(vcpu); |
Christoffer Dall | 00536ec | 2017-12-27 20:01:52 +0100 | [diff] [blame] | 168 | |
| 169 | if (vcpu->arch.sysregs_loaded_on_cpu) |
| 170 | return read_sysreg_el1(spsr); |
| 171 | else |
Christoffer Dall | a892819 | 2017-12-27 21:59:09 +0100 | [diff] [blame] | 172 | return vcpu_gp_regs(vcpu)->spsr[KVM_SPSR_EL1]; |
Christoffer Dall | 00536ec | 2017-12-27 20:01:52 +0100 | [diff] [blame] | 173 | } |
| 174 | |
Christoffer Dall | a892819 | 2017-12-27 21:59:09 +0100 | [diff] [blame] | 175 | static inline void vcpu_write_spsr(struct kvm_vcpu *vcpu, unsigned long v) |
Christoffer Dall | 00536ec | 2017-12-27 20:01:52 +0100 | [diff] [blame] | 176 | { |
Christoffer Dall | 00536ec | 2017-12-27 20:01:52 +0100 | [diff] [blame] | 177 | if (vcpu_mode_is_32bit(vcpu)) { |
Christoffer Dall | a892819 | 2017-12-27 21:59:09 +0100 | [diff] [blame] | 178 | vcpu_write_spsr32(vcpu, v); |
| 179 | return; |
Christoffer Dall | 00536ec | 2017-12-27 20:01:52 +0100 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | if (vcpu->arch.sysregs_loaded_on_cpu) |
| 183 | write_sysreg_el1(v, spsr); |
| 184 | else |
Christoffer Dall | a892819 | 2017-12-27 21:59:09 +0100 | [diff] [blame] | 185 | vcpu_gp_regs(vcpu)->spsr[KVM_SPSR_EL1] = v; |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | static inline bool vcpu_mode_priv(const struct kvm_vcpu *vcpu) |
| 189 | { |
Shannon Zhao | 9586a2e | 2016-01-13 17:16:39 +0800 | [diff] [blame] | 190 | u32 mode; |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 191 | |
Shannon Zhao | 9586a2e | 2016-01-13 17:16:39 +0800 | [diff] [blame] | 192 | if (vcpu_mode_is_32bit(vcpu)) { |
| 193 | mode = *vcpu_cpsr(vcpu) & COMPAT_PSR_MODE_MASK; |
Marc Zyngier | b547631 | 2013-02-06 19:40:29 +0000 | [diff] [blame] | 194 | return mode > COMPAT_PSR_MODE_USR; |
Shannon Zhao | 9586a2e | 2016-01-13 17:16:39 +0800 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | mode = *vcpu_cpsr(vcpu) & PSR_MODE_MASK; |
Marc Zyngier | b547631 | 2013-02-06 19:40:29 +0000 | [diff] [blame] | 198 | |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 199 | return mode != PSR_MODE_EL0t; |
| 200 | } |
| 201 | |
| 202 | static inline u32 kvm_vcpu_get_hsr(const struct kvm_vcpu *vcpu) |
| 203 | { |
| 204 | return vcpu->arch.fault.esr_el2; |
| 205 | } |
| 206 | |
Marc Zyngier | 3e51d43 | 2016-09-06 09:28:41 +0100 | [diff] [blame] | 207 | static inline int kvm_vcpu_get_condition(const struct kvm_vcpu *vcpu) |
| 208 | { |
| 209 | u32 esr = kvm_vcpu_get_hsr(vcpu); |
| 210 | |
| 211 | if (esr & ESR_ELx_CV) |
| 212 | return (esr & ESR_ELx_COND_MASK) >> ESR_ELx_COND_SHIFT; |
| 213 | |
| 214 | return -1; |
| 215 | } |
| 216 | |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 217 | static inline unsigned long kvm_vcpu_get_hfar(const struct kvm_vcpu *vcpu) |
| 218 | { |
| 219 | return vcpu->arch.fault.far_el2; |
| 220 | } |
| 221 | |
| 222 | static inline phys_addr_t kvm_vcpu_get_fault_ipa(const struct kvm_vcpu *vcpu) |
| 223 | { |
| 224 | return ((phys_addr_t)vcpu->arch.fault.hpfar_el2 & HPFAR_MASK) << 8; |
| 225 | } |
| 226 | |
James Morse | 0067df4 | 2018-01-15 19:39:05 +0000 | [diff] [blame] | 227 | static inline u64 kvm_vcpu_get_disr(const struct kvm_vcpu *vcpu) |
| 228 | { |
| 229 | return vcpu->arch.fault.disr_el1; |
| 230 | } |
| 231 | |
Wei Huang | 0d97f884 | 2015-01-12 11:53:36 -0500 | [diff] [blame] | 232 | static inline u32 kvm_vcpu_hvc_get_imm(const struct kvm_vcpu *vcpu) |
| 233 | { |
Paolo Bonzini | 1c6007d | 2015-01-23 13:39:51 +0100 | [diff] [blame] | 234 | return kvm_vcpu_get_hsr(vcpu) & ESR_ELx_xVC_IMM_MASK; |
Wei Huang | 0d97f884 | 2015-01-12 11:53:36 -0500 | [diff] [blame] | 235 | } |
| 236 | |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 237 | static inline bool kvm_vcpu_dabt_isvalid(const struct kvm_vcpu *vcpu) |
| 238 | { |
Mark Rutland | c6d01a9 | 2014-11-24 13:59:30 +0000 | [diff] [blame] | 239 | return !!(kvm_vcpu_get_hsr(vcpu) & ESR_ELx_ISV); |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 240 | } |
| 241 | |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 242 | static inline bool kvm_vcpu_dabt_issext(const struct kvm_vcpu *vcpu) |
| 243 | { |
Mark Rutland | c6d01a9 | 2014-11-24 13:59:30 +0000 | [diff] [blame] | 244 | return !!(kvm_vcpu_get_hsr(vcpu) & ESR_ELx_SSE); |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 245 | } |
| 246 | |
| 247 | static inline int kvm_vcpu_dabt_get_rd(const struct kvm_vcpu *vcpu) |
| 248 | { |
Mark Rutland | c6d01a9 | 2014-11-24 13:59:30 +0000 | [diff] [blame] | 249 | return (kvm_vcpu_get_hsr(vcpu) & ESR_ELx_SRT_MASK) >> ESR_ELx_SRT_SHIFT; |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 250 | } |
| 251 | |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 252 | static inline bool kvm_vcpu_dabt_iss1tw(const struct kvm_vcpu *vcpu) |
| 253 | { |
Mark Rutland | c6d01a9 | 2014-11-24 13:59:30 +0000 | [diff] [blame] | 254 | return !!(kvm_vcpu_get_hsr(vcpu) & ESR_ELx_S1PTW); |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 255 | } |
| 256 | |
Will Deacon | 60e21a0 | 2016-09-29 12:37:01 +0100 | [diff] [blame] | 257 | static inline bool kvm_vcpu_dabt_iswrite(const struct kvm_vcpu *vcpu) |
| 258 | { |
| 259 | return !!(kvm_vcpu_get_hsr(vcpu) & ESR_ELx_WNR) || |
| 260 | kvm_vcpu_dabt_iss1tw(vcpu); /* AF/DBM update */ |
| 261 | } |
| 262 | |
Marc Zyngier | 57c841f | 2016-01-29 15:01:28 +0000 | [diff] [blame] | 263 | static inline bool kvm_vcpu_dabt_is_cm(const struct kvm_vcpu *vcpu) |
| 264 | { |
| 265 | return !!(kvm_vcpu_get_hsr(vcpu) & ESR_ELx_CM); |
| 266 | } |
| 267 | |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 268 | static inline int kvm_vcpu_dabt_get_as(const struct kvm_vcpu *vcpu) |
| 269 | { |
Mark Rutland | c6d01a9 | 2014-11-24 13:59:30 +0000 | [diff] [blame] | 270 | return 1 << ((kvm_vcpu_get_hsr(vcpu) & ESR_ELx_SAS) >> ESR_ELx_SAS_SHIFT); |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | /* This one is not specific to Data Abort */ |
| 274 | static inline bool kvm_vcpu_trap_il_is32bit(const struct kvm_vcpu *vcpu) |
| 275 | { |
Mark Rutland | c6d01a9 | 2014-11-24 13:59:30 +0000 | [diff] [blame] | 276 | return !!(kvm_vcpu_get_hsr(vcpu) & ESR_ELx_IL); |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 277 | } |
| 278 | |
| 279 | static inline u8 kvm_vcpu_trap_get_class(const struct kvm_vcpu *vcpu) |
| 280 | { |
Mark Rutland | 561454e | 2016-05-31 12:33:02 +0100 | [diff] [blame] | 281 | return ESR_ELx_EC(kvm_vcpu_get_hsr(vcpu)); |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | static inline bool kvm_vcpu_trap_is_iabt(const struct kvm_vcpu *vcpu) |
| 285 | { |
Mark Rutland | c6d01a9 | 2014-11-24 13:59:30 +0000 | [diff] [blame] | 286 | return kvm_vcpu_trap_get_class(vcpu) == ESR_ELx_EC_IABT_LOW; |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | static inline u8 kvm_vcpu_trap_get_fault(const struct kvm_vcpu *vcpu) |
| 290 | { |
Mark Rutland | c6d01a9 | 2014-11-24 13:59:30 +0000 | [diff] [blame] | 291 | return kvm_vcpu_get_hsr(vcpu) & ESR_ELx_FSC; |
Christoffer Dall | 0496daa5 | 2014-09-26 12:29:34 +0200 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | static inline u8 kvm_vcpu_trap_get_fault_type(const struct kvm_vcpu *vcpu) |
| 295 | { |
Mark Rutland | c6d01a9 | 2014-11-24 13:59:30 +0000 | [diff] [blame] | 296 | return kvm_vcpu_get_hsr(vcpu) & ESR_ELx_FSC_TYPE; |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 297 | } |
| 298 | |
James Morse | bb42892 | 2017-07-18 13:37:41 +0100 | [diff] [blame] | 299 | static inline bool kvm_vcpu_dabt_isextabt(const struct kvm_vcpu *vcpu) |
| 300 | { |
Dongjiu Geng | a2b8313 | 2017-10-30 14:05:18 +0800 | [diff] [blame] | 301 | switch (kvm_vcpu_trap_get_fault(vcpu)) { |
James Morse | bb42892 | 2017-07-18 13:37:41 +0100 | [diff] [blame] | 302 | case FSC_SEA: |
| 303 | case FSC_SEA_TTW0: |
| 304 | case FSC_SEA_TTW1: |
| 305 | case FSC_SEA_TTW2: |
| 306 | case FSC_SEA_TTW3: |
| 307 | case FSC_SECC: |
| 308 | case FSC_SECC_TTW0: |
| 309 | case FSC_SECC_TTW1: |
| 310 | case FSC_SECC_TTW2: |
| 311 | case FSC_SECC_TTW3: |
| 312 | return true; |
| 313 | default: |
| 314 | return false; |
| 315 | } |
| 316 | } |
| 317 | |
Marc Zyngier | c667186 | 2017-04-27 19:06:48 +0100 | [diff] [blame] | 318 | static inline int kvm_vcpu_sys_get_rt(struct kvm_vcpu *vcpu) |
| 319 | { |
| 320 | u32 esr = kvm_vcpu_get_hsr(vcpu); |
| 321 | return (esr & ESR_ELx_SYS64_ISS_RT_MASK) >> ESR_ELx_SYS64_ISS_RT_SHIFT; |
| 322 | } |
| 323 | |
Andre Przywara | 4429fc6 | 2014-06-02 15:37:13 +0200 | [diff] [blame] | 324 | static inline unsigned long kvm_vcpu_get_mpidr_aff(struct kvm_vcpu *vcpu) |
Marc Zyngier | 79c6488 | 2013-10-18 18:19:03 +0100 | [diff] [blame] | 325 | { |
Christoffer Dall | 8d404c4 | 2016-03-16 15:38:53 +0100 | [diff] [blame] | 326 | return vcpu_read_sys_reg(vcpu, MPIDR_EL1) & MPIDR_HWID_BITMASK; |
Marc Zyngier | 79c6488 | 2013-10-18 18:19:03 +0100 | [diff] [blame] | 327 | } |
| 328 | |
Marc Zyngier | ce94fe9 | 2013-11-05 14:12:15 +0000 | [diff] [blame] | 329 | static inline void kvm_vcpu_set_be(struct kvm_vcpu *vcpu) |
| 330 | { |
Christoffer Dall | 8d404c4 | 2016-03-16 15:38:53 +0100 | [diff] [blame] | 331 | if (vcpu_mode_is_32bit(vcpu)) { |
Marc Zyngier | ce94fe9 | 2013-11-05 14:12:15 +0000 | [diff] [blame] | 332 | *vcpu_cpsr(vcpu) |= COMPAT_PSR_E_BIT; |
Christoffer Dall | 8d404c4 | 2016-03-16 15:38:53 +0100 | [diff] [blame] | 333 | } else { |
| 334 | u64 sctlr = vcpu_read_sys_reg(vcpu, SCTLR_EL1); |
| 335 | sctlr |= (1 << 25); |
James Morse | 1975fa5 | 2018-05-02 12:17:02 +0100 | [diff] [blame^] | 336 | vcpu_write_sys_reg(vcpu, sctlr, SCTLR_EL1); |
Christoffer Dall | 8d404c4 | 2016-03-16 15:38:53 +0100 | [diff] [blame] | 337 | } |
Marc Zyngier | ce94fe9 | 2013-11-05 14:12:15 +0000 | [diff] [blame] | 338 | } |
| 339 | |
Marc Zyngier | 6d89d2d | 2013-02-12 12:40:22 +0000 | [diff] [blame] | 340 | static inline bool kvm_vcpu_is_be(struct kvm_vcpu *vcpu) |
| 341 | { |
| 342 | if (vcpu_mode_is_32bit(vcpu)) |
| 343 | return !!(*vcpu_cpsr(vcpu) & COMPAT_PSR_E_BIT); |
| 344 | |
Christoffer Dall | 8d404c4 | 2016-03-16 15:38:53 +0100 | [diff] [blame] | 345 | return !!(vcpu_read_sys_reg(vcpu, SCTLR_EL1) & (1 << 25)); |
Marc Zyngier | 6d89d2d | 2013-02-12 12:40:22 +0000 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | static inline unsigned long vcpu_data_guest_to_host(struct kvm_vcpu *vcpu, |
| 349 | unsigned long data, |
| 350 | unsigned int len) |
| 351 | { |
| 352 | if (kvm_vcpu_is_be(vcpu)) { |
| 353 | switch (len) { |
| 354 | case 1: |
| 355 | return data & 0xff; |
| 356 | case 2: |
| 357 | return be16_to_cpu(data & 0xffff); |
| 358 | case 4: |
| 359 | return be32_to_cpu(data & 0xffffffff); |
| 360 | default: |
| 361 | return be64_to_cpu(data); |
| 362 | } |
Victor Kamensky | b300708 | 2014-06-12 09:30:08 -0700 | [diff] [blame] | 363 | } else { |
| 364 | switch (len) { |
| 365 | case 1: |
| 366 | return data & 0xff; |
| 367 | case 2: |
| 368 | return le16_to_cpu(data & 0xffff); |
| 369 | case 4: |
| 370 | return le32_to_cpu(data & 0xffffffff); |
| 371 | default: |
| 372 | return le64_to_cpu(data); |
| 373 | } |
Marc Zyngier | 6d89d2d | 2013-02-12 12:40:22 +0000 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | return data; /* Leave LE untouched */ |
| 377 | } |
| 378 | |
| 379 | static inline unsigned long vcpu_data_host_to_guest(struct kvm_vcpu *vcpu, |
| 380 | unsigned long data, |
| 381 | unsigned int len) |
| 382 | { |
| 383 | if (kvm_vcpu_is_be(vcpu)) { |
| 384 | switch (len) { |
| 385 | case 1: |
| 386 | return data & 0xff; |
| 387 | case 2: |
| 388 | return cpu_to_be16(data & 0xffff); |
| 389 | case 4: |
| 390 | return cpu_to_be32(data & 0xffffffff); |
| 391 | default: |
| 392 | return cpu_to_be64(data); |
| 393 | } |
Victor Kamensky | b300708 | 2014-06-12 09:30:08 -0700 | [diff] [blame] | 394 | } else { |
| 395 | switch (len) { |
| 396 | case 1: |
| 397 | return data & 0xff; |
| 398 | case 2: |
| 399 | return cpu_to_le16(data & 0xffff); |
| 400 | case 4: |
| 401 | return cpu_to_le32(data & 0xffffffff); |
| 402 | default: |
| 403 | return cpu_to_le64(data); |
| 404 | } |
Marc Zyngier | 6d89d2d | 2013-02-12 12:40:22 +0000 | [diff] [blame] | 405 | } |
| 406 | |
| 407 | return data; /* Leave LE untouched */ |
| 408 | } |
| 409 | |
Marc Zyngier | 83a4979 | 2012-12-10 13:27:52 +0000 | [diff] [blame] | 410 | #endif /* __ARM64_KVM_EMULATE_H__ */ |