blob: fe9442d39f0e7b73ba06ba60eadf98a4c236156c [file] [log] [blame]
Christian Borntraeger5288fbf2008-03-25 18:47:31 +01001/*
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02002 * handling interprocessor communication
Christian Borntraeger5288fbf2008-03-25 18:47:31 +01003 *
Thomas Huthb13d3582013-11-21 16:01:48 +01004 * Copyright IBM Corp. 2008, 2013
Christian Borntraeger5288fbf2008-03-25 18:47:31 +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>
Christian Ehrhardt9ace9032009-05-20 15:34:55 +020012 * Christian Ehrhardt <ehrhardt@de.ibm.com>
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010013 */
14
15#include <linux/kvm.h>
16#include <linux/kvm_host.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Heiko Carstensa9ae32c2012-06-04 12:55:15 +020018#include <asm/sigp.h>
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010019#include "gaccess.h"
20#include "kvm-s390.h"
Cornelia Huck5786fff2012-07-23 17:20:29 +020021#include "trace.h"
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010022
Martin Schwidefsky00963692008-07-25 15:51:00 +020023static int __sigp_sense(struct kvm_vcpu *vcpu, u16 cpu_addr,
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +010024 u64 *reg)
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010025{
Christian Borntraeger180c12f2008-06-27 15:05:40 +020026 struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010027 int rc;
28
29 if (cpu_addr >= KVM_MAX_VCPUS)
Heiko Carstensea1918d2012-06-26 16:06:40 +020030 return SIGP_CC_NOT_OPERATIONAL;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010031
Christian Borntraegerb037a4f2009-05-12 17:21:50 +020032 spin_lock(&fi->lock);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010033 if (fi->local_int[cpu_addr] == NULL)
Heiko Carstensea1918d2012-06-26 16:06:40 +020034 rc = SIGP_CC_NOT_OPERATIONAL;
Cornelia Huck9e6dabe2011-11-17 11:00:41 +010035 else if (!(atomic_read(fi->local_int[cpu_addr]->cpuflags)
Cornelia Huck21b26c02012-06-26 16:06:41 +020036 & (CPUSTAT_ECALL_PEND | CPUSTAT_STOPPED)))
37 rc = SIGP_CC_ORDER_CODE_ACCEPTED;
38 else {
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010039 *reg &= 0xffffffff00000000UL;
Cornelia Huck21b26c02012-06-26 16:06:41 +020040 if (atomic_read(fi->local_int[cpu_addr]->cpuflags)
41 & CPUSTAT_ECALL_PEND)
42 *reg |= SIGP_STATUS_EXT_CALL_PENDING;
43 if (atomic_read(fi->local_int[cpu_addr]->cpuflags)
44 & CPUSTAT_STOPPED)
45 *reg |= SIGP_STATUS_STOPPED;
Heiko Carstensea1918d2012-06-26 16:06:40 +020046 rc = SIGP_CC_STATUS_STORED;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010047 }
Christian Borntraegerb037a4f2009-05-12 17:21:50 +020048 spin_unlock(&fi->lock);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010049
50 VCPU_EVENT(vcpu, 4, "sensed status of cpu %x rc %x", cpu_addr, rc);
51 return rc;
52}
53
54static int __sigp_emergency(struct kvm_vcpu *vcpu, u16 cpu_addr)
55{
Christian Borntraeger180c12f2008-06-27 15:05:40 +020056 struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
57 struct kvm_s390_local_interrupt *li;
58 struct kvm_s390_interrupt_info *inti;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010059 int rc;
60
61 if (cpu_addr >= KVM_MAX_VCPUS)
Heiko Carstensea1918d2012-06-26 16:06:40 +020062 return SIGP_CC_NOT_OPERATIONAL;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010063
64 inti = kzalloc(sizeof(*inti), GFP_KERNEL);
65 if (!inti)
66 return -ENOMEM;
67
68 inti->type = KVM_S390_INT_EMERGENCY;
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +020069 inti->emerg.code = vcpu->vcpu_id;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010070
Christian Borntraegerb037a4f2009-05-12 17:21:50 +020071 spin_lock(&fi->lock);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010072 li = fi->local_int[cpu_addr];
73 if (li == NULL) {
Heiko Carstensea1918d2012-06-26 16:06:40 +020074 rc = SIGP_CC_NOT_OPERATIONAL;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010075 kfree(inti);
76 goto unlock;
77 }
78 spin_lock_bh(&li->lock);
79 list_add_tail(&inti->list, &li->list);
80 atomic_set(&li->active, 1);
81 atomic_set_mask(CPUSTAT_EXT_INT, li->cpuflags);
Christian Borntraegerd0321a22013-06-12 13:54:55 +020082 if (waitqueue_active(li->wq))
83 wake_up_interruptible(li->wq);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010084 spin_unlock_bh(&li->lock);
Heiko Carstensea1918d2012-06-26 16:06:40 +020085 rc = SIGP_CC_ORDER_CODE_ACCEPTED;
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +020086 VCPU_EVENT(vcpu, 4, "sent sigp emerg to cpu %x", cpu_addr);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010087unlock:
Christian Borntraegerb037a4f2009-05-12 17:21:50 +020088 spin_unlock(&fi->lock);
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +020089 return rc;
90}
91
Thomas Huthb13d3582013-11-21 16:01:48 +010092static int __sigp_conditional_emergency(struct kvm_vcpu *vcpu, u16 cpu_addr,
93 u16 asn, u64 *reg)
94{
95 struct kvm_vcpu *dst_vcpu = NULL;
96 const u64 psw_int_mask = PSW_MASK_IO | PSW_MASK_EXT;
97 u16 p_asn, s_asn;
98 psw_t *psw;
99 u32 flags;
100
101 if (cpu_addr < KVM_MAX_VCPUS)
102 dst_vcpu = kvm_get_vcpu(vcpu->kvm, cpu_addr);
103 if (!dst_vcpu)
104 return SIGP_CC_NOT_OPERATIONAL;
105 flags = atomic_read(&dst_vcpu->arch.sie_block->cpuflags);
106 psw = &dst_vcpu->arch.sie_block->gpsw;
107 p_asn = dst_vcpu->arch.sie_block->gcr[4] & 0xffff; /* Primary ASN */
108 s_asn = dst_vcpu->arch.sie_block->gcr[3] & 0xffff; /* Secondary ASN */
109
110 /* Deliver the emergency signal? */
111 if (!(flags & CPUSTAT_STOPPED)
112 || (psw->mask & psw_int_mask) != psw_int_mask
113 || ((flags & CPUSTAT_WAIT) && psw->addr != 0)
114 || (!(flags & CPUSTAT_WAIT) && (asn == p_asn || asn == s_asn))) {
115 return __sigp_emergency(vcpu, cpu_addr);
116 } else {
117 *reg &= 0xffffffff00000000UL;
118 *reg |= SIGP_STATUS_INCORRECT_STATE;
119 return SIGP_CC_STATUS_STORED;
120 }
121}
122
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200123static int __sigp_external_call(struct kvm_vcpu *vcpu, u16 cpu_addr)
124{
125 struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
126 struct kvm_s390_local_interrupt *li;
127 struct kvm_s390_interrupt_info *inti;
128 int rc;
129
130 if (cpu_addr >= KVM_MAX_VCPUS)
Heiko Carstensea1918d2012-06-26 16:06:40 +0200131 return SIGP_CC_NOT_OPERATIONAL;
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200132
133 inti = kzalloc(sizeof(*inti), GFP_KERNEL);
134 if (!inti)
135 return -ENOMEM;
136
137 inti->type = KVM_S390_INT_EXTERNAL_CALL;
138 inti->extcall.code = vcpu->vcpu_id;
139
140 spin_lock(&fi->lock);
141 li = fi->local_int[cpu_addr];
142 if (li == NULL) {
Heiko Carstensea1918d2012-06-26 16:06:40 +0200143 rc = SIGP_CC_NOT_OPERATIONAL;
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200144 kfree(inti);
145 goto unlock;
146 }
147 spin_lock_bh(&li->lock);
148 list_add_tail(&inti->list, &li->list);
149 atomic_set(&li->active, 1);
150 atomic_set_mask(CPUSTAT_EXT_INT, li->cpuflags);
Christian Borntraegerd0321a22013-06-12 13:54:55 +0200151 if (waitqueue_active(li->wq))
152 wake_up_interruptible(li->wq);
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200153 spin_unlock_bh(&li->lock);
Heiko Carstensea1918d2012-06-26 16:06:40 +0200154 rc = SIGP_CC_ORDER_CODE_ACCEPTED;
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200155 VCPU_EVENT(vcpu, 4, "sent sigp ext call to cpu %x", cpu_addr);
156unlock:
157 spin_unlock(&fi->lock);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100158 return rc;
159}
160
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200161static int __inject_sigp_stop(struct kvm_s390_local_interrupt *li, int action)
162{
163 struct kvm_s390_interrupt_info *inti;
Thomas Huthe8798922013-11-06 15:46:33 +0100164 int rc = SIGP_CC_ORDER_CODE_ACCEPTED;
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200165
Julia Lawall9940fa82010-06-08 18:58:11 +0200166 inti = kzalloc(sizeof(*inti), GFP_ATOMIC);
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200167 if (!inti)
168 return -ENOMEM;
169 inti->type = KVM_S390_SIGP_STOP;
170
171 spin_lock_bh(&li->lock);
Cong Dinga046b812013-01-15 11:17:29 +0100172 if ((atomic_read(li->cpuflags) & CPUSTAT_STOPPED)) {
173 kfree(inti);
Thomas Huthe8798922013-11-06 15:46:33 +0100174 if ((action & ACTION_STORE_ON_STOP) != 0)
175 rc = -ESHUTDOWN;
Jens Freimann24a13042012-02-06 10:59:05 +0100176 goto out;
Cong Dinga046b812013-01-15 11:17:29 +0100177 }
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200178 list_add_tail(&inti->list, &li->list);
179 atomic_set(&li->active, 1);
180 atomic_set_mask(CPUSTAT_STOP_INT, li->cpuflags);
181 li->action_bits |= action;
Christian Borntraegerd0321a22013-06-12 13:54:55 +0200182 if (waitqueue_active(li->wq))
183 wake_up_interruptible(li->wq);
Jens Freimann24a13042012-02-06 10:59:05 +0100184out:
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200185 spin_unlock_bh(&li->lock);
186
Thomas Huthe8798922013-11-06 15:46:33 +0100187 return rc;
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200188}
189
190static int __sigp_stop(struct kvm_vcpu *vcpu, u16 cpu_addr, int action)
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100191{
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200192 struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
193 struct kvm_s390_local_interrupt *li;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100194 int rc;
195
196 if (cpu_addr >= KVM_MAX_VCPUS)
Heiko Carstensea1918d2012-06-26 16:06:40 +0200197 return SIGP_CC_NOT_OPERATIONAL;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100198
Christian Borntraegerb037a4f2009-05-12 17:21:50 +0200199 spin_lock(&fi->lock);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100200 li = fi->local_int[cpu_addr];
201 if (li == NULL) {
Heiko Carstensea1918d2012-06-26 16:06:40 +0200202 rc = SIGP_CC_NOT_OPERATIONAL;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100203 goto unlock;
204 }
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200205
206 rc = __inject_sigp_stop(li, action);
207
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100208unlock:
Christian Borntraegerb037a4f2009-05-12 17:21:50 +0200209 spin_unlock(&fi->lock);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100210 VCPU_EVENT(vcpu, 4, "sent sigp stop to cpu %x", cpu_addr);
Thomas Huthe8798922013-11-06 15:46:33 +0100211
212 if ((action & ACTION_STORE_ON_STOP) != 0 && rc == -ESHUTDOWN) {
213 /* If the CPU has already been stopped, we still have
214 * to save the status when doing stop-and-store. This
215 * has to be done after unlocking all spinlocks. */
216 struct kvm_vcpu *dst_vcpu = kvm_get_vcpu(vcpu->kvm, cpu_addr);
217 rc = kvm_s390_store_status_unloaded(dst_vcpu,
218 KVM_S390_STORE_STATUS_NOADDR);
219 }
220
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100221 return rc;
222}
223
224static int __sigp_set_arch(struct kvm_vcpu *vcpu, u32 parameter)
225{
226 int rc;
Dominik Dingel3c038e62013-10-07 17:11:48 +0200227 unsigned int i;
228 struct kvm_vcpu *v;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100229
230 switch (parameter & 0xff) {
231 case 0:
Heiko Carstensea1918d2012-06-26 16:06:40 +0200232 rc = SIGP_CC_NOT_OPERATIONAL;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100233 break;
234 case 1:
235 case 2:
Dominik Dingel3c038e62013-10-07 17:11:48 +0200236 kvm_for_each_vcpu(i, v, vcpu->kvm) {
237 v->arch.pfault_token = KVM_S390_PFAULT_TOKEN_INVALID;
238 kvm_clear_async_pf_completion_queue(v);
239 }
240
Heiko Carstensea1918d2012-06-26 16:06:40 +0200241 rc = SIGP_CC_ORDER_CODE_ACCEPTED;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100242 break;
243 default:
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100244 rc = -EOPNOTSUPP;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100245 }
246 return rc;
247}
248
249static int __sigp_set_prefix(struct kvm_vcpu *vcpu, u16 cpu_addr, u32 address,
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100250 u64 *reg)
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100251{
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200252 struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
Roel Kluin53cb7802009-08-07 10:39:25 +0200253 struct kvm_s390_local_interrupt *li = NULL;
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200254 struct kvm_s390_interrupt_info *inti;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100255 int rc;
256 u8 tmp;
257
258 /* make sure that the new value is valid memory */
259 address = address & 0x7fffe000u;
Carsten Otte092670c2011-07-24 10:48:22 +0200260 if (copy_from_guest_absolute(vcpu, &tmp, address, 1) ||
261 copy_from_guest_absolute(vcpu, &tmp, address + PAGE_SIZE, 1)) {
Heiko Carstens07444262012-06-26 16:06:39 +0200262 *reg &= 0xffffffff00000000UL;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200263 *reg |= SIGP_STATUS_INVALID_PARAMETER;
Heiko Carstensea1918d2012-06-26 16:06:40 +0200264 return SIGP_CC_STATUS_STORED;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100265 }
266
267 inti = kzalloc(sizeof(*inti), GFP_KERNEL);
268 if (!inti)
Heiko Carstensea1918d2012-06-26 16:06:40 +0200269 return SIGP_CC_BUSY;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100270
Christian Borntraegerb037a4f2009-05-12 17:21:50 +0200271 spin_lock(&fi->lock);
Roel Kluin53cb7802009-08-07 10:39:25 +0200272 if (cpu_addr < KVM_MAX_VCPUS)
273 li = fi->local_int[cpu_addr];
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100274
Roel Kluin53cb7802009-08-07 10:39:25 +0200275 if (li == NULL) {
Heiko Carstens07444262012-06-26 16:06:39 +0200276 *reg &= 0xffffffff00000000UL;
277 *reg |= SIGP_STATUS_INCORRECT_STATE;
Heiko Carstensea1918d2012-06-26 16:06:40 +0200278 rc = SIGP_CC_STATUS_STORED;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100279 kfree(inti);
280 goto out_fi;
281 }
282
283 spin_lock_bh(&li->lock);
284 /* cpu must be in stopped state */
Cornelia Huck9e6dabe2011-11-17 11:00:41 +0100285 if (!(atomic_read(li->cpuflags) & CPUSTAT_STOPPED)) {
Heiko Carstens07444262012-06-26 16:06:39 +0200286 *reg &= 0xffffffff00000000UL;
287 *reg |= SIGP_STATUS_INCORRECT_STATE;
Heiko Carstensea1918d2012-06-26 16:06:40 +0200288 rc = SIGP_CC_STATUS_STORED;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100289 kfree(inti);
290 goto out_li;
291 }
292
293 inti->type = KVM_S390_SIGP_SET_PREFIX;
294 inti->prefix.address = address;
295
296 list_add_tail(&inti->list, &li->list);
297 atomic_set(&li->active, 1);
Christian Borntraegerd0321a22013-06-12 13:54:55 +0200298 if (waitqueue_active(li->wq))
299 wake_up_interruptible(li->wq);
Heiko Carstensea1918d2012-06-26 16:06:40 +0200300 rc = SIGP_CC_ORDER_CODE_ACCEPTED;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100301
302 VCPU_EVENT(vcpu, 4, "set prefix of cpu %02x to %x", cpu_addr, address);
303out_li:
304 spin_unlock_bh(&li->lock);
305out_fi:
Christian Borntraegerb037a4f2009-05-12 17:21:50 +0200306 spin_unlock(&fi->lock);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100307 return rc;
308}
309
Thomas Huth00e9e432013-11-13 20:48:51 +0100310static int __sigp_store_status_at_addr(struct kvm_vcpu *vcpu, u16 cpu_id,
311 u32 addr, u64 *reg)
312{
313 struct kvm_vcpu *dst_vcpu = NULL;
314 int flags;
315 int rc;
316
317 if (cpu_id < KVM_MAX_VCPUS)
318 dst_vcpu = kvm_get_vcpu(vcpu->kvm, cpu_id);
319 if (!dst_vcpu)
320 return SIGP_CC_NOT_OPERATIONAL;
321
322 spin_lock_bh(&dst_vcpu->arch.local_int.lock);
323 flags = atomic_read(dst_vcpu->arch.local_int.cpuflags);
324 spin_unlock_bh(&dst_vcpu->arch.local_int.lock);
325 if (!(flags & CPUSTAT_STOPPED)) {
326 *reg &= 0xffffffff00000000UL;
327 *reg |= SIGP_STATUS_INCORRECT_STATE;
328 return SIGP_CC_STATUS_STORED;
329 }
330
331 addr &= 0x7ffffe00;
332 rc = kvm_s390_store_status_unloaded(dst_vcpu, addr);
333 if (rc == -EFAULT) {
334 *reg &= 0xffffffff00000000UL;
335 *reg |= SIGP_STATUS_INVALID_PARAMETER;
336 rc = SIGP_CC_STATUS_STORED;
337 }
338 return rc;
339}
340
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100341static int __sigp_sense_running(struct kvm_vcpu *vcpu, u16 cpu_addr,
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100342 u64 *reg)
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100343{
344 int rc;
345 struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
346
347 if (cpu_addr >= KVM_MAX_VCPUS)
Heiko Carstensea1918d2012-06-26 16:06:40 +0200348 return SIGP_CC_NOT_OPERATIONAL;
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100349
350 spin_lock(&fi->lock);
351 if (fi->local_int[cpu_addr] == NULL)
Heiko Carstensea1918d2012-06-26 16:06:40 +0200352 rc = SIGP_CC_NOT_OPERATIONAL;
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100353 else {
354 if (atomic_read(fi->local_int[cpu_addr]->cpuflags)
355 & CPUSTAT_RUNNING) {
356 /* running */
Heiko Carstensea1918d2012-06-26 16:06:40 +0200357 rc = SIGP_CC_ORDER_CODE_ACCEPTED;
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100358 } else {
359 /* not running */
360 *reg &= 0xffffffff00000000UL;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200361 *reg |= SIGP_STATUS_NOT_RUNNING;
Heiko Carstensea1918d2012-06-26 16:06:40 +0200362 rc = SIGP_CC_STATUS_STORED;
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100363 }
364 }
365 spin_unlock(&fi->lock);
366
367 VCPU_EVENT(vcpu, 4, "sensed running status of cpu %x rc %x", cpu_addr,
368 rc);
369
370 return rc;
371}
372
Thomas Huthcc92d6d2013-11-27 11:47:10 +0100373/* Test whether the destination CPU is available and not busy */
374static int sigp_check_callable(struct kvm_vcpu *vcpu, u16 cpu_addr)
Jens Freimann151104a2012-02-08 08:28:29 +0100375{
Jens Freimann151104a2012-02-08 08:28:29 +0100376 struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
377 struct kvm_s390_local_interrupt *li;
Heiko Carstensea1918d2012-06-26 16:06:40 +0200378 int rc = SIGP_CC_ORDER_CODE_ACCEPTED;
Jens Freimann151104a2012-02-08 08:28:29 +0100379
380 if (cpu_addr >= KVM_MAX_VCPUS)
Heiko Carstensea1918d2012-06-26 16:06:40 +0200381 return SIGP_CC_NOT_OPERATIONAL;
Jens Freimann151104a2012-02-08 08:28:29 +0100382
383 spin_lock(&fi->lock);
384 li = fi->local_int[cpu_addr];
385 if (li == NULL) {
Heiko Carstensea1918d2012-06-26 16:06:40 +0200386 rc = SIGP_CC_NOT_OPERATIONAL;
Jens Freimann151104a2012-02-08 08:28:29 +0100387 goto out;
388 }
389
390 spin_lock_bh(&li->lock);
391 if (li->action_bits & ACTION_STOP_ON_STOP)
Heiko Carstensea1918d2012-06-26 16:06:40 +0200392 rc = SIGP_CC_BUSY;
Jens Freimann151104a2012-02-08 08:28:29 +0100393 spin_unlock_bh(&li->lock);
394out:
395 spin_unlock(&fi->lock);
396 return rc;
397}
398
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100399int kvm_s390_handle_sigp(struct kvm_vcpu *vcpu)
400{
401 int r1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
402 int r3 = vcpu->arch.sie_block->ipa & 0x000f;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100403 u32 parameter;
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100404 u16 cpu_addr = vcpu->run->s.regs.gprs[r3];
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100405 u8 order_code;
406 int rc;
407
Christian Borntraeger3eb77d52008-11-17 14:50:35 +0100408 /* sigp in userspace can exit */
409 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200410 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Christian Borntraeger3eb77d52008-11-17 14:50:35 +0100411
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100412 order_code = kvm_s390_get_base_disp_rs(vcpu);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100413
414 if (r1 % 2)
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100415 parameter = vcpu->run->s.regs.gprs[r1];
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100416 else
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100417 parameter = vcpu->run->s.regs.gprs[r1 + 1];
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100418
Cornelia Huck5786fff2012-07-23 17:20:29 +0200419 trace_kvm_s390_handle_sigp(vcpu, order_code, cpu_addr, parameter);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100420 switch (order_code) {
421 case SIGP_SENSE:
422 vcpu->stat.instruction_sigp_sense++;
423 rc = __sigp_sense(vcpu, cpu_addr,
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100424 &vcpu->run->s.regs.gprs[r1]);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100425 break;
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200426 case SIGP_EXTERNAL_CALL:
427 vcpu->stat.instruction_sigp_external_call++;
428 rc = __sigp_external_call(vcpu, cpu_addr);
429 break;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200430 case SIGP_EMERGENCY_SIGNAL:
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100431 vcpu->stat.instruction_sigp_emergency++;
432 rc = __sigp_emergency(vcpu, cpu_addr);
433 break;
434 case SIGP_STOP:
435 vcpu->stat.instruction_sigp_stop++;
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200436 rc = __sigp_stop(vcpu, cpu_addr, ACTION_STOP_ON_STOP);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100437 break;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200438 case SIGP_STOP_AND_STORE_STATUS:
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100439 vcpu->stat.instruction_sigp_stop++;
Jens Freimann9ec2d6d2012-02-06 10:59:06 +0100440 rc = __sigp_stop(vcpu, cpu_addr, ACTION_STORE_ON_STOP |
441 ACTION_STOP_ON_STOP);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100442 break;
Thomas Huth00e9e432013-11-13 20:48:51 +0100443 case SIGP_STORE_STATUS_AT_ADDRESS:
444 rc = __sigp_store_status_at_addr(vcpu, cpu_addr, parameter,
445 &vcpu->run->s.regs.gprs[r1]);
446 break;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200447 case SIGP_SET_ARCHITECTURE:
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100448 vcpu->stat.instruction_sigp_arch++;
449 rc = __sigp_set_arch(vcpu, parameter);
450 break;
451 case SIGP_SET_PREFIX:
452 vcpu->stat.instruction_sigp_prefix++;
453 rc = __sigp_set_prefix(vcpu, cpu_addr, parameter,
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100454 &vcpu->run->s.regs.gprs[r1]);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100455 break;
Thomas Huthb13d3582013-11-21 16:01:48 +0100456 case SIGP_COND_EMERGENCY_SIGNAL:
457 rc = __sigp_conditional_emergency(vcpu, cpu_addr, parameter,
458 &vcpu->run->s.regs.gprs[r1]);
459 break;
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100460 case SIGP_SENSE_RUNNING:
461 vcpu->stat.instruction_sigp_sense_running++;
462 rc = __sigp_sense_running(vcpu, cpu_addr,
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100463 &vcpu->run->s.regs.gprs[r1]);
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100464 break;
Thomas Huth58bc33b2013-12-03 12:54:55 +0100465 case SIGP_START:
466 rc = sigp_check_callable(vcpu, cpu_addr);
467 if (rc == SIGP_CC_ORDER_CODE_ACCEPTED)
468 rc = -EOPNOTSUPP; /* Handle START in user space */
469 break;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100470 case SIGP_RESTART:
471 vcpu->stat.instruction_sigp_restart++;
Thomas Huthcc92d6d2013-11-27 11:47:10 +0100472 rc = sigp_check_callable(vcpu, cpu_addr);
473 if (rc == SIGP_CC_ORDER_CODE_ACCEPTED) {
474 VCPU_EVENT(vcpu, 4,
475 "sigp restart %x to handle userspace",
476 cpu_addr);
477 /* user space must know about restart */
478 rc = -EOPNOTSUPP;
479 }
480 break;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100481 default:
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100482 return -EOPNOTSUPP;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100483 }
484
485 if (rc < 0)
486 return rc;
487
Thomas Huth949c0072013-11-26 12:27:16 +0100488 kvm_s390_set_psw_cc(vcpu, rc);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100489 return 0;
490}