2 * handling diagnose instructions
4 * Copyright IBM Corp. 2008, 2011
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License (version 2 only)
8 * as published by the Free Software Foundation.
14 #include <linux/kvm.h>
15 #include <linux/kvm_host.h>
16 #include <asm/pgalloc.h>
17 #include <asm/virtio-ccw.h>
20 #include "trace-s390.h"
23 static int diag_release_pages(struct kvm_vcpu *vcpu)
25 unsigned long start, end;
26 unsigned long prefix = vcpu->arch.sie_block->prefix;
28 start = vcpu->run->s.regs.gprs[(vcpu->arch.sie_block->ipa & 0xf0) >> 4];
29 end = vcpu->run->s.regs.gprs[vcpu->arch.sie_block->ipa & 0xf] + 4096;
31 if (start & ~PAGE_MASK || end & ~PAGE_MASK || start > end
32 || start < 2 * PAGE_SIZE)
33 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
35 VCPU_EVENT(vcpu, 5, "diag release pages %lX %lX", start, end);
36 vcpu->stat.diagnose_10++;
38 /* we checked for start > end above */
39 if (end < prefix || start >= prefix + 2 * PAGE_SIZE) {
40 gmap_discard(start, end, vcpu->arch.gmap);
43 gmap_discard(start, prefix, vcpu->arch.gmap);
45 gmap_discard(prefix + 2 * PAGE_SIZE,
46 end, vcpu->arch.gmap);
51 static int __diag_page_ref_service(struct kvm_vcpu *vcpu)
65 u16 rx = (vcpu->arch.sie_block->ipa & 0xf0) >> 4;
66 u16 ry = (vcpu->arch.sie_block->ipa & 0x0f);
67 unsigned long hva_token = KVM_HVA_ERR_BAD;
69 if (vcpu->run->s.regs.gprs[rx] & 7)
70 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
71 if (copy_from_guest(vcpu, &parm, vcpu->run->s.regs.gprs[rx], sizeof(parm)))
72 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
73 if (parm.parm_version != 2 || parm.parm_len < 5 || parm.code != 0x258)
74 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
76 switch (parm.subcode) {
78 if (vcpu->arch.pfault_token != KVM_S390_PFAULT_TOKEN_INVALID) {
80 * If the pagefault handshake is already activated,
81 * the token must not be changed. We have to return
82 * decimal 8 instead, as mandated in SC24-6084.
84 vcpu->run->s.regs.gprs[ry] = 8;
88 if ((parm.compare_mask & parm.select_mask) != parm.compare_mask ||
89 parm.token_addr & 7 || parm.zarch != 0x8000000000000000ULL)
90 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
92 hva_token = gfn_to_hva(vcpu->kvm, gpa_to_gfn(parm.token_addr));
93 if (kvm_is_error_hva(hva_token))
94 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
96 vcpu->arch.pfault_token = parm.token_addr;
97 vcpu->arch.pfault_select = parm.select_mask;
98 vcpu->arch.pfault_compare = parm.compare_mask;
99 vcpu->run->s.regs.gprs[ry] = 0;
104 * Specification allows to let already pending tokens survive
105 * the cancel, therefore to reduce code complexity, we assume
106 * all outstanding tokens are already pending.
108 if (parm.token_addr || parm.select_mask ||
109 parm.compare_mask || parm.zarch)
110 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
112 vcpu->run->s.regs.gprs[ry] = 0;
114 * If the pfault handling was not established or is already
115 * canceled SC24-6084 requests to return decimal 4.
117 if (vcpu->arch.pfault_token == KVM_S390_PFAULT_TOKEN_INVALID)
118 vcpu->run->s.regs.gprs[ry] = 4;
120 vcpu->arch.pfault_token = KVM_S390_PFAULT_TOKEN_INVALID;
132 static int __diag_time_slice_end(struct kvm_vcpu *vcpu)
134 VCPU_EVENT(vcpu, 5, "%s", "diag time slice end");
135 vcpu->stat.diagnose_44++;
136 kvm_vcpu_on_spin(vcpu);
140 static int __diag_time_slice_end_directed(struct kvm_vcpu *vcpu)
142 struct kvm *kvm = vcpu->kvm;
143 struct kvm_vcpu *tcpu;
147 tid = vcpu->run->s.regs.gprs[(vcpu->arch.sie_block->ipa & 0xf0) >> 4];
148 vcpu->stat.diagnose_9c++;
149 VCPU_EVENT(vcpu, 5, "diag time slice end directed to %d", tid);
151 if (tid == vcpu->vcpu_id)
154 kvm_for_each_vcpu(i, tcpu, kvm)
155 if (tcpu->vcpu_id == tid) {
156 kvm_vcpu_yield_to(tcpu);
163 static int __diag_ipl_functions(struct kvm_vcpu *vcpu)
165 unsigned int reg = vcpu->arch.sie_block->ipa & 0xf;
166 unsigned long subcode = vcpu->run->s.regs.gprs[reg] & 0xffff;
168 VCPU_EVENT(vcpu, 5, "diag ipl functions, subcode %lx", subcode);
172 page_table_reset_pgste(current->mm, 0, TASK_SIZE);
175 vcpu->run->s390_reset_flags = KVM_S390_RESET_CLEAR;
176 page_table_reset_pgste(current->mm, 0, TASK_SIZE);
179 vcpu->run->s390_reset_flags = 0;
180 page_table_reset_pgste(current->mm, 0, TASK_SIZE);
186 atomic_set_mask(CPUSTAT_STOPPED, &vcpu->arch.sie_block->cpuflags);
187 vcpu->run->s390_reset_flags |= KVM_S390_RESET_SUBSYSTEM;
188 vcpu->run->s390_reset_flags |= KVM_S390_RESET_IPL;
189 vcpu->run->s390_reset_flags |= KVM_S390_RESET_CPU_INIT;
190 vcpu->run->exit_reason = KVM_EXIT_S390_RESET;
191 VCPU_EVENT(vcpu, 3, "requesting userspace resets %llx",
192 vcpu->run->s390_reset_flags);
193 trace_kvm_s390_request_resets(vcpu->run->s390_reset_flags);
197 static int __diag_virtio_hypercall(struct kvm_vcpu *vcpu)
201 /* No virtio-ccw notification? Get out quickly. */
202 if (!vcpu->kvm->arch.css_support ||
203 (vcpu->run->s.regs.gprs[1] != KVM_S390_VIRTIO_CCW_NOTIFY))
207 * The layout is as follows:
208 * - gpr 2 contains the subchannel id (passed as addr)
209 * - gpr 3 contains the virtqueue index (passed as datamatch)
210 * - gpr 4 contains the index on the bus (optionally)
212 ret = kvm_io_bus_write_cookie(vcpu->kvm, KVM_VIRTIO_CCW_NOTIFY_BUS,
213 vcpu->run->s.regs.gprs[2] & 0xffffffff,
214 8, &vcpu->run->s.regs.gprs[3],
215 vcpu->run->s.regs.gprs[4]);
218 * Return cookie in gpr 2, but don't overwrite the register if the
219 * diagnose will be handled by userspace.
221 if (ret != -EOPNOTSUPP)
222 vcpu->run->s.regs.gprs[2] = ret;
223 /* kvm_io_bus_write_cookie returns -EOPNOTSUPP if it found no match. */
224 return ret < 0 ? ret : 0;
227 int kvm_s390_handle_diag(struct kvm_vcpu *vcpu)
229 int code = kvm_s390_get_base_disp_rs(vcpu) & 0xffff;
231 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
232 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
234 trace_kvm_s390_handle_diag(vcpu, code);
237 return diag_release_pages(vcpu);
239 return __diag_time_slice_end(vcpu);
241 return __diag_time_slice_end_directed(vcpu);
243 return __diag_page_ref_service(vcpu);
245 return __diag_ipl_functions(vcpu);
247 return __diag_virtio_hypercall(vcpu);