Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 1 | /* |
Heiko Carstens | a53c8fa | 2012-07-20 11:15:04 +0200 | [diff] [blame] | 2 | * handling diagnose instructions |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 3 | * |
Heiko Carstens | a53c8fa | 2012-07-20 11:15:04 +0200 | [diff] [blame] | 4 | * Copyright IBM Corp. 2008, 2011 |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 5 | * |
| 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> |
| 15 | #include <linux/kvm_host.h> |
Martin Schwidefsky | deedabb | 2013-05-21 17:29:52 +0200 | [diff] [blame^] | 16 | #include <asm/pgalloc.h> |
Cornelia Huck | 10ccaa1 | 2013-02-28 12:33:21 +0100 | [diff] [blame] | 17 | #include <asm/virtio-ccw.h> |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 18 | #include "kvm-s390.h" |
Cornelia Huck | 5786fff | 2012-07-23 17:20:29 +0200 | [diff] [blame] | 19 | #include "trace.h" |
Cornelia Huck | ade38c3 | 2012-07-23 17:20:30 +0200 | [diff] [blame] | 20 | #include "trace-s390.h" |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 21 | |
Christian Borntraeger | 388186b | 2011-10-30 15:17:03 +0100 | [diff] [blame] | 22 | static int diag_release_pages(struct kvm_vcpu *vcpu) |
| 23 | { |
| 24 | unsigned long start, end; |
| 25 | unsigned long prefix = vcpu->arch.sie_block->prefix; |
| 26 | |
Christian Borntraeger | 5a32c1a | 2012-01-11 11:20:32 +0100 | [diff] [blame] | 27 | start = vcpu->run->s.regs.gprs[(vcpu->arch.sie_block->ipa & 0xf0) >> 4]; |
| 28 | end = vcpu->run->s.regs.gprs[vcpu->arch.sie_block->ipa & 0xf] + 4096; |
Christian Borntraeger | 388186b | 2011-10-30 15:17:03 +0100 | [diff] [blame] | 29 | |
| 30 | if (start & ~PAGE_MASK || end & ~PAGE_MASK || start > end |
| 31 | || start < 2 * PAGE_SIZE) |
| 32 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
| 33 | |
| 34 | VCPU_EVENT(vcpu, 5, "diag release pages %lX %lX", start, end); |
| 35 | vcpu->stat.diagnose_10++; |
| 36 | |
| 37 | /* we checked for start > end above */ |
| 38 | if (end < prefix || start >= prefix + 2 * PAGE_SIZE) { |
| 39 | gmap_discard(start, end, vcpu->arch.gmap); |
| 40 | } else { |
| 41 | if (start < prefix) |
| 42 | gmap_discard(start, prefix, vcpu->arch.gmap); |
| 43 | if (end >= prefix) |
| 44 | gmap_discard(prefix + 2 * PAGE_SIZE, |
| 45 | end, vcpu->arch.gmap); |
| 46 | } |
| 47 | return 0; |
| 48 | } |
| 49 | |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 50 | static int __diag_time_slice_end(struct kvm_vcpu *vcpu) |
| 51 | { |
| 52 | VCPU_EVENT(vcpu, 5, "%s", "diag time slice end"); |
| 53 | vcpu->stat.diagnose_44++; |
Christian Borntraeger | 8733ac3 | 2012-04-25 15:30:39 +0200 | [diff] [blame] | 54 | kvm_vcpu_on_spin(vcpu); |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 55 | return 0; |
| 56 | } |
| 57 | |
Konstantin Weitz | 41628d3 | 2012-04-25 15:30:38 +0200 | [diff] [blame] | 58 | static int __diag_time_slice_end_directed(struct kvm_vcpu *vcpu) |
| 59 | { |
| 60 | struct kvm *kvm = vcpu->kvm; |
| 61 | struct kvm_vcpu *tcpu; |
| 62 | int tid; |
| 63 | int i; |
| 64 | |
| 65 | tid = vcpu->run->s.regs.gprs[(vcpu->arch.sie_block->ipa & 0xf0) >> 4]; |
| 66 | vcpu->stat.diagnose_9c++; |
| 67 | VCPU_EVENT(vcpu, 5, "diag time slice end directed to %d", tid); |
| 68 | |
| 69 | if (tid == vcpu->vcpu_id) |
| 70 | return 0; |
| 71 | |
| 72 | kvm_for_each_vcpu(i, tcpu, kvm) |
| 73 | if (tcpu->vcpu_id == tid) { |
| 74 | kvm_vcpu_yield_to(tcpu); |
| 75 | break; |
| 76 | } |
| 77 | |
| 78 | return 0; |
| 79 | } |
| 80 | |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 81 | static int __diag_ipl_functions(struct kvm_vcpu *vcpu) |
| 82 | { |
| 83 | unsigned int reg = vcpu->arch.sie_block->ipa & 0xf; |
Christian Borntraeger | 5a32c1a | 2012-01-11 11:20:32 +0100 | [diff] [blame] | 84 | unsigned long subcode = vcpu->run->s.regs.gprs[reg] & 0xffff; |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 85 | |
| 86 | VCPU_EVENT(vcpu, 5, "diag ipl functions, subcode %lx", subcode); |
| 87 | switch (subcode) { |
| 88 | case 3: |
| 89 | vcpu->run->s390_reset_flags = KVM_S390_RESET_CLEAR; |
Martin Schwidefsky | deedabb | 2013-05-21 17:29:52 +0200 | [diff] [blame^] | 90 | page_table_reset_pgste(current->mm, 0, TASK_SIZE); |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 91 | break; |
| 92 | case 4: |
| 93 | vcpu->run->s390_reset_flags = 0; |
Martin Schwidefsky | deedabb | 2013-05-21 17:29:52 +0200 | [diff] [blame^] | 94 | page_table_reset_pgste(current->mm, 0, TASK_SIZE); |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 95 | break; |
| 96 | default: |
Heiko Carstens | b8e660b | 2010-02-26 22:37:41 +0100 | [diff] [blame] | 97 | return -EOPNOTSUPP; |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 98 | } |
| 99 | |
Cornelia Huck | 9e6dabe | 2011-11-17 11:00:41 +0100 | [diff] [blame] | 100 | atomic_set_mask(CPUSTAT_STOPPED, &vcpu->arch.sie_block->cpuflags); |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 101 | vcpu->run->s390_reset_flags |= KVM_S390_RESET_SUBSYSTEM; |
| 102 | vcpu->run->s390_reset_flags |= KVM_S390_RESET_IPL; |
| 103 | vcpu->run->s390_reset_flags |= KVM_S390_RESET_CPU_INIT; |
| 104 | vcpu->run->exit_reason = KVM_EXIT_S390_RESET; |
Heiko Carstens | 33e1911 | 2009-01-09 12:14:56 +0100 | [diff] [blame] | 105 | VCPU_EVENT(vcpu, 3, "requesting userspace resets %llx", |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 106 | vcpu->run->s390_reset_flags); |
Cornelia Huck | ade38c3 | 2012-07-23 17:20:30 +0200 | [diff] [blame] | 107 | trace_kvm_s390_request_resets(vcpu->run->s390_reset_flags); |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 108 | return -EREMOTE; |
| 109 | } |
| 110 | |
Cornelia Huck | 10ccaa1 | 2013-02-28 12:33:21 +0100 | [diff] [blame] | 111 | static int __diag_virtio_hypercall(struct kvm_vcpu *vcpu) |
| 112 | { |
Thomas Huth | 800c106 | 2013-09-12 10:33:45 +0200 | [diff] [blame] | 113 | int ret; |
Cornelia Huck | 10ccaa1 | 2013-02-28 12:33:21 +0100 | [diff] [blame] | 114 | |
| 115 | /* No virtio-ccw notification? Get out quickly. */ |
| 116 | if (!vcpu->kvm->arch.css_support || |
| 117 | (vcpu->run->s.regs.gprs[1] != KVM_S390_VIRTIO_CCW_NOTIFY)) |
| 118 | return -EOPNOTSUPP; |
| 119 | |
Cornelia Huck | 10ccaa1 | 2013-02-28 12:33:21 +0100 | [diff] [blame] | 120 | /* |
| 121 | * The layout is as follows: |
| 122 | * - gpr 2 contains the subchannel id (passed as addr) |
| 123 | * - gpr 3 contains the virtqueue index (passed as datamatch) |
Cornelia Huck | 85dfe87 | 2013-07-03 16:30:54 +0200 | [diff] [blame] | 124 | * - gpr 4 contains the index on the bus (optionally) |
Cornelia Huck | 10ccaa1 | 2013-02-28 12:33:21 +0100 | [diff] [blame] | 125 | */ |
Cornelia Huck | 85dfe87 | 2013-07-03 16:30:54 +0200 | [diff] [blame] | 126 | ret = kvm_io_bus_write_cookie(vcpu->kvm, KVM_VIRTIO_CCW_NOTIFY_BUS, |
Dominik Dingel | ff1f3cb | 2013-12-09 18:30:01 +0100 | [diff] [blame] | 127 | vcpu->run->s.regs.gprs[2] & 0xffffffff, |
Cornelia Huck | 85dfe87 | 2013-07-03 16:30:54 +0200 | [diff] [blame] | 128 | 8, &vcpu->run->s.regs.gprs[3], |
| 129 | vcpu->run->s.regs.gprs[4]); |
Cornelia Huck | 85dfe87 | 2013-07-03 16:30:54 +0200 | [diff] [blame] | 130 | |
| 131 | /* |
| 132 | * Return cookie in gpr 2, but don't overwrite the register if the |
| 133 | * diagnose will be handled by userspace. |
| 134 | */ |
| 135 | if (ret != -EOPNOTSUPP) |
| 136 | vcpu->run->s.regs.gprs[2] = ret; |
| 137 | /* kvm_io_bus_write_cookie returns -EOPNOTSUPP if it found no match. */ |
Cornelia Huck | 10ccaa1 | 2013-02-28 12:33:21 +0100 | [diff] [blame] | 138 | return ret < 0 ? ret : 0; |
| 139 | } |
| 140 | |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 141 | int kvm_s390_handle_diag(struct kvm_vcpu *vcpu) |
| 142 | { |
Heiko Carstens | 743db27 | 2013-11-11 13:56:47 +0100 | [diff] [blame] | 143 | int code = kvm_s390_get_base_disp_rs(vcpu) & 0xffff; |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 144 | |
Thomas Huth | 93e1750 | 2013-06-20 17:22:02 +0200 | [diff] [blame] | 145 | if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) |
| 146 | return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); |
| 147 | |
Cornelia Huck | 5786fff | 2012-07-23 17:20:29 +0200 | [diff] [blame] | 148 | trace_kvm_s390_handle_diag(vcpu, code); |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 149 | switch (code) { |
Christian Borntraeger | 388186b | 2011-10-30 15:17:03 +0100 | [diff] [blame] | 150 | case 0x10: |
| 151 | return diag_release_pages(vcpu); |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 152 | case 0x44: |
| 153 | return __diag_time_slice_end(vcpu); |
Konstantin Weitz | 41628d3 | 2012-04-25 15:30:38 +0200 | [diff] [blame] | 154 | case 0x9c: |
| 155 | return __diag_time_slice_end_directed(vcpu); |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 156 | case 0x308: |
| 157 | return __diag_ipl_functions(vcpu); |
Cornelia Huck | 10ccaa1 | 2013-02-28 12:33:21 +0100 | [diff] [blame] | 158 | case 0x500: |
| 159 | return __diag_virtio_hypercall(vcpu); |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 160 | default: |
Heiko Carstens | b8e660b | 2010-02-26 22:37:41 +0100 | [diff] [blame] | 161 | return -EOPNOTSUPP; |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 162 | } |
| 163 | } |