2 * Copyright (C) 2012 - Virtual Open Systems and Columbia University
3 * Author: Christoffer Dall <c.dall@virtualopensystems.com>
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.
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.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 #include <linux/kvm_host.h>
20 #include <asm/kvm_mmio.h>
21 #include <asm/kvm_emulate.h>
22 #include <trace/events/kvm.h>
27 * kvm_handle_mmio_return -- Handle MMIO loads after user space emulation
28 * @vcpu: The VCPU pointer
29 * @run: The VCPU run struct containing the mmio data
31 * This should only be called after returning from userspace for MMIO load
34 int kvm_handle_mmio_return(struct kvm_vcpu
*vcpu
, struct kvm_run
*run
)
40 if (!run
->mmio
.is_write
) {
41 dest
= vcpu_reg(vcpu
, vcpu
->arch
.mmio_decode
.rt
);
42 memset(dest
, 0, sizeof(int));
48 memcpy(dest
, run
->mmio
.data
, len
);
50 trace_kvm_mmio(KVM_TRACE_MMIO_READ
, len
, run
->mmio
.phys_addr
,
51 *((u64
*)run
->mmio
.data
));
53 if (vcpu
->arch
.mmio_decode
.sign_extend
&& len
< 4) {
54 mask
= 1U << ((len
* 8) - 1);
55 *dest
= (*dest
^ mask
) - mask
;
62 static int decode_hsr(struct kvm_vcpu
*vcpu
, phys_addr_t fault_ipa
,
63 struct kvm_exit_mmio
*mmio
)
65 unsigned long rt
, len
;
66 bool is_write
, sign_extend
;
68 if ((vcpu
->arch
.hsr
>> 8) & 1) {
69 /* cache operation on I/O addr, tell guest unsupported */
70 kvm_inject_dabt(vcpu
, vcpu
->arch
.hxfar
);
74 if ((vcpu
->arch
.hsr
>> 7) & 1) {
75 /* page table accesses IO mem: tell guest to fix its TTBR */
76 kvm_inject_dabt(vcpu
, vcpu
->arch
.hxfar
);
80 switch ((vcpu
->arch
.hsr
>> 22) & 0x3) {
91 kvm_err("Hardware is weird: SAS 0b11 is reserved\n");
95 is_write
= vcpu
->arch
.hsr
& HSR_WNR
;
96 sign_extend
= vcpu
->arch
.hsr
& HSR_SSE
;
97 rt
= (vcpu
->arch
.hsr
& HSR_SRT_MASK
) >> HSR_SRT_SHIFT
;
99 if (kvm_vcpu_reg_is_pc(vcpu
, rt
)) {
100 /* IO memory trying to read/write pc */
101 kvm_inject_pabt(vcpu
, vcpu
->arch
.hxfar
);
105 mmio
->is_write
= is_write
;
106 mmio
->phys_addr
= fault_ipa
;
108 vcpu
->arch
.mmio_decode
.sign_extend
= sign_extend
;
109 vcpu
->arch
.mmio_decode
.rt
= rt
;
112 * The MMIO instruction is emulated and should not be re-executed
115 kvm_skip_instr(vcpu
, (vcpu
->arch
.hsr
>> 25) & 1);
119 int io_mem_abort(struct kvm_vcpu
*vcpu
, struct kvm_run
*run
,
120 phys_addr_t fault_ipa
)
122 struct kvm_exit_mmio mmio
;
127 * Prepare MMIO operation. First stash it in a private
128 * structure that we can use for in-kernel emulation. If the
129 * kernel can't handle it, copy it into run->mmio and let user
130 * space do its magic.
133 if (vcpu
->arch
.hsr
& HSR_ISV
) {
134 ret
= decode_hsr(vcpu
, fault_ipa
, &mmio
);
138 kvm_err("load/store instruction decoding not implemented\n");
142 rt
= vcpu
->arch
.mmio_decode
.rt
;
143 trace_kvm_mmio((mmio
.is_write
) ? KVM_TRACE_MMIO_WRITE
:
144 KVM_TRACE_MMIO_READ_UNSATISFIED
,
146 (mmio
.is_write
) ? *vcpu_reg(vcpu
, rt
) : 0);
149 memcpy(mmio
.data
, vcpu_reg(vcpu
, rt
), mmio
.len
);
151 if (vgic_handle_mmio(vcpu
, run
, &mmio
))
154 kvm_prepare_mmio(run
, &mmio
);