blob: 8216c0e0b2e299494ee297540ed0d7015e006858 [file] [log] [blame]
Christian Borntraegere28acfe2008-03-25 18:47:34 +01001/*
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02002 * handling diagnose instructions
Christian Borntraegere28acfe2008-03-25 18:47:34 +01003 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02004 * Copyright IBM Corp. 2008, 2011
Christian Borntraegere28acfe2008-03-25 18:47:34 +01005 *
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.
9 *
10 * Author(s): Carsten Otte <cotte@de.ibm.com>
11 * Christian Borntraeger <borntraeger@de.ibm.com>
12 */
13
14#include <linux/kvm.h>
15#include <linux/kvm_host.h>
Cornelia Huck10ccaa12013-02-28 12:33:21 +010016#include <asm/virtio-ccw.h>
Christian Borntraegere28acfe2008-03-25 18:47:34 +010017#include "kvm-s390.h"
Cornelia Huck5786fff2012-07-23 17:20:29 +020018#include "trace.h"
Cornelia Huckade38c32012-07-23 17:20:30 +020019#include "trace-s390.h"
Christian Borntraegere28acfe2008-03-25 18:47:34 +010020
Christian Borntraeger388186b2011-10-30 15:17:03 +010021static int diag_release_pages(struct kvm_vcpu *vcpu)
22{
23 unsigned long start, end;
24 unsigned long prefix = vcpu->arch.sie_block->prefix;
25
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +010026 start = vcpu->run->s.regs.gprs[(vcpu->arch.sie_block->ipa & 0xf0) >> 4];
27 end = vcpu->run->s.regs.gprs[vcpu->arch.sie_block->ipa & 0xf] + 4096;
Christian Borntraeger388186b2011-10-30 15:17:03 +010028
29 if (start & ~PAGE_MASK || end & ~PAGE_MASK || start > end
30 || start < 2 * PAGE_SIZE)
31 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
32
33 VCPU_EVENT(vcpu, 5, "diag release pages %lX %lX", start, end);
34 vcpu->stat.diagnose_10++;
35
36 /* we checked for start > end above */
37 if (end < prefix || start >= prefix + 2 * PAGE_SIZE) {
38 gmap_discard(start, end, vcpu->arch.gmap);
39 } else {
40 if (start < prefix)
41 gmap_discard(start, prefix, vcpu->arch.gmap);
42 if (end >= prefix)
43 gmap_discard(prefix + 2 * PAGE_SIZE,
44 end, vcpu->arch.gmap);
45 }
46 return 0;
47}
48
Christian Borntraegere28acfe2008-03-25 18:47:34 +010049static int __diag_time_slice_end(struct kvm_vcpu *vcpu)
50{
51 VCPU_EVENT(vcpu, 5, "%s", "diag time slice end");
52 vcpu->stat.diagnose_44++;
Christian Borntraeger8733ac32012-04-25 15:30:39 +020053 kvm_vcpu_on_spin(vcpu);
Christian Borntraegere28acfe2008-03-25 18:47:34 +010054 return 0;
55}
56
Konstantin Weitz41628d32012-04-25 15:30:38 +020057static int __diag_time_slice_end_directed(struct kvm_vcpu *vcpu)
58{
59 struct kvm *kvm = vcpu->kvm;
60 struct kvm_vcpu *tcpu;
61 int tid;
62 int i;
63
64 tid = vcpu->run->s.regs.gprs[(vcpu->arch.sie_block->ipa & 0xf0) >> 4];
65 vcpu->stat.diagnose_9c++;
66 VCPU_EVENT(vcpu, 5, "diag time slice end directed to %d", tid);
67
68 if (tid == vcpu->vcpu_id)
69 return 0;
70
71 kvm_for_each_vcpu(i, tcpu, kvm)
72 if (tcpu->vcpu_id == tid) {
73 kvm_vcpu_yield_to(tcpu);
74 break;
75 }
76
77 return 0;
78}
79
Christian Borntraegere28acfe2008-03-25 18:47:34 +010080static int __diag_ipl_functions(struct kvm_vcpu *vcpu)
81{
82 unsigned int reg = vcpu->arch.sie_block->ipa & 0xf;
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +010083 unsigned long subcode = vcpu->run->s.regs.gprs[reg] & 0xffff;
Christian Borntraegere28acfe2008-03-25 18:47:34 +010084
85 VCPU_EVENT(vcpu, 5, "diag ipl functions, subcode %lx", subcode);
86 switch (subcode) {
87 case 3:
88 vcpu->run->s390_reset_flags = KVM_S390_RESET_CLEAR;
89 break;
90 case 4:
91 vcpu->run->s390_reset_flags = 0;
92 break;
93 default:
Heiko Carstensb8e660b2010-02-26 22:37:41 +010094 return -EOPNOTSUPP;
Christian Borntraegere28acfe2008-03-25 18:47:34 +010095 }
96
Cornelia Huck9e6dabe2011-11-17 11:00:41 +010097 atomic_set_mask(CPUSTAT_STOPPED, &vcpu->arch.sie_block->cpuflags);
Christian Borntraegere28acfe2008-03-25 18:47:34 +010098 vcpu->run->s390_reset_flags |= KVM_S390_RESET_SUBSYSTEM;
99 vcpu->run->s390_reset_flags |= KVM_S390_RESET_IPL;
100 vcpu->run->s390_reset_flags |= KVM_S390_RESET_CPU_INIT;
101 vcpu->run->exit_reason = KVM_EXIT_S390_RESET;
Heiko Carstens33e19112009-01-09 12:14:56 +0100102 VCPU_EVENT(vcpu, 3, "requesting userspace resets %llx",
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100103 vcpu->run->s390_reset_flags);
Cornelia Huckade38c32012-07-23 17:20:30 +0200104 trace_kvm_s390_request_resets(vcpu->run->s390_reset_flags);
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100105 return -EREMOTE;
106}
107
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100108static int __diag_virtio_hypercall(struct kvm_vcpu *vcpu)
109{
Thomas Huth800c1062013-09-12 10:33:45 +0200110 int ret;
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100111
112 /* No virtio-ccw notification? Get out quickly. */
113 if (!vcpu->kvm->arch.css_support ||
114 (vcpu->run->s.regs.gprs[1] != KVM_S390_VIRTIO_CCW_NOTIFY))
115 return -EOPNOTSUPP;
116
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100117 /*
118 * The layout is as follows:
119 * - gpr 2 contains the subchannel id (passed as addr)
120 * - gpr 3 contains the virtqueue index (passed as datamatch)
Cornelia Huck85dfe872013-07-03 16:30:54 +0200121 * - gpr 4 contains the index on the bus (optionally)
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100122 */
Cornelia Huck85dfe872013-07-03 16:30:54 +0200123 ret = kvm_io_bus_write_cookie(vcpu->kvm, KVM_VIRTIO_CCW_NOTIFY_BUS,
Dominik Dingelff1f3cb2013-12-09 18:30:01 +0100124 vcpu->run->s.regs.gprs[2] & 0xffffffff,
Cornelia Huck85dfe872013-07-03 16:30:54 +0200125 8, &vcpu->run->s.regs.gprs[3],
126 vcpu->run->s.regs.gprs[4]);
Cornelia Huck85dfe872013-07-03 16:30:54 +0200127
128 /*
129 * Return cookie in gpr 2, but don't overwrite the register if the
130 * diagnose will be handled by userspace.
131 */
132 if (ret != -EOPNOTSUPP)
133 vcpu->run->s.regs.gprs[2] = ret;
134 /* kvm_io_bus_write_cookie returns -EOPNOTSUPP if it found no match. */
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100135 return ret < 0 ? ret : 0;
136}
137
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100138int kvm_s390_handle_diag(struct kvm_vcpu *vcpu)
139{
Heiko Carstens743db272013-11-11 13:56:47 +0100140 int code = kvm_s390_get_base_disp_rs(vcpu) & 0xffff;
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100141
Thomas Huth93e17502013-06-20 17:22:02 +0200142 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
143 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
144
Cornelia Huck5786fff2012-07-23 17:20:29 +0200145 trace_kvm_s390_handle_diag(vcpu, code);
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100146 switch (code) {
Christian Borntraeger388186b2011-10-30 15:17:03 +0100147 case 0x10:
148 return diag_release_pages(vcpu);
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100149 case 0x44:
150 return __diag_time_slice_end(vcpu);
Konstantin Weitz41628d32012-04-25 15:30:38 +0200151 case 0x9c:
152 return __diag_time_slice_end_directed(vcpu);
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100153 case 0x308:
154 return __diag_ipl_functions(vcpu);
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100155 case 0x500:
156 return __diag_virtio_hypercall(vcpu);
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100157 default:
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100158 return -EOPNOTSUPP;
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100159 }
160}