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> |
| 16 | #include "kvm-s390.h" |
Cornelia Huck | 5786fff | 2012-07-23 17:20:29 +0200 | [diff] [blame^] | 17 | #include "trace.h" |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 18 | |
Christian Borntraeger | 388186b | 2011-10-30 15:17:03 +0100 | [diff] [blame] | 19 | static int diag_release_pages(struct kvm_vcpu *vcpu) |
| 20 | { |
| 21 | unsigned long start, end; |
| 22 | unsigned long prefix = vcpu->arch.sie_block->prefix; |
| 23 | |
Christian Borntraeger | 5a32c1a | 2012-01-11 11:20:32 +0100 | [diff] [blame] | 24 | start = vcpu->run->s.regs.gprs[(vcpu->arch.sie_block->ipa & 0xf0) >> 4]; |
| 25 | 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] | 26 | |
| 27 | if (start & ~PAGE_MASK || end & ~PAGE_MASK || start > end |
| 28 | || start < 2 * PAGE_SIZE) |
| 29 | return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION); |
| 30 | |
| 31 | VCPU_EVENT(vcpu, 5, "diag release pages %lX %lX", start, end); |
| 32 | vcpu->stat.diagnose_10++; |
| 33 | |
| 34 | /* we checked for start > end above */ |
| 35 | if (end < prefix || start >= prefix + 2 * PAGE_SIZE) { |
| 36 | gmap_discard(start, end, vcpu->arch.gmap); |
| 37 | } else { |
| 38 | if (start < prefix) |
| 39 | gmap_discard(start, prefix, vcpu->arch.gmap); |
| 40 | if (end >= prefix) |
| 41 | gmap_discard(prefix + 2 * PAGE_SIZE, |
| 42 | end, vcpu->arch.gmap); |
| 43 | } |
| 44 | return 0; |
| 45 | } |
| 46 | |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 47 | static int __diag_time_slice_end(struct kvm_vcpu *vcpu) |
| 48 | { |
| 49 | VCPU_EVENT(vcpu, 5, "%s", "diag time slice end"); |
| 50 | vcpu->stat.diagnose_44++; |
Christian Borntraeger | 8733ac3 | 2012-04-25 15:30:39 +0200 | [diff] [blame] | 51 | kvm_vcpu_on_spin(vcpu); |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 52 | return 0; |
| 53 | } |
| 54 | |
Konstantin Weitz | 41628d3 | 2012-04-25 15:30:38 +0200 | [diff] [blame] | 55 | static int __diag_time_slice_end_directed(struct kvm_vcpu *vcpu) |
| 56 | { |
| 57 | struct kvm *kvm = vcpu->kvm; |
| 58 | struct kvm_vcpu *tcpu; |
| 59 | int tid; |
| 60 | int i; |
| 61 | |
| 62 | tid = vcpu->run->s.regs.gprs[(vcpu->arch.sie_block->ipa & 0xf0) >> 4]; |
| 63 | vcpu->stat.diagnose_9c++; |
| 64 | VCPU_EVENT(vcpu, 5, "diag time slice end directed to %d", tid); |
| 65 | |
| 66 | if (tid == vcpu->vcpu_id) |
| 67 | return 0; |
| 68 | |
| 69 | kvm_for_each_vcpu(i, tcpu, kvm) |
| 70 | if (tcpu->vcpu_id == tid) { |
| 71 | kvm_vcpu_yield_to(tcpu); |
| 72 | break; |
| 73 | } |
| 74 | |
| 75 | return 0; |
| 76 | } |
| 77 | |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 78 | static int __diag_ipl_functions(struct kvm_vcpu *vcpu) |
| 79 | { |
| 80 | unsigned int reg = vcpu->arch.sie_block->ipa & 0xf; |
Christian Borntraeger | 5a32c1a | 2012-01-11 11:20:32 +0100 | [diff] [blame] | 81 | unsigned long subcode = vcpu->run->s.regs.gprs[reg] & 0xffff; |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 82 | |
| 83 | VCPU_EVENT(vcpu, 5, "diag ipl functions, subcode %lx", subcode); |
| 84 | switch (subcode) { |
| 85 | case 3: |
| 86 | vcpu->run->s390_reset_flags = KVM_S390_RESET_CLEAR; |
| 87 | break; |
| 88 | case 4: |
| 89 | vcpu->run->s390_reset_flags = 0; |
| 90 | break; |
| 91 | default: |
Heiko Carstens | b8e660b | 2010-02-26 22:37:41 +0100 | [diff] [blame] | 92 | return -EOPNOTSUPP; |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 93 | } |
| 94 | |
Cornelia Huck | 9e6dabe | 2011-11-17 11:00:41 +0100 | [diff] [blame] | 95 | atomic_set_mask(CPUSTAT_STOPPED, &vcpu->arch.sie_block->cpuflags); |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 96 | vcpu->run->s390_reset_flags |= KVM_S390_RESET_SUBSYSTEM; |
| 97 | vcpu->run->s390_reset_flags |= KVM_S390_RESET_IPL; |
| 98 | vcpu->run->s390_reset_flags |= KVM_S390_RESET_CPU_INIT; |
| 99 | vcpu->run->exit_reason = KVM_EXIT_S390_RESET; |
Heiko Carstens | 33e1911 | 2009-01-09 12:14:56 +0100 | [diff] [blame] | 100 | VCPU_EVENT(vcpu, 3, "requesting userspace resets %llx", |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 101 | vcpu->run->s390_reset_flags); |
| 102 | return -EREMOTE; |
| 103 | } |
| 104 | |
| 105 | int kvm_s390_handle_diag(struct kvm_vcpu *vcpu) |
| 106 | { |
| 107 | int code = (vcpu->arch.sie_block->ipb & 0xfff0000) >> 16; |
| 108 | |
Cornelia Huck | 5786fff | 2012-07-23 17:20:29 +0200 | [diff] [blame^] | 109 | trace_kvm_s390_handle_diag(vcpu, code); |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 110 | switch (code) { |
Christian Borntraeger | 388186b | 2011-10-30 15:17:03 +0100 | [diff] [blame] | 111 | case 0x10: |
| 112 | return diag_release_pages(vcpu); |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 113 | case 0x44: |
| 114 | return __diag_time_slice_end(vcpu); |
Konstantin Weitz | 41628d3 | 2012-04-25 15:30:38 +0200 | [diff] [blame] | 115 | case 0x9c: |
| 116 | return __diag_time_slice_end_directed(vcpu); |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 117 | case 0x308: |
| 118 | return __diag_ipl_functions(vcpu); |
| 119 | default: |
Heiko Carstens | b8e660b | 2010-02-26 22:37:41 +0100 | [diff] [blame] | 120 | return -EOPNOTSUPP; |
Christian Borntraeger | e28acfe | 2008-03-25 18:47:34 +0100 | [diff] [blame] | 121 | } |
| 122 | } |