2 * sigp.c - handlinge interprocessor communication
4 * Copyright IBM Corp. 2008
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.
10 * Author(s): Carsten Otte <cotte@de.ibm.com>
11 * Christian Borntraeger <borntraeger@de.ibm.com>
14 #include <linux/kvm.h>
15 #include <linux/kvm_host.h>
19 /* sigp order codes */
20 #define SIGP_SENSE 0x01
21 #define SIGP_EXTERNAL_CALL 0x02
22 #define SIGP_EMERGENCY 0x03
23 #define SIGP_START 0x04
24 #define SIGP_STOP 0x05
25 #define SIGP_RESTART 0x06
26 #define SIGP_STOP_STORE_STATUS 0x09
27 #define SIGP_INITIAL_CPU_RESET 0x0b
28 #define SIGP_CPU_RESET 0x0c
29 #define SIGP_SET_PREFIX 0x0d
30 #define SIGP_STORE_STATUS_ADDR 0x0e
31 #define SIGP_SET_ARCH 0x12
34 #define SIGP_STAT_EQUIPMENT_CHECK 0x80000000UL
35 #define SIGP_STAT_INCORRECT_STATE 0x00000200UL
36 #define SIGP_STAT_INVALID_PARAMETER 0x00000100UL
37 #define SIGP_STAT_EXT_CALL_PENDING 0x00000080UL
38 #define SIGP_STAT_STOPPED 0x00000040UL
39 #define SIGP_STAT_OPERATOR_INTERV 0x00000020UL
40 #define SIGP_STAT_CHECK_STOP 0x00000010UL
41 #define SIGP_STAT_INOPERATIVE 0x00000004UL
42 #define SIGP_STAT_INVALID_ORDER 0x00000002UL
43 #define SIGP_STAT_RECEIVER_CHECK 0x00000001UL
46 static int __sigp_sense(struct kvm_vcpu *vcpu, u16 cpu_addr, u64 *reg)
48 struct float_interrupt *fi = &vcpu->kvm->arch.float_int;
51 if (cpu_addr >= KVM_MAX_VCPUS)
52 return 3; /* not operational */
54 spin_lock_bh(&fi->lock);
55 if (fi->local_int[cpu_addr] == NULL)
56 rc = 3; /* not operational */
57 else if (atomic_read(fi->local_int[cpu_addr]->cpuflags)
59 *reg &= 0xffffffff00000000UL;
60 rc = 1; /* status stored */
62 *reg &= 0xffffffff00000000UL;
63 *reg |= SIGP_STAT_STOPPED;
64 rc = 1; /* status stored */
66 spin_unlock_bh(&fi->lock);
68 VCPU_EVENT(vcpu, 4, "sensed status of cpu %x rc %x", cpu_addr, rc);
72 static int __sigp_emergency(struct kvm_vcpu *vcpu, u16 cpu_addr)
74 struct float_interrupt *fi = &vcpu->kvm->arch.float_int;
75 struct local_interrupt *li;
76 struct interrupt_info *inti;
79 if (cpu_addr >= KVM_MAX_VCPUS)
80 return 3; /* not operational */
82 inti = kzalloc(sizeof(*inti), GFP_KERNEL);
86 inti->type = KVM_S390_INT_EMERGENCY;
88 spin_lock_bh(&fi->lock);
89 li = fi->local_int[cpu_addr];
91 rc = 3; /* not operational */
95 spin_lock_bh(&li->lock);
96 list_add_tail(&inti->list, &li->list);
97 atomic_set(&li->active, 1);
98 atomic_set_mask(CPUSTAT_EXT_INT, li->cpuflags);
99 if (waitqueue_active(&li->wq))
100 wake_up_interruptible(&li->wq);
101 spin_unlock_bh(&li->lock);
102 rc = 0; /* order accepted */
104 spin_unlock_bh(&fi->lock);
105 VCPU_EVENT(vcpu, 4, "sent sigp emerg to cpu %x", cpu_addr);
109 static int __sigp_stop(struct kvm_vcpu *vcpu, u16 cpu_addr, int store)
111 struct float_interrupt *fi = &vcpu->kvm->arch.float_int;
112 struct local_interrupt *li;
113 struct interrupt_info *inti;
116 if (cpu_addr >= KVM_MAX_VCPUS)
117 return 3; /* not operational */
119 inti = kzalloc(sizeof(*inti), GFP_KERNEL);
123 inti->type = KVM_S390_SIGP_STOP;
125 spin_lock_bh(&fi->lock);
126 li = fi->local_int[cpu_addr];
128 rc = 3; /* not operational */
132 spin_lock_bh(&li->lock);
133 list_add_tail(&inti->list, &li->list);
134 atomic_set(&li->active, 1);
135 atomic_set_mask(CPUSTAT_STOP_INT, li->cpuflags);
137 li->action_bits |= ACTION_STORE_ON_STOP;
138 li->action_bits |= ACTION_STOP_ON_STOP;
139 if (waitqueue_active(&li->wq))
140 wake_up_interruptible(&li->wq);
141 spin_unlock_bh(&li->lock);
142 rc = 0; /* order accepted */
144 spin_unlock_bh(&fi->lock);
145 VCPU_EVENT(vcpu, 4, "sent sigp stop to cpu %x", cpu_addr);
149 static int __sigp_set_arch(struct kvm_vcpu *vcpu, u32 parameter)
153 switch (parameter & 0xff) {
155 printk(KERN_WARNING "kvm: request to switch to ESA/390 mode"
157 rc = 3; /* not operational */
161 rc = 0; /* order accepted */
169 static int __sigp_set_prefix(struct kvm_vcpu *vcpu, u16 cpu_addr, u32 address,
172 struct float_interrupt *fi = &vcpu->kvm->arch.float_int;
173 struct local_interrupt *li;
174 struct interrupt_info *inti;
178 /* make sure that the new value is valid memory */
179 address = address & 0x7fffe000u;
180 if ((copy_from_guest(vcpu, &tmp,
181 (u64) (address + vcpu->kvm->arch.guest_origin) , 1)) ||
182 (copy_from_guest(vcpu, &tmp, (u64) (address +
183 vcpu->kvm->arch.guest_origin + PAGE_SIZE), 1))) {
184 *reg |= SIGP_STAT_INVALID_PARAMETER;
185 return 1; /* invalid parameter */
188 inti = kzalloc(sizeof(*inti), GFP_KERNEL);
192 spin_lock_bh(&fi->lock);
193 li = fi->local_int[cpu_addr];
195 if ((cpu_addr >= KVM_MAX_VCPUS) || (li == NULL)) {
196 rc = 1; /* incorrect state */
197 *reg &= SIGP_STAT_INCORRECT_STATE;
202 spin_lock_bh(&li->lock);
203 /* cpu must be in stopped state */
204 if (atomic_read(li->cpuflags) & CPUSTAT_RUNNING) {
205 rc = 1; /* incorrect state */
206 *reg &= SIGP_STAT_INCORRECT_STATE;
211 inti->type = KVM_S390_SIGP_SET_PREFIX;
212 inti->prefix.address = address;
214 list_add_tail(&inti->list, &li->list);
215 atomic_set(&li->active, 1);
216 if (waitqueue_active(&li->wq))
217 wake_up_interruptible(&li->wq);
218 rc = 0; /* order accepted */
220 VCPU_EVENT(vcpu, 4, "set prefix of cpu %02x to %x", cpu_addr, address);
222 spin_unlock_bh(&li->lock);
224 spin_unlock_bh(&fi->lock);
228 int kvm_s390_handle_sigp(struct kvm_vcpu *vcpu)
230 int r1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
231 int r3 = vcpu->arch.sie_block->ipa & 0x000f;
232 int base2 = vcpu->arch.sie_block->ipb >> 28;
233 int disp2 = ((vcpu->arch.sie_block->ipb & 0x0fff0000) >> 16);
235 u16 cpu_addr = vcpu->arch.guest_gprs[r3];
241 order_code += vcpu->arch.guest_gprs[base2];
244 parameter = vcpu->arch.guest_gprs[r1];
246 parameter = vcpu->arch.guest_gprs[r1 + 1];
248 switch (order_code) {
250 vcpu->stat.instruction_sigp_sense++;
251 rc = __sigp_sense(vcpu, cpu_addr,
252 &vcpu->arch.guest_gprs[r1]);
255 vcpu->stat.instruction_sigp_emergency++;
256 rc = __sigp_emergency(vcpu, cpu_addr);
259 vcpu->stat.instruction_sigp_stop++;
260 rc = __sigp_stop(vcpu, cpu_addr, 0);
262 case SIGP_STOP_STORE_STATUS:
263 vcpu->stat.instruction_sigp_stop++;
264 rc = __sigp_stop(vcpu, cpu_addr, 1);
267 vcpu->stat.instruction_sigp_arch++;
268 rc = __sigp_set_arch(vcpu, parameter);
270 case SIGP_SET_PREFIX:
271 vcpu->stat.instruction_sigp_prefix++;
272 rc = __sigp_set_prefix(vcpu, cpu_addr, parameter,
273 &vcpu->arch.guest_gprs[r1]);
276 vcpu->stat.instruction_sigp_restart++;
277 /* user space must know about restart */
285 vcpu->arch.sie_block->gpsw.mask &= ~(3ul << 44);
286 vcpu->arch.sie_block->gpsw.mask |= (rc & 3ul) << 44;