blob: bc0d85a24b1b2f961607c54b2b3283bb95817c5b [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 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02004 * Copyright IBM Corp. 2008, 2009
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
92static int __sigp_external_call(struct kvm_vcpu *vcpu, u16 cpu_addr)
93{
94 struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
95 struct kvm_s390_local_interrupt *li;
96 struct kvm_s390_interrupt_info *inti;
97 int rc;
98
99 if (cpu_addr >= KVM_MAX_VCPUS)
Heiko Carstensea1918d2012-06-26 16:06:40 +0200100 return SIGP_CC_NOT_OPERATIONAL;
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200101
102 inti = kzalloc(sizeof(*inti), GFP_KERNEL);
103 if (!inti)
104 return -ENOMEM;
105
106 inti->type = KVM_S390_INT_EXTERNAL_CALL;
107 inti->extcall.code = vcpu->vcpu_id;
108
109 spin_lock(&fi->lock);
110 li = fi->local_int[cpu_addr];
111 if (li == NULL) {
Heiko Carstensea1918d2012-06-26 16:06:40 +0200112 rc = SIGP_CC_NOT_OPERATIONAL;
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200113 kfree(inti);
114 goto unlock;
115 }
116 spin_lock_bh(&li->lock);
117 list_add_tail(&inti->list, &li->list);
118 atomic_set(&li->active, 1);
119 atomic_set_mask(CPUSTAT_EXT_INT, li->cpuflags);
Christian Borntraegerd0321a22013-06-12 13:54:55 +0200120 if (waitqueue_active(li->wq))
121 wake_up_interruptible(li->wq);
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200122 spin_unlock_bh(&li->lock);
Heiko Carstensea1918d2012-06-26 16:06:40 +0200123 rc = SIGP_CC_ORDER_CODE_ACCEPTED;
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200124 VCPU_EVENT(vcpu, 4, "sent sigp ext call to cpu %x", cpu_addr);
125unlock:
126 spin_unlock(&fi->lock);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100127 return rc;
128}
129
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200130static int __inject_sigp_stop(struct kvm_s390_local_interrupt *li, int action)
131{
132 struct kvm_s390_interrupt_info *inti;
Thomas Huthe8798922013-11-06 15:46:33 +0100133 int rc = SIGP_CC_ORDER_CODE_ACCEPTED;
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200134
Julia Lawall9940fa82010-06-08 18:58:11 +0200135 inti = kzalloc(sizeof(*inti), GFP_ATOMIC);
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200136 if (!inti)
137 return -ENOMEM;
138 inti->type = KVM_S390_SIGP_STOP;
139
140 spin_lock_bh(&li->lock);
Cong Dinga046b812013-01-15 11:17:29 +0100141 if ((atomic_read(li->cpuflags) & CPUSTAT_STOPPED)) {
142 kfree(inti);
Thomas Huthe8798922013-11-06 15:46:33 +0100143 if ((action & ACTION_STORE_ON_STOP) != 0)
144 rc = -ESHUTDOWN;
Jens Freimann24a13042012-02-06 10:59:05 +0100145 goto out;
Cong Dinga046b812013-01-15 11:17:29 +0100146 }
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200147 list_add_tail(&inti->list, &li->list);
148 atomic_set(&li->active, 1);
149 atomic_set_mask(CPUSTAT_STOP_INT, li->cpuflags);
150 li->action_bits |= action;
Christian Borntraegerd0321a22013-06-12 13:54:55 +0200151 if (waitqueue_active(li->wq))
152 wake_up_interruptible(li->wq);
Jens Freimann24a13042012-02-06 10:59:05 +0100153out:
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200154 spin_unlock_bh(&li->lock);
155
Thomas Huthe8798922013-11-06 15:46:33 +0100156 return rc;
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200157}
158
159static int __sigp_stop(struct kvm_vcpu *vcpu, u16 cpu_addr, int action)
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100160{
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200161 struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
162 struct kvm_s390_local_interrupt *li;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100163 int rc;
164
165 if (cpu_addr >= KVM_MAX_VCPUS)
Heiko Carstensea1918d2012-06-26 16:06:40 +0200166 return SIGP_CC_NOT_OPERATIONAL;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100167
Christian Borntraegerb037a4f2009-05-12 17:21:50 +0200168 spin_lock(&fi->lock);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100169 li = fi->local_int[cpu_addr];
170 if (li == NULL) {
Heiko Carstensea1918d2012-06-26 16:06:40 +0200171 rc = SIGP_CC_NOT_OPERATIONAL;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100172 goto unlock;
173 }
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200174
175 rc = __inject_sigp_stop(li, action);
176
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100177unlock:
Christian Borntraegerb037a4f2009-05-12 17:21:50 +0200178 spin_unlock(&fi->lock);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100179 VCPU_EVENT(vcpu, 4, "sent sigp stop to cpu %x", cpu_addr);
Thomas Huthe8798922013-11-06 15:46:33 +0100180
181 if ((action & ACTION_STORE_ON_STOP) != 0 && rc == -ESHUTDOWN) {
182 /* If the CPU has already been stopped, we still have
183 * to save the status when doing stop-and-store. This
184 * has to be done after unlocking all spinlocks. */
185 struct kvm_vcpu *dst_vcpu = kvm_get_vcpu(vcpu->kvm, cpu_addr);
186 rc = kvm_s390_store_status_unloaded(dst_vcpu,
187 KVM_S390_STORE_STATUS_NOADDR);
188 }
189
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100190 return rc;
191}
192
193static int __sigp_set_arch(struct kvm_vcpu *vcpu, u32 parameter)
194{
195 int rc;
196
197 switch (parameter & 0xff) {
198 case 0:
Heiko Carstensea1918d2012-06-26 16:06:40 +0200199 rc = SIGP_CC_NOT_OPERATIONAL;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100200 break;
201 case 1:
202 case 2:
Heiko Carstensea1918d2012-06-26 16:06:40 +0200203 rc = SIGP_CC_ORDER_CODE_ACCEPTED;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100204 break;
205 default:
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100206 rc = -EOPNOTSUPP;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100207 }
208 return rc;
209}
210
211static int __sigp_set_prefix(struct kvm_vcpu *vcpu, u16 cpu_addr, u32 address,
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100212 u64 *reg)
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100213{
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200214 struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
Roel Kluin53cb7802009-08-07 10:39:25 +0200215 struct kvm_s390_local_interrupt *li = NULL;
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200216 struct kvm_s390_interrupt_info *inti;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100217 int rc;
218 u8 tmp;
219
220 /* make sure that the new value is valid memory */
221 address = address & 0x7fffe000u;
Carsten Otte092670c2011-07-24 10:48:22 +0200222 if (copy_from_guest_absolute(vcpu, &tmp, address, 1) ||
223 copy_from_guest_absolute(vcpu, &tmp, address + PAGE_SIZE, 1)) {
Heiko Carstens07444262012-06-26 16:06:39 +0200224 *reg &= 0xffffffff00000000UL;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200225 *reg |= SIGP_STATUS_INVALID_PARAMETER;
Heiko Carstensea1918d2012-06-26 16:06:40 +0200226 return SIGP_CC_STATUS_STORED;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100227 }
228
229 inti = kzalloc(sizeof(*inti), GFP_KERNEL);
230 if (!inti)
Heiko Carstensea1918d2012-06-26 16:06:40 +0200231 return SIGP_CC_BUSY;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100232
Christian Borntraegerb037a4f2009-05-12 17:21:50 +0200233 spin_lock(&fi->lock);
Roel Kluin53cb7802009-08-07 10:39:25 +0200234 if (cpu_addr < KVM_MAX_VCPUS)
235 li = fi->local_int[cpu_addr];
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100236
Roel Kluin53cb7802009-08-07 10:39:25 +0200237 if (li == NULL) {
Heiko Carstens07444262012-06-26 16:06:39 +0200238 *reg &= 0xffffffff00000000UL;
239 *reg |= SIGP_STATUS_INCORRECT_STATE;
Heiko Carstensea1918d2012-06-26 16:06:40 +0200240 rc = SIGP_CC_STATUS_STORED;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100241 kfree(inti);
242 goto out_fi;
243 }
244
245 spin_lock_bh(&li->lock);
246 /* cpu must be in stopped state */
Cornelia Huck9e6dabe2011-11-17 11:00:41 +0100247 if (!(atomic_read(li->cpuflags) & CPUSTAT_STOPPED)) {
Heiko Carstens07444262012-06-26 16:06:39 +0200248 *reg &= 0xffffffff00000000UL;
249 *reg |= SIGP_STATUS_INCORRECT_STATE;
Heiko Carstensea1918d2012-06-26 16:06:40 +0200250 rc = SIGP_CC_STATUS_STORED;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100251 kfree(inti);
252 goto out_li;
253 }
254
255 inti->type = KVM_S390_SIGP_SET_PREFIX;
256 inti->prefix.address = address;
257
258 list_add_tail(&inti->list, &li->list);
259 atomic_set(&li->active, 1);
Christian Borntraegerd0321a22013-06-12 13:54:55 +0200260 if (waitqueue_active(li->wq))
261 wake_up_interruptible(li->wq);
Heiko Carstensea1918d2012-06-26 16:06:40 +0200262 rc = SIGP_CC_ORDER_CODE_ACCEPTED;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100263
264 VCPU_EVENT(vcpu, 4, "set prefix of cpu %02x to %x", cpu_addr, address);
265out_li:
266 spin_unlock_bh(&li->lock);
267out_fi:
Christian Borntraegerb037a4f2009-05-12 17:21:50 +0200268 spin_unlock(&fi->lock);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100269 return rc;
270}
271
Thomas Huth00e9e4352013-11-13 20:48:51 +0100272static int __sigp_store_status_at_addr(struct kvm_vcpu *vcpu, u16 cpu_id,
273 u32 addr, u64 *reg)
274{
275 struct kvm_vcpu *dst_vcpu = NULL;
276 int flags;
277 int rc;
278
279 if (cpu_id < KVM_MAX_VCPUS)
280 dst_vcpu = kvm_get_vcpu(vcpu->kvm, cpu_id);
281 if (!dst_vcpu)
282 return SIGP_CC_NOT_OPERATIONAL;
283
284 spin_lock_bh(&dst_vcpu->arch.local_int.lock);
285 flags = atomic_read(dst_vcpu->arch.local_int.cpuflags);
286 spin_unlock_bh(&dst_vcpu->arch.local_int.lock);
287 if (!(flags & CPUSTAT_STOPPED)) {
288 *reg &= 0xffffffff00000000UL;
289 *reg |= SIGP_STATUS_INCORRECT_STATE;
290 return SIGP_CC_STATUS_STORED;
291 }
292
293 addr &= 0x7ffffe00;
294 rc = kvm_s390_store_status_unloaded(dst_vcpu, addr);
295 if (rc == -EFAULT) {
296 *reg &= 0xffffffff00000000UL;
297 *reg |= SIGP_STATUS_INVALID_PARAMETER;
298 rc = SIGP_CC_STATUS_STORED;
299 }
300 return rc;
301}
302
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100303static int __sigp_sense_running(struct kvm_vcpu *vcpu, u16 cpu_addr,
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100304 u64 *reg)
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100305{
306 int rc;
307 struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
308
309 if (cpu_addr >= KVM_MAX_VCPUS)
Heiko Carstensea1918d2012-06-26 16:06:40 +0200310 return SIGP_CC_NOT_OPERATIONAL;
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100311
312 spin_lock(&fi->lock);
313 if (fi->local_int[cpu_addr] == NULL)
Heiko Carstensea1918d2012-06-26 16:06:40 +0200314 rc = SIGP_CC_NOT_OPERATIONAL;
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100315 else {
316 if (atomic_read(fi->local_int[cpu_addr]->cpuflags)
317 & CPUSTAT_RUNNING) {
318 /* running */
Heiko Carstensea1918d2012-06-26 16:06:40 +0200319 rc = SIGP_CC_ORDER_CODE_ACCEPTED;
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100320 } else {
321 /* not running */
322 *reg &= 0xffffffff00000000UL;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200323 *reg |= SIGP_STATUS_NOT_RUNNING;
Heiko Carstensea1918d2012-06-26 16:06:40 +0200324 rc = SIGP_CC_STATUS_STORED;
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100325 }
326 }
327 spin_unlock(&fi->lock);
328
329 VCPU_EVENT(vcpu, 4, "sensed running status of cpu %x rc %x", cpu_addr,
330 rc);
331
332 return rc;
333}
334
Jens Freimann151104a2012-02-08 08:28:29 +0100335static int __sigp_restart(struct kvm_vcpu *vcpu, u16 cpu_addr)
336{
Jens Freimann151104a2012-02-08 08:28:29 +0100337 struct kvm_s390_float_interrupt *fi = &vcpu->kvm->arch.float_int;
338 struct kvm_s390_local_interrupt *li;
Heiko Carstensea1918d2012-06-26 16:06:40 +0200339 int rc = SIGP_CC_ORDER_CODE_ACCEPTED;
Jens Freimann151104a2012-02-08 08:28:29 +0100340
341 if (cpu_addr >= KVM_MAX_VCPUS)
Heiko Carstensea1918d2012-06-26 16:06:40 +0200342 return SIGP_CC_NOT_OPERATIONAL;
Jens Freimann151104a2012-02-08 08:28:29 +0100343
344 spin_lock(&fi->lock);
345 li = fi->local_int[cpu_addr];
346 if (li == NULL) {
Heiko Carstensea1918d2012-06-26 16:06:40 +0200347 rc = SIGP_CC_NOT_OPERATIONAL;
Jens Freimann151104a2012-02-08 08:28:29 +0100348 goto out;
349 }
350
351 spin_lock_bh(&li->lock);
352 if (li->action_bits & ACTION_STOP_ON_STOP)
Heiko Carstensea1918d2012-06-26 16:06:40 +0200353 rc = SIGP_CC_BUSY;
Jens Freimann151104a2012-02-08 08:28:29 +0100354 else
355 VCPU_EVENT(vcpu, 4, "sigp restart %x to handle userspace",
356 cpu_addr);
357 spin_unlock_bh(&li->lock);
358out:
359 spin_unlock(&fi->lock);
360 return rc;
361}
362
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100363int kvm_s390_handle_sigp(struct kvm_vcpu *vcpu)
364{
365 int r1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
366 int r3 = vcpu->arch.sie_block->ipa & 0x000f;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100367 u32 parameter;
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100368 u16 cpu_addr = vcpu->run->s.regs.gprs[r3];
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100369 u8 order_code;
370 int rc;
371
Christian Borntraeger3eb77d52008-11-17 14:50:35 +0100372 /* sigp in userspace can exit */
373 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200374 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Christian Borntraeger3eb77d52008-11-17 14:50:35 +0100375
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100376 order_code = kvm_s390_get_base_disp_rs(vcpu);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100377
378 if (r1 % 2)
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100379 parameter = vcpu->run->s.regs.gprs[r1];
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100380 else
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100381 parameter = vcpu->run->s.regs.gprs[r1 + 1];
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100382
Cornelia Huck5786fff2012-07-23 17:20:29 +0200383 trace_kvm_s390_handle_sigp(vcpu, order_code, cpu_addr, parameter);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100384 switch (order_code) {
385 case SIGP_SENSE:
386 vcpu->stat.instruction_sigp_sense++;
387 rc = __sigp_sense(vcpu, cpu_addr,
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100388 &vcpu->run->s.regs.gprs[r1]);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100389 break;
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200390 case SIGP_EXTERNAL_CALL:
391 vcpu->stat.instruction_sigp_external_call++;
392 rc = __sigp_external_call(vcpu, cpu_addr);
393 break;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200394 case SIGP_EMERGENCY_SIGNAL:
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100395 vcpu->stat.instruction_sigp_emergency++;
396 rc = __sigp_emergency(vcpu, cpu_addr);
397 break;
398 case SIGP_STOP:
399 vcpu->stat.instruction_sigp_stop++;
Christian Ehrhardt9ace9032009-05-20 15:34:55 +0200400 rc = __sigp_stop(vcpu, cpu_addr, ACTION_STOP_ON_STOP);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100401 break;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200402 case SIGP_STOP_AND_STORE_STATUS:
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100403 vcpu->stat.instruction_sigp_stop++;
Jens Freimann9ec2d6d2012-02-06 10:59:06 +0100404 rc = __sigp_stop(vcpu, cpu_addr, ACTION_STORE_ON_STOP |
405 ACTION_STOP_ON_STOP);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100406 break;
Thomas Huth00e9e4352013-11-13 20:48:51 +0100407 case SIGP_STORE_STATUS_AT_ADDRESS:
408 rc = __sigp_store_status_at_addr(vcpu, cpu_addr, parameter,
409 &vcpu->run->s.regs.gprs[r1]);
410 break;
Heiko Carstensa9ae32c2012-06-04 12:55:15 +0200411 case SIGP_SET_ARCHITECTURE:
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100412 vcpu->stat.instruction_sigp_arch++;
413 rc = __sigp_set_arch(vcpu, parameter);
414 break;
415 case SIGP_SET_PREFIX:
416 vcpu->stat.instruction_sigp_prefix++;
417 rc = __sigp_set_prefix(vcpu, cpu_addr, parameter,
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100418 &vcpu->run->s.regs.gprs[r1]);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100419 break;
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100420 case SIGP_SENSE_RUNNING:
421 vcpu->stat.instruction_sigp_sense_running++;
422 rc = __sigp_sense_running(vcpu, cpu_addr,
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100423 &vcpu->run->s.regs.gprs[r1]);
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100424 break;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100425 case SIGP_RESTART:
426 vcpu->stat.instruction_sigp_restart++;
Jens Freimann151104a2012-02-08 08:28:29 +0100427 rc = __sigp_restart(vcpu, cpu_addr);
Heiko Carstensea1918d2012-06-26 16:06:40 +0200428 if (rc == SIGP_CC_BUSY)
Jens Freimann151104a2012-02-08 08:28:29 +0100429 break;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100430 /* user space must know about restart */
431 default:
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100432 return -EOPNOTSUPP;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100433 }
434
435 if (rc < 0)
436 return rc;
437
Thomas Huth949c0072013-11-26 12:27:16 +0100438 kvm_s390_set_psw_cc(vcpu, rc);
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100439 return 0;
440}