blob: afefa3bb2f13c39b0217f890c69a9bd7a99c5e3b [file] [log] [blame]
Christian Borntraeger453423d2008-03-25 18:47:29 +01001/*
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02002 * handling privileged instructions
Christian Borntraeger453423d2008-03-25 18:47:29 +01003 *
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +02004 * Copyright IBM Corp. 2008, 2013
Christian Borntraeger453423d2008-03-25 18:47:29 +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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/gfp.h>
Christian Borntraeger453423d2008-03-25 18:47:29 +010016#include <linux/errno.h>
Heiko Carstensb13b5dc2013-03-25 17:22:55 +010017#include <linux/compat.h>
Heiko Carstens7c959e82013-03-05 13:14:46 +010018#include <asm/asm-offsets.h>
Heiko Carstense769ece2013-07-26 15:04:01 +020019#include <asm/facility.h>
Christian Borntraeger453423d2008-03-25 18:47:29 +010020#include <asm/current.h>
21#include <asm/debug.h>
22#include <asm/ebcdic.h>
23#include <asm/sysinfo.h>
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +020024#include <asm/pgtable.h>
25#include <asm/pgalloc.h>
26#include <asm/io.h>
Cornelia Huck48a3e952012-12-20 15:32:09 +010027#include <asm/ptrace.h>
28#include <asm/compat.h>
Christian Borntraeger453423d2008-03-25 18:47:29 +010029#include "gaccess.h"
30#include "kvm-s390.h"
Cornelia Huck5786fff2012-07-23 17:20:29 +020031#include "trace.h"
Christian Borntraeger453423d2008-03-25 18:47:29 +010032
Thomas Huth6a3f95a2013-09-12 10:33:49 +020033/* Handle SCK (SET CLOCK) interception */
34static int handle_set_clock(struct kvm_vcpu *vcpu)
35{
36 struct kvm_vcpu *cpup;
37 s64 hostclk, val;
Heiko Carstens0e7a3f92014-01-01 16:50:11 +010038 int i, rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030039 ar_t ar;
Thomas Huth6a3f95a2013-09-12 10:33:49 +020040 u64 op2;
Thomas Huth6a3f95a2013-09-12 10:33:49 +020041
42 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
43 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
44
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030045 op2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Thomas Huth6a3f95a2013-09-12 10:33:49 +020046 if (op2 & 7) /* Operand must be on a doubleword boundary */
47 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030048 rc = read_guest(vcpu, op2, ar, &val, sizeof(val));
Heiko Carstens0e7a3f92014-01-01 16:50:11 +010049 if (rc)
50 return kvm_s390_inject_prog_cond(vcpu, rc);
Thomas Huth6a3f95a2013-09-12 10:33:49 +020051
52 if (store_tod_clock(&hostclk)) {
53 kvm_s390_set_psw_cc(vcpu, 3);
54 return 0;
55 }
Christian Borntraeger7cbde762015-07-21 12:44:57 +020056 VCPU_EVENT(vcpu, 3, "SCK: setting guest TOD to 0x%llx", val);
Thomas Huth6a3f95a2013-09-12 10:33:49 +020057 val = (val - hostclk) & ~0x3fUL;
58
59 mutex_lock(&vcpu->kvm->lock);
60 kvm_for_each_vcpu(i, cpup, vcpu->kvm)
61 cpup->arch.sie_block->epoch = val;
62 mutex_unlock(&vcpu->kvm->lock);
63
64 kvm_s390_set_psw_cc(vcpu, 0);
65 return 0;
66}
67
Christian Borntraeger453423d2008-03-25 18:47:29 +010068static int handle_set_prefix(struct kvm_vcpu *vcpu)
69{
Christian Borntraeger453423d2008-03-25 18:47:29 +010070 u64 operand2;
Heiko Carstens665170c2014-01-01 16:47:12 +010071 u32 address;
72 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030073 ar_t ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +010074
75 vcpu->stat.instruction_spx++;
76
Thomas Huth5087dfa2013-06-20 17:22:01 +020077 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
78 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
79
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030080 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +010081
82 /* must be word boundary */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010083 if (operand2 & 3)
84 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +010085
86 /* get the value */
Alexander Yarygin8ae04b82015-01-19 13:24:51 +030087 rc = read_guest(vcpu, operand2, ar, &address, sizeof(address));
Heiko Carstens665170c2014-01-01 16:47:12 +010088 if (rc)
89 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +010090
Heiko Carstens665170c2014-01-01 16:47:12 +010091 address &= 0x7fffe000u;
Christian Borntraeger453423d2008-03-25 18:47:29 +010092
Heiko Carstens665170c2014-01-01 16:47:12 +010093 /*
94 * Make sure the new value is valid memory. We only need to check the
95 * first page, since address is 8k aligned and memory pieces are always
96 * at least 1MB aligned and have at least a size of 1MB.
97 */
98 if (kvm_is_error_gpa(vcpu->kvm, address))
Heiko Carstensdb4a29c2013-03-25 17:22:53 +010099 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100100
Christian Borntraeger8d26cf72012-01-11 11:19:32 +0100101 kvm_s390_set_prefix(vcpu, address);
Cornelia Huck5786fff2012-07-23 17:20:29 +0200102 trace_kvm_s390_handle_prefix(vcpu, 1, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100103 return 0;
104}
105
106static int handle_store_prefix(struct kvm_vcpu *vcpu)
107{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100108 u64 operand2;
109 u32 address;
Heiko Carstensf748f4a2014-01-01 16:52:47 +0100110 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300111 ar_t ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100112
113 vcpu->stat.instruction_stpx++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100114
Thomas Huth5087dfa2013-06-20 17:22:01 +0200115 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
116 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
117
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300118 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100119
120 /* must be word boundary */
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100121 if (operand2 & 3)
122 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100123
Michael Muellerfda902c2014-05-13 16:58:30 +0200124 address = kvm_s390_get_prefix(vcpu);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100125
126 /* get the value */
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300127 rc = write_guest(vcpu, operand2, ar, &address, sizeof(address));
Heiko Carstensf748f4a2014-01-01 16:52:47 +0100128 if (rc)
129 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100130
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200131 VCPU_EVENT(vcpu, 3, "STPX: storing prefix 0x%x into 0x%llx", address, operand2);
Cornelia Huck5786fff2012-07-23 17:20:29 +0200132 trace_kvm_s390_handle_prefix(vcpu, 0, address);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100133 return 0;
134}
135
136static int handle_store_cpu_address(struct kvm_vcpu *vcpu)
137{
Heiko Carstens8b96de02014-01-01 16:53:27 +0100138 u16 vcpu_id = vcpu->vcpu_id;
139 u64 ga;
140 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300141 ar_t ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100142
143 vcpu->stat.instruction_stap++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100144
Thomas Huth5087dfa2013-06-20 17:22:01 +0200145 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
146 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
147
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300148 ga = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100149
Heiko Carstens8b96de02014-01-01 16:53:27 +0100150 if (ga & 1)
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100151 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100152
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300153 rc = write_guest(vcpu, ga, ar, &vcpu_id, sizeof(vcpu_id));
Heiko Carstens8b96de02014-01-01 16:53:27 +0100154 if (rc)
155 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100156
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200157 VCPU_EVENT(vcpu, 3, "STAP: storing cpu address (%u) to 0x%llx", vcpu_id, ga);
Heiko Carstens8b96de02014-01-01 16:53:27 +0100158 trace_kvm_s390_handle_stap(vcpu, ga);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100159 return 0;
160}
161
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200162static int __skey_check_enable(struct kvm_vcpu *vcpu)
Dominik Dingel693ffc02014-01-14 18:11:14 +0100163{
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200164 int rc = 0;
Dominik Dingel693ffc02014-01-14 18:11:14 +0100165 if (!(vcpu->arch.sie_block->ictl & (ICTL_ISKE | ICTL_SSKE | ICTL_RRBE)))
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200166 return rc;
Dominik Dingel693ffc02014-01-14 18:11:14 +0100167
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200168 rc = s390_enable_skey();
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200169 VCPU_EVENT(vcpu, 3, "%s", "enabling storage keys for guest");
Dominik Dingel693ffc02014-01-14 18:11:14 +0100170 trace_kvm_s390_skey_related_inst(vcpu);
171 vcpu->arch.sie_block->ictl &= ~(ICTL_ISKE | ICTL_SSKE | ICTL_RRBE);
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200172 return rc;
Dominik Dingel693ffc02014-01-14 18:11:14 +0100173}
174
175
Christian Borntraeger453423d2008-03-25 18:47:29 +0100176static int handle_skey(struct kvm_vcpu *vcpu)
177{
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200178 int rc = __skey_check_enable(vcpu);
Dominik Dingel693ffc02014-01-14 18:11:14 +0100179
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200180 if (rc)
181 return rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100182 vcpu->stat.instruction_storage_key++;
Thomas Huth5087dfa2013-06-20 17:22:01 +0200183
184 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
185 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
186
Thomas Huth04b41ac2014-11-12 17:13:29 +0100187 kvm_s390_rewind_psw(vcpu, 4);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100188 VCPU_EVENT(vcpu, 4, "%s", "retrying storage key operation");
189 return 0;
190}
191
Heiko Carstens8a2422342014-01-10 14:33:28 +0100192static int handle_ipte_interlock(struct kvm_vcpu *vcpu)
193{
Heiko Carstens8a2422342014-01-10 14:33:28 +0100194 vcpu->stat.instruction_ipte_interlock++;
Thomas Huth04b41ac2014-11-12 17:13:29 +0100195 if (psw_bits(vcpu->arch.sie_block->gpsw).p)
Heiko Carstens8a2422342014-01-10 14:33:28 +0100196 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
197 wait_event(vcpu->kvm->arch.ipte_wq, !ipte_lock_held(vcpu));
Thomas Huth04b41ac2014-11-12 17:13:29 +0100198 kvm_s390_rewind_psw(vcpu, 4);
Heiko Carstens8a2422342014-01-10 14:33:28 +0100199 VCPU_EVENT(vcpu, 4, "%s", "retrying ipte interlock operation");
200 return 0;
201}
202
Thomas Huthaca84242013-09-12 10:33:48 +0200203static int handle_test_block(struct kvm_vcpu *vcpu)
204{
Thomas Huthaca84242013-09-12 10:33:48 +0200205 gpa_t addr;
206 int reg2;
207
208 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
209 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
210
211 kvm_s390_get_regs_rre(vcpu, NULL, &reg2);
212 addr = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
Thomas Huthe45efa22014-03-07 12:14:23 +0100213 addr = kvm_s390_logical_to_effective(vcpu, addr);
Alexander Yarygindd9e5b72015-03-03 14:26:14 +0300214 if (kvm_s390_check_low_addr_prot_real(vcpu, addr))
Thomas Huthe45efa22014-03-07 12:14:23 +0100215 return kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm);
Thomas Huthaca84242013-09-12 10:33:48 +0200216 addr = kvm_s390_real_to_abs(vcpu, addr);
217
Heiko Carstensef23e772014-01-01 16:53:49 +0100218 if (kvm_is_error_gpa(vcpu->kvm, addr))
Thomas Huthaca84242013-09-12 10:33:48 +0200219 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
220 /*
221 * We don't expect errors on modern systems, and do not care
222 * about storage keys (yet), so let's just clear the page.
223 */
Heiko Carstensef23e772014-01-01 16:53:49 +0100224 if (kvm_clear_guest(vcpu->kvm, addr, PAGE_SIZE))
Thomas Huthaca84242013-09-12 10:33:48 +0200225 return -EFAULT;
226 kvm_s390_set_psw_cc(vcpu, 0);
227 vcpu->run->s.regs.gprs[0] = 0;
228 return 0;
229}
230
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100231static int handle_tpi(struct kvm_vcpu *vcpu)
232{
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100233 struct kvm_s390_interrupt_info *inti;
Heiko Carstens4799b552014-01-01 16:55:48 +0100234 unsigned long len;
235 u32 tpi_data[3];
David Hildenbrand261520d2015-02-04 15:53:42 +0100236 int rc;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100237 u64 addr;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300238 ar_t ar;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100239
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300240 addr = kvm_s390_get_base_disp_s(vcpu, &ar);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100241 if (addr & 3)
242 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
David Hildenbrand261520d2015-02-04 15:53:42 +0100243
Thomas Huthf0926692013-10-09 14:15:54 +0200244 inti = kvm_s390_get_io_int(vcpu->kvm, vcpu->arch.sie_block->gcr[6], 0);
David Hildenbrand261520d2015-02-04 15:53:42 +0100245 if (!inti) {
246 kvm_s390_set_psw_cc(vcpu, 0);
247 return 0;
248 }
249
Heiko Carstens4799b552014-01-01 16:55:48 +0100250 tpi_data[0] = inti->io.subchannel_id << 16 | inti->io.subchannel_nr;
251 tpi_data[1] = inti->io.io_int_parm;
252 tpi_data[2] = inti->io.io_int_word;
Heiko Carstens7c959e82013-03-05 13:14:46 +0100253 if (addr) {
254 /*
255 * Store the two-word I/O interruption code into the
256 * provided area.
257 */
Heiko Carstens4799b552014-01-01 16:55:48 +0100258 len = sizeof(tpi_data) - 4;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300259 rc = write_guest(vcpu, addr, ar, &tpi_data, len);
David Hildenbrand261520d2015-02-04 15:53:42 +0100260 if (rc) {
261 rc = kvm_s390_inject_prog_cond(vcpu, rc);
262 goto reinject_interrupt;
263 }
Heiko Carstens7c959e82013-03-05 13:14:46 +0100264 } else {
265 /*
266 * Store the three-word I/O interruption code into
267 * the appropriate lowcore area.
268 */
Heiko Carstens4799b552014-01-01 16:55:48 +0100269 len = sizeof(tpi_data);
David Hildenbrand261520d2015-02-04 15:53:42 +0100270 if (write_guest_lc(vcpu, __LC_SUBCHANNEL_ID, &tpi_data, len)) {
271 /* failed writes to the low core are not recoverable */
Heiko Carstens4799b552014-01-01 16:55:48 +0100272 rc = -EFAULT;
David Hildenbrand261520d2015-02-04 15:53:42 +0100273 goto reinject_interrupt;
274 }
Heiko Carstens7c959e82013-03-05 13:14:46 +0100275 }
David Hildenbrand261520d2015-02-04 15:53:42 +0100276
277 /* irq was successfully handed to the guest */
278 kfree(inti);
279 kvm_s390_set_psw_cc(vcpu, 1);
280 return 0;
281reinject_interrupt:
Cornelia Huck2f32d4e2014-01-08 18:07:54 +0100282 /*
283 * If we encounter a problem storing the interruption code, the
284 * instruction is suppressed from the guest's view: reinject the
285 * interrupt.
286 */
David Hildenbrand15462e32015-02-04 15:59:11 +0100287 if (kvm_s390_reinject_io_int(vcpu->kvm, inti)) {
288 kfree(inti);
289 rc = -EFAULT;
290 }
David Hildenbrand261520d2015-02-04 15:53:42 +0100291 /* don't set the cc, a pgm irq was injected or we drop to user space */
Heiko Carstens4799b552014-01-01 16:55:48 +0100292 return rc ? -EFAULT : 0;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100293}
294
295static int handle_tsch(struct kvm_vcpu *vcpu)
296{
Jens Freimann6d3da242013-07-03 15:18:35 +0200297 struct kvm_s390_interrupt_info *inti = NULL;
298 const u64 isc_mask = 0xffUL << 24; /* all iscs set */
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100299
Jens Freimann6d3da242013-07-03 15:18:35 +0200300 /* a valid schid has at least one bit set */
301 if (vcpu->run->s.regs.gprs[1])
302 inti = kvm_s390_get_io_int(vcpu->kvm, isc_mask,
303 vcpu->run->s.regs.gprs[1]);
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100304
305 /*
306 * Prepare exit to userspace.
307 * We indicate whether we dequeued a pending I/O interrupt
308 * so that userspace can re-inject it if the instruction gets
309 * a program check. While this may re-order the pending I/O
310 * interrupts, this is no problem since the priority is kept
311 * intact.
312 */
313 vcpu->run->exit_reason = KVM_EXIT_S390_TSCH;
314 vcpu->run->s390_tsch.dequeued = !!inti;
315 if (inti) {
316 vcpu->run->s390_tsch.subchannel_id = inti->io.subchannel_id;
317 vcpu->run->s390_tsch.subchannel_nr = inti->io.subchannel_nr;
318 vcpu->run->s390_tsch.io_int_parm = inti->io.io_int_parm;
319 vcpu->run->s390_tsch.io_int_word = inti->io.io_int_word;
320 }
321 vcpu->run->s390_tsch.ipb = vcpu->arch.sie_block->ipb;
322 kfree(inti);
323 return -EREMOTE;
324}
325
Cornelia Huckf379aae2012-12-20 15:32:10 +0100326static int handle_io_inst(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100327{
Cornelia Huckf379aae2012-12-20 15:32:10 +0100328 VCPU_EVENT(vcpu, 4, "%s", "I/O instruction");
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100329
Thomas Huth5087dfa2013-06-20 17:22:01 +0200330 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
331 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
332
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100333 if (vcpu->kvm->arch.css_support) {
334 /*
335 * Most I/O instructions will be handled by userspace.
336 * Exceptions are tpi and the interrupt portion of tsch.
337 */
338 if (vcpu->arch.sie_block->ipa == 0xb236)
339 return handle_tpi(vcpu);
340 if (vcpu->arch.sie_block->ipa == 0xb235)
341 return handle_tsch(vcpu);
342 /* Handle in userspace. */
343 return -EOPNOTSUPP;
344 } else {
345 /*
Hendrik Bruecknerb4a96012013-12-13 12:53:42 +0100346 * Set condition code 3 to stop the guest from issuing channel
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100347 * I/O instructions.
348 */
Thomas Huthea828eb2013-07-26 15:04:06 +0200349 kvm_s390_set_psw_cc(vcpu, 3);
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100350 return 0;
351 }
Christian Borntraeger453423d2008-03-25 18:47:29 +0100352}
353
Christian Borntraeger453423d2008-03-25 18:47:29 +0100354static int handle_stfl(struct kvm_vcpu *vcpu)
355{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100356 int rc;
Michael Mueller9d8d5782015-02-02 15:42:51 +0100357 unsigned int fac;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100358
359 vcpu->stat.instruction_stfl++;
Thomas Huth5087dfa2013-06-20 17:22:01 +0200360
361 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
362 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
363
Michael Mueller9d8d5782015-02-02 15:42:51 +0100364 /*
365 * We need to shift the lower 32 facility bits (bit 0-31) from a u64
366 * into a u32 memory representation. They will remain bits 0-31.
367 */
Michael Mueller981467c2015-02-24 13:51:04 +0100368 fac = *vcpu->kvm->arch.model.fac->list >> 32;
Heiko Carstens0f9701c2014-01-01 16:56:41 +0100369 rc = write_guest_lc(vcpu, offsetof(struct _lowcore, stfl_fac_list),
Michael Mueller9d8d5782015-02-02 15:42:51 +0100370 &fac, sizeof(fac));
Heiko Carstensdc5008b2013-03-05 13:14:43 +0100371 if (rc)
Heiko Carstens0f9701c2014-01-01 16:56:41 +0100372 return rc;
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200373 VCPU_EVENT(vcpu, 3, "STFL: store facility list 0x%x", fac);
Michael Mueller9d8d5782015-02-02 15:42:51 +0100374 trace_kvm_s390_handle_stfl(vcpu, fac);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100375 return 0;
376}
377
Cornelia Huck48a3e952012-12-20 15:32:09 +0100378#define PSW_MASK_ADDR_MODE (PSW_MASK_EA | PSW_MASK_BA)
379#define PSW_MASK_UNASSIGNED 0xb80800fe7fffffffUL
Heiko Carstensd21683e2013-03-25 17:22:49 +0100380#define PSW_ADDR_24 0x0000000000ffffffUL
Cornelia Huck48a3e952012-12-20 15:32:09 +0100381#define PSW_ADDR_31 0x000000007fffffffUL
382
Thomas Hutha3fb5772014-04-17 09:10:40 +0200383int is_valid_psw(psw_t *psw)
384{
Heiko Carstens3736b872013-03-25 17:22:52 +0100385 if (psw->mask & PSW_MASK_UNASSIGNED)
386 return 0;
387 if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_BA) {
388 if (psw->addr & ~PSW_ADDR_31)
389 return 0;
390 }
391 if (!(psw->mask & PSW_MASK_ADDR_MODE) && (psw->addr & ~PSW_ADDR_24))
392 return 0;
393 if ((psw->mask & PSW_MASK_ADDR_MODE) == PSW_MASK_EA)
394 return 0;
Thomas Hutha3fb5772014-04-17 09:10:40 +0200395 if (psw->addr & 1)
396 return 0;
Heiko Carstens3736b872013-03-25 17:22:52 +0100397 return 1;
398}
399
Cornelia Huck48a3e952012-12-20 15:32:09 +0100400int kvm_s390_handle_lpsw(struct kvm_vcpu *vcpu)
401{
Heiko Carstens3736b872013-03-25 17:22:52 +0100402 psw_t *gpsw = &vcpu->arch.sie_block->gpsw;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100403 psw_compat_t new_psw;
Heiko Carstens3736b872013-03-25 17:22:52 +0100404 u64 addr;
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100405 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300406 ar_t ar;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100407
Heiko Carstens3736b872013-03-25 17:22:52 +0100408 if (gpsw->mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200409 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
410
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300411 addr = kvm_s390_get_base_disp_s(vcpu, &ar);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100412 if (addr & 7)
413 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100414
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300415 rc = read_guest(vcpu, addr, ar, &new_psw, sizeof(new_psw));
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100416 if (rc)
417 return kvm_s390_inject_prog_cond(vcpu, rc);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100418 if (!(new_psw.mask & PSW32_MASK_BASE))
419 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Heiko Carstens3736b872013-03-25 17:22:52 +0100420 gpsw->mask = (new_psw.mask & ~PSW32_MASK_BASE) << 32;
421 gpsw->mask |= new_psw.addr & PSW32_ADDR_AMODE;
422 gpsw->addr = new_psw.addr & ~PSW32_ADDR_AMODE;
423 if (!is_valid_psw(gpsw))
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100424 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100425 return 0;
426}
427
428static int handle_lpswe(struct kvm_vcpu *vcpu)
429{
Cornelia Huck48a3e952012-12-20 15:32:09 +0100430 psw_t new_psw;
Heiko Carstens3736b872013-03-25 17:22:52 +0100431 u64 addr;
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100432 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300433 ar_t ar;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100434
Thomas Huth5087dfa2013-06-20 17:22:01 +0200435 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
436 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
437
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300438 addr = kvm_s390_get_base_disp_s(vcpu, &ar);
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100439 if (addr & 7)
440 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300441 rc = read_guest(vcpu, addr, ar, &new_psw, sizeof(new_psw));
Heiko Carstens2d8bcae2014-01-01 16:57:42 +0100442 if (rc)
443 return kvm_s390_inject_prog_cond(vcpu, rc);
Heiko Carstens3736b872013-03-25 17:22:52 +0100444 vcpu->arch.sie_block->gpsw = new_psw;
445 if (!is_valid_psw(&vcpu->arch.sie_block->gpsw))
Heiko Carstens6fd0fcc2013-03-25 17:22:51 +0100446 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100447 return 0;
448}
449
Christian Borntraeger453423d2008-03-25 18:47:29 +0100450static int handle_stidp(struct kvm_vcpu *vcpu)
451{
Heiko Carstens7d777d72014-01-01 16:58:16 +0100452 u64 stidp_data = vcpu->arch.stidp_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100453 u64 operand2;
Heiko Carstens7d777d72014-01-01 16:58:16 +0100454 int rc;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300455 ar_t ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100456
457 vcpu->stat.instruction_stidp++;
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100458
Thomas Huth5087dfa2013-06-20 17:22:01 +0200459 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
460 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
461
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300462 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100463
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100464 if (operand2 & 7)
465 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100466
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300467 rc = write_guest(vcpu, operand2, ar, &stidp_data, sizeof(stidp_data));
Heiko Carstens7d777d72014-01-01 16:58:16 +0100468 if (rc)
469 return kvm_s390_inject_prog_cond(vcpu, rc);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100470
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200471 VCPU_EVENT(vcpu, 3, "STIDP: store cpu id 0x%llx", stidp_data);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100472 return 0;
473}
474
475static void handle_stsi_3_2_2(struct kvm_vcpu *vcpu, struct sysinfo_3_2_2 *mem)
476{
Christian Borntraeger453423d2008-03-25 18:47:29 +0100477 int cpus = 0;
478 int n;
479
Jens Freimannff520a62014-02-24 10:11:41 +0100480 cpus = atomic_read(&vcpu->kvm->online_vcpus);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100481
482 /* deal with other level 3 hypervisors */
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200483 if (stsi(mem, 3, 2, 2))
Christian Borntraeger453423d2008-03-25 18:47:29 +0100484 mem->count = 0;
485 if (mem->count < 8)
486 mem->count++;
487 for (n = mem->count - 1; n > 0 ; n--)
488 memcpy(&mem->vm[n], &mem->vm[n - 1], sizeof(mem->vm[0]));
489
Ekaterina Tumanovab75f4c92015-03-03 09:54:41 +0100490 memset(&mem->vm[0], 0, sizeof(mem->vm[0]));
Christian Borntraeger453423d2008-03-25 18:47:29 +0100491 mem->vm[0].cpus_total = cpus;
492 mem->vm[0].cpus_configured = cpus;
493 mem->vm[0].cpus_standby = 0;
494 mem->vm[0].cpus_reserved = 0;
495 mem->vm[0].caf = 1000;
496 memcpy(mem->vm[0].name, "KVMguest", 8);
497 ASCEBC(mem->vm[0].name, 8);
498 memcpy(mem->vm[0].cpi, "KVM/Linux ", 16);
499 ASCEBC(mem->vm[0].cpi, 16);
500}
501
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100502static void insert_stsi_usr_data(struct kvm_vcpu *vcpu, u64 addr, ar_t ar,
503 u8 fc, u8 sel1, u16 sel2)
504{
505 vcpu->run->exit_reason = KVM_EXIT_S390_STSI;
506 vcpu->run->s390_stsi.addr = addr;
507 vcpu->run->s390_stsi.ar = ar;
508 vcpu->run->s390_stsi.fc = fc;
509 vcpu->run->s390_stsi.sel1 = sel1;
510 vcpu->run->s390_stsi.sel2 = sel2;
511}
512
Christian Borntraeger453423d2008-03-25 18:47:29 +0100513static int handle_stsi(struct kvm_vcpu *vcpu)
514{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100515 int fc = (vcpu->run->s.regs.gprs[0] & 0xf0000000) >> 28;
516 int sel1 = vcpu->run->s.regs.gprs[0] & 0xff;
517 int sel2 = vcpu->run->s.regs.gprs[1] & 0xffff;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100518 unsigned long mem = 0;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100519 u64 operand2;
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100520 int rc = 0;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300521 ar_t ar;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100522
523 vcpu->stat.instruction_stsi++;
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200524 VCPU_EVENT(vcpu, 3, "STSI: fc: %u sel1: %u sel2: %u", fc, sel1, sel2);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100525
Thomas Huth5087dfa2013-06-20 17:22:01 +0200526 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
527 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
528
Thomas Huth87d41fb2013-06-20 17:22:05 +0200529 if (fc > 3) {
Thomas Huthea828eb2013-07-26 15:04:06 +0200530 kvm_s390_set_psw_cc(vcpu, 3);
Thomas Huth87d41fb2013-06-20 17:22:05 +0200531 return 0;
532 }
533
534 if (vcpu->run->s.regs.gprs[0] & 0x0fffff00
535 || vcpu->run->s.regs.gprs[1] & 0xffff0000)
536 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
537
538 if (fc == 0) {
539 vcpu->run->s.regs.gprs[0] = 3 << 28;
Thomas Huthea828eb2013-07-26 15:04:06 +0200540 kvm_s390_set_psw_cc(vcpu, 0);
Thomas Huth87d41fb2013-06-20 17:22:05 +0200541 return 0;
542 }
543
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300544 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100545
Thomas Huth87d41fb2013-06-20 17:22:05 +0200546 if (operand2 & 0xfff)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100547 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
548
549 switch (fc) {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100550 case 1: /* same handling for 1 and 2 */
551 case 2:
552 mem = get_zeroed_page(GFP_KERNEL);
553 if (!mem)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100554 goto out_no_data;
Heiko Carstenscaf757c2012-09-06 14:42:13 +0200555 if (stsi((void *) mem, fc, sel1, sel2))
Heiko Carstensc51f0682013-03-25 17:22:54 +0100556 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100557 break;
558 case 3:
559 if (sel1 != 2 || sel2 != 2)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100560 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100561 mem = get_zeroed_page(GFP_KERNEL);
562 if (!mem)
Heiko Carstensc51f0682013-03-25 17:22:54 +0100563 goto out_no_data;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100564 handle_stsi_3_2_2(vcpu, (void *) mem);
565 break;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100566 }
567
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300568 rc = write_guest(vcpu, operand2, ar, (void *)mem, PAGE_SIZE);
Heiko Carstens645c5bc2014-01-01 16:58:59 +0100569 if (rc) {
570 rc = kvm_s390_inject_prog_cond(vcpu, rc);
571 goto out;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100572 }
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100573 if (vcpu->kvm->arch.user_stsi) {
574 insert_stsi_usr_data(vcpu, operand2, ar, fc, sel1, sel2);
575 rc = -EREMOTE;
576 }
Cornelia Huck5786fff2012-07-23 17:20:29 +0200577 trace_kvm_s390_handle_stsi(vcpu, fc, sel1, sel2, operand2);
Christian Borntraeger453423d2008-03-25 18:47:29 +0100578 free_page(mem);
Thomas Huthea828eb2013-07-26 15:04:06 +0200579 kvm_s390_set_psw_cc(vcpu, 0);
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100580 vcpu->run->s.regs.gprs[0] = 0;
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100581 return rc;
Heiko Carstensc51f0682013-03-25 17:22:54 +0100582out_no_data:
Thomas Huthea828eb2013-07-26 15:04:06 +0200583 kvm_s390_set_psw_cc(vcpu, 3);
Heiko Carstens645c5bc2014-01-01 16:58:59 +0100584out:
Heiko Carstensc51f0682013-03-25 17:22:54 +0100585 free_page(mem);
Heiko Carstensdb4a29c2013-03-25 17:22:53 +0100586 return rc;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100587}
588
Cornelia Huckf379aae2012-12-20 15:32:10 +0100589static const intercept_handler_t b2_handlers[256] = {
Christian Borntraeger453423d2008-03-25 18:47:29 +0100590 [0x02] = handle_stidp,
Thomas Huth6a3f95a2013-09-12 10:33:49 +0200591 [0x04] = handle_set_clock,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100592 [0x10] = handle_set_prefix,
593 [0x11] = handle_store_prefix,
594 [0x12] = handle_store_cpu_address,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100595 [0x21] = handle_ipte_interlock,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100596 [0x29] = handle_skey,
597 [0x2a] = handle_skey,
598 [0x2b] = handle_skey,
Thomas Huthaca84242013-09-12 10:33:48 +0200599 [0x2c] = handle_test_block,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100600 [0x30] = handle_io_inst,
601 [0x31] = handle_io_inst,
602 [0x32] = handle_io_inst,
603 [0x33] = handle_io_inst,
604 [0x34] = handle_io_inst,
605 [0x35] = handle_io_inst,
606 [0x36] = handle_io_inst,
607 [0x37] = handle_io_inst,
608 [0x38] = handle_io_inst,
609 [0x39] = handle_io_inst,
610 [0x3a] = handle_io_inst,
611 [0x3b] = handle_io_inst,
612 [0x3c] = handle_io_inst,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100613 [0x50] = handle_ipte_interlock,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100614 [0x5f] = handle_io_inst,
615 [0x74] = handle_io_inst,
616 [0x76] = handle_io_inst,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100617 [0x7d] = handle_stsi,
618 [0xb1] = handle_stfl,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100619 [0xb2] = handle_lpswe,
Christian Borntraeger453423d2008-03-25 18:47:29 +0100620};
621
Christian Borntraeger70455a32009-01-22 10:28:29 +0100622int kvm_s390_handle_b2(struct kvm_vcpu *vcpu)
Christian Borntraeger453423d2008-03-25 18:47:29 +0100623{
624 intercept_handler_t handler;
625
Christian Borntraeger70455a32009-01-22 10:28:29 +0100626 /*
Thomas Huth5087dfa2013-06-20 17:22:01 +0200627 * A lot of B2 instructions are priviledged. Here we check for
628 * the privileged ones, that we can handle in the kernel.
629 * Anything else goes to userspace.
630 */
Cornelia Huckf379aae2012-12-20 15:32:10 +0100631 handler = b2_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Thomas Huth5087dfa2013-06-20 17:22:01 +0200632 if (handler)
633 return handler(vcpu);
634
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100635 return -EOPNOTSUPP;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100636}
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200637
Cornelia Huck48a3e952012-12-20 15:32:09 +0100638static int handle_epsw(struct kvm_vcpu *vcpu)
639{
640 int reg1, reg2;
641
Thomas Huthaeb87c32013-06-12 13:54:57 +0200642 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
Cornelia Huck48a3e952012-12-20 15:32:09 +0100643
644 /* This basically extracts the mask half of the psw. */
Thomas Huth843200e2013-07-26 15:04:05 +0200645 vcpu->run->s.regs.gprs[reg1] &= 0xffffffff00000000UL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100646 vcpu->run->s.regs.gprs[reg1] |= vcpu->arch.sie_block->gpsw.mask >> 32;
647 if (reg2) {
Thomas Huth843200e2013-07-26 15:04:05 +0200648 vcpu->run->s.regs.gprs[reg2] &= 0xffffffff00000000UL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100649 vcpu->run->s.regs.gprs[reg2] |=
Thomas Huth843200e2013-07-26 15:04:05 +0200650 vcpu->arch.sie_block->gpsw.mask & 0x00000000ffffffffUL;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100651 }
652 return 0;
653}
654
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200655#define PFMF_RESERVED 0xfffc0101UL
656#define PFMF_SK 0x00020000UL
657#define PFMF_CF 0x00010000UL
658#define PFMF_UI 0x00008000UL
659#define PFMF_FSC 0x00007000UL
660#define PFMF_NQ 0x00000800UL
661#define PFMF_MR 0x00000400UL
662#define PFMF_MC 0x00000200UL
663#define PFMF_KEY 0x000000feUL
664
665static int handle_pfmf(struct kvm_vcpu *vcpu)
666{
667 int reg1, reg2;
668 unsigned long start, end;
669
670 vcpu->stat.instruction_pfmf++;
671
672 kvm_s390_get_regs_rre(vcpu, &reg1, &reg2);
673
674 if (!MACHINE_HAS_PFMF)
675 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
676
677 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +0200678 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200679
680 if (vcpu->run->s.regs.gprs[reg1] & PFMF_RESERVED)
681 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
682
683 /* Only provide non-quiescing support if the host supports it */
Heiko Carstense769ece2013-07-26 15:04:01 +0200684 if (vcpu->run->s.regs.gprs[reg1] & PFMF_NQ && !test_facility(14))
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200685 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
686
687 /* No support for conditional-SSKE */
688 if (vcpu->run->s.regs.gprs[reg1] & (PFMF_MR | PFMF_MC))
689 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
690
691 start = vcpu->run->s.regs.gprs[reg2] & PAGE_MASK;
Thomas Hutha02689f2014-11-10 15:59:32 +0100692 start = kvm_s390_logical_to_effective(vcpu, start);
Thomas Huthfb34c6032013-09-09 17:58:38 +0200693
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200694 switch (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC) {
695 case 0x00000000:
696 end = (start + (1UL << 12)) & ~((1UL << 12) - 1);
697 break;
698 case 0x00001000:
699 end = (start + (1UL << 20)) & ~((1UL << 20) - 1);
700 break;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200701 case 0x00002000:
Guenther Hutzl53df84f2015-02-18 11:13:03 +0100702 /* only support 2G frame size if EDAT2 is available and we are
703 not in 24-bit addressing mode */
704 if (!test_kvm_facility(vcpu->kvm, 78) ||
705 psw_bits(vcpu->arch.sie_block->gpsw).eaba == PSW_AMODE_24BIT)
706 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200707 end = (start + (1UL << 31)) & ~((1UL << 31) - 1);
Guenther Hutzl53df84f2015-02-18 11:13:03 +0100708 break;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200709 default:
710 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
711 }
Thomas Hutha02689f2014-11-10 15:59:32 +0100712
713 if (vcpu->run->s.regs.gprs[reg1] & PFMF_CF) {
Alexander Yarygindd9e5b72015-03-03 14:26:14 +0300714 if (kvm_s390_check_low_addr_prot_real(vcpu, start))
Thomas Hutha02689f2014-11-10 15:59:32 +0100715 return kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm);
716 }
717
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200718 while (start < end) {
Thomas Huthfb34c6032013-09-09 17:58:38 +0200719 unsigned long useraddr, abs_addr;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200720
Thomas Huthfb34c6032013-09-09 17:58:38 +0200721 /* Translate guest address to host address */
722 if ((vcpu->run->s.regs.gprs[reg1] & PFMF_FSC) == 0)
723 abs_addr = kvm_s390_real_to_abs(vcpu, start);
724 else
725 abs_addr = start;
726 useraddr = gfn_to_hva(vcpu->kvm, gpa_to_gfn(abs_addr));
727 if (kvm_is_error_hva(useraddr))
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200728 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
729
730 if (vcpu->run->s.regs.gprs[reg1] & PFMF_CF) {
731 if (clear_user((void __user *)useraddr, PAGE_SIZE))
732 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
733 }
734
735 if (vcpu->run->s.regs.gprs[reg1] & PFMF_SK) {
Dominik Dingel3ac8e382014-10-23 12:09:17 +0200736 int rc = __skey_check_enable(vcpu);
737
738 if (rc)
739 return rc;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200740 if (set_guest_storage_key(current->mm, useraddr,
741 vcpu->run->s.regs.gprs[reg1] & PFMF_KEY,
742 vcpu->run->s.regs.gprs[reg1] & PFMF_NQ))
743 return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
744 }
745
746 start += PAGE_SIZE;
747 }
748 if (vcpu->run->s.regs.gprs[reg1] & PFMF_FSC)
749 vcpu->run->s.regs.gprs[reg2] = end;
750 return 0;
751}
752
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200753static int handle_essa(struct kvm_vcpu *vcpu)
754{
755 /* entries expected to be 1FF */
756 int entries = (vcpu->arch.sie_block->cbrlo & ~PAGE_MASK) >> 3;
757 unsigned long *cbrlo, cbrle;
758 struct gmap *gmap;
759 int i;
760
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200761 VCPU_EVENT(vcpu, 4, "ESSA: release %d pages", entries);
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200762 gmap = vcpu->arch.gmap;
763 vcpu->stat.instruction_essa++;
Dominik Dingele6db1d62015-05-07 15:41:57 +0200764 if (!vcpu->kvm->arch.use_cmma)
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200765 return kvm_s390_inject_program_int(vcpu, PGM_OPERATION);
766
767 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
768 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
769
770 if (((vcpu->arch.sie_block->ipb & 0xf0000000) >> 28) > 6)
771 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
772
773 /* Rewind PSW to repeat the ESSA instruction */
Thomas Huth04b41ac2014-11-12 17:13:29 +0100774 kvm_s390_rewind_psw(vcpu, 4);
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200775 vcpu->arch.sie_block->cbrlo &= PAGE_MASK; /* reset nceo */
776 cbrlo = phys_to_virt(vcpu->arch.sie_block->cbrlo);
777 down_read(&gmap->mm->mmap_sem);
778 for (i = 0; i < entries; ++i) {
779 cbrle = cbrlo[i];
780 if (unlikely(cbrle & ~PAGE_MASK || cbrle < 2 * PAGE_SIZE))
781 /* invalid entry */
782 break;
783 /* try to free backing */
Martin Schwidefsky6e0a0432014-04-29 09:34:41 +0200784 __gmap_zap(gmap, cbrle);
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200785 }
786 up_read(&gmap->mm->mmap_sem);
787 if (i < entries)
788 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
789 return 0;
790}
791
Cornelia Huck48a3e952012-12-20 15:32:09 +0100792static const intercept_handler_t b9_handlers[256] = {
Heiko Carstens8a2422342014-01-10 14:33:28 +0100793 [0x8a] = handle_ipte_interlock,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100794 [0x8d] = handle_epsw,
Heiko Carstens8a2422342014-01-10 14:33:28 +0100795 [0x8e] = handle_ipte_interlock,
796 [0x8f] = handle_ipte_interlock,
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200797 [0xab] = handle_essa,
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200798 [0xaf] = handle_pfmf,
Cornelia Huck48a3e952012-12-20 15:32:09 +0100799};
800
801int kvm_s390_handle_b9(struct kvm_vcpu *vcpu)
802{
803 intercept_handler_t handler;
804
805 /* This is handled just as for the B2 instructions. */
806 handler = b9_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
Thomas Huth5087dfa2013-06-20 17:22:01 +0200807 if (handler)
808 return handler(vcpu);
809
Cornelia Huck48a3e952012-12-20 15:32:09 +0100810 return -EOPNOTSUPP;
811}
812
Thomas Huth953ed882013-06-20 17:22:04 +0200813int kvm_s390_handle_lctl(struct kvm_vcpu *vcpu)
814{
815 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
816 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100817 int reg, rc, nr_regs;
818 u32 ctl_array[16];
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100819 u64 ga;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300820 ar_t ar;
Thomas Huth953ed882013-06-20 17:22:04 +0200821
822 vcpu->stat.instruction_lctl++;
823
824 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
825 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
826
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300827 ga = kvm_s390_get_base_disp_rs(vcpu, &ar);
Thomas Huth953ed882013-06-20 17:22:04 +0200828
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100829 if (ga & 3)
Thomas Huth953ed882013-06-20 17:22:04 +0200830 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
831
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200832 VCPU_EVENT(vcpu, 4, "LCTL: r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga);
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100833 trace_kvm_s390_handle_lctl(vcpu, 0, reg1, reg3, ga);
Thomas Huth953ed882013-06-20 17:22:04 +0200834
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100835 nr_regs = ((reg3 - reg1) & 0xf) + 1;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300836 rc = read_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u32));
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100837 if (rc)
838 return kvm_s390_inject_prog_cond(vcpu, rc);
Thomas Huth953ed882013-06-20 17:22:04 +0200839 reg = reg1;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100840 nr_regs = 0;
Thomas Huth953ed882013-06-20 17:22:04 +0200841 do {
Thomas Huth953ed882013-06-20 17:22:04 +0200842 vcpu->arch.sie_block->gcr[reg] &= 0xffffffff00000000ul;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100843 vcpu->arch.sie_block->gcr[reg] |= ctl_array[nr_regs++];
Thomas Huth953ed882013-06-20 17:22:04 +0200844 if (reg == reg3)
845 break;
846 reg = (reg + 1) % 16;
847 } while (1);
Christian Borntraeger2dca4852014-10-31 09:24:20 +0100848 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Thomas Huth953ed882013-06-20 17:22:04 +0200849 return 0;
850}
851
David Hildenbrandaba07502014-01-23 10:47:13 +0100852int kvm_s390_handle_stctl(struct kvm_vcpu *vcpu)
853{
854 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
855 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100856 int reg, rc, nr_regs;
857 u32 ctl_array[16];
David Hildenbrandaba07502014-01-23 10:47:13 +0100858 u64 ga;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300859 ar_t ar;
David Hildenbrandaba07502014-01-23 10:47:13 +0100860
861 vcpu->stat.instruction_stctl++;
862
863 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
864 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
865
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300866 ga = kvm_s390_get_base_disp_rs(vcpu, &ar);
David Hildenbrandaba07502014-01-23 10:47:13 +0100867
868 if (ga & 3)
869 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
870
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200871 VCPU_EVENT(vcpu, 4, "STCTL r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga);
David Hildenbrandaba07502014-01-23 10:47:13 +0100872 trace_kvm_s390_handle_stctl(vcpu, 0, reg1, reg3, ga);
873
874 reg = reg1;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100875 nr_regs = 0;
David Hildenbrandaba07502014-01-23 10:47:13 +0100876 do {
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100877 ctl_array[nr_regs++] = vcpu->arch.sie_block->gcr[reg];
David Hildenbrandaba07502014-01-23 10:47:13 +0100878 if (reg == reg3)
879 break;
880 reg = (reg + 1) % 16;
881 } while (1);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300882 rc = write_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u32));
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100883 return rc ? kvm_s390_inject_prog_cond(vcpu, rc) : 0;
David Hildenbrandaba07502014-01-23 10:47:13 +0100884}
885
Thomas Huth953ed882013-06-20 17:22:04 +0200886static int handle_lctlg(struct kvm_vcpu *vcpu)
887{
888 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
889 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100890 int reg, rc, nr_regs;
891 u64 ctl_array[16];
892 u64 ga;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300893 ar_t ar;
Thomas Huth953ed882013-06-20 17:22:04 +0200894
895 vcpu->stat.instruction_lctlg++;
896
897 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
898 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
899
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300900 ga = kvm_s390_get_base_disp_rsy(vcpu, &ar);
Thomas Huth953ed882013-06-20 17:22:04 +0200901
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100902 if (ga & 7)
Thomas Huth953ed882013-06-20 17:22:04 +0200903 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
904
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200905 VCPU_EVENT(vcpu, 4, "LCTLG: r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga);
Heiko Carstensf987a3e2014-01-01 16:59:21 +0100906 trace_kvm_s390_handle_lctl(vcpu, 1, reg1, reg3, ga);
Thomas Huth953ed882013-06-20 17:22:04 +0200907
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100908 nr_regs = ((reg3 - reg1) & 0xf) + 1;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300909 rc = read_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u64));
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100910 if (rc)
911 return kvm_s390_inject_prog_cond(vcpu, rc);
912 reg = reg1;
913 nr_regs = 0;
Thomas Huth953ed882013-06-20 17:22:04 +0200914 do {
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100915 vcpu->arch.sie_block->gcr[reg] = ctl_array[nr_regs++];
Thomas Huth953ed882013-06-20 17:22:04 +0200916 if (reg == reg3)
917 break;
918 reg = (reg + 1) % 16;
919 } while (1);
Christian Borntraeger2dca4852014-10-31 09:24:20 +0100920 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Thomas Huth953ed882013-06-20 17:22:04 +0200921 return 0;
922}
923
David Hildenbrandaba07502014-01-23 10:47:13 +0100924static int handle_stctg(struct kvm_vcpu *vcpu)
925{
926 int reg1 = (vcpu->arch.sie_block->ipa & 0x00f0) >> 4;
927 int reg3 = vcpu->arch.sie_block->ipa & 0x000f;
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100928 int reg, rc, nr_regs;
929 u64 ctl_array[16];
930 u64 ga;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300931 ar_t ar;
David Hildenbrandaba07502014-01-23 10:47:13 +0100932
933 vcpu->stat.instruction_stctg++;
934
935 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
936 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
937
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300938 ga = kvm_s390_get_base_disp_rsy(vcpu, &ar);
David Hildenbrandaba07502014-01-23 10:47:13 +0100939
940 if (ga & 7)
941 return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
942
Christian Borntraeger7cbde762015-07-21 12:44:57 +0200943 VCPU_EVENT(vcpu, 4, "STCTG r1:%d, r3:%d, addr: 0x%llx", reg1, reg3, ga);
David Hildenbrandaba07502014-01-23 10:47:13 +0100944 trace_kvm_s390_handle_stctl(vcpu, 1, reg1, reg3, ga);
945
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100946 reg = reg1;
947 nr_regs = 0;
David Hildenbrandaba07502014-01-23 10:47:13 +0100948 do {
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100949 ctl_array[nr_regs++] = vcpu->arch.sie_block->gcr[reg];
David Hildenbrandaba07502014-01-23 10:47:13 +0100950 if (reg == reg3)
951 break;
952 reg = (reg + 1) % 16;
953 } while (1);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300954 rc = write_guest(vcpu, ga, ar, ctl_array, nr_regs * sizeof(u64));
Heiko Carstensfc56eb62014-10-29 10:07:16 +0100955 return rc ? kvm_s390_inject_prog_cond(vcpu, rc) : 0;
David Hildenbrandaba07502014-01-23 10:47:13 +0100956}
957
Cornelia Huckf379aae2012-12-20 15:32:10 +0100958static const intercept_handler_t eb_handlers[256] = {
Thomas Huth953ed882013-06-20 17:22:04 +0200959 [0x2f] = handle_lctlg,
David Hildenbrandaba07502014-01-23 10:47:13 +0100960 [0x25] = handle_stctg,
Cornelia Huckf379aae2012-12-20 15:32:10 +0100961};
962
Thomas Huth953ed882013-06-20 17:22:04 +0200963int kvm_s390_handle_eb(struct kvm_vcpu *vcpu)
Cornelia Huckf379aae2012-12-20 15:32:10 +0100964{
965 intercept_handler_t handler;
966
Cornelia Huckf379aae2012-12-20 15:32:10 +0100967 handler = eb_handlers[vcpu->arch.sie_block->ipb & 0xff];
968 if (handler)
969 return handler(vcpu);
970 return -EOPNOTSUPP;
971}
972
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200973static int handle_tprot(struct kvm_vcpu *vcpu)
974{
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100975 u64 address1, address2;
Thomas Hutha0465f92014-02-04 14:48:07 +0100976 unsigned long hva, gpa;
977 int ret = 0, cc = 0;
978 bool writable;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300979 ar_t ar;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200980
981 vcpu->stat.instruction_tprot++;
982
Thomas Huthf9f6bbc2013-06-20 17:22:00 +0200983 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
984 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
985
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300986 kvm_s390_get_base_disp_sse(vcpu, &address1, &address2, &ar, NULL);
Cornelia Huckb1c571a2012-12-20 15:32:07 +0100987
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200988 /* we only handle the Linux memory detection case:
989 * access key == 0
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200990 * everything else goes to userspace. */
991 if (address2 & 0xf0)
992 return -EOPNOTSUPP;
993 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT)
Thomas Hutha0465f92014-02-04 14:48:07 +0100994 ipte_lock(vcpu);
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300995 ret = guest_translate_address(vcpu, address1, ar, &gpa, 1);
Thomas Hutha0465f92014-02-04 14:48:07 +0100996 if (ret == PGM_PROTECTION) {
997 /* Write protected? Try again with read-only... */
998 cc = 1;
Alexander Yarygin8ae04b82015-01-19 13:24:51 +0300999 ret = guest_translate_address(vcpu, address1, ar, &gpa, 0);
Thomas Hutha0465f92014-02-04 14:48:07 +01001000 }
1001 if (ret) {
1002 if (ret == PGM_ADDRESSING || ret == PGM_TRANSLATION_SPEC) {
1003 ret = kvm_s390_inject_program_int(vcpu, ret);
1004 } else if (ret > 0) {
1005 /* Translation not available */
1006 kvm_s390_set_psw_cc(vcpu, 3);
1007 ret = 0;
1008 }
1009 goto out_unlock;
1010 }
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +02001011
Thomas Hutha0465f92014-02-04 14:48:07 +01001012 hva = gfn_to_hva_prot(vcpu->kvm, gpa_to_gfn(gpa), &writable);
1013 if (kvm_is_error_hva(hva)) {
1014 ret = kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
1015 } else {
1016 if (!writable)
1017 cc = 1; /* Write not permitted ==> read-only */
1018 kvm_s390_set_psw_cc(vcpu, cc);
1019 /* Note: CC2 only occurs for storage keys (not supported yet) */
1020 }
1021out_unlock:
1022 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT)
1023 ipte_unlock(vcpu);
1024 return ret;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +02001025}
1026
1027int kvm_s390_handle_e5(struct kvm_vcpu *vcpu)
1028{
1029 /* For e5xx... instructions we only handle TPROT */
1030 if ((vcpu->arch.sie_block->ipa & 0x00ff) == 0x01)
1031 return handle_tprot(vcpu);
1032 return -EOPNOTSUPP;
1033}
1034
Cornelia Huck8c3f61e2012-04-24 09:24:44 +02001035static int handle_sckpf(struct kvm_vcpu *vcpu)
1036{
1037 u32 value;
1038
1039 if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE)
Thomas Huth208dd752013-06-20 17:21:59 +02001040 return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP);
Cornelia Huck8c3f61e2012-04-24 09:24:44 +02001041
1042 if (vcpu->run->s.regs.gprs[0] & 0x00000000ffff0000)
1043 return kvm_s390_inject_program_int(vcpu,
1044 PGM_SPECIFICATION);
1045
1046 value = vcpu->run->s.regs.gprs[0] & 0x000000000000ffff;
1047 vcpu->arch.sie_block->todpr = value;
1048
1049 return 0;
1050}
1051
Cornelia Huck77975352012-12-20 15:32:06 +01001052static const intercept_handler_t x01_handlers[256] = {
Cornelia Huck8c3f61e2012-04-24 09:24:44 +02001053 [0x07] = handle_sckpf,
1054};
1055
1056int kvm_s390_handle_01(struct kvm_vcpu *vcpu)
1057{
1058 intercept_handler_t handler;
1059
1060 handler = x01_handlers[vcpu->arch.sie_block->ipa & 0x00ff];
1061 if (handler)
1062 return handler(vcpu);
1063 return -EOPNOTSUPP;
1064}