blob: dd902e64c033d9b77b0397510523ab8585ec3293 [file] [log] [blame]
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001/*
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02002 * hosting zSeries kernel virtual machines
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02004 * Copyright IBM Corp. 2008, 2009
Heiko Carstensb0c632d2008-03-25 18:47:20 +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 * Heiko Carstens <heiko.carstens@de.ibm.com>
Christian Ehrhardt628eb9b2009-05-25 13:40:51 +020013 * Christian Ehrhardt <ehrhardt@de.ibm.com>
Jason J. Herne15f36eb2012-08-02 10:10:17 -040014 * Jason J. Herne <jjherne@us.ibm.com>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010015 */
16
17#include <linux/compiler.h>
18#include <linux/err.h>
19#include <linux/fs.h>
Christian Borntraegerca872302009-05-12 17:21:49 +020020#include <linux/hrtimer.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010021#include <linux/init.h>
22#include <linux/kvm.h>
23#include <linux/kvm_host.h>
24#include <linux/module.h>
25#include <linux/slab.h>
Carsten Otteba5c1e92008-03-25 18:47:26 +010026#include <linux/timer.h>
Heiko Carstenscbb870c2010-02-26 22:37:43 +010027#include <asm/asm-offsets.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010028#include <asm/lowcore.h>
29#include <asm/pgtable.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010030#include <asm/nmi.h>
David Howellsa0616cd2012-03-28 18:30:02 +010031#include <asm/switch_to.h>
Michael Mueller78c4b59f2013-07-26 15:04:04 +020032#include <asm/facility.h>
Christian Borntraeger1526bf92012-05-15 14:15:25 +020033#include <asm/sclp.h>
Christian Borntraeger8f2abe62008-03-25 18:47:23 +010034#include "kvm-s390.h"
Heiko Carstensb0c632d2008-03-25 18:47:20 +010035#include "gaccess.h"
36
Cornelia Huck5786fff2012-07-23 17:20:29 +020037#define CREATE_TRACE_POINTS
38#include "trace.h"
Cornelia Huckade38c32012-07-23 17:20:30 +020039#include "trace-s390.h"
Cornelia Huck5786fff2012-07-23 17:20:29 +020040
Heiko Carstensb0c632d2008-03-25 18:47:20 +010041#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
42
43struct kvm_stats_debugfs_item debugfs_entries[] = {
44 { "userspace_handled", VCPU_STAT(exit_userspace) },
Christian Borntraeger0eaeafa2008-05-07 09:22:53 +020045 { "exit_null", VCPU_STAT(exit_null) },
Christian Borntraeger8f2abe62008-03-25 18:47:23 +010046 { "exit_validity", VCPU_STAT(exit_validity) },
47 { "exit_stop_request", VCPU_STAT(exit_stop_request) },
48 { "exit_external_request", VCPU_STAT(exit_external_request) },
49 { "exit_external_interrupt", VCPU_STAT(exit_external_interrupt) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010050 { "exit_instruction", VCPU_STAT(exit_instruction) },
51 { "exit_program_interruption", VCPU_STAT(exit_program_interruption) },
52 { "exit_instr_and_program_int", VCPU_STAT(exit_instr_and_program) },
Christian Borntraegerf5e10b02008-07-25 15:52:44 +020053 { "instruction_lctlg", VCPU_STAT(instruction_lctlg) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010054 { "instruction_lctl", VCPU_STAT(instruction_lctl) },
David Hildenbrandaba07502014-01-23 10:47:13 +010055 { "instruction_stctl", VCPU_STAT(instruction_stctl) },
56 { "instruction_stctg", VCPU_STAT(instruction_stctg) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010057 { "deliver_emergency_signal", VCPU_STAT(deliver_emergency_signal) },
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +020058 { "deliver_external_call", VCPU_STAT(deliver_external_call) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010059 { "deliver_service_signal", VCPU_STAT(deliver_service_signal) },
60 { "deliver_virtio_interrupt", VCPU_STAT(deliver_virtio_interrupt) },
61 { "deliver_stop_signal", VCPU_STAT(deliver_stop_signal) },
62 { "deliver_prefix_signal", VCPU_STAT(deliver_prefix_signal) },
63 { "deliver_restart_signal", VCPU_STAT(deliver_restart_signal) },
64 { "deliver_program_interruption", VCPU_STAT(deliver_program_int) },
65 { "exit_wait_state", VCPU_STAT(exit_wait_state) },
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +020066 { "instruction_pfmf", VCPU_STAT(instruction_pfmf) },
Christian Borntraeger453423d2008-03-25 18:47:29 +010067 { "instruction_stidp", VCPU_STAT(instruction_stidp) },
68 { "instruction_spx", VCPU_STAT(instruction_spx) },
69 { "instruction_stpx", VCPU_STAT(instruction_stpx) },
70 { "instruction_stap", VCPU_STAT(instruction_stap) },
71 { "instruction_storage_key", VCPU_STAT(instruction_storage_key) },
Heiko Carstens8a2422342014-01-10 14:33:28 +010072 { "instruction_ipte_interlock", VCPU_STAT(instruction_ipte_interlock) },
Christian Borntraeger453423d2008-03-25 18:47:29 +010073 { "instruction_stsch", VCPU_STAT(instruction_stsch) },
74 { "instruction_chsc", VCPU_STAT(instruction_chsc) },
Konstantin Weitzb31288f2013-04-17 17:36:29 +020075 { "instruction_essa", VCPU_STAT(instruction_essa) },
Christian Borntraeger453423d2008-03-25 18:47:29 +010076 { "instruction_stsi", VCPU_STAT(instruction_stsi) },
77 { "instruction_stfl", VCPU_STAT(instruction_stfl) },
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +020078 { "instruction_tprot", VCPU_STAT(instruction_tprot) },
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010079 { "instruction_sigp_sense", VCPU_STAT(instruction_sigp_sense) },
Cornelia Huckbd59d3a2011-11-17 11:00:42 +010080 { "instruction_sigp_sense_running", VCPU_STAT(instruction_sigp_sense_running) },
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +020081 { "instruction_sigp_external_call", VCPU_STAT(instruction_sigp_external_call) },
Christian Borntraeger5288fbf2008-03-25 18:47:31 +010082 { "instruction_sigp_emergency", VCPU_STAT(instruction_sigp_emergency) },
83 { "instruction_sigp_stop", VCPU_STAT(instruction_sigp_stop) },
84 { "instruction_sigp_set_arch", VCPU_STAT(instruction_sigp_arch) },
85 { "instruction_sigp_set_prefix", VCPU_STAT(instruction_sigp_prefix) },
86 { "instruction_sigp_restart", VCPU_STAT(instruction_sigp_restart) },
Christian Borntraeger388186b2011-10-30 15:17:03 +010087 { "diagnose_10", VCPU_STAT(diagnose_10) },
Christian Borntraegere28acfe2008-03-25 18:47:34 +010088 { "diagnose_44", VCPU_STAT(diagnose_44) },
Konstantin Weitz41628d32012-04-25 15:30:38 +020089 { "diagnose_9c", VCPU_STAT(diagnose_9c) },
Heiko Carstensb0c632d2008-03-25 18:47:20 +010090 { NULL }
91};
92
Michael Mueller78c4b59f2013-07-26 15:04:04 +020093unsigned long *vfacilities;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +020094static struct gmap_notifier gmap_notifier;
Heiko Carstensb0c632d2008-03-25 18:47:20 +010095
Michael Mueller78c4b59f2013-07-26 15:04:04 +020096/* test availability of vfacility */
Heiko Carstens280ef0f2013-12-17 09:08:28 +010097int test_vfacility(unsigned long nr)
Michael Mueller78c4b59f2013-07-26 15:04:04 +020098{
99 return __test_facility(nr, (void *) vfacilities);
100}
101
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100102/* Section: not file related */
Alexander Graf10474ae2009-09-15 11:37:46 +0200103int kvm_arch_hardware_enable(void *garbage)
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100104{
105 /* every s390 is virtualization enabled ;-) */
Alexander Graf10474ae2009-09-15 11:37:46 +0200106 return 0;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100107}
108
109void kvm_arch_hardware_disable(void *garbage)
110{
111}
112
Christian Borntraeger2c70fe42013-05-17 14:41:36 +0200113static void kvm_gmap_notifier(struct gmap *gmap, unsigned long address);
114
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100115int kvm_arch_hardware_setup(void)
116{
Christian Borntraeger2c70fe42013-05-17 14:41:36 +0200117 gmap_notifier.notifier_call = kvm_gmap_notifier;
118 gmap_register_ipte_notifier(&gmap_notifier);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100119 return 0;
120}
121
122void kvm_arch_hardware_unsetup(void)
123{
Christian Borntraeger2c70fe42013-05-17 14:41:36 +0200124 gmap_unregister_ipte_notifier(&gmap_notifier);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100125}
126
127void kvm_arch_check_processor_compat(void *rtn)
128{
129}
130
131int kvm_arch_init(void *opaque)
132{
133 return 0;
134}
135
136void kvm_arch_exit(void)
137{
138}
139
140/* Section: device related */
141long kvm_arch_dev_ioctl(struct file *filp,
142 unsigned int ioctl, unsigned long arg)
143{
144 if (ioctl == KVM_S390_ENABLE_SIE)
145 return s390_enable_sie();
146 return -EINVAL;
147}
148
149int kvm_dev_ioctl_check_extension(long ext)
150{
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100151 int r;
152
Carsten Otte2bd0ac42008-07-25 15:49:13 +0200153 switch (ext) {
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100154 case KVM_CAP_S390_PSW:
Christian Borntraegerb6cf8782011-09-20 17:07:29 +0200155 case KVM_CAP_S390_GMAP:
Christian Borntraeger52e16b12011-11-17 11:00:44 +0100156 case KVM_CAP_SYNC_MMU:
Carsten Otte1efd0f52012-01-04 10:25:29 +0100157#ifdef CONFIG_KVM_S390_UCONTROL
158 case KVM_CAP_S390_UCONTROL:
159#endif
Dominik Dingel3c038e62013-10-07 17:11:48 +0200160 case KVM_CAP_ASYNC_PF:
Christian Borntraeger60b413c2012-01-11 11:20:31 +0100161 case KVM_CAP_SYNC_REGS:
Carsten Otte14eebd92012-05-15 14:15:26 +0200162 case KVM_CAP_ONE_REG:
Cornelia Huckd6712df2012-12-20 15:32:11 +0100163 case KVM_CAP_ENABLE_CAP:
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100164 case KVM_CAP_S390_CSS_SUPPORT:
Cornelia Huckebc32262014-05-09 15:00:46 +0200165 case KVM_CAP_IRQFD:
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100166 case KVM_CAP_IOEVENTFD:
Jens Freimannc05c4182013-10-07 16:13:45 +0200167 case KVM_CAP_DEVICE_CTRL:
Cornelia Huckd938dc52013-10-23 18:26:34 +0200168 case KVM_CAP_ENABLE_CAP_VM:
Dominik Dingelf2061652014-04-09 13:13:00 +0200169 case KVM_CAP_VM_ATTRIBUTES:
David Hildenbrand6352e4d2014-04-10 17:35:00 +0200170 case KVM_CAP_MP_STATE:
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100171 r = 1;
172 break;
Christian Borntraegere726b1b2012-05-02 10:50:38 +0200173 case KVM_CAP_NR_VCPUS:
174 case KVM_CAP_MAX_VCPUS:
175 r = KVM_MAX_VCPUS;
176 break;
Nick Wange1e2e602013-03-25 17:22:58 +0100177 case KVM_CAP_NR_MEMSLOTS:
178 r = KVM_USER_MEM_SLOTS;
179 break;
Christian Borntraeger1526bf92012-05-15 14:15:25 +0200180 case KVM_CAP_S390_COW:
Martin Schwidefskyabf09be2012-11-07 13:17:37 +0100181 r = MACHINE_HAS_ESOP;
Christian Borntraeger1526bf92012-05-15 14:15:25 +0200182 break;
Carsten Otte2bd0ac42008-07-25 15:49:13 +0200183 default:
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100184 r = 0;
Carsten Otte2bd0ac42008-07-25 15:49:13 +0200185 }
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100186 return r;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100187}
188
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400189static void kvm_s390_sync_dirty_log(struct kvm *kvm,
190 struct kvm_memory_slot *memslot)
191{
192 gfn_t cur_gfn, last_gfn;
193 unsigned long address;
194 struct gmap *gmap = kvm->arch.gmap;
195
196 down_read(&gmap->mm->mmap_sem);
197 /* Loop over all guest pages */
198 last_gfn = memslot->base_gfn + memslot->npages;
199 for (cur_gfn = memslot->base_gfn; cur_gfn <= last_gfn; cur_gfn++) {
200 address = gfn_to_hva_memslot(memslot, cur_gfn);
201
202 if (gmap_test_and_clear_dirty(address, gmap))
203 mark_page_dirty(kvm, cur_gfn);
204 }
205 up_read(&gmap->mm->mmap_sem);
206}
207
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100208/* Section: vm related */
209/*
210 * Get (and clear) the dirty memory log for a memory slot.
211 */
212int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
213 struct kvm_dirty_log *log)
214{
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400215 int r;
216 unsigned long n;
217 struct kvm_memory_slot *memslot;
218 int is_dirty = 0;
219
220 mutex_lock(&kvm->slots_lock);
221
222 r = -EINVAL;
223 if (log->slot >= KVM_USER_MEM_SLOTS)
224 goto out;
225
226 memslot = id_to_memslot(kvm->memslots, log->slot);
227 r = -ENOENT;
228 if (!memslot->dirty_bitmap)
229 goto out;
230
231 kvm_s390_sync_dirty_log(kvm, memslot);
232 r = kvm_get_dirty_log(kvm, log, &is_dirty);
233 if (r)
234 goto out;
235
236 /* Clear the dirty log */
237 if (is_dirty) {
238 n = kvm_dirty_bitmap_bytes(memslot);
239 memset(memslot->dirty_bitmap, 0, n);
240 }
241 r = 0;
242out:
243 mutex_unlock(&kvm->slots_lock);
244 return r;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100245}
246
Cornelia Huckd938dc52013-10-23 18:26:34 +0200247static int kvm_vm_ioctl_enable_cap(struct kvm *kvm, struct kvm_enable_cap *cap)
248{
249 int r;
250
251 if (cap->flags)
252 return -EINVAL;
253
254 switch (cap->cap) {
Cornelia Huck84223592013-07-15 13:36:01 +0200255 case KVM_CAP_S390_IRQCHIP:
256 kvm->arch.use_irqchip = 1;
257 r = 0;
258 break;
Cornelia Huckd938dc52013-10-23 18:26:34 +0200259 default:
260 r = -EINVAL;
261 break;
262 }
263 return r;
264}
265
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200266static int kvm_s390_mem_control(struct kvm *kvm, struct kvm_device_attr *attr)
267{
268 int ret;
269 unsigned int idx;
270 switch (attr->attr) {
271 case KVM_S390_VM_MEM_ENABLE_CMMA:
272 ret = -EBUSY;
273 mutex_lock(&kvm->lock);
274 if (atomic_read(&kvm->online_vcpus) == 0) {
275 kvm->arch.use_cmma = 1;
276 ret = 0;
277 }
278 mutex_unlock(&kvm->lock);
279 break;
280 case KVM_S390_VM_MEM_CLR_CMMA:
281 mutex_lock(&kvm->lock);
282 idx = srcu_read_lock(&kvm->srcu);
283 page_table_reset_pgste(kvm->arch.gmap->mm, 0, TASK_SIZE, false);
284 srcu_read_unlock(&kvm->srcu, idx);
285 mutex_unlock(&kvm->lock);
286 ret = 0;
287 break;
288 default:
289 ret = -ENXIO;
290 break;
291 }
292 return ret;
293}
294
Dominik Dingelf2061652014-04-09 13:13:00 +0200295static int kvm_s390_vm_set_attr(struct kvm *kvm, struct kvm_device_attr *attr)
296{
297 int ret;
298
299 switch (attr->group) {
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200300 case KVM_S390_VM_MEM_CTRL:
301 ret = kvm_s390_mem_control(kvm, attr);
302 break;
Dominik Dingelf2061652014-04-09 13:13:00 +0200303 default:
304 ret = -ENXIO;
305 break;
306 }
307
308 return ret;
309}
310
311static int kvm_s390_vm_get_attr(struct kvm *kvm, struct kvm_device_attr *attr)
312{
313 return -ENXIO;
314}
315
316static int kvm_s390_vm_has_attr(struct kvm *kvm, struct kvm_device_attr *attr)
317{
318 int ret;
319
320 switch (attr->group) {
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200321 case KVM_S390_VM_MEM_CTRL:
322 switch (attr->attr) {
323 case KVM_S390_VM_MEM_ENABLE_CMMA:
324 case KVM_S390_VM_MEM_CLR_CMMA:
325 ret = 0;
326 break;
327 default:
328 ret = -ENXIO;
329 break;
330 }
331 break;
Dominik Dingelf2061652014-04-09 13:13:00 +0200332 default:
333 ret = -ENXIO;
334 break;
335 }
336
337 return ret;
338}
339
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100340long kvm_arch_vm_ioctl(struct file *filp,
341 unsigned int ioctl, unsigned long arg)
342{
343 struct kvm *kvm = filp->private_data;
344 void __user *argp = (void __user *)arg;
Dominik Dingelf2061652014-04-09 13:13:00 +0200345 struct kvm_device_attr attr;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100346 int r;
347
348 switch (ioctl) {
Carsten Otteba5c1e92008-03-25 18:47:26 +0100349 case KVM_S390_INTERRUPT: {
350 struct kvm_s390_interrupt s390int;
351
352 r = -EFAULT;
353 if (copy_from_user(&s390int, argp, sizeof(s390int)))
354 break;
355 r = kvm_s390_inject_vm(kvm, &s390int);
356 break;
357 }
Cornelia Huckd938dc52013-10-23 18:26:34 +0200358 case KVM_ENABLE_CAP: {
359 struct kvm_enable_cap cap;
360 r = -EFAULT;
361 if (copy_from_user(&cap, argp, sizeof(cap)))
362 break;
363 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
364 break;
365 }
Cornelia Huck84223592013-07-15 13:36:01 +0200366 case KVM_CREATE_IRQCHIP: {
367 struct kvm_irq_routing_entry routing;
368
369 r = -EINVAL;
370 if (kvm->arch.use_irqchip) {
371 /* Set up dummy routing. */
372 memset(&routing, 0, sizeof(routing));
373 kvm_set_irq_routing(kvm, &routing, 0, 0);
374 r = 0;
375 }
376 break;
377 }
Dominik Dingelf2061652014-04-09 13:13:00 +0200378 case KVM_SET_DEVICE_ATTR: {
379 r = -EFAULT;
380 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
381 break;
382 r = kvm_s390_vm_set_attr(kvm, &attr);
383 break;
384 }
385 case KVM_GET_DEVICE_ATTR: {
386 r = -EFAULT;
387 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
388 break;
389 r = kvm_s390_vm_get_attr(kvm, &attr);
390 break;
391 }
392 case KVM_HAS_DEVICE_ATTR: {
393 r = -EFAULT;
394 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
395 break;
396 r = kvm_s390_vm_has_attr(kvm, &attr);
397 break;
398 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100399 default:
Avi Kivity367e1312009-08-26 14:57:07 +0300400 r = -ENOTTY;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100401 }
402
403 return r;
404}
405
Carsten Ottee08b9632012-01-04 10:25:20 +0100406int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100407{
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100408 int rc;
409 char debug_name[16];
Christian Borntraegerf6c137f2014-03-19 11:18:29 +0100410 static unsigned long sca_offset;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100411
Carsten Ottee08b9632012-01-04 10:25:20 +0100412 rc = -EINVAL;
413#ifdef CONFIG_KVM_S390_UCONTROL
414 if (type & ~KVM_VM_S390_UCONTROL)
415 goto out_err;
416 if ((type & KVM_VM_S390_UCONTROL) && (!capable(CAP_SYS_ADMIN)))
417 goto out_err;
418#else
419 if (type)
420 goto out_err;
421#endif
422
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100423 rc = s390_enable_sie();
424 if (rc)
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100425 goto out_err;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100426
Carsten Otteb2904112011-10-18 12:27:13 +0200427 rc = -ENOMEM;
428
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100429 kvm->arch.sca = (struct sca_block *) get_zeroed_page(GFP_KERNEL);
430 if (!kvm->arch.sca)
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100431 goto out_err;
Christian Borntraegerf6c137f2014-03-19 11:18:29 +0100432 spin_lock(&kvm_lock);
433 sca_offset = (sca_offset + 16) & 0x7f0;
434 kvm->arch.sca = (struct sca_block *) ((char *) kvm->arch.sca + sca_offset);
435 spin_unlock(&kvm_lock);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100436
437 sprintf(debug_name, "kvm-%u", current->pid);
438
439 kvm->arch.dbf = debug_register(debug_name, 8, 2, 8 * sizeof(long));
440 if (!kvm->arch.dbf)
441 goto out_nodbf;
442
Carsten Otteba5c1e92008-03-25 18:47:26 +0100443 spin_lock_init(&kvm->arch.float_int.lock);
444 INIT_LIST_HEAD(&kvm->arch.float_int.list);
Heiko Carstens8a2422342014-01-10 14:33:28 +0100445 init_waitqueue_head(&kvm->arch.ipte_wq);
Carsten Otteba5c1e92008-03-25 18:47:26 +0100446
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100447 debug_register_view(kvm->arch.dbf, &debug_sprintf_view);
448 VM_EVENT(kvm, 3, "%s", "vm created");
449
Carsten Ottee08b9632012-01-04 10:25:20 +0100450 if (type & KVM_VM_S390_UCONTROL) {
451 kvm->arch.gmap = NULL;
452 } else {
453 kvm->arch.gmap = gmap_alloc(current->mm);
454 if (!kvm->arch.gmap)
455 goto out_nogmap;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +0200456 kvm->arch.gmap->private = kvm;
Dominik Dingel24eb3a82013-06-17 16:25:18 +0200457 kvm->arch.gmap->pfault_enabled = 0;
Carsten Ottee08b9632012-01-04 10:25:20 +0100458 }
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100459
460 kvm->arch.css_support = 0;
Cornelia Huck84223592013-07-15 13:36:01 +0200461 kvm->arch.use_irqchip = 0;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100462
David Hildenbrand8ad35752014-03-14 11:00:21 +0100463 spin_lock_init(&kvm->arch.start_stop_lock);
464
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100465 return 0;
Carsten Otte598841c2011-07-24 10:48:21 +0200466out_nogmap:
467 debug_unregister(kvm->arch.dbf);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100468out_nodbf:
469 free_page((unsigned long)(kvm->arch.sca));
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100470out_err:
471 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100472}
473
Christian Borntraegerd329c032008-11-26 14:50:27 +0100474void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
475{
476 VCPU_EVENT(vcpu, 3, "%s", "free cpu");
Cornelia Huckade38c32012-07-23 17:20:30 +0200477 trace_kvm_s390_destroy_vcpu(vcpu->vcpu_id);
Christian Borntraeger67335e62014-03-25 17:09:08 +0100478 kvm_s390_clear_local_irqs(vcpu);
Dominik Dingel3c038e62013-10-07 17:11:48 +0200479 kvm_clear_async_pf_completion_queue(vcpu);
Carsten Otte58f94602012-01-04 10:25:27 +0100480 if (!kvm_is_ucontrol(vcpu->kvm)) {
481 clear_bit(63 - vcpu->vcpu_id,
482 (unsigned long *) &vcpu->kvm->arch.sca->mcn);
483 if (vcpu->kvm->arch.sca->cpu[vcpu->vcpu_id].sda ==
484 (__u64) vcpu->arch.sie_block)
485 vcpu->kvm->arch.sca->cpu[vcpu->vcpu_id].sda = 0;
486 }
Carsten Otteabf4a712009-05-12 17:21:51 +0200487 smp_mb();
Carsten Otte27e03932012-01-04 10:25:21 +0100488
489 if (kvm_is_ucontrol(vcpu->kvm))
490 gmap_free(vcpu->arch.gmap);
491
Dominik Dingelb31605c2014-03-25 13:47:11 +0100492 if (kvm_s390_cmma_enabled(vcpu->kvm))
493 kvm_s390_vcpu_unsetup_cmma(vcpu);
Christian Borntraegerd329c032008-11-26 14:50:27 +0100494 free_page((unsigned long)(vcpu->arch.sie_block));
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200495
Christian Borntraeger6692cef2008-11-26 14:51:08 +0100496 kvm_vcpu_uninit(vcpu);
Michael Muellerb110fea2013-06-12 13:54:54 +0200497 kmem_cache_free(kvm_vcpu_cache, vcpu);
Christian Borntraegerd329c032008-11-26 14:50:27 +0100498}
499
500static void kvm_free_vcpus(struct kvm *kvm)
501{
502 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300503 struct kvm_vcpu *vcpu;
Christian Borntraegerd329c032008-11-26 14:50:27 +0100504
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300505 kvm_for_each_vcpu(i, vcpu, kvm)
506 kvm_arch_vcpu_destroy(vcpu);
507
508 mutex_lock(&kvm->lock);
509 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
510 kvm->vcpus[i] = NULL;
511
512 atomic_set(&kvm->online_vcpus, 0);
513 mutex_unlock(&kvm->lock);
Christian Borntraegerd329c032008-11-26 14:50:27 +0100514}
515
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800516void kvm_arch_sync_events(struct kvm *kvm)
517{
518}
519
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100520void kvm_arch_destroy_vm(struct kvm *kvm)
521{
Christian Borntraegerd329c032008-11-26 14:50:27 +0100522 kvm_free_vcpus(kvm);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100523 free_page((unsigned long)(kvm->arch.sca));
Christian Borntraegerd329c032008-11-26 14:50:27 +0100524 debug_unregister(kvm->arch.dbf);
Carsten Otte27e03932012-01-04 10:25:21 +0100525 if (!kvm_is_ucontrol(kvm))
526 gmap_free(kvm->arch.gmap);
Cornelia Huck841b91c2013-07-15 13:36:01 +0200527 kvm_s390_destroy_adapters(kvm);
Christian Borntraeger67335e62014-03-25 17:09:08 +0100528 kvm_s390_clear_float_irqs(kvm);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100529}
530
531/* Section: vcpu related */
532int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
533{
Dominik Dingel3c038e62013-10-07 17:11:48 +0200534 vcpu->arch.pfault_token = KVM_S390_PFAULT_TOKEN_INVALID;
535 kvm_clear_async_pf_completion_queue(vcpu);
Carsten Otte27e03932012-01-04 10:25:21 +0100536 if (kvm_is_ucontrol(vcpu->kvm)) {
537 vcpu->arch.gmap = gmap_alloc(current->mm);
538 if (!vcpu->arch.gmap)
539 return -ENOMEM;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +0200540 vcpu->arch.gmap->private = vcpu->kvm;
Carsten Otte27e03932012-01-04 10:25:21 +0100541 return 0;
542 }
543
Carsten Otte598841c2011-07-24 10:48:21 +0200544 vcpu->arch.gmap = vcpu->kvm->arch.gmap;
Christian Borntraeger59674c12012-01-11 11:20:33 +0100545 vcpu->run->kvm_valid_regs = KVM_SYNC_PREFIX |
546 KVM_SYNC_GPRS |
Christian Borntraeger9eed07352012-02-06 10:59:07 +0100547 KVM_SYNC_ACRS |
548 KVM_SYNC_CRS;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100549 return 0;
550}
551
552void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
553{
Christian Borntraeger6692cef2008-11-26 14:51:08 +0100554 /* Nothing todo */
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100555}
556
557void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
558{
Martin Schwidefsky4725c862013-10-15 16:08:34 +0200559 save_fp_ctl(&vcpu->arch.host_fpregs.fpc);
560 save_fp_regs(vcpu->arch.host_fpregs.fprs);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100561 save_access_regs(vcpu->arch.host_acrs);
Martin Schwidefsky4725c862013-10-15 16:08:34 +0200562 restore_fp_ctl(&vcpu->arch.guest_fpregs.fpc);
563 restore_fp_regs(vcpu->arch.guest_fpregs.fprs);
Christian Borntraeger59674c12012-01-11 11:20:33 +0100564 restore_access_regs(vcpu->run->s.regs.acrs);
Christian Borntraeger480e5922011-09-20 17:07:28 +0200565 gmap_enable(vcpu->arch.gmap);
Cornelia Huck9e6dabe2011-11-17 11:00:41 +0100566 atomic_set_mask(CPUSTAT_RUNNING, &vcpu->arch.sie_block->cpuflags);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100567}
568
569void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
570{
Cornelia Huck9e6dabe2011-11-17 11:00:41 +0100571 atomic_clear_mask(CPUSTAT_RUNNING, &vcpu->arch.sie_block->cpuflags);
Christian Borntraeger480e5922011-09-20 17:07:28 +0200572 gmap_disable(vcpu->arch.gmap);
Martin Schwidefsky4725c862013-10-15 16:08:34 +0200573 save_fp_ctl(&vcpu->arch.guest_fpregs.fpc);
574 save_fp_regs(vcpu->arch.guest_fpregs.fprs);
Christian Borntraeger59674c12012-01-11 11:20:33 +0100575 save_access_regs(vcpu->run->s.regs.acrs);
Martin Schwidefsky4725c862013-10-15 16:08:34 +0200576 restore_fp_ctl(&vcpu->arch.host_fpregs.fpc);
577 restore_fp_regs(vcpu->arch.host_fpregs.fprs);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100578 restore_access_regs(vcpu->arch.host_acrs);
579}
580
581static void kvm_s390_vcpu_initial_reset(struct kvm_vcpu *vcpu)
582{
583 /* this equals initial cpu reset in pop, but we don't switch to ESA */
584 vcpu->arch.sie_block->gpsw.mask = 0UL;
585 vcpu->arch.sie_block->gpsw.addr = 0UL;
Christian Borntraeger8d26cf72012-01-11 11:19:32 +0100586 kvm_s390_set_prefix(vcpu, 0);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100587 vcpu->arch.sie_block->cputm = 0UL;
588 vcpu->arch.sie_block->ckc = 0UL;
589 vcpu->arch.sie_block->todpr = 0;
590 memset(vcpu->arch.sie_block->gcr, 0, 16 * sizeof(__u64));
591 vcpu->arch.sie_block->gcr[0] = 0xE0UL;
592 vcpu->arch.sie_block->gcr[14] = 0xC2000000UL;
593 vcpu->arch.guest_fpregs.fpc = 0;
594 asm volatile("lfpc %0" : : "Q" (vcpu->arch.guest_fpregs.fpc));
595 vcpu->arch.sie_block->gbea = 1;
Christian Borntraeger672550f2014-02-10 15:32:19 +0100596 vcpu->arch.sie_block->pp = 0;
Dominik Dingel3c038e62013-10-07 17:11:48 +0200597 vcpu->arch.pfault_token = KVM_S390_PFAULT_TOKEN_INVALID;
598 kvm_clear_async_pf_completion_queue(vcpu);
David Hildenbrand6352e4d2014-04-10 17:35:00 +0200599 if (!kvm_s390_user_cpu_state_ctrl(vcpu->kvm))
600 kvm_s390_vcpu_stop(vcpu);
Jens Freimann2ed10cc2014-02-11 13:48:07 +0100601 kvm_s390_clear_local_irqs(vcpu);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100602}
603
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200604int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
605{
606 return 0;
607}
608
Dominik Dingelb31605c2014-03-25 13:47:11 +0100609void kvm_s390_vcpu_unsetup_cmma(struct kvm_vcpu *vcpu)
610{
611 free_page(vcpu->arch.sie_block->cbrlo);
612 vcpu->arch.sie_block->cbrlo = 0;
613}
614
615int kvm_s390_vcpu_setup_cmma(struct kvm_vcpu *vcpu)
616{
617 vcpu->arch.sie_block->cbrlo = get_zeroed_page(GFP_KERNEL);
618 if (!vcpu->arch.sie_block->cbrlo)
619 return -ENOMEM;
620
621 vcpu->arch.sie_block->ecb2 |= 0x80;
622 vcpu->arch.sie_block->ecb2 &= ~0x08;
623 return 0;
624}
625
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100626int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
627{
Dominik Dingelb31605c2014-03-25 13:47:11 +0100628 int rc = 0;
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200629
Cornelia Huck9e6dabe2011-11-17 11:00:41 +0100630 atomic_set(&vcpu->arch.sie_block->cpuflags, CPUSTAT_ZARCH |
631 CPUSTAT_SM |
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200632 CPUSTAT_STOPPED |
633 CPUSTAT_GED);
Christian Borntraegerfc345312010-06-17 23:16:20 +0200634 vcpu->arch.sie_block->ecb = 6;
Michael Mueller7feb6bb2013-06-28 13:30:24 +0200635 if (test_vfacility(50) && test_vfacility(73))
636 vcpu->arch.sie_block->ecb |= 0x10;
637
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200638 vcpu->arch.sie_block->ecb2 = 8;
David Hildenbrand49539192014-02-21 08:59:59 +0100639 vcpu->arch.sie_block->eca = 0xD1002000U;
Heiko Carstens217a4402013-12-30 12:54:14 +0100640 if (sclp_has_siif())
641 vcpu->arch.sie_block->eca |= 1;
Michael Mueller78c4b59f2013-07-26 15:04:04 +0200642 vcpu->arch.sie_block->fac = (int) (long) vfacilities;
Matthew Rosato5a5e6532013-01-29 11:48:20 -0500643 vcpu->arch.sie_block->ictl |= ICTL_ISKE | ICTL_SSKE | ICTL_RRBE |
644 ICTL_TPROT;
645
Dominik Dingelb31605c2014-03-25 13:47:11 +0100646 if (kvm_s390_cmma_enabled(vcpu->kvm)) {
647 rc = kvm_s390_vcpu_setup_cmma(vcpu);
648 if (rc)
649 return rc;
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200650 }
Christian Borntraegerca872302009-05-12 17:21:49 +0200651 hrtimer_init(&vcpu->arch.ckc_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
Christian Borntraegerca872302009-05-12 17:21:49 +0200652 vcpu->arch.ckc_timer.function = kvm_s390_idle_wakeup;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100653 get_cpu_id(&vcpu->arch.cpu_id);
Christian Borntraeger92e6ecf2009-03-26 15:23:58 +0100654 vcpu->arch.cpu_id.version = 0xff;
Dominik Dingelb31605c2014-03-25 13:47:11 +0100655 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100656}
657
658struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm,
659 unsigned int id)
660{
Carsten Otte4d475552011-10-18 12:27:12 +0200661 struct kvm_vcpu *vcpu;
Michael Mueller7feb6bb2013-06-28 13:30:24 +0200662 struct sie_page *sie_page;
Carsten Otte4d475552011-10-18 12:27:12 +0200663 int rc = -EINVAL;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100664
Carsten Otte4d475552011-10-18 12:27:12 +0200665 if (id >= KVM_MAX_VCPUS)
666 goto out;
667
668 rc = -ENOMEM;
669
Michael Muellerb110fea2013-06-12 13:54:54 +0200670 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100671 if (!vcpu)
Carsten Otte4d475552011-10-18 12:27:12 +0200672 goto out;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100673
Michael Mueller7feb6bb2013-06-28 13:30:24 +0200674 sie_page = (struct sie_page *) get_zeroed_page(GFP_KERNEL);
675 if (!sie_page)
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100676 goto out_free_cpu;
677
Michael Mueller7feb6bb2013-06-28 13:30:24 +0200678 vcpu->arch.sie_block = &sie_page->sie_block;
679 vcpu->arch.sie_block->itdba = (unsigned long) &sie_page->itdb;
680
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100681 vcpu->arch.sie_block->icpua = id;
Carsten Otte58f94602012-01-04 10:25:27 +0100682 if (!kvm_is_ucontrol(kvm)) {
683 if (!kvm->arch.sca) {
684 WARN_ON_ONCE(1);
685 goto out_free_cpu;
686 }
687 if (!kvm->arch.sca->cpu[id].sda)
688 kvm->arch.sca->cpu[id].sda =
689 (__u64) vcpu->arch.sie_block;
690 vcpu->arch.sie_block->scaoh =
691 (__u32)(((__u64)kvm->arch.sca) >> 32);
692 vcpu->arch.sie_block->scaol = (__u32)(__u64)kvm->arch.sca;
693 set_bit(63 - id, (unsigned long *) &kvm->arch.sca->mcn);
694 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100695
Carsten Otteba5c1e92008-03-25 18:47:26 +0100696 spin_lock_init(&vcpu->arch.local_int.lock);
697 INIT_LIST_HEAD(&vcpu->arch.local_int.list);
698 vcpu->arch.local_int.float_int = &kvm->arch.float_int;
Christian Borntraegerd0321a22013-06-12 13:54:55 +0200699 vcpu->arch.local_int.wq = &vcpu->wq;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100700 vcpu->arch.local_int.cpuflags = &vcpu->arch.sie_block->cpuflags;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100701
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100702 rc = kvm_vcpu_init(vcpu, kvm, id);
703 if (rc)
Wei Yongjun7b06bf22010-03-09 14:37:53 +0800704 goto out_free_sie_block;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100705 VM_EVENT(kvm, 3, "create cpu %d at %p, sie block at %p", id, vcpu,
706 vcpu->arch.sie_block);
Cornelia Huckade38c32012-07-23 17:20:30 +0200707 trace_kvm_s390_create_vcpu(id, vcpu, vcpu->arch.sie_block);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100708
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100709 return vcpu;
Wei Yongjun7b06bf22010-03-09 14:37:53 +0800710out_free_sie_block:
711 free_page((unsigned long)(vcpu->arch.sie_block));
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100712out_free_cpu:
Michael Muellerb110fea2013-06-12 13:54:54 +0200713 kmem_cache_free(kvm_vcpu_cache, vcpu);
Carsten Otte4d475552011-10-18 12:27:12 +0200714out:
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100715 return ERR_PTR(rc);
716}
717
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100718int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
719{
Michael Muellerf87618e2014-02-26 16:14:17 +0100720 return kvm_cpu_has_interrupt(vcpu);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100721}
722
Christian Borntraeger49b99e12013-05-17 14:41:35 +0200723void s390_vcpu_block(struct kvm_vcpu *vcpu)
724{
725 atomic_set_mask(PROG_BLOCK_SIE, &vcpu->arch.sie_block->prog20);
726}
727
728void s390_vcpu_unblock(struct kvm_vcpu *vcpu)
729{
730 atomic_clear_mask(PROG_BLOCK_SIE, &vcpu->arch.sie_block->prog20);
731}
732
733/*
734 * Kick a guest cpu out of SIE and wait until SIE is not running.
735 * If the CPU is not running (e.g. waiting as idle) the function will
736 * return immediately. */
737void exit_sie(struct kvm_vcpu *vcpu)
738{
739 atomic_set_mask(CPUSTAT_STOP_INT, &vcpu->arch.sie_block->cpuflags);
740 while (vcpu->arch.sie_block->prog0c & PROG_IN_SIE)
741 cpu_relax();
742}
743
744/* Kick a guest cpu out of SIE and prevent SIE-reentry */
745void exit_sie_sync(struct kvm_vcpu *vcpu)
746{
747 s390_vcpu_block(vcpu);
748 exit_sie(vcpu);
749}
750
Christian Borntraeger2c70fe42013-05-17 14:41:36 +0200751static void kvm_gmap_notifier(struct gmap *gmap, unsigned long address)
752{
753 int i;
754 struct kvm *kvm = gmap->private;
755 struct kvm_vcpu *vcpu;
756
757 kvm_for_each_vcpu(i, vcpu, kvm) {
758 /* match against both prefix pages */
Michael Muellerfda902c2014-05-13 16:58:30 +0200759 if (kvm_s390_get_prefix(vcpu) == (address & ~0x1000UL)) {
Christian Borntraeger2c70fe42013-05-17 14:41:36 +0200760 VCPU_EVENT(vcpu, 2, "gmap notifier for %lx", address);
761 kvm_make_request(KVM_REQ_MMU_RELOAD, vcpu);
762 exit_sie_sync(vcpu);
763 }
764 }
765}
766
Christoffer Dallb6d33832012-03-08 16:44:24 -0500767int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
768{
769 /* kvm common code refers to this, but never calls it */
770 BUG();
771 return 0;
772}
773
Carsten Otte14eebd92012-05-15 14:15:26 +0200774static int kvm_arch_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu,
775 struct kvm_one_reg *reg)
776{
777 int r = -EINVAL;
778
779 switch (reg->id) {
Carsten Otte29b7c712012-05-15 14:15:27 +0200780 case KVM_REG_S390_TODPR:
781 r = put_user(vcpu->arch.sie_block->todpr,
782 (u32 __user *)reg->addr);
783 break;
784 case KVM_REG_S390_EPOCHDIFF:
785 r = put_user(vcpu->arch.sie_block->epoch,
786 (u64 __user *)reg->addr);
787 break;
Jason J. herne46a6dd12012-05-15 14:15:28 +0200788 case KVM_REG_S390_CPU_TIMER:
789 r = put_user(vcpu->arch.sie_block->cputm,
790 (u64 __user *)reg->addr);
791 break;
792 case KVM_REG_S390_CLOCK_COMP:
793 r = put_user(vcpu->arch.sie_block->ckc,
794 (u64 __user *)reg->addr);
795 break;
Dominik Dingel536336c2013-09-30 10:55:33 +0200796 case KVM_REG_S390_PFTOKEN:
797 r = put_user(vcpu->arch.pfault_token,
798 (u64 __user *)reg->addr);
799 break;
800 case KVM_REG_S390_PFCOMPARE:
801 r = put_user(vcpu->arch.pfault_compare,
802 (u64 __user *)reg->addr);
803 break;
804 case KVM_REG_S390_PFSELECT:
805 r = put_user(vcpu->arch.pfault_select,
806 (u64 __user *)reg->addr);
807 break;
Christian Borntraeger672550f2014-02-10 15:32:19 +0100808 case KVM_REG_S390_PP:
809 r = put_user(vcpu->arch.sie_block->pp,
810 (u64 __user *)reg->addr);
811 break;
Christian Borntraegerafa45ff2014-02-10 15:39:23 +0100812 case KVM_REG_S390_GBEA:
813 r = put_user(vcpu->arch.sie_block->gbea,
814 (u64 __user *)reg->addr);
815 break;
Carsten Otte14eebd92012-05-15 14:15:26 +0200816 default:
817 break;
818 }
819
820 return r;
821}
822
823static int kvm_arch_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu,
824 struct kvm_one_reg *reg)
825{
826 int r = -EINVAL;
827
828 switch (reg->id) {
Carsten Otte29b7c712012-05-15 14:15:27 +0200829 case KVM_REG_S390_TODPR:
830 r = get_user(vcpu->arch.sie_block->todpr,
831 (u32 __user *)reg->addr);
832 break;
833 case KVM_REG_S390_EPOCHDIFF:
834 r = get_user(vcpu->arch.sie_block->epoch,
835 (u64 __user *)reg->addr);
836 break;
Jason J. herne46a6dd12012-05-15 14:15:28 +0200837 case KVM_REG_S390_CPU_TIMER:
838 r = get_user(vcpu->arch.sie_block->cputm,
839 (u64 __user *)reg->addr);
840 break;
841 case KVM_REG_S390_CLOCK_COMP:
842 r = get_user(vcpu->arch.sie_block->ckc,
843 (u64 __user *)reg->addr);
844 break;
Dominik Dingel536336c2013-09-30 10:55:33 +0200845 case KVM_REG_S390_PFTOKEN:
846 r = get_user(vcpu->arch.pfault_token,
847 (u64 __user *)reg->addr);
848 break;
849 case KVM_REG_S390_PFCOMPARE:
850 r = get_user(vcpu->arch.pfault_compare,
851 (u64 __user *)reg->addr);
852 break;
853 case KVM_REG_S390_PFSELECT:
854 r = get_user(vcpu->arch.pfault_select,
855 (u64 __user *)reg->addr);
856 break;
Christian Borntraeger672550f2014-02-10 15:32:19 +0100857 case KVM_REG_S390_PP:
858 r = get_user(vcpu->arch.sie_block->pp,
859 (u64 __user *)reg->addr);
860 break;
Christian Borntraegerafa45ff2014-02-10 15:39:23 +0100861 case KVM_REG_S390_GBEA:
862 r = get_user(vcpu->arch.sie_block->gbea,
863 (u64 __user *)reg->addr);
864 break;
Carsten Otte14eebd92012-05-15 14:15:26 +0200865 default:
866 break;
867 }
868
869 return r;
870}
Christoffer Dallb6d33832012-03-08 16:44:24 -0500871
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100872static int kvm_arch_vcpu_ioctl_initial_reset(struct kvm_vcpu *vcpu)
873{
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100874 kvm_s390_vcpu_initial_reset(vcpu);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100875 return 0;
876}
877
878int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
879{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100880 memcpy(&vcpu->run->s.regs.gprs, &regs->gprs, sizeof(regs->gprs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100881 return 0;
882}
883
884int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
885{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100886 memcpy(&regs->gprs, &vcpu->run->s.regs.gprs, sizeof(regs->gprs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100887 return 0;
888}
889
890int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
891 struct kvm_sregs *sregs)
892{
Christian Borntraeger59674c12012-01-11 11:20:33 +0100893 memcpy(&vcpu->run->s.regs.acrs, &sregs->acrs, sizeof(sregs->acrs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100894 memcpy(&vcpu->arch.sie_block->gcr, &sregs->crs, sizeof(sregs->crs));
Christian Borntraeger59674c12012-01-11 11:20:33 +0100895 restore_access_regs(vcpu->run->s.regs.acrs);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100896 return 0;
897}
898
899int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
900 struct kvm_sregs *sregs)
901{
Christian Borntraeger59674c12012-01-11 11:20:33 +0100902 memcpy(&sregs->acrs, &vcpu->run->s.regs.acrs, sizeof(sregs->acrs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100903 memcpy(&sregs->crs, &vcpu->arch.sie_block->gcr, sizeof(sregs->crs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100904 return 0;
905}
906
907int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
908{
Martin Schwidefsky4725c862013-10-15 16:08:34 +0200909 if (test_fp_ctl(fpu->fpc))
910 return -EINVAL;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100911 memcpy(&vcpu->arch.guest_fpregs.fprs, &fpu->fprs, sizeof(fpu->fprs));
Martin Schwidefsky4725c862013-10-15 16:08:34 +0200912 vcpu->arch.guest_fpregs.fpc = fpu->fpc;
913 restore_fp_ctl(&vcpu->arch.guest_fpregs.fpc);
914 restore_fp_regs(vcpu->arch.guest_fpregs.fprs);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100915 return 0;
916}
917
918int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
919{
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100920 memcpy(&fpu->fprs, &vcpu->arch.guest_fpregs.fprs, sizeof(fpu->fprs));
921 fpu->fpc = vcpu->arch.guest_fpregs.fpc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100922 return 0;
923}
924
925static int kvm_arch_vcpu_ioctl_set_initial_psw(struct kvm_vcpu *vcpu, psw_t psw)
926{
927 int rc = 0;
928
David Hildenbrand7a42fdc2014-05-05 16:26:19 +0200929 if (!is_vcpu_stopped(vcpu))
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100930 rc = -EBUSY;
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100931 else {
932 vcpu->run->psw_mask = psw.mask;
933 vcpu->run->psw_addr = psw.addr;
934 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100935 return rc;
936}
937
938int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
939 struct kvm_translation *tr)
940{
941 return -EINVAL; /* not implemented yet */
942}
943
David Hildenbrand27291e22014-01-23 12:26:52 +0100944#define VALID_GUESTDBG_FLAGS (KVM_GUESTDBG_SINGLESTEP | \
945 KVM_GUESTDBG_USE_HW_BP | \
946 KVM_GUESTDBG_ENABLE)
947
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100948int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
949 struct kvm_guest_debug *dbg)
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100950{
David Hildenbrand27291e22014-01-23 12:26:52 +0100951 int rc = 0;
952
953 vcpu->guest_debug = 0;
954 kvm_s390_clear_bp_data(vcpu);
955
David Hildenbrand2de3bfc2014-05-20 17:25:20 +0200956 if (dbg->control & ~VALID_GUESTDBG_FLAGS)
David Hildenbrand27291e22014-01-23 12:26:52 +0100957 return -EINVAL;
958
959 if (dbg->control & KVM_GUESTDBG_ENABLE) {
960 vcpu->guest_debug = dbg->control;
961 /* enforce guest PER */
962 atomic_set_mask(CPUSTAT_P, &vcpu->arch.sie_block->cpuflags);
963
964 if (dbg->control & KVM_GUESTDBG_USE_HW_BP)
965 rc = kvm_s390_import_bp_data(vcpu, dbg);
966 } else {
967 atomic_clear_mask(CPUSTAT_P, &vcpu->arch.sie_block->cpuflags);
968 vcpu->arch.guestdbg.last_bp = 0;
969 }
970
971 if (rc) {
972 vcpu->guest_debug = 0;
973 kvm_s390_clear_bp_data(vcpu);
974 atomic_clear_mask(CPUSTAT_P, &vcpu->arch.sie_block->cpuflags);
975 }
976
977 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100978}
979
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -0300980int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
981 struct kvm_mp_state *mp_state)
982{
David Hildenbrand6352e4d2014-04-10 17:35:00 +0200983 /* CHECK_STOP and LOAD are not supported yet */
984 return is_vcpu_stopped(vcpu) ? KVM_MP_STATE_STOPPED :
985 KVM_MP_STATE_OPERATING;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -0300986}
987
988int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
989 struct kvm_mp_state *mp_state)
990{
David Hildenbrand6352e4d2014-04-10 17:35:00 +0200991 int rc = 0;
992
993 /* user space knows about this interface - let it control the state */
994 vcpu->kvm->arch.user_cpu_state_ctrl = 1;
995
996 switch (mp_state->mp_state) {
997 case KVM_MP_STATE_STOPPED:
998 kvm_s390_vcpu_stop(vcpu);
999 break;
1000 case KVM_MP_STATE_OPERATING:
1001 kvm_s390_vcpu_start(vcpu);
1002 break;
1003 case KVM_MP_STATE_LOAD:
1004 case KVM_MP_STATE_CHECK_STOP:
1005 /* fall through - CHECK_STOP and LOAD are not supported yet */
1006 default:
1007 rc = -ENXIO;
1008 }
1009
1010 return rc;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03001011}
1012
Dominik Dingelb31605c2014-03-25 13:47:11 +01001013bool kvm_s390_cmma_enabled(struct kvm *kvm)
1014{
1015 if (!MACHINE_IS_LPAR)
1016 return false;
1017 /* only enable for z10 and later */
1018 if (!MACHINE_HAS_EDAT1)
1019 return false;
1020 if (!kvm->arch.use_cmma)
1021 return false;
1022 return true;
1023}
1024
David Hildenbrand8ad35752014-03-14 11:00:21 +01001025static bool ibs_enabled(struct kvm_vcpu *vcpu)
1026{
1027 return atomic_read(&vcpu->arch.sie_block->cpuflags) & CPUSTAT_IBS;
1028}
1029
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02001030static int kvm_s390_handle_requests(struct kvm_vcpu *vcpu)
1031{
David Hildenbrand8ad35752014-03-14 11:00:21 +01001032retry:
1033 s390_vcpu_unblock(vcpu);
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02001034 /*
1035 * We use MMU_RELOAD just to re-arm the ipte notifier for the
1036 * guest prefix page. gmap_ipte_notify will wait on the ptl lock.
1037 * This ensures that the ipte instruction for this request has
1038 * already finished. We might race against a second unmapper that
1039 * wants to set the blocking bit. Lets just retry the request loop.
1040 */
David Hildenbrand8ad35752014-03-14 11:00:21 +01001041 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu)) {
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02001042 int rc;
1043 rc = gmap_ipte_notify(vcpu->arch.gmap,
Michael Muellerfda902c2014-05-13 16:58:30 +02001044 kvm_s390_get_prefix(vcpu),
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02001045 PAGE_SIZE * 2);
1046 if (rc)
1047 return rc;
David Hildenbrand8ad35752014-03-14 11:00:21 +01001048 goto retry;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02001049 }
David Hildenbrand8ad35752014-03-14 11:00:21 +01001050
1051 if (kvm_check_request(KVM_REQ_ENABLE_IBS, vcpu)) {
1052 if (!ibs_enabled(vcpu)) {
1053 trace_kvm_s390_enable_disable_ibs(vcpu->vcpu_id, 1);
1054 atomic_set_mask(CPUSTAT_IBS,
1055 &vcpu->arch.sie_block->cpuflags);
1056 }
1057 goto retry;
1058 }
1059
1060 if (kvm_check_request(KVM_REQ_DISABLE_IBS, vcpu)) {
1061 if (ibs_enabled(vcpu)) {
1062 trace_kvm_s390_enable_disable_ibs(vcpu->vcpu_id, 0);
1063 atomic_clear_mask(CPUSTAT_IBS,
1064 &vcpu->arch.sie_block->cpuflags);
1065 }
1066 goto retry;
1067 }
1068
David Hildenbrand0759d062014-05-13 16:54:32 +02001069 /* nothing to do, just clear the request */
1070 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
1071
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02001072 return 0;
1073}
1074
Thomas Huthfa576c52014-05-06 17:20:16 +02001075/**
1076 * kvm_arch_fault_in_page - fault-in guest page if necessary
1077 * @vcpu: The corresponding virtual cpu
1078 * @gpa: Guest physical address
1079 * @writable: Whether the page should be writable or not
1080 *
1081 * Make sure that a guest page has been faulted-in on the host.
1082 *
1083 * Return: Zero on success, negative error code otherwise.
1084 */
1085long kvm_arch_fault_in_page(struct kvm_vcpu *vcpu, gpa_t gpa, int writable)
Dominik Dingel24eb3a82013-06-17 16:25:18 +02001086{
Dominik Dingel24eb3a82013-06-17 16:25:18 +02001087 struct mm_struct *mm = current->mm;
Thomas Huthfa576c52014-05-06 17:20:16 +02001088 hva_t hva;
1089 long rc;
1090
1091 hva = gmap_fault(gpa, vcpu->arch.gmap);
1092 if (IS_ERR_VALUE(hva))
1093 return (long)hva;
Dominik Dingel24eb3a82013-06-17 16:25:18 +02001094 down_read(&mm->mmap_sem);
Thomas Huthfa576c52014-05-06 17:20:16 +02001095 rc = get_user_pages(current, mm, hva, 1, writable, 0, NULL, NULL);
Dominik Dingel24eb3a82013-06-17 16:25:18 +02001096 up_read(&mm->mmap_sem);
Thomas Huthfa576c52014-05-06 17:20:16 +02001097
1098 return rc < 0 ? rc : 0;
Dominik Dingel24eb3a82013-06-17 16:25:18 +02001099}
1100
Dominik Dingel3c038e62013-10-07 17:11:48 +02001101static void __kvm_inject_pfault_token(struct kvm_vcpu *vcpu, bool start_token,
1102 unsigned long token)
1103{
1104 struct kvm_s390_interrupt inti;
1105 inti.parm64 = token;
1106
1107 if (start_token) {
1108 inti.type = KVM_S390_INT_PFAULT_INIT;
1109 WARN_ON_ONCE(kvm_s390_inject_vcpu(vcpu, &inti));
1110 } else {
1111 inti.type = KVM_S390_INT_PFAULT_DONE;
1112 WARN_ON_ONCE(kvm_s390_inject_vm(vcpu->kvm, &inti));
1113 }
1114}
1115
1116void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
1117 struct kvm_async_pf *work)
1118{
1119 trace_kvm_s390_pfault_init(vcpu, work->arch.pfault_token);
1120 __kvm_inject_pfault_token(vcpu, true, work->arch.pfault_token);
1121}
1122
1123void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
1124 struct kvm_async_pf *work)
1125{
1126 trace_kvm_s390_pfault_done(vcpu, work->arch.pfault_token);
1127 __kvm_inject_pfault_token(vcpu, false, work->arch.pfault_token);
1128}
1129
1130void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu,
1131 struct kvm_async_pf *work)
1132{
1133 /* s390 will always inject the page directly */
1134}
1135
1136bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu)
1137{
1138 /*
1139 * s390 will always inject the page directly,
1140 * but we still want check_async_completion to cleanup
1141 */
1142 return true;
1143}
1144
1145static int kvm_arch_setup_async_pf(struct kvm_vcpu *vcpu)
1146{
1147 hva_t hva;
1148 struct kvm_arch_async_pf arch;
1149 int rc;
1150
1151 if (vcpu->arch.pfault_token == KVM_S390_PFAULT_TOKEN_INVALID)
1152 return 0;
1153 if ((vcpu->arch.sie_block->gpsw.mask & vcpu->arch.pfault_select) !=
1154 vcpu->arch.pfault_compare)
1155 return 0;
1156 if (psw_extint_disabled(vcpu))
1157 return 0;
1158 if (kvm_cpu_has_interrupt(vcpu))
1159 return 0;
1160 if (!(vcpu->arch.sie_block->gcr[0] & 0x200ul))
1161 return 0;
1162 if (!vcpu->arch.gmap->pfault_enabled)
1163 return 0;
1164
Heiko Carstens81480cc2014-01-01 16:36:07 +01001165 hva = gfn_to_hva(vcpu->kvm, gpa_to_gfn(current->thread.gmap_addr));
1166 hva += current->thread.gmap_addr & ~PAGE_MASK;
1167 if (read_guest_real(vcpu, vcpu->arch.pfault_token, &arch.pfault_token, 8))
Dominik Dingel3c038e62013-10-07 17:11:48 +02001168 return 0;
1169
1170 rc = kvm_setup_async_pf(vcpu, current->thread.gmap_addr, hva, &arch);
1171 return rc;
1172}
1173
Thomas Huth3fb4c402013-09-12 10:33:43 +02001174static int vcpu_pre_run(struct kvm_vcpu *vcpu)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001175{
Thomas Huth3fb4c402013-09-12 10:33:43 +02001176 int rc, cpuflags;
Carsten Ottee168bf82012-01-04 10:25:22 +01001177
Dominik Dingel3c038e62013-10-07 17:11:48 +02001178 /*
1179 * On s390 notifications for arriving pages will be delivered directly
1180 * to the guest but the house keeping for completed pfaults is
1181 * handled outside the worker.
1182 */
1183 kvm_check_async_pf_completion(vcpu);
1184
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +01001185 memcpy(&vcpu->arch.sie_block->gg14, &vcpu->run->s.regs.gprs[14], 16);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001186
1187 if (need_resched())
1188 schedule();
1189
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +02001190 if (test_cpu_flag(CIF_MCCK_PENDING))
Christian Borntraeger71cde582008-05-21 13:37:34 +02001191 s390_handle_mcck();
1192
Carsten Otted6b6d162012-01-04 10:25:25 +01001193 if (!kvm_is_ucontrol(vcpu->kvm))
1194 kvm_s390_deliver_pending_interrupts(vcpu);
Carsten Otte0ff31862008-05-21 13:37:37 +02001195
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02001196 rc = kvm_s390_handle_requests(vcpu);
1197 if (rc)
1198 return rc;
1199
David Hildenbrand27291e22014-01-23 12:26:52 +01001200 if (guestdbg_enabled(vcpu)) {
1201 kvm_s390_backup_guest_per_regs(vcpu);
1202 kvm_s390_patch_guest_per_regs(vcpu);
1203 }
1204
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001205 vcpu->arch.sie_block->icptcode = 0;
Thomas Huth3fb4c402013-09-12 10:33:43 +02001206 cpuflags = atomic_read(&vcpu->arch.sie_block->cpuflags);
1207 VCPU_EVENT(vcpu, 6, "entering sie flags %x", cpuflags);
1208 trace_kvm_s390_sie_enter(vcpu, cpuflags);
Dominik Dingel2b29a9f2013-07-26 15:04:00 +02001209
Thomas Huth3fb4c402013-09-12 10:33:43 +02001210 return 0;
1211}
1212
1213static int vcpu_post_run(struct kvm_vcpu *vcpu, int exit_reason)
1214{
Dominik Dingel24eb3a82013-06-17 16:25:18 +02001215 int rc = -1;
Dominik Dingel2b29a9f2013-07-26 15:04:00 +02001216
1217 VCPU_EVENT(vcpu, 6, "exit sie icptcode %d",
1218 vcpu->arch.sie_block->icptcode);
1219 trace_kvm_s390_sie_exit(vcpu, vcpu->arch.sie_block->icptcode);
1220
David Hildenbrand27291e22014-01-23 12:26:52 +01001221 if (guestdbg_enabled(vcpu))
1222 kvm_s390_restore_guest_per_regs(vcpu);
1223
Thomas Huth3fb4c402013-09-12 10:33:43 +02001224 if (exit_reason >= 0) {
Martin Schwidefsky7c470532013-05-17 14:41:37 +02001225 rc = 0;
Thomas Huth210b16072013-09-19 16:26:18 +02001226 } else if (kvm_is_ucontrol(vcpu->kvm)) {
1227 vcpu->run->exit_reason = KVM_EXIT_S390_UCONTROL;
1228 vcpu->run->s390_ucontrol.trans_exc_code =
1229 current->thread.gmap_addr;
1230 vcpu->run->s390_ucontrol.pgm_code = 0x10;
1231 rc = -EREMOTE;
Dominik Dingel24eb3a82013-06-17 16:25:18 +02001232
1233 } else if (current->thread.gmap_pfault) {
Dominik Dingel3c038e62013-10-07 17:11:48 +02001234 trace_kvm_s390_major_guest_pfault(vcpu);
Dominik Dingel24eb3a82013-06-17 16:25:18 +02001235 current->thread.gmap_pfault = 0;
Thomas Huthfa576c52014-05-06 17:20:16 +02001236 if (kvm_arch_setup_async_pf(vcpu)) {
Dominik Dingel24eb3a82013-06-17 16:25:18 +02001237 rc = 0;
Thomas Huthfa576c52014-05-06 17:20:16 +02001238 } else {
1239 gpa_t gpa = current->thread.gmap_addr;
1240 rc = kvm_arch_fault_in_page(vcpu, gpa, 1);
1241 }
Dominik Dingel24eb3a82013-06-17 16:25:18 +02001242 }
1243
1244 if (rc == -1) {
Christian Borntraeger699bde32014-01-20 12:34:13 +01001245 VCPU_EVENT(vcpu, 3, "%s", "fault in sie instruction");
1246 trace_kvm_s390_sie_fault(vcpu);
1247 rc = kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
Carsten Otte1f0d0f02008-05-21 13:37:40 +02001248 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001249
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +01001250 memcpy(&vcpu->run->s.regs.gprs[14], &vcpu->arch.sie_block->gg14, 16);
Thomas Huth3fb4c402013-09-12 10:33:43 +02001251
Thomas Hutha76ccff2013-09-12 10:33:44 +02001252 if (rc == 0) {
1253 if (kvm_is_ucontrol(vcpu->kvm))
Christian Borntraeger2955c832014-03-06 16:01:38 +01001254 /* Don't exit for host interrupts. */
1255 rc = vcpu->arch.sie_block->icptcode ? -EOPNOTSUPP : 0;
Thomas Hutha76ccff2013-09-12 10:33:44 +02001256 else
1257 rc = kvm_handle_sie_intercept(vcpu);
1258 }
1259
Thomas Huth3fb4c402013-09-12 10:33:43 +02001260 return rc;
1261}
1262
1263static int __vcpu_run(struct kvm_vcpu *vcpu)
1264{
1265 int rc, exit_reason;
1266
Thomas Huth800c1062013-09-12 10:33:45 +02001267 /*
1268 * We try to hold kvm->srcu during most of vcpu_run (except when run-
1269 * ning the guest), so that memslots (and other stuff) are protected
1270 */
1271 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
1272
Thomas Hutha76ccff2013-09-12 10:33:44 +02001273 do {
1274 rc = vcpu_pre_run(vcpu);
1275 if (rc)
1276 break;
Thomas Huth3fb4c402013-09-12 10:33:43 +02001277
Thomas Huth800c1062013-09-12 10:33:45 +02001278 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Thomas Hutha76ccff2013-09-12 10:33:44 +02001279 /*
1280 * As PF_VCPU will be used in fault handler, between
1281 * guest_enter and guest_exit should be no uaccess.
1282 */
1283 preempt_disable();
1284 kvm_guest_enter();
1285 preempt_enable();
1286 exit_reason = sie64a(vcpu->arch.sie_block,
1287 vcpu->run->s.regs.gprs);
1288 kvm_guest_exit();
Thomas Huth800c1062013-09-12 10:33:45 +02001289 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Thomas Huth3fb4c402013-09-12 10:33:43 +02001290
Thomas Hutha76ccff2013-09-12 10:33:44 +02001291 rc = vcpu_post_run(vcpu, exit_reason);
David Hildenbrand27291e22014-01-23 12:26:52 +01001292 } while (!signal_pending(current) && !guestdbg_exit_pending(vcpu) && !rc);
Thomas Huth3fb4c402013-09-12 10:33:43 +02001293
Thomas Huth800c1062013-09-12 10:33:45 +02001294 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Carsten Ottee168bf82012-01-04 10:25:22 +01001295 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001296}
1297
1298int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1299{
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01001300 int rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001301 sigset_t sigsaved;
1302
David Hildenbrand27291e22014-01-23 12:26:52 +01001303 if (guestdbg_exit_pending(vcpu)) {
1304 kvm_s390_prepare_debug_exit(vcpu);
1305 return 0;
1306 }
1307
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001308 if (vcpu->sigset_active)
1309 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
1310
David Hildenbrand6352e4d2014-04-10 17:35:00 +02001311 if (!kvm_s390_user_cpu_state_ctrl(vcpu->kvm)) {
1312 kvm_s390_vcpu_start(vcpu);
1313 } else if (is_vcpu_stopped(vcpu)) {
1314 pr_err_ratelimited("kvm-s390: can't run stopped vcpu %d\n",
1315 vcpu->vcpu_id);
1316 return -EINVAL;
1317 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001318
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01001319 switch (kvm_run->exit_reason) {
1320 case KVM_EXIT_S390_SIEIC:
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01001321 case KVM_EXIT_UNKNOWN:
Christian Ehrhardt9ace9032009-05-20 15:34:55 +02001322 case KVM_EXIT_INTR:
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01001323 case KVM_EXIT_S390_RESET:
Carsten Ottee168bf82012-01-04 10:25:22 +01001324 case KVM_EXIT_S390_UCONTROL:
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01001325 case KVM_EXIT_S390_TSCH:
David Hildenbrand27291e22014-01-23 12:26:52 +01001326 case KVM_EXIT_DEBUG:
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01001327 break;
1328 default:
1329 BUG();
1330 }
1331
Carsten Otted7b0b5e2009-11-19 14:21:16 +01001332 vcpu->arch.sie_block->gpsw.mask = kvm_run->psw_mask;
1333 vcpu->arch.sie_block->gpsw.addr = kvm_run->psw_addr;
Christian Borntraeger60b413c2012-01-11 11:20:31 +01001334 if (kvm_run->kvm_dirty_regs & KVM_SYNC_PREFIX) {
1335 kvm_run->kvm_dirty_regs &= ~KVM_SYNC_PREFIX;
1336 kvm_s390_set_prefix(vcpu, kvm_run->s.regs.prefix);
1337 }
Christian Borntraeger9eed07352012-02-06 10:59:07 +01001338 if (kvm_run->kvm_dirty_regs & KVM_SYNC_CRS) {
1339 kvm_run->kvm_dirty_regs &= ~KVM_SYNC_CRS;
1340 memcpy(&vcpu->arch.sie_block->gcr, &kvm_run->s.regs.crs, 128);
1341 kvm_s390_set_prefix(vcpu, kvm_run->s.regs.prefix);
1342 }
Carsten Otted7b0b5e2009-11-19 14:21:16 +01001343
Heiko Carstensdab4079d2009-06-12 10:26:32 +02001344 might_fault();
Thomas Hutha76ccff2013-09-12 10:33:44 +02001345 rc = __vcpu_run(vcpu);
Christian Ehrhardt9ace9032009-05-20 15:34:55 +02001346
Christian Ehrhardtb1d16c42009-05-20 15:34:56 +02001347 if (signal_pending(current) && !rc) {
1348 kvm_run->exit_reason = KVM_EXIT_INTR;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01001349 rc = -EINTR;
Christian Ehrhardtb1d16c42009-05-20 15:34:56 +02001350 }
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01001351
David Hildenbrand27291e22014-01-23 12:26:52 +01001352 if (guestdbg_exit_pending(vcpu) && !rc) {
1353 kvm_s390_prepare_debug_exit(vcpu);
1354 rc = 0;
1355 }
1356
Heiko Carstensb8e660b2010-02-26 22:37:41 +01001357 if (rc == -EOPNOTSUPP) {
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01001358 /* intercept cannot be handled in-kernel, prepare kvm-run */
1359 kvm_run->exit_reason = KVM_EXIT_S390_SIEIC;
1360 kvm_run->s390_sieic.icptcode = vcpu->arch.sie_block->icptcode;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01001361 kvm_run->s390_sieic.ipa = vcpu->arch.sie_block->ipa;
1362 kvm_run->s390_sieic.ipb = vcpu->arch.sie_block->ipb;
1363 rc = 0;
1364 }
1365
1366 if (rc == -EREMOTE) {
1367 /* intercept was handled, but userspace support is needed
1368 * kvm_run has been prepared by the handler */
1369 rc = 0;
1370 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001371
Carsten Otted7b0b5e2009-11-19 14:21:16 +01001372 kvm_run->psw_mask = vcpu->arch.sie_block->gpsw.mask;
1373 kvm_run->psw_addr = vcpu->arch.sie_block->gpsw.addr;
Michael Muellerfda902c2014-05-13 16:58:30 +02001374 kvm_run->s.regs.prefix = kvm_s390_get_prefix(vcpu);
Christian Borntraeger9eed07352012-02-06 10:59:07 +01001375 memcpy(&kvm_run->s.regs.crs, &vcpu->arch.sie_block->gcr, 128);
Carsten Otted7b0b5e2009-11-19 14:21:16 +01001376
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001377 if (vcpu->sigset_active)
1378 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1379
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001380 vcpu->stat.exit_userspace++;
Heiko Carstens7e8e6ab2008-04-04 15:12:35 +02001381 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001382}
1383
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001384/*
1385 * store status at address
1386 * we use have two special cases:
1387 * KVM_S390_STORE_STATUS_NOADDR: -> 0x1200 on 64 bit
1388 * KVM_S390_STORE_STATUS_PREFIXED: -> prefix
1389 */
Heiko Carstensd0bce602014-01-01 16:45:58 +01001390int kvm_s390_store_status_unloaded(struct kvm_vcpu *vcpu, unsigned long gpa)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001391{
Carsten Otte092670c2011-07-24 10:48:22 +02001392 unsigned char archmode = 1;
Michael Muellerfda902c2014-05-13 16:58:30 +02001393 unsigned int px;
Thomas Huth178bd782013-11-13 20:28:18 +01001394 u64 clkcomp;
Heiko Carstensd0bce602014-01-01 16:45:58 +01001395 int rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001396
Heiko Carstensd0bce602014-01-01 16:45:58 +01001397 if (gpa == KVM_S390_STORE_STATUS_NOADDR) {
1398 if (write_guest_abs(vcpu, 163, &archmode, 1))
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001399 return -EFAULT;
Heiko Carstensd0bce602014-01-01 16:45:58 +01001400 gpa = SAVE_AREA_BASE;
1401 } else if (gpa == KVM_S390_STORE_STATUS_PREFIXED) {
1402 if (write_guest_real(vcpu, 163, &archmode, 1))
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001403 return -EFAULT;
Heiko Carstensd0bce602014-01-01 16:45:58 +01001404 gpa = kvm_s390_real_to_abs(vcpu, SAVE_AREA_BASE);
1405 }
1406 rc = write_guest_abs(vcpu, gpa + offsetof(struct save_area, fp_regs),
1407 vcpu->arch.guest_fpregs.fprs, 128);
1408 rc |= write_guest_abs(vcpu, gpa + offsetof(struct save_area, gp_regs),
1409 vcpu->run->s.regs.gprs, 128);
1410 rc |= write_guest_abs(vcpu, gpa + offsetof(struct save_area, psw),
1411 &vcpu->arch.sie_block->gpsw, 16);
Michael Muellerfda902c2014-05-13 16:58:30 +02001412 px = kvm_s390_get_prefix(vcpu);
Heiko Carstensd0bce602014-01-01 16:45:58 +01001413 rc |= write_guest_abs(vcpu, gpa + offsetof(struct save_area, pref_reg),
Michael Muellerfda902c2014-05-13 16:58:30 +02001414 &px, 4);
Heiko Carstensd0bce602014-01-01 16:45:58 +01001415 rc |= write_guest_abs(vcpu,
1416 gpa + offsetof(struct save_area, fp_ctrl_reg),
1417 &vcpu->arch.guest_fpregs.fpc, 4);
1418 rc |= write_guest_abs(vcpu, gpa + offsetof(struct save_area, tod_reg),
1419 &vcpu->arch.sie_block->todpr, 4);
1420 rc |= write_guest_abs(vcpu, gpa + offsetof(struct save_area, timer),
1421 &vcpu->arch.sie_block->cputm, 8);
Thomas Huth178bd782013-11-13 20:28:18 +01001422 clkcomp = vcpu->arch.sie_block->ckc >> 8;
Heiko Carstensd0bce602014-01-01 16:45:58 +01001423 rc |= write_guest_abs(vcpu, gpa + offsetof(struct save_area, clk_cmp),
1424 &clkcomp, 8);
1425 rc |= write_guest_abs(vcpu, gpa + offsetof(struct save_area, acc_regs),
1426 &vcpu->run->s.regs.acrs, 64);
1427 rc |= write_guest_abs(vcpu, gpa + offsetof(struct save_area, ctrl_regs),
1428 &vcpu->arch.sie_block->gcr, 128);
1429 return rc ? -EFAULT : 0;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001430}
1431
Thomas Huthe8798922013-11-06 15:46:33 +01001432int kvm_s390_vcpu_store_status(struct kvm_vcpu *vcpu, unsigned long addr)
1433{
1434 /*
1435 * The guest FPRS and ACRS are in the host FPRS/ACRS due to the lazy
1436 * copying in vcpu load/put. Lets update our copies before we save
1437 * it into the save area
1438 */
1439 save_fp_ctl(&vcpu->arch.guest_fpregs.fpc);
1440 save_fp_regs(vcpu->arch.guest_fpregs.fprs);
1441 save_access_regs(vcpu->run->s.regs.acrs);
1442
1443 return kvm_s390_store_status_unloaded(vcpu, addr);
1444}
1445
David Hildenbrand8ad35752014-03-14 11:00:21 +01001446static void __disable_ibs_on_vcpu(struct kvm_vcpu *vcpu)
1447{
1448 kvm_check_request(KVM_REQ_ENABLE_IBS, vcpu);
1449 kvm_make_request(KVM_REQ_DISABLE_IBS, vcpu);
1450 exit_sie_sync(vcpu);
1451}
1452
1453static void __disable_ibs_on_all_vcpus(struct kvm *kvm)
1454{
1455 unsigned int i;
1456 struct kvm_vcpu *vcpu;
1457
1458 kvm_for_each_vcpu(i, vcpu, kvm) {
1459 __disable_ibs_on_vcpu(vcpu);
1460 }
1461}
1462
1463static void __enable_ibs_on_vcpu(struct kvm_vcpu *vcpu)
1464{
1465 kvm_check_request(KVM_REQ_DISABLE_IBS, vcpu);
1466 kvm_make_request(KVM_REQ_ENABLE_IBS, vcpu);
1467 exit_sie_sync(vcpu);
1468}
1469
David Hildenbrand6852d7b2014-03-14 10:59:29 +01001470void kvm_s390_vcpu_start(struct kvm_vcpu *vcpu)
1471{
David Hildenbrand8ad35752014-03-14 11:00:21 +01001472 int i, online_vcpus, started_vcpus = 0;
1473
1474 if (!is_vcpu_stopped(vcpu))
1475 return;
1476
David Hildenbrand6852d7b2014-03-14 10:59:29 +01001477 trace_kvm_s390_vcpu_start_stop(vcpu->vcpu_id, 1);
David Hildenbrand8ad35752014-03-14 11:00:21 +01001478 /* Only one cpu at a time may enter/leave the STOPPED state. */
David Hildenbrand433b9ee2014-05-06 16:11:14 +02001479 spin_lock(&vcpu->kvm->arch.start_stop_lock);
David Hildenbrand8ad35752014-03-14 11:00:21 +01001480 online_vcpus = atomic_read(&vcpu->kvm->online_vcpus);
1481
1482 for (i = 0; i < online_vcpus; i++) {
1483 if (!is_vcpu_stopped(vcpu->kvm->vcpus[i]))
1484 started_vcpus++;
1485 }
1486
1487 if (started_vcpus == 0) {
1488 /* we're the only active VCPU -> speed it up */
1489 __enable_ibs_on_vcpu(vcpu);
1490 } else if (started_vcpus == 1) {
1491 /*
1492 * As we are starting a second VCPU, we have to disable
1493 * the IBS facility on all VCPUs to remove potentially
1494 * oustanding ENABLE requests.
1495 */
1496 __disable_ibs_on_all_vcpus(vcpu->kvm);
1497 }
1498
David Hildenbrand6852d7b2014-03-14 10:59:29 +01001499 atomic_clear_mask(CPUSTAT_STOPPED, &vcpu->arch.sie_block->cpuflags);
David Hildenbrand8ad35752014-03-14 11:00:21 +01001500 /*
1501 * Another VCPU might have used IBS while we were offline.
1502 * Let's play safe and flush the VCPU at startup.
1503 */
1504 vcpu->arch.sie_block->ihcpu = 0xffff;
David Hildenbrand433b9ee2014-05-06 16:11:14 +02001505 spin_unlock(&vcpu->kvm->arch.start_stop_lock);
David Hildenbrand8ad35752014-03-14 11:00:21 +01001506 return;
David Hildenbrand6852d7b2014-03-14 10:59:29 +01001507}
1508
1509void kvm_s390_vcpu_stop(struct kvm_vcpu *vcpu)
1510{
David Hildenbrand8ad35752014-03-14 11:00:21 +01001511 int i, online_vcpus, started_vcpus = 0;
1512 struct kvm_vcpu *started_vcpu = NULL;
1513
1514 if (is_vcpu_stopped(vcpu))
1515 return;
1516
David Hildenbrand6852d7b2014-03-14 10:59:29 +01001517 trace_kvm_s390_vcpu_start_stop(vcpu->vcpu_id, 0);
David Hildenbrand8ad35752014-03-14 11:00:21 +01001518 /* Only one cpu at a time may enter/leave the STOPPED state. */
David Hildenbrand433b9ee2014-05-06 16:11:14 +02001519 spin_lock(&vcpu->kvm->arch.start_stop_lock);
David Hildenbrand8ad35752014-03-14 11:00:21 +01001520 online_vcpus = atomic_read(&vcpu->kvm->online_vcpus);
1521
David Hildenbrand32f5ff632014-04-14 12:40:03 +02001522 /* Need to lock access to action_bits to avoid a SIGP race condition */
David Hildenbrand4ae3c082014-05-16 10:23:53 +02001523 spin_lock(&vcpu->arch.local_int.lock);
David Hildenbrand6852d7b2014-03-14 10:59:29 +01001524 atomic_set_mask(CPUSTAT_STOPPED, &vcpu->arch.sie_block->cpuflags);
David Hildenbrand32f5ff632014-04-14 12:40:03 +02001525
1526 /* SIGP STOP and SIGP STOP AND STORE STATUS has been fully processed */
1527 vcpu->arch.local_int.action_bits &=
1528 ~(ACTION_STOP_ON_STOP | ACTION_STORE_ON_STOP);
David Hildenbrand4ae3c082014-05-16 10:23:53 +02001529 spin_unlock(&vcpu->arch.local_int.lock);
David Hildenbrand32f5ff632014-04-14 12:40:03 +02001530
David Hildenbrand8ad35752014-03-14 11:00:21 +01001531 __disable_ibs_on_vcpu(vcpu);
1532
1533 for (i = 0; i < online_vcpus; i++) {
1534 if (!is_vcpu_stopped(vcpu->kvm->vcpus[i])) {
1535 started_vcpus++;
1536 started_vcpu = vcpu->kvm->vcpus[i];
1537 }
1538 }
1539
1540 if (started_vcpus == 1) {
1541 /*
1542 * As we only have one VCPU left, we want to enable the
1543 * IBS facility for that VCPU to speed it up.
1544 */
1545 __enable_ibs_on_vcpu(started_vcpu);
1546 }
1547
David Hildenbrand433b9ee2014-05-06 16:11:14 +02001548 spin_unlock(&vcpu->kvm->arch.start_stop_lock);
David Hildenbrand8ad35752014-03-14 11:00:21 +01001549 return;
David Hildenbrand6852d7b2014-03-14 10:59:29 +01001550}
1551
Cornelia Huckd6712df2012-12-20 15:32:11 +01001552static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
1553 struct kvm_enable_cap *cap)
1554{
1555 int r;
1556
1557 if (cap->flags)
1558 return -EINVAL;
1559
1560 switch (cap->cap) {
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01001561 case KVM_CAP_S390_CSS_SUPPORT:
1562 if (!vcpu->kvm->arch.css_support) {
1563 vcpu->kvm->arch.css_support = 1;
1564 trace_kvm_s390_enable_css(vcpu->kvm);
1565 }
1566 r = 0;
1567 break;
Cornelia Huckd6712df2012-12-20 15:32:11 +01001568 default:
1569 r = -EINVAL;
1570 break;
1571 }
1572 return r;
1573}
1574
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001575long kvm_arch_vcpu_ioctl(struct file *filp,
1576 unsigned int ioctl, unsigned long arg)
1577{
1578 struct kvm_vcpu *vcpu = filp->private_data;
1579 void __user *argp = (void __user *)arg;
Thomas Huth800c1062013-09-12 10:33:45 +02001580 int idx;
Avi Kivitybc923cc2010-05-13 12:21:46 +03001581 long r;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001582
Avi Kivity937366242010-05-13 12:35:17 +03001583 switch (ioctl) {
1584 case KVM_S390_INTERRUPT: {
Carsten Otteba5c1e92008-03-25 18:47:26 +01001585 struct kvm_s390_interrupt s390int;
1586
Avi Kivity937366242010-05-13 12:35:17 +03001587 r = -EFAULT;
Carsten Otteba5c1e92008-03-25 18:47:26 +01001588 if (copy_from_user(&s390int, argp, sizeof(s390int)))
Avi Kivity937366242010-05-13 12:35:17 +03001589 break;
1590 r = kvm_s390_inject_vcpu(vcpu, &s390int);
1591 break;
Carsten Otteba5c1e92008-03-25 18:47:26 +01001592 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001593 case KVM_S390_STORE_STATUS:
Thomas Huth800c1062013-09-12 10:33:45 +02001594 idx = srcu_read_lock(&vcpu->kvm->srcu);
Avi Kivitybc923cc2010-05-13 12:21:46 +03001595 r = kvm_s390_vcpu_store_status(vcpu, arg);
Thomas Huth800c1062013-09-12 10:33:45 +02001596 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivitybc923cc2010-05-13 12:21:46 +03001597 break;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001598 case KVM_S390_SET_INITIAL_PSW: {
1599 psw_t psw;
1600
Avi Kivitybc923cc2010-05-13 12:21:46 +03001601 r = -EFAULT;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001602 if (copy_from_user(&psw, argp, sizeof(psw)))
Avi Kivitybc923cc2010-05-13 12:21:46 +03001603 break;
1604 r = kvm_arch_vcpu_ioctl_set_initial_psw(vcpu, psw);
1605 break;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001606 }
1607 case KVM_S390_INITIAL_RESET:
Avi Kivitybc923cc2010-05-13 12:21:46 +03001608 r = kvm_arch_vcpu_ioctl_initial_reset(vcpu);
1609 break;
Carsten Otte14eebd92012-05-15 14:15:26 +02001610 case KVM_SET_ONE_REG:
1611 case KVM_GET_ONE_REG: {
1612 struct kvm_one_reg reg;
1613 r = -EFAULT;
1614 if (copy_from_user(&reg, argp, sizeof(reg)))
1615 break;
1616 if (ioctl == KVM_SET_ONE_REG)
1617 r = kvm_arch_vcpu_ioctl_set_one_reg(vcpu, &reg);
1618 else
1619 r = kvm_arch_vcpu_ioctl_get_one_reg(vcpu, &reg);
1620 break;
1621 }
Carsten Otte27e03932012-01-04 10:25:21 +01001622#ifdef CONFIG_KVM_S390_UCONTROL
1623 case KVM_S390_UCAS_MAP: {
1624 struct kvm_s390_ucas_mapping ucasmap;
1625
1626 if (copy_from_user(&ucasmap, argp, sizeof(ucasmap))) {
1627 r = -EFAULT;
1628 break;
1629 }
1630
1631 if (!kvm_is_ucontrol(vcpu->kvm)) {
1632 r = -EINVAL;
1633 break;
1634 }
1635
1636 r = gmap_map_segment(vcpu->arch.gmap, ucasmap.user_addr,
1637 ucasmap.vcpu_addr, ucasmap.length);
1638 break;
1639 }
1640 case KVM_S390_UCAS_UNMAP: {
1641 struct kvm_s390_ucas_mapping ucasmap;
1642
1643 if (copy_from_user(&ucasmap, argp, sizeof(ucasmap))) {
1644 r = -EFAULT;
1645 break;
1646 }
1647
1648 if (!kvm_is_ucontrol(vcpu->kvm)) {
1649 r = -EINVAL;
1650 break;
1651 }
1652
1653 r = gmap_unmap_segment(vcpu->arch.gmap, ucasmap.vcpu_addr,
1654 ucasmap.length);
1655 break;
1656 }
1657#endif
Carsten Otteccc79102012-01-04 10:25:26 +01001658 case KVM_S390_VCPU_FAULT: {
1659 r = gmap_fault(arg, vcpu->arch.gmap);
1660 if (!IS_ERR_VALUE(r))
1661 r = 0;
1662 break;
1663 }
Cornelia Huckd6712df2012-12-20 15:32:11 +01001664 case KVM_ENABLE_CAP:
1665 {
1666 struct kvm_enable_cap cap;
1667 r = -EFAULT;
1668 if (copy_from_user(&cap, argp, sizeof(cap)))
1669 break;
1670 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
1671 break;
1672 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001673 default:
Carsten Otte3e6afcf2012-01-04 10:25:30 +01001674 r = -ENOTTY;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001675 }
Avi Kivitybc923cc2010-05-13 12:21:46 +03001676 return r;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001677}
1678
Carsten Otte5b1c1492012-01-04 10:25:23 +01001679int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
1680{
1681#ifdef CONFIG_KVM_S390_UCONTROL
1682 if ((vmf->pgoff == KVM_S390_SIE_PAGE_OFFSET)
1683 && (kvm_is_ucontrol(vcpu->kvm))) {
1684 vmf->page = virt_to_page(vcpu->arch.sie_block);
1685 get_page(vmf->page);
1686 return 0;
1687 }
1688#endif
1689 return VM_FAULT_SIGBUS;
1690}
1691
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05301692void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001693 struct kvm_memory_slot *dont)
1694{
1695}
1696
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05301697int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
1698 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001699{
1700 return 0;
1701}
1702
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +09001703void kvm_arch_memslots_updated(struct kvm *kvm)
1704{
1705}
1706
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001707/* Section: memory related */
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001708int kvm_arch_prepare_memory_region(struct kvm *kvm,
1709 struct kvm_memory_slot *memslot,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09001710 struct kvm_userspace_memory_region *mem,
1711 enum kvm_mr_change change)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001712{
Nick Wangdd2887e2013-03-25 17:22:57 +01001713 /* A few sanity checks. We can have memory slots which have to be
1714 located/ended at a segment boundary (1MB). The memory in userland is
1715 ok to be fragmented into various different vmas. It is okay to mmap()
1716 and munmap() stuff in this slot after doing this call at any time */
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001717
Carsten Otte598841c2011-07-24 10:48:21 +02001718 if (mem->userspace_addr & 0xffffful)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001719 return -EINVAL;
1720
Carsten Otte598841c2011-07-24 10:48:21 +02001721 if (mem->memory_size & 0xffffful)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001722 return -EINVAL;
1723
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001724 return 0;
1725}
1726
1727void kvm_arch_commit_memory_region(struct kvm *kvm,
1728 struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09001729 const struct kvm_memory_slot *old,
1730 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001731{
Carsten Ottef7850c92011-07-24 10:48:23 +02001732 int rc;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001733
Christian Borntraeger2cef4de2013-03-25 17:22:48 +01001734 /* If the basics of the memslot do not change, we do not want
1735 * to update the gmap. Every update causes several unnecessary
1736 * segment translation exceptions. This is usually handled just
1737 * fine by the normal fault handler + gmap, but it will also
1738 * cause faults on the prefix page of running guest CPUs.
1739 */
1740 if (old->userspace_addr == mem->userspace_addr &&
1741 old->base_gfn * PAGE_SIZE == mem->guest_phys_addr &&
1742 old->npages * PAGE_SIZE == mem->memory_size)
1743 return;
Carsten Otte598841c2011-07-24 10:48:21 +02001744
1745 rc = gmap_map_segment(kvm->arch.gmap, mem->userspace_addr,
1746 mem->guest_phys_addr, mem->memory_size);
1747 if (rc)
Carsten Ottef7850c92011-07-24 10:48:23 +02001748 printk(KERN_WARNING "kvm-s390: failed to commit memory region\n");
Carsten Otte598841c2011-07-24 10:48:21 +02001749 return;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001750}
1751
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03001752void kvm_arch_flush_shadow_all(struct kvm *kvm)
1753{
1754}
1755
1756void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
1757 struct kvm_memory_slot *slot)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03001758{
1759}
1760
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001761static int __init kvm_s390_init(void)
1762{
Christian Borntraegeref50f7a2009-06-23 17:24:07 +02001763 int ret;
Avi Kivity0ee75be2010-04-28 15:39:01 +03001764 ret = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
Christian Borntraegeref50f7a2009-06-23 17:24:07 +02001765 if (ret)
1766 return ret;
1767
1768 /*
1769 * guests can ask for up to 255+1 double words, we need a full page
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001770 * to hold the maximum amount of facilities. On the other hand, we
Christian Borntraegeref50f7a2009-06-23 17:24:07 +02001771 * only set facilities that are known to work in KVM.
1772 */
Michael Mueller78c4b59f2013-07-26 15:04:04 +02001773 vfacilities = (unsigned long *) get_zeroed_page(GFP_KERNEL|GFP_DMA);
1774 if (!vfacilities) {
Christian Borntraegeref50f7a2009-06-23 17:24:07 +02001775 kvm_exit();
1776 return -ENOMEM;
1777 }
Michael Mueller78c4b59f2013-07-26 15:04:04 +02001778 memcpy(vfacilities, S390_lowcore.stfle_fac_list, 16);
Thomas Huthd208c792013-12-12 13:40:40 +01001779 vfacilities[0] &= 0xff82fff3f4fc2000UL;
Michael Mueller7feb6bb2013-06-28 13:30:24 +02001780 vfacilities[1] &= 0x005c000000000000UL;
Christian Borntraegeref50f7a2009-06-23 17:24:07 +02001781 return 0;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001782}
1783
1784static void __exit kvm_s390_exit(void)
1785{
Michael Mueller78c4b59f2013-07-26 15:04:04 +02001786 free_page((unsigned long) vfacilities);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001787 kvm_exit();
1788}
1789
1790module_init(kvm_s390_init);
1791module_exit(kvm_s390_exit);
Cornelia Huck566af942013-05-27 18:42:33 +02001792
1793/*
1794 * Enable autoloading of the kvm module.
1795 * Note that we add the module alias here instead of virt/kvm/kvm_main.c
1796 * since x86 takes a different approach.
1797 */
1798#include <linux/miscdevice.h>
1799MODULE_ALIAS_MISCDEV(KVM_MINOR);
1800MODULE_ALIAS("devname:kvm");