Thomas Gleixner | d94d71c | 2019-05-29 07:12:40 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 2 | /* |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 3 | * |
| 4 | * Copyright IBM Corp. 2007 |
| 5 | * |
| 6 | * Authors: Hollis Blanchard <hollisb@us.ibm.com> |
| 7 | * Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com> |
| 8 | */ |
| 9 | |
| 10 | #include <linux/errno.h> |
| 11 | #include <linux/err.h> |
| 12 | #include <linux/kvm_host.h> |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 13 | #include <linux/vmalloc.h> |
Alexander Graf | 544c676 | 2009-11-02 12:02:31 +0000 | [diff] [blame] | 14 | #include <linux/hrtimer.h> |
Ingo Molnar | 174cd4b | 2017-02-02 19:15:33 +0100 | [diff] [blame] | 15 | #include <linux/sched/signal.h> |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 16 | #include <linux/fs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 17 | #include <linux/slab.h> |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 18 | #include <linux/file.h> |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 19 | #include <linux/module.h> |
Suresh Warrier | 9576730 | 2016-08-19 15:35:47 +1000 | [diff] [blame] | 20 | #include <linux/irqbypass.h> |
| 21 | #include <linux/kvm_irqfd.h> |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 22 | #include <asm/cputable.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 23 | #include <linux/uaccess.h> |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 24 | #include <asm/kvm_ppc.h> |
Paul Mackerras | 371fefd | 2011-06-29 00:23:08 +0000 | [diff] [blame] | 25 | #include <asm/cputhreads.h> |
Alexander Graf | bd2be68 | 2012-08-13 01:04:19 +0200 | [diff] [blame] | 26 | #include <asm/irqflags.h> |
Alexey Kardashevskiy | 58ded42 | 2016-03-01 17:54:40 +1100 | [diff] [blame] | 27 | #include <asm/iommu.h> |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 28 | #include <asm/switch_to.h> |
Benjamin Herrenschmidt | 5af5099 | 2017-04-05 17:54:56 +1000 | [diff] [blame] | 29 | #include <asm/xive.h> |
Paul Mackerras | 3214d01 | 2018-01-15 16:06:47 +1100 | [diff] [blame] | 30 | #ifdef CONFIG_PPC_PSERIES |
| 31 | #include <asm/hvcall.h> |
| 32 | #include <asm/plpar_wrappers.h> |
| 33 | #endif |
Bharata B Rao | 2294568 | 2019-11-25 08:36:30 +0530 | [diff] [blame] | 34 | #include <asm/ultravisor.h> |
Benjamin Herrenschmidt | 5af5099 | 2017-04-05 17:54:56 +1000 | [diff] [blame] | 35 | |
Hollis Blanchard | 73e75b4 | 2008-12-02 15:51:57 -0600 | [diff] [blame] | 36 | #include "timing.h" |
Alexander Graf | 5efdb4b | 2013-04-17 00:37:57 +0200 | [diff] [blame] | 37 | #include "irq.h" |
Paul Mackerras | fad7b9b | 2008-12-23 14:57:26 +1100 | [diff] [blame] | 38 | #include "../mm/mmu_decl.h" |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 39 | |
Marcelo Tosatti | 46f43c6 | 2009-06-18 11:47:27 -0300 | [diff] [blame] | 40 | #define CREATE_TRACE_POINTS |
| 41 | #include "trace.h" |
| 42 | |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 43 | struct kvmppc_ops *kvmppc_hv_ops; |
| 44 | EXPORT_SYMBOL_GPL(kvmppc_hv_ops); |
| 45 | struct kvmppc_ops *kvmppc_pr_ops; |
| 46 | EXPORT_SYMBOL_GPL(kvmppc_pr_ops); |
| 47 | |
Aneesh Kumar K.V | 3a167bea | 2013-10-07 22:17:53 +0530 | [diff] [blame] | 48 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 49 | int kvm_arch_vcpu_runnable(struct kvm_vcpu *v) |
| 50 | { |
Radim Krčmář | 2fa6e1e | 2017-06-04 14:43:52 +0200 | [diff] [blame] | 51 | return !!(v->arch.pending_exceptions) || kvm_request_pending(v); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 52 | } |
| 53 | |
Wanpeng Li | 17e433b | 2019-08-05 10:03:19 +0800 | [diff] [blame] | 54 | bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu) |
| 55 | { |
| 56 | return kvm_arch_vcpu_runnable(vcpu); |
| 57 | } |
| 58 | |
Longpeng(Mike) | 199b576 | 2017-08-08 12:05:32 +0800 | [diff] [blame] | 59 | bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu) |
| 60 | { |
| 61 | return false; |
| 62 | } |
| 63 | |
Christoffer Dall | b6d3383 | 2012-03-08 16:44:24 -0500 | [diff] [blame] | 64 | int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu) |
| 65 | { |
| 66 | return 1; |
| 67 | } |
| 68 | |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 69 | /* |
| 70 | * Common checks before entering the guest world. Call with interrupts |
| 71 | * disabled. |
| 72 | * |
Alexander Graf | 7ee7885 | 2012-08-13 12:44:41 +0200 | [diff] [blame] | 73 | * returns: |
| 74 | * |
| 75 | * == 1 if we're ready to go into guest state |
| 76 | * <= 0 if we need to go back to the host with return value |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 77 | */ |
| 78 | int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu) |
| 79 | { |
Scott Wood | 6c85f52 | 2014-01-09 19:18:40 -0600 | [diff] [blame] | 80 | int r; |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 81 | |
Scott Wood | 6c85f52 | 2014-01-09 19:18:40 -0600 | [diff] [blame] | 82 | WARN_ON(irqs_disabled()); |
| 83 | hard_irq_disable(); |
| 84 | |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 85 | while (true) { |
| 86 | if (need_resched()) { |
| 87 | local_irq_enable(); |
| 88 | cond_resched(); |
Scott Wood | 6c85f52 | 2014-01-09 19:18:40 -0600 | [diff] [blame] | 89 | hard_irq_disable(); |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 90 | continue; |
| 91 | } |
| 92 | |
| 93 | if (signal_pending(current)) { |
Alexander Graf | 7ee7885 | 2012-08-13 12:44:41 +0200 | [diff] [blame] | 94 | kvmppc_account_exit(vcpu, SIGNAL_EXITS); |
| 95 | vcpu->run->exit_reason = KVM_EXIT_INTR; |
| 96 | r = -EINTR; |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 97 | break; |
| 98 | } |
| 99 | |
Scott Wood | 5bd1cf1 | 2012-08-22 15:03:50 +0000 | [diff] [blame] | 100 | vcpu->mode = IN_GUEST_MODE; |
| 101 | |
| 102 | /* |
| 103 | * Reading vcpu->requests must happen after setting vcpu->mode, |
| 104 | * so we don't miss a request because the requester sees |
| 105 | * OUTSIDE_GUEST_MODE and assumes we'll be checking requests |
| 106 | * before next entering the guest (and thus doesn't IPI). |
Lan Tianyu | 489153c | 2016-03-13 11:10:30 +0800 | [diff] [blame] | 107 | * This also orders the write to mode from any reads |
| 108 | * to the page tables done while the VCPU is running. |
| 109 | * Please see the comment in kvm_flush_remote_tlbs. |
Scott Wood | 5bd1cf1 | 2012-08-22 15:03:50 +0000 | [diff] [blame] | 110 | */ |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 111 | smp_mb(); |
Scott Wood | 5bd1cf1 | 2012-08-22 15:03:50 +0000 | [diff] [blame] | 112 | |
Radim Krčmář | 2fa6e1e | 2017-06-04 14:43:52 +0200 | [diff] [blame] | 113 | if (kvm_request_pending(vcpu)) { |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 114 | /* Make sure we process requests preemptable */ |
| 115 | local_irq_enable(); |
| 116 | trace_kvm_check_requests(vcpu); |
Alexander Graf | 7c973a2 | 2012-08-13 12:50:35 +0200 | [diff] [blame] | 117 | r = kvmppc_core_check_requests(vcpu); |
Scott Wood | 6c85f52 | 2014-01-09 19:18:40 -0600 | [diff] [blame] | 118 | hard_irq_disable(); |
Alexander Graf | 7c973a2 | 2012-08-13 12:50:35 +0200 | [diff] [blame] | 119 | if (r > 0) |
| 120 | continue; |
| 121 | break; |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | if (kvmppc_core_prepare_to_enter(vcpu)) { |
| 125 | /* interrupts got enabled in between, so we |
| 126 | are back at square 1 */ |
| 127 | continue; |
| 128 | } |
| 129 | |
Paolo Bonzini | 6edaa53 | 2016-06-15 15:18:26 +0200 | [diff] [blame] | 130 | guest_enter_irqoff(); |
Scott Wood | 6c85f52 | 2014-01-09 19:18:40 -0600 | [diff] [blame] | 131 | return 1; |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 132 | } |
| 133 | |
Scott Wood | 6c85f52 | 2014-01-09 19:18:40 -0600 | [diff] [blame] | 134 | /* return to host */ |
| 135 | local_irq_enable(); |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 136 | return r; |
| 137 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 138 | EXPORT_SYMBOL_GPL(kvmppc_prepare_to_enter); |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 139 | |
Alexander Graf | 5deb8e7 | 2014-04-24 13:46:24 +0200 | [diff] [blame] | 140 | #if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE) |
| 141 | static void kvmppc_swab_shared(struct kvm_vcpu *vcpu) |
| 142 | { |
| 143 | struct kvm_vcpu_arch_shared *shared = vcpu->arch.shared; |
| 144 | int i; |
| 145 | |
| 146 | shared->sprg0 = swab64(shared->sprg0); |
| 147 | shared->sprg1 = swab64(shared->sprg1); |
| 148 | shared->sprg2 = swab64(shared->sprg2); |
| 149 | shared->sprg3 = swab64(shared->sprg3); |
| 150 | shared->srr0 = swab64(shared->srr0); |
| 151 | shared->srr1 = swab64(shared->srr1); |
| 152 | shared->dar = swab64(shared->dar); |
| 153 | shared->msr = swab64(shared->msr); |
| 154 | shared->dsisr = swab32(shared->dsisr); |
| 155 | shared->int_pending = swab32(shared->int_pending); |
| 156 | for (i = 0; i < ARRAY_SIZE(shared->sr); i++) |
| 157 | shared->sr[i] = swab32(shared->sr[i]); |
| 158 | } |
| 159 | #endif |
| 160 | |
Alexander Graf | 2a342ed | 2010-07-29 14:47:48 +0200 | [diff] [blame] | 161 | int kvmppc_kvm_pv(struct kvm_vcpu *vcpu) |
| 162 | { |
| 163 | int nr = kvmppc_get_gpr(vcpu, 11); |
| 164 | int r; |
| 165 | unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3); |
| 166 | unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4); |
| 167 | unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5); |
| 168 | unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6); |
| 169 | unsigned long r2 = 0; |
| 170 | |
Alexander Graf | 5deb8e7 | 2014-04-24 13:46:24 +0200 | [diff] [blame] | 171 | if (!(kvmppc_get_msr(vcpu) & MSR_SF)) { |
Alexander Graf | 2a342ed | 2010-07-29 14:47:48 +0200 | [diff] [blame] | 172 | /* 32 bit mode */ |
| 173 | param1 &= 0xffffffff; |
| 174 | param2 &= 0xffffffff; |
| 175 | param3 &= 0xffffffff; |
| 176 | param4 &= 0xffffffff; |
| 177 | } |
| 178 | |
| 179 | switch (nr) { |
Stuart Yoder | fdcf8bd | 2012-07-03 05:48:50 +0000 | [diff] [blame] | 180 | case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE): |
Alexander Graf | 5fc8740 | 2010-07-29 14:47:55 +0200 | [diff] [blame] | 181 | { |
Alexander Graf | 5deb8e7 | 2014-04-24 13:46:24 +0200 | [diff] [blame] | 182 | #if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE) |
| 183 | /* Book3S can be little endian, find it out here */ |
| 184 | int shared_big_endian = true; |
| 185 | if (vcpu->arch.intr_msr & MSR_LE) |
| 186 | shared_big_endian = false; |
| 187 | if (shared_big_endian != vcpu->arch.shared_big_endian) |
| 188 | kvmppc_swab_shared(vcpu); |
| 189 | vcpu->arch.shared_big_endian = shared_big_endian; |
| 190 | #endif |
| 191 | |
Alexander Graf | f3383cf | 2014-05-12 01:08:32 +0200 | [diff] [blame] | 192 | if (!(param2 & MAGIC_PAGE_FLAG_NOT_MAPPED_NX)) { |
| 193 | /* |
| 194 | * Older versions of the Linux magic page code had |
| 195 | * a bug where they would map their trampoline code |
| 196 | * NX. If that's the case, remove !PR NX capability. |
| 197 | */ |
| 198 | vcpu->arch.disable_kernel_nx = true; |
| 199 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
| 200 | } |
| 201 | |
| 202 | vcpu->arch.magic_page_pa = param1 & ~0xfffULL; |
| 203 | vcpu->arch.magic_page_ea = param2 & ~0xfffULL; |
Alexander Graf | 5fc8740 | 2010-07-29 14:47:55 +0200 | [diff] [blame] | 204 | |
Alexander Graf | 89b68c9 | 2014-07-13 16:37:12 +0200 | [diff] [blame] | 205 | #ifdef CONFIG_PPC_64K_PAGES |
| 206 | /* |
| 207 | * Make sure our 4k magic page is in the same window of a 64k |
| 208 | * page within the guest and within the host's page. |
| 209 | */ |
| 210 | if ((vcpu->arch.magic_page_pa & 0xf000) != |
| 211 | ((ulong)vcpu->arch.shared & 0xf000)) { |
| 212 | void *old_shared = vcpu->arch.shared; |
| 213 | ulong shared = (ulong)vcpu->arch.shared; |
| 214 | void *new_shared; |
| 215 | |
| 216 | shared &= PAGE_MASK; |
| 217 | shared |= vcpu->arch.magic_page_pa & 0xf000; |
| 218 | new_shared = (void*)shared; |
| 219 | memcpy(new_shared, old_shared, 0x1000); |
| 220 | vcpu->arch.shared = new_shared; |
| 221 | } |
| 222 | #endif |
| 223 | |
Scott Wood | b590497 | 2011-11-08 18:23:30 -0600 | [diff] [blame] | 224 | r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7; |
Alexander Graf | 7508e16 | 2010-08-03 11:32:56 +0200 | [diff] [blame] | 225 | |
Stuart Yoder | fdcf8bd | 2012-07-03 05:48:50 +0000 | [diff] [blame] | 226 | r = EV_SUCCESS; |
Alexander Graf | 5fc8740 | 2010-07-29 14:47:55 +0200 | [diff] [blame] | 227 | break; |
| 228 | } |
Stuart Yoder | fdcf8bd | 2012-07-03 05:48:50 +0000 | [diff] [blame] | 229 | case KVM_HCALL_TOKEN(KVM_HC_FEATURES): |
| 230 | r = EV_SUCCESS; |
Alexander Graf | bf7ca4b | 2012-02-15 23:40:00 +0000 | [diff] [blame] | 231 | #if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2) |
Alexander Graf | 5fc8740 | 2010-07-29 14:47:55 +0200 | [diff] [blame] | 232 | r2 |= (1 << KVM_FEATURE_MAGIC_PAGE); |
| 233 | #endif |
Alexander Graf | 2a342ed | 2010-07-29 14:47:48 +0200 | [diff] [blame] | 234 | |
| 235 | /* Second return value is in r4 */ |
Alexander Graf | 2a342ed | 2010-07-29 14:47:48 +0200 | [diff] [blame] | 236 | break; |
Liu Yu-B13201 | 9202e07 | 2012-07-03 05:48:52 +0000 | [diff] [blame] | 237 | case EV_HCALL_TOKEN(EV_IDLE): |
| 238 | r = EV_SUCCESS; |
| 239 | kvm_vcpu_block(vcpu); |
Radim Krčmář | 72875d8 | 2017-04-26 22:32:19 +0200 | [diff] [blame] | 240 | kvm_clear_request(KVM_REQ_UNHALT, vcpu); |
Liu Yu-B13201 | 9202e07 | 2012-07-03 05:48:52 +0000 | [diff] [blame] | 241 | break; |
Alexander Graf | 2a342ed | 2010-07-29 14:47:48 +0200 | [diff] [blame] | 242 | default: |
Stuart Yoder | fdcf8bd | 2012-07-03 05:48:50 +0000 | [diff] [blame] | 243 | r = EV_UNIMPLEMENTED; |
Alexander Graf | 2a342ed | 2010-07-29 14:47:48 +0200 | [diff] [blame] | 244 | break; |
| 245 | } |
| 246 | |
Alexander Graf | 7508e16 | 2010-08-03 11:32:56 +0200 | [diff] [blame] | 247 | kvmppc_set_gpr(vcpu, 4, r2); |
| 248 | |
Alexander Graf | 2a342ed | 2010-07-29 14:47:48 +0200 | [diff] [blame] | 249 | return r; |
| 250 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 251 | EXPORT_SYMBOL_GPL(kvmppc_kvm_pv); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 252 | |
Alexander Graf | af8f38b | 2011-08-10 13:57:08 +0200 | [diff] [blame] | 253 | int kvmppc_sanity_check(struct kvm_vcpu *vcpu) |
| 254 | { |
| 255 | int r = false; |
| 256 | |
| 257 | /* We have to know what CPU to virtualize */ |
| 258 | if (!vcpu->arch.pvr) |
| 259 | goto out; |
| 260 | |
| 261 | /* PAPR only works with book3s_64 */ |
| 262 | if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled) |
| 263 | goto out; |
| 264 | |
Alexander Graf | af8f38b | 2011-08-10 13:57:08 +0200 | [diff] [blame] | 265 | /* HV KVM can only do PAPR mode for now */ |
Aneesh Kumar K.V | a78b55d | 2013-10-07 22:18:02 +0530 | [diff] [blame] | 266 | if (!vcpu->arch.papr_enabled && is_kvmppc_hv_enabled(vcpu->kvm)) |
Alexander Graf | af8f38b | 2011-08-10 13:57:08 +0200 | [diff] [blame] | 267 | goto out; |
Alexander Graf | af8f38b | 2011-08-10 13:57:08 +0200 | [diff] [blame] | 268 | |
Scott Wood | d30f6e4 | 2011-12-20 15:34:43 +0000 | [diff] [blame] | 269 | #ifdef CONFIG_KVM_BOOKE_HV |
| 270 | if (!cpu_has_feature(CPU_FTR_EMB_HV)) |
| 271 | goto out; |
| 272 | #endif |
| 273 | |
Alexander Graf | af8f38b | 2011-08-10 13:57:08 +0200 | [diff] [blame] | 274 | r = true; |
| 275 | |
| 276 | out: |
| 277 | vcpu->arch.sane = r; |
| 278 | return r ? 0 : -EINVAL; |
| 279 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 280 | EXPORT_SYMBOL_GPL(kvmppc_sanity_check); |
Alexander Graf | af8f38b | 2011-08-10 13:57:08 +0200 | [diff] [blame] | 281 | |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 282 | int kvmppc_emulate_mmio(struct kvm_vcpu *vcpu) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 283 | { |
| 284 | enum emulation_result er; |
| 285 | int r; |
| 286 | |
Alexander Graf | d69614a | 2014-06-18 14:53:49 +0200 | [diff] [blame] | 287 | er = kvmppc_emulate_loadstore(vcpu); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 288 | switch (er) { |
| 289 | case EMULATE_DONE: |
| 290 | /* Future optimization: only reload non-volatiles if they were |
| 291 | * actually modified. */ |
| 292 | r = RESUME_GUEST_NV; |
| 293 | break; |
Mihai Caraman | 51f0472 | 2014-07-23 19:06:21 +0300 | [diff] [blame] | 294 | case EMULATE_AGAIN: |
| 295 | r = RESUME_GUEST; |
| 296 | break; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 297 | case EMULATE_DO_MMIO: |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 298 | vcpu->run->exit_reason = KVM_EXIT_MMIO; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 299 | /* We must reload nonvolatiles because "update" load/store |
| 300 | * instructions modify register state. */ |
| 301 | /* Future optimization: only reload non-volatiles if they were |
| 302 | * actually modified. */ |
| 303 | r = RESUME_HOST_NV; |
| 304 | break; |
| 305 | case EMULATE_FAIL: |
Mihai Caraman | 51f0472 | 2014-07-23 19:06:21 +0300 | [diff] [blame] | 306 | { |
| 307 | u32 last_inst; |
| 308 | |
Alexander Graf | 8d0eff6 | 2014-09-10 14:37:29 +0200 | [diff] [blame] | 309 | kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 310 | /* XXX Deliver Program interrupt to guest. */ |
Mihai Caraman | 51f0472 | 2014-07-23 19:06:21 +0300 | [diff] [blame] | 311 | pr_emerg("%s: emulation failed (%08x)\n", __func__, last_inst); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 312 | r = RESUME_HOST; |
| 313 | break; |
Mihai Caraman | 51f0472 | 2014-07-23 19:06:21 +0300 | [diff] [blame] | 314 | } |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 315 | default: |
Alexander Graf | 5a33169 | 2012-12-14 23:46:03 +0100 | [diff] [blame] | 316 | WARN_ON(1); |
| 317 | r = RESUME_GUEST; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | return r; |
| 321 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 322 | EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 323 | |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 324 | int kvmppc_st(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr, |
| 325 | bool data) |
| 326 | { |
Alexander Graf | c12fb43 | 2014-06-20 14:43:36 +0200 | [diff] [blame] | 327 | ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK; |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 328 | struct kvmppc_pte pte; |
Suraj Jitindar Singh | cc6929c | 2018-12-14 16:29:07 +1100 | [diff] [blame] | 329 | int r = -EINVAL; |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 330 | |
| 331 | vcpu->stat.st++; |
| 332 | |
Suraj Jitindar Singh | cc6929c | 2018-12-14 16:29:07 +1100 | [diff] [blame] | 333 | if (vcpu->kvm->arch.kvm_ops && vcpu->kvm->arch.kvm_ops->store_to_eaddr) |
| 334 | r = vcpu->kvm->arch.kvm_ops->store_to_eaddr(vcpu, eaddr, ptr, |
| 335 | size); |
| 336 | |
| 337 | if ((!r) || (r == -EAGAIN)) |
| 338 | return r; |
| 339 | |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 340 | r = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST, |
| 341 | XLATE_WRITE, &pte); |
| 342 | if (r < 0) |
| 343 | return r; |
| 344 | |
| 345 | *eaddr = pte.raddr; |
| 346 | |
| 347 | if (!pte.may_write) |
| 348 | return -EPERM; |
| 349 | |
Alexander Graf | c12fb43 | 2014-06-20 14:43:36 +0200 | [diff] [blame] | 350 | /* Magic page override */ |
| 351 | if (kvmppc_supports_magic_page(vcpu) && mp_pa && |
| 352 | ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) && |
| 353 | !(kvmppc_get_msr(vcpu) & MSR_PR)) { |
| 354 | void *magic = vcpu->arch.shared; |
| 355 | magic += pte.eaddr & 0xfff; |
| 356 | memcpy(magic, ptr, size); |
| 357 | return EMULATE_DONE; |
| 358 | } |
| 359 | |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 360 | if (kvm_write_guest(vcpu->kvm, pte.raddr, ptr, size)) |
| 361 | return EMULATE_DO_MMIO; |
| 362 | |
| 363 | return EMULATE_DONE; |
| 364 | } |
| 365 | EXPORT_SYMBOL_GPL(kvmppc_st); |
| 366 | |
| 367 | int kvmppc_ld(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr, |
| 368 | bool data) |
| 369 | { |
Alexander Graf | c12fb43 | 2014-06-20 14:43:36 +0200 | [diff] [blame] | 370 | ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK; |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 371 | struct kvmppc_pte pte; |
Suraj Jitindar Singh | cc6929c | 2018-12-14 16:29:07 +1100 | [diff] [blame] | 372 | int rc = -EINVAL; |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 373 | |
| 374 | vcpu->stat.ld++; |
| 375 | |
Suraj Jitindar Singh | cc6929c | 2018-12-14 16:29:07 +1100 | [diff] [blame] | 376 | if (vcpu->kvm->arch.kvm_ops && vcpu->kvm->arch.kvm_ops->load_from_eaddr) |
| 377 | rc = vcpu->kvm->arch.kvm_ops->load_from_eaddr(vcpu, eaddr, ptr, |
| 378 | size); |
| 379 | |
| 380 | if ((!rc) || (rc == -EAGAIN)) |
| 381 | return rc; |
| 382 | |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 383 | rc = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST, |
| 384 | XLATE_READ, &pte); |
| 385 | if (rc) |
| 386 | return rc; |
| 387 | |
| 388 | *eaddr = pte.raddr; |
| 389 | |
| 390 | if (!pte.may_read) |
| 391 | return -EPERM; |
| 392 | |
| 393 | if (!data && !pte.may_execute) |
| 394 | return -ENOEXEC; |
| 395 | |
Alexander Graf | c12fb43 | 2014-06-20 14:43:36 +0200 | [diff] [blame] | 396 | /* Magic page override */ |
| 397 | if (kvmppc_supports_magic_page(vcpu) && mp_pa && |
| 398 | ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) && |
| 399 | !(kvmppc_get_msr(vcpu) & MSR_PR)) { |
| 400 | void *magic = vcpu->arch.shared; |
| 401 | magic += pte.eaddr & 0xfff; |
| 402 | memcpy(ptr, magic, size); |
| 403 | return EMULATE_DONE; |
| 404 | } |
| 405 | |
Alexey Kardashevskiy | 1508c22 | 2020-06-09 12:12:29 +1000 | [diff] [blame] | 406 | vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu); |
| 407 | rc = kvm_read_guest(vcpu->kvm, pte.raddr, ptr, size); |
| 408 | srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx); |
| 409 | if (rc) |
Alexander Graf | c45c551 | 2014-06-20 14:17:30 +0200 | [diff] [blame] | 410 | return EMULATE_DO_MMIO; |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 411 | |
| 412 | return EMULATE_DONE; |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 413 | } |
| 414 | EXPORT_SYMBOL_GPL(kvmppc_ld); |
| 415 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 416 | int kvm_arch_hardware_enable(void) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 417 | { |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 418 | return 0; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 419 | } |
| 420 | |
Sean Christopherson | b990408 | 2020-03-21 13:25:55 -0700 | [diff] [blame] | 421 | int kvm_arch_hardware_setup(void *opaque) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 422 | { |
| 423 | return 0; |
| 424 | } |
| 425 | |
Sean Christopherson | b990408 | 2020-03-21 13:25:55 -0700 | [diff] [blame] | 426 | int kvm_arch_check_processor_compat(void *opaque) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 427 | { |
Sean Christopherson | f257d6d | 2019-04-19 22:18:17 -0700 | [diff] [blame] | 428 | return kvmppc_core_check_processor_compat(); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 429 | } |
| 430 | |
Carsten Otte | e08b963 | 2012-01-04 10:25:20 +0100 | [diff] [blame] | 431 | int kvm_arch_init_vm(struct kvm *kvm, unsigned long type) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 432 | { |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 433 | struct kvmppc_ops *kvm_ops = NULL; |
| 434 | /* |
| 435 | * if we have both HV and PR enabled, default is HV |
| 436 | */ |
| 437 | if (type == 0) { |
| 438 | if (kvmppc_hv_ops) |
| 439 | kvm_ops = kvmppc_hv_ops; |
| 440 | else |
| 441 | kvm_ops = kvmppc_pr_ops; |
| 442 | if (!kvm_ops) |
| 443 | goto err_out; |
| 444 | } else if (type == KVM_VM_PPC_HV) { |
| 445 | if (!kvmppc_hv_ops) |
| 446 | goto err_out; |
| 447 | kvm_ops = kvmppc_hv_ops; |
| 448 | } else if (type == KVM_VM_PPC_PR) { |
| 449 | if (!kvmppc_pr_ops) |
| 450 | goto err_out; |
| 451 | kvm_ops = kvmppc_pr_ops; |
| 452 | } else |
| 453 | goto err_out; |
Carsten Otte | e08b963 | 2012-01-04 10:25:20 +0100 | [diff] [blame] | 454 | |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 455 | if (kvm_ops->owner && !try_module_get(kvm_ops->owner)) |
| 456 | return -ENOENT; |
| 457 | |
| 458 | kvm->arch.kvm_ops = kvm_ops; |
Paul Mackerras | f9e0554 | 2011-06-29 00:19:22 +0000 | [diff] [blame] | 459 | return kvmppc_core_init_vm(kvm); |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 460 | err_out: |
| 461 | return -EINVAL; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 462 | } |
| 463 | |
Jan Kiszka | d89f5ef | 2010-11-09 17:02:49 +0100 | [diff] [blame] | 464 | void kvm_arch_destroy_vm(struct kvm *kvm) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 465 | { |
| 466 | unsigned int i; |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 467 | struct kvm_vcpu *vcpu; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 468 | |
Suresh E. Warrier | e17769e | 2015-12-21 16:22:51 -0600 | [diff] [blame] | 469 | #ifdef CONFIG_KVM_XICS |
| 470 | /* |
| 471 | * We call kick_all_cpus_sync() to ensure that all |
| 472 | * CPUs have executed any pending IPIs before we |
| 473 | * continue and free VCPUs structures below. |
| 474 | */ |
| 475 | if (is_kvmppc_hv_enabled(kvm)) |
| 476 | kick_all_cpus_sync(); |
| 477 | #endif |
| 478 | |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 479 | kvm_for_each_vcpu(i, vcpu, kvm) |
Sean Christopherson | 4543bdc | 2019-12-18 13:55:14 -0800 | [diff] [blame] | 480 | kvm_vcpu_destroy(vcpu); |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 481 | |
| 482 | mutex_lock(&kvm->lock); |
| 483 | for (i = 0; i < atomic_read(&kvm->online_vcpus); i++) |
| 484 | kvm->vcpus[i] = NULL; |
| 485 | |
| 486 | atomic_set(&kvm->online_vcpus, 0); |
Paul Mackerras | f9e0554 | 2011-06-29 00:19:22 +0000 | [diff] [blame] | 487 | |
| 488 | kvmppc_core_destroy_vm(kvm); |
| 489 | |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 490 | mutex_unlock(&kvm->lock); |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 491 | |
| 492 | /* drop the module reference */ |
| 493 | module_put(kvm->arch.kvm_ops->owner); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 494 | } |
| 495 | |
Alexander Graf | 784aa3d | 2014-07-14 18:27:35 +0200 | [diff] [blame] | 496 | int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 497 | { |
| 498 | int r; |
Alexander Graf | 7a58777 | 2014-07-14 18:55:19 +0200 | [diff] [blame] | 499 | /* Assume we're using HV mode when the HV module is loaded */ |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 500 | int hv_enabled = kvmppc_hv_ops ? 1 : 0; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 501 | |
Alexander Graf | 7a58777 | 2014-07-14 18:55:19 +0200 | [diff] [blame] | 502 | if (kvm) { |
| 503 | /* |
| 504 | * Hooray - we know which VM type we're running on. Depend on |
| 505 | * that rather than the guess above. |
| 506 | */ |
| 507 | hv_enabled = is_kvmppc_hv_enabled(kvm); |
| 508 | } |
| 509 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 510 | switch (ext) { |
Scott Wood | 5ce941e | 2011-04-27 17:24:21 -0500 | [diff] [blame] | 511 | #ifdef CONFIG_BOOKE |
| 512 | case KVM_CAP_PPC_BOOKE_SREGS: |
Bharat Bhushan | f61c94b | 2012-08-08 20:38:19 +0000 | [diff] [blame] | 513 | case KVM_CAP_PPC_BOOKE_WATCHDOG: |
Alexander Graf | 1c81063 | 2013-01-04 18:12:48 +0100 | [diff] [blame] | 514 | case KVM_CAP_PPC_EPR: |
Scott Wood | 5ce941e | 2011-04-27 17:24:21 -0500 | [diff] [blame] | 515 | #else |
Alexander Graf | e15a113 | 2009-11-30 03:02:02 +0000 | [diff] [blame] | 516 | case KVM_CAP_PPC_SEGSTATE: |
Alexander Graf | 1022fc3 | 2011-09-14 21:45:23 +0200 | [diff] [blame] | 517 | case KVM_CAP_PPC_HIOR: |
Alexander Graf | 930b412 | 2011-08-08 17:29:42 +0200 | [diff] [blame] | 518 | case KVM_CAP_PPC_PAPR: |
Scott Wood | 5ce941e | 2011-04-27 17:24:21 -0500 | [diff] [blame] | 519 | #endif |
Alexander Graf | 1897876 | 2010-03-24 21:48:18 +0100 | [diff] [blame] | 520 | case KVM_CAP_PPC_UNSET_IRQ: |
Alexander Graf | 7b4203e | 2010-08-30 13:50:45 +0200 | [diff] [blame] | 521 | case KVM_CAP_PPC_IRQ_LEVEL: |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 522 | case KVM_CAP_ENABLE_CAP: |
Alexander Graf | e24ed81 | 2011-09-14 10:02:41 +0200 | [diff] [blame] | 523 | case KVM_CAP_ONE_REG: |
Alexander Graf | 0e673fb | 2012-10-09 00:06:20 +0200 | [diff] [blame] | 524 | case KVM_CAP_IOEVENTFD: |
Scott Wood | 5df554ad | 2013-04-12 14:08:46 +0000 | [diff] [blame] | 525 | case KVM_CAP_DEVICE_CTRL: |
Paolo Bonzini | 460df4c | 2017-02-08 11:50:15 +0100 | [diff] [blame] | 526 | case KVM_CAP_IMMEDIATE_EXIT: |
Peter Xu | b9b2782 | 2020-05-05 11:47:50 -0400 | [diff] [blame] | 527 | case KVM_CAP_SET_GUEST_DEBUG: |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 528 | r = 1; |
| 529 | break; |
Fabiano Rosas | 1a9167a | 2019-06-19 13:01:27 -0300 | [diff] [blame] | 530 | case KVM_CAP_PPC_GUEST_DEBUG_SSTEP: |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 531 | case KVM_CAP_PPC_PAIRED_SINGLES: |
Alexander Graf | ad0a048 | 2010-03-24 21:48:30 +0100 | [diff] [blame] | 532 | case KVM_CAP_PPC_OSI: |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 533 | case KVM_CAP_PPC_GET_PVINFO: |
Alexander Graf | bf7ca4b | 2012-02-15 23:40:00 +0000 | [diff] [blame] | 534 | #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC) |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 535 | case KVM_CAP_SW_TLB: |
| 536 | #endif |
Aneesh Kumar K.V | 699cc87 | 2013-10-07 22:17:56 +0530 | [diff] [blame] | 537 | /* We support this only for PR */ |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 538 | r = !hv_enabled; |
Alexander Graf | e15a113 | 2009-11-30 03:02:02 +0000 | [diff] [blame] | 539 | break; |
Aneesh Kumar K.V | 699cc87 | 2013-10-07 22:17:56 +0530 | [diff] [blame] | 540 | #ifdef CONFIG_KVM_MPIC |
| 541 | case KVM_CAP_IRQ_MPIC: |
| 542 | r = 1; |
| 543 | break; |
| 544 | #endif |
| 545 | |
Benjamin Herrenschmidt | f31e65e | 2012-03-15 21:58:34 +0000 | [diff] [blame] | 546 | #ifdef CONFIG_PPC_BOOK3S_64 |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 547 | case KVM_CAP_SPAPR_TCE: |
Alexey Kardashevskiy | 58ded42 | 2016-03-01 17:54:40 +1100 | [diff] [blame] | 548 | case KVM_CAP_SPAPR_TCE_64: |
Suraj Jitindar Singh | 693ac10 | 2018-12-14 16:29:03 +1100 | [diff] [blame] | 549 | r = 1; |
| 550 | break; |
Alexey Kardashevskiy | 121f80b | 2017-03-22 15:21:56 +1100 | [diff] [blame] | 551 | case KVM_CAP_SPAPR_TCE_VFIO: |
Suraj Jitindar Singh | 693ac10 | 2018-12-14 16:29:03 +1100 | [diff] [blame] | 552 | r = !!cpu_has_feature(CPU_FTR_HVMODE); |
| 553 | break; |
Michael Ellerman | 8e591cb | 2013-04-17 20:30:00 +0000 | [diff] [blame] | 554 | case KVM_CAP_PPC_RTAS: |
Alexander Graf | f2e9104 | 2014-05-22 17:40:15 +0200 | [diff] [blame] | 555 | case KVM_CAP_PPC_FIXUP_HCALL: |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 556 | case KVM_CAP_PPC_ENABLE_HCALL: |
Paul Mackerras | 5975a2e | 2013-04-27 00:28:37 +0000 | [diff] [blame] | 557 | #ifdef CONFIG_KVM_XICS |
| 558 | case KVM_CAP_IRQ_XICS: |
| 559 | #endif |
Paul Mackerras | 3214d01 | 2018-01-15 16:06:47 +1100 | [diff] [blame] | 560 | case KVM_CAP_PPC_GET_CPU_CHAR: |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 561 | r = 1; |
| 562 | break; |
Cédric Le Goater | eacc56b | 2019-04-18 12:39:28 +0200 | [diff] [blame] | 563 | #ifdef CONFIG_KVM_XIVE |
| 564 | case KVM_CAP_PPC_IRQ_XIVE: |
| 565 | /* |
Cédric Le Goater | 3fab2d1 | 2019-04-18 12:39:40 +0200 | [diff] [blame] | 566 | * We need XIVE to be enabled on the platform (implies |
| 567 | * a POWER9 processor) and the PowerNV platform, as |
| 568 | * nested is not yet supported. |
Cédric Le Goater | eacc56b | 2019-04-18 12:39:28 +0200 | [diff] [blame] | 569 | */ |
Paul Mackerras | 2ad7a27 | 2019-08-26 16:21:21 +1000 | [diff] [blame] | 570 | r = xive_enabled() && !!cpu_has_feature(CPU_FTR_HVMODE) && |
| 571 | kvmppc_xive_native_supported(); |
Cédric Le Goater | eacc56b | 2019-04-18 12:39:28 +0200 | [diff] [blame] | 572 | break; |
| 573 | #endif |
David Gibson | a8acaec | 2016-11-23 16:14:07 +1100 | [diff] [blame] | 574 | |
| 575 | case KVM_CAP_PPC_ALLOC_HTAB: |
| 576 | r = hv_enabled; |
| 577 | break; |
Benjamin Herrenschmidt | f31e65e | 2012-03-15 21:58:34 +0000 | [diff] [blame] | 578 | #endif /* CONFIG_PPC_BOOK3S_64 */ |
Aneesh Kumar K.V | 699cc87 | 2013-10-07 22:17:56 +0530 | [diff] [blame] | 579 | #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE |
Paul Mackerras | 371fefd | 2011-06-29 00:23:08 +0000 | [diff] [blame] | 580 | case KVM_CAP_PPC_SMT: |
Paul Mackerras | 45c940b | 2016-11-18 17:43:30 +1100 | [diff] [blame] | 581 | r = 0; |
Paul Mackerras | 5790069 | 2017-05-16 16:41:20 +1000 | [diff] [blame] | 582 | if (kvm) { |
| 583 | if (kvm->arch.emul_smt_mode > 1) |
| 584 | r = kvm->arch.emul_smt_mode; |
| 585 | else |
| 586 | r = kvm->arch.smt_mode; |
| 587 | } else if (hv_enabled) { |
Paul Mackerras | 45c940b | 2016-11-18 17:43:30 +1100 | [diff] [blame] | 588 | if (cpu_has_feature(CPU_FTR_ARCH_300)) |
| 589 | r = 1; |
| 590 | else |
| 591 | r = threads_per_subcore; |
| 592 | } |
Paul Mackerras | 371fefd | 2011-06-29 00:23:08 +0000 | [diff] [blame] | 593 | break; |
Paul Mackerras | 2ed4f9d | 2017-06-21 16:01:27 +1000 | [diff] [blame] | 594 | case KVM_CAP_PPC_SMT_POSSIBLE: |
| 595 | r = 1; |
| 596 | if (hv_enabled) { |
| 597 | if (!cpu_has_feature(CPU_FTR_ARCH_300)) |
| 598 | r = ((threads_per_subcore << 1) - 1); |
| 599 | else |
| 600 | /* P9 can emulate dbells, so allow any mode */ |
| 601 | r = 8 | 4 | 2 | 1; |
| 602 | } |
| 603 | break; |
Paul Mackerras | aa04b4c | 2011-06-29 00:25:44 +0000 | [diff] [blame] | 604 | case KVM_CAP_PPC_RMA: |
Paul Mackerras | c17b98c | 2014-12-03 13:30:38 +1100 | [diff] [blame] | 605 | r = 0; |
Paul Mackerras | aa04b4c | 2011-06-29 00:25:44 +0000 | [diff] [blame] | 606 | break; |
Michael Ellerman | e928e9c | 2015-03-20 20:39:41 +1100 | [diff] [blame] | 607 | case KVM_CAP_PPC_HWRNG: |
| 608 | r = kvmppc_hwrng_present(); |
| 609 | break; |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 610 | case KVM_CAP_PPC_MMU_RADIX: |
Paul Mackerras | 8cf4ecc | 2017-01-30 21:21:53 +1100 | [diff] [blame] | 611 | r = !!(hv_enabled && radix_enabled()); |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 612 | break; |
| 613 | case KVM_CAP_PPC_MMU_HASH_V3: |
Fabiano Rosas | a722076 | 2021-02-05 13:41:54 -0300 | [diff] [blame] | 614 | r = !!(hv_enabled && kvmppc_hv_ops->hash_v3_possible && |
| 615 | kvmppc_hv_ops->hash_v3_possible()); |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 616 | break; |
Paul Mackerras | aa069a9 | 2018-09-21 20:02:01 +1000 | [diff] [blame] | 617 | case KVM_CAP_PPC_NESTED_HV: |
| 618 | r = !!(hv_enabled && kvmppc_hv_ops->enable_nested && |
| 619 | !kvmppc_hv_ops->enable_nested(NULL)); |
| 620 | break; |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 621 | #endif |
Alexander Graf | f4800b1 | 2012-08-07 10:24:14 +0200 | [diff] [blame] | 622 | case KVM_CAP_SYNC_MMU: |
Aneesh Kumar K.V | 699cc87 | 2013-10-07 22:17:56 +0530 | [diff] [blame] | 623 | #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE |
Paul Mackerras | c17b98c | 2014-12-03 13:30:38 +1100 | [diff] [blame] | 624 | r = hv_enabled; |
Alexander Graf | f4800b1 | 2012-08-07 10:24:14 +0200 | [diff] [blame] | 625 | #elif defined(KVM_ARCH_WANT_MMU_NOTIFIER) |
| 626 | r = 1; |
| 627 | #else |
| 628 | r = 0; |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 629 | #endif |
Aneesh Kumar K.V | 699cc87 | 2013-10-07 22:17:56 +0530 | [diff] [blame] | 630 | break; |
| 631 | #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 632 | case KVM_CAP_PPC_HTAB_FD: |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 633 | r = hv_enabled; |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 634 | break; |
Alexander Graf | f4800b1 | 2012-08-07 10:24:14 +0200 | [diff] [blame] | 635 | #endif |
Matt Evans | b543403 | 2011-12-07 16:55:57 +0000 | [diff] [blame] | 636 | case KVM_CAP_NR_VCPUS: |
| 637 | /* |
| 638 | * Recommending a number of CPUs is somewhat arbitrary; we |
| 639 | * return the number of present CPUs for -HV (since a host |
| 640 | * will have secondary threads "offline"), and for other KVM |
| 641 | * implementations just count online CPUs. |
| 642 | */ |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 643 | if (hv_enabled) |
Vitaly Kuznetsov | b7915d5 | 2021-11-16 17:34:40 +0100 | [diff] [blame] | 644 | r = min_t(unsigned int, num_present_cpus(), KVM_MAX_VCPUS); |
Aneesh Kumar K.V | 699cc87 | 2013-10-07 22:17:56 +0530 | [diff] [blame] | 645 | else |
Vitaly Kuznetsov | b7915d5 | 2021-11-16 17:34:40 +0100 | [diff] [blame] | 646 | r = min_t(unsigned int, num_online_cpus(), KVM_MAX_VCPUS); |
Matt Evans | b543403 | 2011-12-07 16:55:57 +0000 | [diff] [blame] | 647 | break; |
| 648 | case KVM_CAP_MAX_VCPUS: |
| 649 | r = KVM_MAX_VCPUS; |
| 650 | break; |
Thomas Huth | a86cb41 | 2019-05-23 18:43:08 +0200 | [diff] [blame] | 651 | case KVM_CAP_MAX_VCPU_ID: |
Juergen Gross | a1c42dd | 2021-09-13 15:57:44 +0200 | [diff] [blame] | 652 | r = KVM_MAX_VCPU_IDS; |
Thomas Huth | a86cb41 | 2019-05-23 18:43:08 +0200 | [diff] [blame] | 653 | break; |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 654 | #ifdef CONFIG_PPC_BOOK3S_64 |
| 655 | case KVM_CAP_PPC_GET_SMMU_INFO: |
| 656 | r = 1; |
| 657 | break; |
Alexey Kardashevskiy | d3695aa | 2016-02-15 12:55:09 +1100 | [diff] [blame] | 658 | case KVM_CAP_SPAPR_MULTITCE: |
| 659 | r = 1; |
| 660 | break; |
David Gibson | 050f233 | 2016-12-20 16:49:07 +1100 | [diff] [blame] | 661 | case KVM_CAP_SPAPR_RESIZE_HPT: |
David Gibson | 790a9df | 2018-02-02 14:29:08 +1100 | [diff] [blame] | 662 | r = !!hv_enabled; |
David Gibson | 050f233 | 2016-12-20 16:49:07 +1100 | [diff] [blame] | 663 | break; |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 664 | #endif |
Aravinda Prasad | 134764e | 2017-05-11 16:32:48 +0530 | [diff] [blame] | 665 | #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE |
| 666 | case KVM_CAP_PPC_FWNMI: |
| 667 | r = hv_enabled; |
| 668 | break; |
| 669 | #endif |
Paul Mackerras | 4bb3c7a | 2018-03-21 21:32:01 +1100 | [diff] [blame] | 670 | #ifdef CONFIG_PPC_TRANSACTIONAL_MEM |
Sam Bobroff | 23528bb | 2016-07-20 13:41:36 +1000 | [diff] [blame] | 671 | case KVM_CAP_PPC_HTM: |
Simon Guo | d234d68 | 2018-05-23 15:02:08 +0800 | [diff] [blame] | 672 | r = !!(cur_cpu_spec->cpu_user_features2 & PPC_FEATURE2_HTM) || |
| 673 | (hv_enabled && cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST)); |
Sam Bobroff | 23528bb | 2016-07-20 13:41:36 +1000 | [diff] [blame] | 674 | break; |
Paul Mackerras | 4bb3c7a | 2018-03-21 21:32:01 +1100 | [diff] [blame] | 675 | #endif |
Paul Mackerras | 9a5788c | 2020-03-19 15:29:55 +1100 | [diff] [blame] | 676 | #if defined(CONFIG_KVM_BOOK3S_HV_POSSIBLE) |
| 677 | case KVM_CAP_PPC_SECURE_GUEST: |
| 678 | r = hv_enabled && kvmppc_hv_ops->enable_svm && |
| 679 | !kvmppc_hv_ops->enable_svm(NULL); |
| 680 | break; |
Ravi Bangoria | d9a47ed | 2020-12-16 16:12:19 +0530 | [diff] [blame] | 681 | case KVM_CAP_PPC_DAWR1: |
| 682 | r = !!(hv_enabled && kvmppc_hv_ops->enable_dawr1 && |
| 683 | !kvmppc_hv_ops->enable_dawr1(NULL)); |
| 684 | break; |
Bharata B Rao | b87cc11 | 2021-06-21 14:20:02 +0530 | [diff] [blame] | 685 | case KVM_CAP_PPC_RPT_INVALIDATE: |
| 686 | r = 1; |
| 687 | break; |
Paul Mackerras | 9a5788c | 2020-03-19 15:29:55 +1100 | [diff] [blame] | 688 | #endif |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 689 | default: |
| 690 | r = 0; |
| 691 | break; |
| 692 | } |
| 693 | return r; |
| 694 | |
| 695 | } |
| 696 | |
| 697 | long kvm_arch_dev_ioctl(struct file *filp, |
| 698 | unsigned int ioctl, unsigned long arg) |
| 699 | { |
| 700 | return -EINVAL; |
| 701 | } |
| 702 | |
Sean Christopherson | e96c81e | 2020-02-18 13:07:27 -0800 | [diff] [blame] | 703 | void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot) |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 704 | { |
Sean Christopherson | e96c81e | 2020-02-18 13:07:27 -0800 | [diff] [blame] | 705 | kvmppc_core_free_memslot(kvm, slot); |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 706 | } |
| 707 | |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 708 | int kvm_arch_prepare_memory_region(struct kvm *kvm, |
Takuya Yoshikawa | 462fce4 | 2013-02-27 19:41:56 +0900 | [diff] [blame] | 709 | struct kvm_memory_slot *memslot, |
Paolo Bonzini | 09170a4 | 2015-05-18 13:59:39 +0200 | [diff] [blame] | 710 | const struct kvm_userspace_memory_region *mem, |
Takuya Yoshikawa | 7b6195a | 2013-02-27 19:44:34 +0900 | [diff] [blame] | 711 | enum kvm_mr_change change) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 712 | { |
Sean Christopherson | 82307e6 | 2020-02-18 13:07:18 -0800 | [diff] [blame] | 713 | return kvmppc_core_prepare_memory_region(kvm, memslot, mem, change); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 714 | } |
| 715 | |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 716 | void kvm_arch_commit_memory_region(struct kvm *kvm, |
Paolo Bonzini | 09170a4 | 2015-05-18 13:59:39 +0200 | [diff] [blame] | 717 | const struct kvm_userspace_memory_region *mem, |
Sean Christopherson | 9d4c197 | 2020-02-18 13:07:24 -0800 | [diff] [blame] | 718 | struct kvm_memory_slot *old, |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 719 | const struct kvm_memory_slot *new, |
Takuya Yoshikawa | 8482644 | 2013-02-27 19:45:25 +0900 | [diff] [blame] | 720 | enum kvm_mr_change change) |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 721 | { |
Bharata B Rao | f032b73 | 2018-12-12 15:15:30 +1100 | [diff] [blame] | 722 | kvmppc_core_commit_memory_region(kvm, mem, old, new, change); |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 723 | } |
| 724 | |
Marcelo Tosatti | 2df72e9 | 2012-08-24 15:54:57 -0300 | [diff] [blame] | 725 | void kvm_arch_flush_shadow_memslot(struct kvm *kvm, |
| 726 | struct kvm_memory_slot *slot) |
Marcelo Tosatti | 34d4cb8 | 2008-07-10 20:49:31 -0300 | [diff] [blame] | 727 | { |
Paul Mackerras | dfe49db | 2012-09-11 13:28:18 +0000 | [diff] [blame] | 728 | kvmppc_core_flush_memslot(kvm, slot); |
Marcelo Tosatti | 34d4cb8 | 2008-07-10 20:49:31 -0300 | [diff] [blame] | 729 | } |
| 730 | |
Sean Christopherson | 897cc38 | 2019-12-18 13:55:09 -0800 | [diff] [blame] | 731 | int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id) |
| 732 | { |
| 733 | return 0; |
| 734 | } |
| 735 | |
Sean Christopherson | 74ce2e6 | 2019-12-18 13:55:26 -0800 | [diff] [blame] | 736 | static enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer) |
| 737 | { |
| 738 | struct kvm_vcpu *vcpu; |
| 739 | |
| 740 | vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer); |
| 741 | kvmppc_decrementer_func(vcpu); |
| 742 | |
| 743 | return HRTIMER_NORESTART; |
| 744 | } |
| 745 | |
Sean Christopherson | e529ef6 | 2019-12-18 13:55:15 -0800 | [diff] [blame] | 746 | int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 747 | { |
Sean Christopherson | c50bfbd | 2019-12-18 13:54:57 -0800 | [diff] [blame] | 748 | int err; |
| 749 | |
Sean Christopherson | 74ce2e6 | 2019-12-18 13:55:26 -0800 | [diff] [blame] | 750 | hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS); |
| 751 | vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup; |
| 752 | vcpu->arch.dec_expires = get_tb(); |
| 753 | |
| 754 | #ifdef CONFIG_KVM_EXIT_TIMING |
| 755 | mutex_init(&vcpu->arch.exit_timing_lock); |
| 756 | #endif |
| 757 | err = kvmppc_subarch_vcpu_init(vcpu); |
Sean Christopherson | ff030fd | 2019-12-18 13:55:00 -0800 | [diff] [blame] | 758 | if (err) |
Sean Christopherson | e529ef6 | 2019-12-18 13:55:15 -0800 | [diff] [blame] | 759 | return err; |
Sean Christopherson | ff030fd | 2019-12-18 13:55:00 -0800 | [diff] [blame] | 760 | |
Sean Christopherson | 74ce2e6 | 2019-12-18 13:55:26 -0800 | [diff] [blame] | 761 | err = kvmppc_core_vcpu_create(vcpu); |
| 762 | if (err) |
| 763 | goto out_vcpu_uninit; |
| 764 | |
Davidlohr Bueso | da4ad88 | 2020-04-23 22:48:37 -0700 | [diff] [blame] | 765 | vcpu->arch.waitp = &vcpu->wait; |
Sean Christopherson | e529ef6 | 2019-12-18 13:55:15 -0800 | [diff] [blame] | 766 | kvmppc_create_vcpu_debugfs(vcpu, vcpu->vcpu_id); |
| 767 | return 0; |
Sean Christopherson | 74ce2e6 | 2019-12-18 13:55:26 -0800 | [diff] [blame] | 768 | |
| 769 | out_vcpu_uninit: |
Sean Christopherson | 74ce2e6 | 2019-12-18 13:55:26 -0800 | [diff] [blame] | 770 | kvmppc_subarch_vcpu_uninit(vcpu); |
| 771 | return err; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 772 | } |
| 773 | |
Dominik Dingel | 31928aa | 2014-12-04 15:47:07 +0100 | [diff] [blame] | 774 | void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 775 | { |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 776 | } |
| 777 | |
Sean Christopherson | d5279f3 | 2019-12-18 13:55:03 -0800 | [diff] [blame] | 778 | void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 779 | { |
Alexander Graf | a595405 | 2010-02-22 16:52:14 +0100 | [diff] [blame] | 780 | /* Make sure we're not using the vcpu anymore */ |
| 781 | hrtimer_cancel(&vcpu->arch.dec_timer); |
Alexander Graf | a595405 | 2010-02-22 16:52:14 +0100 | [diff] [blame] | 782 | |
Hollis Blanchard | 73e75b4 | 2008-12-02 15:51:57 -0600 | [diff] [blame] | 783 | kvmppc_remove_vcpu_debugfs(vcpu); |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 784 | |
| 785 | switch (vcpu->arch.irq_type) { |
| 786 | case KVMPPC_IRQ_MPIC: |
| 787 | kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu); |
| 788 | break; |
Benjamin Herrenschmidt | bc5ad3f | 2013-04-17 20:30:26 +0000 | [diff] [blame] | 789 | case KVMPPC_IRQ_XICS: |
Paul Mackerras | 03f9533 | 2019-02-04 22:07:20 +1100 | [diff] [blame] | 790 | if (xics_on_xive()) |
Benjamin Herrenschmidt | 5af5099 | 2017-04-05 17:54:56 +1000 | [diff] [blame] | 791 | kvmppc_xive_cleanup_vcpu(vcpu); |
| 792 | else |
| 793 | kvmppc_xics_free_icp(vcpu); |
Benjamin Herrenschmidt | bc5ad3f | 2013-04-17 20:30:26 +0000 | [diff] [blame] | 794 | break; |
Cédric Le Goater | eacc56b | 2019-04-18 12:39:28 +0200 | [diff] [blame] | 795 | case KVMPPC_IRQ_XIVE: |
| 796 | kvmppc_xive_native_cleanup_vcpu(vcpu); |
| 797 | break; |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 798 | } |
| 799 | |
Hollis Blanchard | db93f57 | 2008-11-05 09:36:18 -0600 | [diff] [blame] | 800 | kvmppc_core_vcpu_free(vcpu); |
Sean Christopherson | 74ce2e6 | 2019-12-18 13:55:26 -0800 | [diff] [blame] | 801 | |
Sean Christopherson | 74ce2e6 | 2019-12-18 13:55:26 -0800 | [diff] [blame] | 802 | kvmppc_subarch_vcpu_uninit(vcpu); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 803 | } |
| 804 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 805 | int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu) |
| 806 | { |
Hollis Blanchard | 9dd921c | 2008-11-05 09:36:14 -0600 | [diff] [blame] | 807 | return kvmppc_core_pending_dec(vcpu); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 808 | } |
| 809 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 810 | void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu) |
| 811 | { |
Scott Wood | eab1767 | 2011-04-27 17:24:10 -0500 | [diff] [blame] | 812 | #ifdef CONFIG_BOOKE |
| 813 | /* |
| 814 | * vrsave (formerly usprg0) isn't used by Linux, but may |
| 815 | * be used by the guest. |
| 816 | * |
| 817 | * On non-booke this is associated with Altivec and |
| 818 | * is handled by code in book3s.c. |
| 819 | */ |
| 820 | mtspr(SPRN_VRSAVE, vcpu->arch.vrsave); |
| 821 | #endif |
Hollis Blanchard | 9dd921c | 2008-11-05 09:36:14 -0600 | [diff] [blame] | 822 | kvmppc_core_vcpu_load(vcpu, cpu); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 823 | } |
| 824 | |
| 825 | void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu) |
| 826 | { |
Hollis Blanchard | 9dd921c | 2008-11-05 09:36:14 -0600 | [diff] [blame] | 827 | kvmppc_core_vcpu_put(vcpu); |
Scott Wood | eab1767 | 2011-04-27 17:24:10 -0500 | [diff] [blame] | 828 | #ifdef CONFIG_BOOKE |
| 829 | vcpu->arch.vrsave = mfspr(SPRN_VRSAVE); |
| 830 | #endif |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 831 | } |
| 832 | |
Suresh Warrier | 9576730 | 2016-08-19 15:35:47 +1000 | [diff] [blame] | 833 | /* |
| 834 | * irq_bypass_add_producer and irq_bypass_del_producer are only |
| 835 | * useful if the architecture supports PCI passthrough. |
| 836 | * irq_bypass_stop and irq_bypass_start are not needed and so |
| 837 | * kvm_ops are not defined for them. |
| 838 | */ |
| 839 | bool kvm_arch_has_irq_bypass(void) |
| 840 | { |
| 841 | return ((kvmppc_hv_ops && kvmppc_hv_ops->irq_bypass_add_producer) || |
| 842 | (kvmppc_pr_ops && kvmppc_pr_ops->irq_bypass_add_producer)); |
| 843 | } |
| 844 | |
| 845 | int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons, |
| 846 | struct irq_bypass_producer *prod) |
| 847 | { |
| 848 | struct kvm_kernel_irqfd *irqfd = |
| 849 | container_of(cons, struct kvm_kernel_irqfd, consumer); |
| 850 | struct kvm *kvm = irqfd->kvm; |
| 851 | |
| 852 | if (kvm->arch.kvm_ops->irq_bypass_add_producer) |
| 853 | return kvm->arch.kvm_ops->irq_bypass_add_producer(cons, prod); |
| 854 | |
| 855 | return 0; |
| 856 | } |
| 857 | |
| 858 | void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons, |
| 859 | struct irq_bypass_producer *prod) |
| 860 | { |
| 861 | struct kvm_kernel_irqfd *irqfd = |
| 862 | container_of(cons, struct kvm_kernel_irqfd, consumer); |
| 863 | struct kvm *kvm = irqfd->kvm; |
| 864 | |
| 865 | if (kvm->arch.kvm_ops->irq_bypass_del_producer) |
| 866 | kvm->arch.kvm_ops->irq_bypass_del_producer(cons, prod); |
| 867 | } |
| 868 | |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 869 | #ifdef CONFIG_VSX |
| 870 | static inline int kvmppc_get_vsr_dword_offset(int index) |
| 871 | { |
| 872 | int offset; |
| 873 | |
| 874 | if ((index != 0) && (index != 1)) |
| 875 | return -1; |
| 876 | |
| 877 | #ifdef __BIG_ENDIAN |
| 878 | offset = index; |
| 879 | #else |
| 880 | offset = 1 - index; |
| 881 | #endif |
| 882 | |
| 883 | return offset; |
| 884 | } |
| 885 | |
| 886 | static inline int kvmppc_get_vsr_word_offset(int index) |
| 887 | { |
| 888 | int offset; |
| 889 | |
| 890 | if ((index > 3) || (index < 0)) |
| 891 | return -1; |
| 892 | |
| 893 | #ifdef __BIG_ENDIAN |
| 894 | offset = index; |
| 895 | #else |
| 896 | offset = 3 - index; |
| 897 | #endif |
| 898 | return offset; |
| 899 | } |
| 900 | |
| 901 | static inline void kvmppc_set_vsr_dword(struct kvm_vcpu *vcpu, |
| 902 | u64 gpr) |
| 903 | { |
| 904 | union kvmppc_one_reg val; |
| 905 | int offset = kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset); |
| 906 | int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK; |
| 907 | |
| 908 | if (offset == -1) |
| 909 | return; |
| 910 | |
Simon Guo | 4eeb855 | 2018-05-28 09:48:26 +0800 | [diff] [blame] | 911 | if (index >= 32) { |
| 912 | val.vval = VCPU_VSX_VR(vcpu, index - 32); |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 913 | val.vsxval[offset] = gpr; |
Simon Guo | 4eeb855 | 2018-05-28 09:48:26 +0800 | [diff] [blame] | 914 | VCPU_VSX_VR(vcpu, index - 32) = val.vval; |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 915 | } else { |
| 916 | VCPU_VSX_FPR(vcpu, index, offset) = gpr; |
| 917 | } |
| 918 | } |
| 919 | |
| 920 | static inline void kvmppc_set_vsr_dword_dump(struct kvm_vcpu *vcpu, |
| 921 | u64 gpr) |
| 922 | { |
| 923 | union kvmppc_one_reg val; |
| 924 | int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK; |
| 925 | |
Simon Guo | 4eeb855 | 2018-05-28 09:48:26 +0800 | [diff] [blame] | 926 | if (index >= 32) { |
| 927 | val.vval = VCPU_VSX_VR(vcpu, index - 32); |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 928 | val.vsxval[0] = gpr; |
| 929 | val.vsxval[1] = gpr; |
Simon Guo | 4eeb855 | 2018-05-28 09:48:26 +0800 | [diff] [blame] | 930 | VCPU_VSX_VR(vcpu, index - 32) = val.vval; |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 931 | } else { |
| 932 | VCPU_VSX_FPR(vcpu, index, 0) = gpr; |
| 933 | VCPU_VSX_FPR(vcpu, index, 1) = gpr; |
| 934 | } |
| 935 | } |
| 936 | |
Simon Guo | 94dd7fa | 2018-05-21 13:24:20 +0800 | [diff] [blame] | 937 | static inline void kvmppc_set_vsr_word_dump(struct kvm_vcpu *vcpu, |
| 938 | u32 gpr) |
| 939 | { |
| 940 | union kvmppc_one_reg val; |
| 941 | int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK; |
| 942 | |
Simon Guo | 4eeb855 | 2018-05-28 09:48:26 +0800 | [diff] [blame] | 943 | if (index >= 32) { |
Simon Guo | 94dd7fa | 2018-05-21 13:24:20 +0800 | [diff] [blame] | 944 | val.vsx32val[0] = gpr; |
| 945 | val.vsx32val[1] = gpr; |
| 946 | val.vsx32val[2] = gpr; |
| 947 | val.vsx32val[3] = gpr; |
Simon Guo | 4eeb855 | 2018-05-28 09:48:26 +0800 | [diff] [blame] | 948 | VCPU_VSX_VR(vcpu, index - 32) = val.vval; |
Simon Guo | 94dd7fa | 2018-05-21 13:24:20 +0800 | [diff] [blame] | 949 | } else { |
| 950 | val.vsx32val[0] = gpr; |
| 951 | val.vsx32val[1] = gpr; |
| 952 | VCPU_VSX_FPR(vcpu, index, 0) = val.vsxval[0]; |
| 953 | VCPU_VSX_FPR(vcpu, index, 1) = val.vsxval[0]; |
| 954 | } |
| 955 | } |
| 956 | |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 957 | static inline void kvmppc_set_vsr_word(struct kvm_vcpu *vcpu, |
| 958 | u32 gpr32) |
| 959 | { |
| 960 | union kvmppc_one_reg val; |
| 961 | int offset = kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset); |
| 962 | int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK; |
| 963 | int dword_offset, word_offset; |
| 964 | |
| 965 | if (offset == -1) |
| 966 | return; |
| 967 | |
Simon Guo | 4eeb855 | 2018-05-28 09:48:26 +0800 | [diff] [blame] | 968 | if (index >= 32) { |
| 969 | val.vval = VCPU_VSX_VR(vcpu, index - 32); |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 970 | val.vsx32val[offset] = gpr32; |
Simon Guo | 4eeb855 | 2018-05-28 09:48:26 +0800 | [diff] [blame] | 971 | VCPU_VSX_VR(vcpu, index - 32) = val.vval; |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 972 | } else { |
| 973 | dword_offset = offset / 2; |
| 974 | word_offset = offset % 2; |
| 975 | val.vsxval[0] = VCPU_VSX_FPR(vcpu, index, dword_offset); |
| 976 | val.vsx32val[word_offset] = gpr32; |
| 977 | VCPU_VSX_FPR(vcpu, index, dword_offset) = val.vsxval[0]; |
| 978 | } |
| 979 | } |
| 980 | #endif /* CONFIG_VSX */ |
| 981 | |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 982 | #ifdef CONFIG_ALTIVEC |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 983 | static inline int kvmppc_get_vmx_offset_generic(struct kvm_vcpu *vcpu, |
| 984 | int index, int element_size) |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 985 | { |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 986 | int offset; |
| 987 | int elts = sizeof(vector128)/element_size; |
| 988 | |
| 989 | if ((index < 0) || (index >= elts)) |
| 990 | return -1; |
| 991 | |
| 992 | if (kvmppc_need_byteswap(vcpu)) |
| 993 | offset = elts - index - 1; |
| 994 | else |
| 995 | offset = index; |
| 996 | |
| 997 | return offset; |
| 998 | } |
| 999 | |
| 1000 | static inline int kvmppc_get_vmx_dword_offset(struct kvm_vcpu *vcpu, |
| 1001 | int index) |
| 1002 | { |
| 1003 | return kvmppc_get_vmx_offset_generic(vcpu, index, 8); |
| 1004 | } |
| 1005 | |
| 1006 | static inline int kvmppc_get_vmx_word_offset(struct kvm_vcpu *vcpu, |
| 1007 | int index) |
| 1008 | { |
| 1009 | return kvmppc_get_vmx_offset_generic(vcpu, index, 4); |
| 1010 | } |
| 1011 | |
| 1012 | static inline int kvmppc_get_vmx_hword_offset(struct kvm_vcpu *vcpu, |
| 1013 | int index) |
| 1014 | { |
| 1015 | return kvmppc_get_vmx_offset_generic(vcpu, index, 2); |
| 1016 | } |
| 1017 | |
| 1018 | static inline int kvmppc_get_vmx_byte_offset(struct kvm_vcpu *vcpu, |
| 1019 | int index) |
| 1020 | { |
| 1021 | return kvmppc_get_vmx_offset_generic(vcpu, index, 1); |
| 1022 | } |
| 1023 | |
| 1024 | |
| 1025 | static inline void kvmppc_set_vmx_dword(struct kvm_vcpu *vcpu, |
| 1026 | u64 gpr) |
| 1027 | { |
| 1028 | union kvmppc_one_reg val; |
| 1029 | int offset = kvmppc_get_vmx_dword_offset(vcpu, |
| 1030 | vcpu->arch.mmio_vmx_offset); |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1031 | int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK; |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1032 | |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1033 | if (offset == -1) |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1034 | return; |
| 1035 | |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1036 | val.vval = VCPU_VSX_VR(vcpu, index); |
| 1037 | val.vsxval[offset] = gpr; |
| 1038 | VCPU_VSX_VR(vcpu, index) = val.vval; |
| 1039 | } |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1040 | |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1041 | static inline void kvmppc_set_vmx_word(struct kvm_vcpu *vcpu, |
| 1042 | u32 gpr32) |
| 1043 | { |
| 1044 | union kvmppc_one_reg val; |
| 1045 | int offset = kvmppc_get_vmx_word_offset(vcpu, |
| 1046 | vcpu->arch.mmio_vmx_offset); |
| 1047 | int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK; |
| 1048 | |
| 1049 | if (offset == -1) |
| 1050 | return; |
| 1051 | |
| 1052 | val.vval = VCPU_VSX_VR(vcpu, index); |
| 1053 | val.vsx32val[offset] = gpr32; |
| 1054 | VCPU_VSX_VR(vcpu, index) = val.vval; |
| 1055 | } |
| 1056 | |
| 1057 | static inline void kvmppc_set_vmx_hword(struct kvm_vcpu *vcpu, |
| 1058 | u16 gpr16) |
| 1059 | { |
| 1060 | union kvmppc_one_reg val; |
| 1061 | int offset = kvmppc_get_vmx_hword_offset(vcpu, |
| 1062 | vcpu->arch.mmio_vmx_offset); |
| 1063 | int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK; |
| 1064 | |
| 1065 | if (offset == -1) |
| 1066 | return; |
| 1067 | |
| 1068 | val.vval = VCPU_VSX_VR(vcpu, index); |
| 1069 | val.vsx16val[offset] = gpr16; |
| 1070 | VCPU_VSX_VR(vcpu, index) = val.vval; |
| 1071 | } |
| 1072 | |
| 1073 | static inline void kvmppc_set_vmx_byte(struct kvm_vcpu *vcpu, |
| 1074 | u8 gpr8) |
| 1075 | { |
| 1076 | union kvmppc_one_reg val; |
| 1077 | int offset = kvmppc_get_vmx_byte_offset(vcpu, |
| 1078 | vcpu->arch.mmio_vmx_offset); |
| 1079 | int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK; |
| 1080 | |
| 1081 | if (offset == -1) |
| 1082 | return; |
| 1083 | |
| 1084 | val.vval = VCPU_VSX_VR(vcpu, index); |
| 1085 | val.vsx8val[offset] = gpr8; |
| 1086 | VCPU_VSX_VR(vcpu, index) = val.vval; |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1087 | } |
| 1088 | #endif /* CONFIG_ALTIVEC */ |
| 1089 | |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1090 | #ifdef CONFIG_PPC_FPU |
| 1091 | static inline u64 sp_to_dp(u32 fprs) |
| 1092 | { |
| 1093 | u64 fprd; |
| 1094 | |
| 1095 | preempt_disable(); |
| 1096 | enable_kernel_fp(); |
Nick Desaulniers | 2a24d80 | 2021-09-14 09:17:04 -0700 | [diff] [blame] | 1097 | asm ("lfs%U1%X1 0,%1; stfd%U0%X0 0,%0" : "=m<>" (fprd) : "m<>" (fprs) |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1098 | : "fr0"); |
| 1099 | preempt_enable(); |
| 1100 | return fprd; |
| 1101 | } |
| 1102 | |
| 1103 | static inline u32 dp_to_sp(u64 fprd) |
| 1104 | { |
| 1105 | u32 fprs; |
| 1106 | |
| 1107 | preempt_disable(); |
| 1108 | enable_kernel_fp(); |
Nick Desaulniers | 2a24d80 | 2021-09-14 09:17:04 -0700 | [diff] [blame] | 1109 | asm ("lfd%U1%X1 0,%1; stfs%U0%X0 0,%0" : "=m<>" (fprs) : "m<>" (fprd) |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1110 | : "fr0"); |
| 1111 | preempt_enable(); |
| 1112 | return fprs; |
| 1113 | } |
| 1114 | |
| 1115 | #else |
| 1116 | #define sp_to_dp(x) (x) |
| 1117 | #define dp_to_sp(x) (x) |
| 1118 | #endif /* CONFIG_PPC_FPU */ |
| 1119 | |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1120 | static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1121 | { |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1122 | struct kvm_run *run = vcpu->run; |
Kees Cook | 3f649ab | 2020-06-03 13:09:38 -0700 | [diff] [blame] | 1123 | u64 gpr; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1124 | |
Alexander Graf | 8e5b26b | 2010-01-08 02:58:01 +0100 | [diff] [blame] | 1125 | if (run->mmio.len > sizeof(gpr)) { |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1126 | printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len); |
| 1127 | return; |
| 1128 | } |
| 1129 | |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1130 | if (!vcpu->arch.mmio_host_swabbed) { |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1131 | switch (run->mmio.len) { |
Alexander Graf | b104d06 | 2010-02-19 11:00:29 +0100 | [diff] [blame] | 1132 | case 8: gpr = *(u64 *)run->mmio.data; break; |
Alexander Graf | 8e5b26b | 2010-01-08 02:58:01 +0100 | [diff] [blame] | 1133 | case 4: gpr = *(u32 *)run->mmio.data; break; |
| 1134 | case 2: gpr = *(u16 *)run->mmio.data; break; |
| 1135 | case 1: gpr = *(u8 *)run->mmio.data; break; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1136 | } |
| 1137 | } else { |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1138 | switch (run->mmio.len) { |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1139 | case 8: gpr = swab64(*(u64 *)run->mmio.data); break; |
| 1140 | case 4: gpr = swab32(*(u32 *)run->mmio.data); break; |
| 1141 | case 2: gpr = swab16(*(u16 *)run->mmio.data); break; |
Alexander Graf | 8e5b26b | 2010-01-08 02:58:01 +0100 | [diff] [blame] | 1142 | case 1: gpr = *(u8 *)run->mmio.data; break; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1143 | } |
| 1144 | } |
Alexander Graf | 8e5b26b | 2010-01-08 02:58:01 +0100 | [diff] [blame] | 1145 | |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1146 | /* conversion between single and double precision */ |
| 1147 | if ((vcpu->arch.mmio_sp64_extend) && (run->mmio.len == 4)) |
| 1148 | gpr = sp_to_dp(gpr); |
| 1149 | |
Alexander Graf | 3587d53 | 2010-02-19 11:00:30 +0100 | [diff] [blame] | 1150 | if (vcpu->arch.mmio_sign_extend) { |
| 1151 | switch (run->mmio.len) { |
| 1152 | #ifdef CONFIG_PPC64 |
| 1153 | case 4: |
| 1154 | gpr = (s64)(s32)gpr; |
| 1155 | break; |
| 1156 | #endif |
| 1157 | case 2: |
| 1158 | gpr = (s64)(s16)gpr; |
| 1159 | break; |
| 1160 | case 1: |
| 1161 | gpr = (s64)(s8)gpr; |
| 1162 | break; |
| 1163 | } |
| 1164 | } |
| 1165 | |
Alexander Graf | b3c5d3c | 2012-01-07 02:07:38 +0100 | [diff] [blame] | 1166 | switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) { |
| 1167 | case KVM_MMIO_REG_GPR: |
Alexander Graf | b104d06 | 2010-02-19 11:00:29 +0100 | [diff] [blame] | 1168 | kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr); |
| 1169 | break; |
Alexander Graf | b3c5d3c | 2012-01-07 02:07:38 +0100 | [diff] [blame] | 1170 | case KVM_MMIO_REG_FPR: |
Simon Guo | 2e6baa4 | 2018-05-21 13:24:22 +0800 | [diff] [blame] | 1171 | if (vcpu->kvm->arch.kvm_ops->giveup_ext) |
| 1172 | vcpu->kvm->arch.kvm_ops->giveup_ext(vcpu, MSR_FP); |
| 1173 | |
Paul Mackerras | efff191 | 2013-10-15 20:43:02 +1100 | [diff] [blame] | 1174 | VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr; |
Alexander Graf | b104d06 | 2010-02-19 11:00:29 +0100 | [diff] [blame] | 1175 | break; |
Alexander Graf | 287d561 | 2010-04-01 15:33:21 +0200 | [diff] [blame] | 1176 | #ifdef CONFIG_PPC_BOOK3S |
Alexander Graf | b3c5d3c | 2012-01-07 02:07:38 +0100 | [diff] [blame] | 1177 | case KVM_MMIO_REG_QPR: |
| 1178 | vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr; |
Alexander Graf | b104d06 | 2010-02-19 11:00:29 +0100 | [diff] [blame] | 1179 | break; |
Alexander Graf | b3c5d3c | 2012-01-07 02:07:38 +0100 | [diff] [blame] | 1180 | case KVM_MMIO_REG_FQPR: |
Paul Mackerras | efff191 | 2013-10-15 20:43:02 +1100 | [diff] [blame] | 1181 | VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr; |
Alexander Graf | b3c5d3c | 2012-01-07 02:07:38 +0100 | [diff] [blame] | 1182 | vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr; |
Alexander Graf | b104d06 | 2010-02-19 11:00:29 +0100 | [diff] [blame] | 1183 | break; |
Alexander Graf | 287d561 | 2010-04-01 15:33:21 +0200 | [diff] [blame] | 1184 | #endif |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1185 | #ifdef CONFIG_VSX |
| 1186 | case KVM_MMIO_REG_VSX: |
Simon Guo | 2e6baa4 | 2018-05-21 13:24:22 +0800 | [diff] [blame] | 1187 | if (vcpu->kvm->arch.kvm_ops->giveup_ext) |
| 1188 | vcpu->kvm->arch.kvm_ops->giveup_ext(vcpu, MSR_VSX); |
| 1189 | |
Simon Guo | da2a32b | 2018-05-21 13:24:25 +0800 | [diff] [blame] | 1190 | if (vcpu->arch.mmio_copy_type == KVMPPC_VSX_COPY_DWORD) |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1191 | kvmppc_set_vsr_dword(vcpu, gpr); |
Simon Guo | da2a32b | 2018-05-21 13:24:25 +0800 | [diff] [blame] | 1192 | else if (vcpu->arch.mmio_copy_type == KVMPPC_VSX_COPY_WORD) |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1193 | kvmppc_set_vsr_word(vcpu, gpr); |
Simon Guo | da2a32b | 2018-05-21 13:24:25 +0800 | [diff] [blame] | 1194 | else if (vcpu->arch.mmio_copy_type == |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1195 | KVMPPC_VSX_COPY_DWORD_LOAD_DUMP) |
| 1196 | kvmppc_set_vsr_dword_dump(vcpu, gpr); |
Simon Guo | da2a32b | 2018-05-21 13:24:25 +0800 | [diff] [blame] | 1197 | else if (vcpu->arch.mmio_copy_type == |
Simon Guo | 94dd7fa | 2018-05-21 13:24:20 +0800 | [diff] [blame] | 1198 | KVMPPC_VSX_COPY_WORD_LOAD_DUMP) |
| 1199 | kvmppc_set_vsr_word_dump(vcpu, gpr); |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1200 | break; |
| 1201 | #endif |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1202 | #ifdef CONFIG_ALTIVEC |
| 1203 | case KVM_MMIO_REG_VMX: |
Simon Guo | 2e6baa4 | 2018-05-21 13:24:22 +0800 | [diff] [blame] | 1204 | if (vcpu->kvm->arch.kvm_ops->giveup_ext) |
| 1205 | vcpu->kvm->arch.kvm_ops->giveup_ext(vcpu, MSR_VEC); |
| 1206 | |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1207 | if (vcpu->arch.mmio_copy_type == KVMPPC_VMX_COPY_DWORD) |
| 1208 | kvmppc_set_vmx_dword(vcpu, gpr); |
| 1209 | else if (vcpu->arch.mmio_copy_type == KVMPPC_VMX_COPY_WORD) |
| 1210 | kvmppc_set_vmx_word(vcpu, gpr); |
| 1211 | else if (vcpu->arch.mmio_copy_type == |
| 1212 | KVMPPC_VMX_COPY_HWORD) |
| 1213 | kvmppc_set_vmx_hword(vcpu, gpr); |
| 1214 | else if (vcpu->arch.mmio_copy_type == |
| 1215 | KVMPPC_VMX_COPY_BYTE) |
| 1216 | kvmppc_set_vmx_byte(vcpu, gpr); |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1217 | break; |
| 1218 | #endif |
Suraj Jitindar Singh | 873db2c | 2018-12-14 16:29:08 +1100 | [diff] [blame] | 1219 | #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE |
| 1220 | case KVM_MMIO_REG_NESTED_GPR: |
| 1221 | if (kvmppc_need_byteswap(vcpu)) |
| 1222 | gpr = swab64(gpr); |
| 1223 | kvm_vcpu_write_guest(vcpu, vcpu->arch.nested_io_gpr, &gpr, |
| 1224 | sizeof(gpr)); |
| 1225 | break; |
| 1226 | #endif |
Alexander Graf | b104d06 | 2010-02-19 11:00:29 +0100 | [diff] [blame] | 1227 | default: |
| 1228 | BUG(); |
| 1229 | } |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1230 | } |
| 1231 | |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1232 | static int __kvmppc_handle_load(struct kvm_vcpu *vcpu, |
Paul Mackerras | eb8b056 | 2016-05-05 16:17:10 +1000 | [diff] [blame] | 1233 | unsigned int rt, unsigned int bytes, |
| 1234 | int is_default_endian, int sign_extend) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1235 | { |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1236 | struct kvm_run *run = vcpu->run; |
Scott Wood | ed840ee | 2013-04-26 14:53:39 +0000 | [diff] [blame] | 1237 | int idx, ret; |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1238 | bool host_swabbed; |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1239 | |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1240 | /* Pity C doesn't have a logical XOR operator */ |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1241 | if (kvmppc_need_byteswap(vcpu)) { |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1242 | host_swabbed = is_default_endian; |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1243 | } else { |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1244 | host_swabbed = !is_default_endian; |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1245 | } |
Scott Wood | ed840ee | 2013-04-26 14:53:39 +0000 | [diff] [blame] | 1246 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1247 | if (bytes > sizeof(run->mmio.data)) { |
| 1248 | printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__, |
| 1249 | run->mmio.len); |
| 1250 | } |
| 1251 | |
| 1252 | run->mmio.phys_addr = vcpu->arch.paddr_accessed; |
| 1253 | run->mmio.len = bytes; |
| 1254 | run->mmio.is_write = 0; |
| 1255 | |
| 1256 | vcpu->arch.io_gpr = rt; |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1257 | vcpu->arch.mmio_host_swabbed = host_swabbed; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1258 | vcpu->mmio_needed = 1; |
| 1259 | vcpu->mmio_is_write = 0; |
Paul Mackerras | eb8b056 | 2016-05-05 16:17:10 +1000 | [diff] [blame] | 1260 | vcpu->arch.mmio_sign_extend = sign_extend; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1261 | |
Scott Wood | ed840ee | 2013-04-26 14:53:39 +0000 | [diff] [blame] | 1262 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
| 1263 | |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 1264 | ret = kvm_io_bus_read(vcpu, KVM_MMIO_BUS, run->mmio.phys_addr, |
Scott Wood | ed840ee | 2013-04-26 14:53:39 +0000 | [diff] [blame] | 1265 | bytes, &run->mmio.data); |
| 1266 | |
| 1267 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
| 1268 | |
| 1269 | if (!ret) { |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1270 | kvmppc_complete_mmio_load(vcpu); |
Alexander Graf | 0e673fb | 2012-10-09 00:06:20 +0200 | [diff] [blame] | 1271 | vcpu->mmio_needed = 0; |
| 1272 | return EMULATE_DONE; |
| 1273 | } |
| 1274 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1275 | return EMULATE_DO_MMIO; |
| 1276 | } |
Paul Mackerras | eb8b056 | 2016-05-05 16:17:10 +1000 | [diff] [blame] | 1277 | |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1278 | int kvmppc_handle_load(struct kvm_vcpu *vcpu, |
Paul Mackerras | eb8b056 | 2016-05-05 16:17:10 +1000 | [diff] [blame] | 1279 | unsigned int rt, unsigned int bytes, |
| 1280 | int is_default_endian) |
| 1281 | { |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1282 | return __kvmppc_handle_load(vcpu, rt, bytes, is_default_endian, 0); |
Paul Mackerras | eb8b056 | 2016-05-05 16:17:10 +1000 | [diff] [blame] | 1283 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 1284 | EXPORT_SYMBOL_GPL(kvmppc_handle_load); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1285 | |
Alexander Graf | 3587d53 | 2010-02-19 11:00:30 +0100 | [diff] [blame] | 1286 | /* Same as above, but sign extends */ |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1287 | int kvmppc_handle_loads(struct kvm_vcpu *vcpu, |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1288 | unsigned int rt, unsigned int bytes, |
| 1289 | int is_default_endian) |
Alexander Graf | 3587d53 | 2010-02-19 11:00:30 +0100 | [diff] [blame] | 1290 | { |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1291 | return __kvmppc_handle_load(vcpu, rt, bytes, is_default_endian, 1); |
Alexander Graf | 3587d53 | 2010-02-19 11:00:30 +0100 | [diff] [blame] | 1292 | } |
| 1293 | |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1294 | #ifdef CONFIG_VSX |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1295 | int kvmppc_handle_vsx_load(struct kvm_vcpu *vcpu, |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1296 | unsigned int rt, unsigned int bytes, |
| 1297 | int is_default_endian, int mmio_sign_extend) |
| 1298 | { |
| 1299 | enum emulation_result emulated = EMULATE_DONE; |
| 1300 | |
Paul Mackerras | 9aa6825 | 2017-11-20 19:56:27 +1100 | [diff] [blame] | 1301 | /* Currently, mmio_vsx_copy_nums only allowed to be 4 or less */ |
| 1302 | if (vcpu->arch.mmio_vsx_copy_nums > 4) |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1303 | return EMULATE_FAIL; |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1304 | |
| 1305 | while (vcpu->arch.mmio_vsx_copy_nums) { |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1306 | emulated = __kvmppc_handle_load(vcpu, rt, bytes, |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1307 | is_default_endian, mmio_sign_extend); |
| 1308 | |
| 1309 | if (emulated != EMULATE_DONE) |
| 1310 | break; |
| 1311 | |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1312 | vcpu->arch.paddr_accessed += vcpu->run->mmio.len; |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1313 | |
| 1314 | vcpu->arch.mmio_vsx_copy_nums--; |
| 1315 | vcpu->arch.mmio_vsx_offset++; |
| 1316 | } |
| 1317 | return emulated; |
| 1318 | } |
| 1319 | #endif /* CONFIG_VSX */ |
| 1320 | |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1321 | int kvmppc_handle_store(struct kvm_vcpu *vcpu, |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1322 | u64 val, unsigned int bytes, int is_default_endian) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1323 | { |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1324 | struct kvm_run *run = vcpu->run; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1325 | void *data = run->mmio.data; |
Scott Wood | ed840ee | 2013-04-26 14:53:39 +0000 | [diff] [blame] | 1326 | int idx, ret; |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1327 | bool host_swabbed; |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1328 | |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1329 | /* Pity C doesn't have a logical XOR operator */ |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1330 | if (kvmppc_need_byteswap(vcpu)) { |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1331 | host_swabbed = is_default_endian; |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1332 | } else { |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1333 | host_swabbed = !is_default_endian; |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1334 | } |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1335 | |
| 1336 | if (bytes > sizeof(run->mmio.data)) { |
| 1337 | printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__, |
| 1338 | run->mmio.len); |
| 1339 | } |
| 1340 | |
| 1341 | run->mmio.phys_addr = vcpu->arch.paddr_accessed; |
| 1342 | run->mmio.len = bytes; |
| 1343 | run->mmio.is_write = 1; |
| 1344 | vcpu->mmio_needed = 1; |
| 1345 | vcpu->mmio_is_write = 1; |
| 1346 | |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1347 | if ((vcpu->arch.mmio_sp64_extend) && (bytes == 4)) |
| 1348 | val = dp_to_sp(val); |
| 1349 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1350 | /* Store the value at the lowest bytes in 'data'. */ |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1351 | if (!host_swabbed) { |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1352 | switch (bytes) { |
Alexander Graf | b104d06 | 2010-02-19 11:00:29 +0100 | [diff] [blame] | 1353 | case 8: *(u64 *)data = val; break; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1354 | case 4: *(u32 *)data = val; break; |
| 1355 | case 2: *(u16 *)data = val; break; |
| 1356 | case 1: *(u8 *)data = val; break; |
| 1357 | } |
| 1358 | } else { |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1359 | switch (bytes) { |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1360 | case 8: *(u64 *)data = swab64(val); break; |
| 1361 | case 4: *(u32 *)data = swab32(val); break; |
| 1362 | case 2: *(u16 *)data = swab16(val); break; |
| 1363 | case 1: *(u8 *)data = val; break; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1364 | } |
| 1365 | } |
| 1366 | |
Scott Wood | ed840ee | 2013-04-26 14:53:39 +0000 | [diff] [blame] | 1367 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
| 1368 | |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 1369 | ret = kvm_io_bus_write(vcpu, KVM_MMIO_BUS, run->mmio.phys_addr, |
Scott Wood | ed840ee | 2013-04-26 14:53:39 +0000 | [diff] [blame] | 1370 | bytes, &run->mmio.data); |
| 1371 | |
| 1372 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
| 1373 | |
| 1374 | if (!ret) { |
Alexander Graf | 0e673fb | 2012-10-09 00:06:20 +0200 | [diff] [blame] | 1375 | vcpu->mmio_needed = 0; |
| 1376 | return EMULATE_DONE; |
| 1377 | } |
| 1378 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1379 | return EMULATE_DO_MMIO; |
| 1380 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 1381 | EXPORT_SYMBOL_GPL(kvmppc_handle_store); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1382 | |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1383 | #ifdef CONFIG_VSX |
| 1384 | static inline int kvmppc_get_vsr_data(struct kvm_vcpu *vcpu, int rs, u64 *val) |
| 1385 | { |
| 1386 | u32 dword_offset, word_offset; |
| 1387 | union kvmppc_one_reg reg; |
| 1388 | int vsx_offset = 0; |
Simon Guo | da2a32b | 2018-05-21 13:24:25 +0800 | [diff] [blame] | 1389 | int copy_type = vcpu->arch.mmio_copy_type; |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1390 | int result = 0; |
| 1391 | |
| 1392 | switch (copy_type) { |
| 1393 | case KVMPPC_VSX_COPY_DWORD: |
| 1394 | vsx_offset = |
| 1395 | kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset); |
| 1396 | |
| 1397 | if (vsx_offset == -1) { |
| 1398 | result = -1; |
| 1399 | break; |
| 1400 | } |
| 1401 | |
Simon Guo | 4eeb855 | 2018-05-28 09:48:26 +0800 | [diff] [blame] | 1402 | if (rs < 32) { |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1403 | *val = VCPU_VSX_FPR(vcpu, rs, vsx_offset); |
| 1404 | } else { |
Simon Guo | 4eeb855 | 2018-05-28 09:48:26 +0800 | [diff] [blame] | 1405 | reg.vval = VCPU_VSX_VR(vcpu, rs - 32); |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1406 | *val = reg.vsxval[vsx_offset]; |
| 1407 | } |
| 1408 | break; |
| 1409 | |
| 1410 | case KVMPPC_VSX_COPY_WORD: |
| 1411 | vsx_offset = |
| 1412 | kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset); |
| 1413 | |
| 1414 | if (vsx_offset == -1) { |
| 1415 | result = -1; |
| 1416 | break; |
| 1417 | } |
| 1418 | |
Simon Guo | 4eeb855 | 2018-05-28 09:48:26 +0800 | [diff] [blame] | 1419 | if (rs < 32) { |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1420 | dword_offset = vsx_offset / 2; |
| 1421 | word_offset = vsx_offset % 2; |
| 1422 | reg.vsxval[0] = VCPU_VSX_FPR(vcpu, rs, dword_offset); |
| 1423 | *val = reg.vsx32val[word_offset]; |
| 1424 | } else { |
Simon Guo | 4eeb855 | 2018-05-28 09:48:26 +0800 | [diff] [blame] | 1425 | reg.vval = VCPU_VSX_VR(vcpu, rs - 32); |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1426 | *val = reg.vsx32val[vsx_offset]; |
| 1427 | } |
| 1428 | break; |
| 1429 | |
| 1430 | default: |
| 1431 | result = -1; |
| 1432 | break; |
| 1433 | } |
| 1434 | |
| 1435 | return result; |
| 1436 | } |
| 1437 | |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1438 | int kvmppc_handle_vsx_store(struct kvm_vcpu *vcpu, |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1439 | int rs, unsigned int bytes, int is_default_endian) |
| 1440 | { |
| 1441 | u64 val; |
| 1442 | enum emulation_result emulated = EMULATE_DONE; |
| 1443 | |
| 1444 | vcpu->arch.io_gpr = rs; |
| 1445 | |
Paul Mackerras | 9aa6825 | 2017-11-20 19:56:27 +1100 | [diff] [blame] | 1446 | /* Currently, mmio_vsx_copy_nums only allowed to be 4 or less */ |
| 1447 | if (vcpu->arch.mmio_vsx_copy_nums > 4) |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1448 | return EMULATE_FAIL; |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1449 | |
| 1450 | while (vcpu->arch.mmio_vsx_copy_nums) { |
| 1451 | if (kvmppc_get_vsr_data(vcpu, rs, &val) == -1) |
| 1452 | return EMULATE_FAIL; |
| 1453 | |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1454 | emulated = kvmppc_handle_store(vcpu, |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1455 | val, bytes, is_default_endian); |
| 1456 | |
| 1457 | if (emulated != EMULATE_DONE) |
| 1458 | break; |
| 1459 | |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1460 | vcpu->arch.paddr_accessed += vcpu->run->mmio.len; |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1461 | |
| 1462 | vcpu->arch.mmio_vsx_copy_nums--; |
| 1463 | vcpu->arch.mmio_vsx_offset++; |
| 1464 | } |
| 1465 | |
| 1466 | return emulated; |
| 1467 | } |
| 1468 | |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1469 | static int kvmppc_emulate_mmio_vsx_loadstore(struct kvm_vcpu *vcpu) |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1470 | { |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1471 | struct kvm_run *run = vcpu->run; |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1472 | enum emulation_result emulated = EMULATE_FAIL; |
| 1473 | int r; |
| 1474 | |
| 1475 | vcpu->arch.paddr_accessed += run->mmio.len; |
| 1476 | |
| 1477 | if (!vcpu->mmio_is_write) { |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1478 | emulated = kvmppc_handle_vsx_load(vcpu, vcpu->arch.io_gpr, |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1479 | run->mmio.len, 1, vcpu->arch.mmio_sign_extend); |
| 1480 | } else { |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1481 | emulated = kvmppc_handle_vsx_store(vcpu, |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1482 | vcpu->arch.io_gpr, run->mmio.len, 1); |
| 1483 | } |
| 1484 | |
| 1485 | switch (emulated) { |
| 1486 | case EMULATE_DO_MMIO: |
| 1487 | run->exit_reason = KVM_EXIT_MMIO; |
| 1488 | r = RESUME_HOST; |
| 1489 | break; |
| 1490 | case EMULATE_FAIL: |
| 1491 | pr_info("KVM: MMIO emulation failed (VSX repeat)\n"); |
| 1492 | run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 1493 | run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 1494 | r = RESUME_HOST; |
| 1495 | break; |
| 1496 | default: |
| 1497 | r = RESUME_GUEST; |
| 1498 | break; |
| 1499 | } |
| 1500 | return r; |
| 1501 | } |
| 1502 | #endif /* CONFIG_VSX */ |
| 1503 | |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1504 | #ifdef CONFIG_ALTIVEC |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1505 | int kvmppc_handle_vmx_load(struct kvm_vcpu *vcpu, |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1506 | unsigned int rt, unsigned int bytes, int is_default_endian) |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1507 | { |
Paul Mackerras | 6df3877 | 2018-02-13 15:45:21 +1100 | [diff] [blame] | 1508 | enum emulation_result emulated = EMULATE_DONE; |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1509 | |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1510 | if (vcpu->arch.mmio_vsx_copy_nums > 2) |
| 1511 | return EMULATE_FAIL; |
| 1512 | |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1513 | while (vcpu->arch.mmio_vmx_copy_nums) { |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1514 | emulated = __kvmppc_handle_load(vcpu, rt, bytes, |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1515 | is_default_endian, 0); |
| 1516 | |
| 1517 | if (emulated != EMULATE_DONE) |
| 1518 | break; |
| 1519 | |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1520 | vcpu->arch.paddr_accessed += vcpu->run->mmio.len; |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1521 | vcpu->arch.mmio_vmx_copy_nums--; |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1522 | vcpu->arch.mmio_vmx_offset++; |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1523 | } |
| 1524 | |
| 1525 | return emulated; |
| 1526 | } |
| 1527 | |
Cédric Le Goater | 9236f57 | 2021-01-04 15:32:01 +0100 | [diff] [blame] | 1528 | static int kvmppc_get_vmx_dword(struct kvm_vcpu *vcpu, int index, u64 *val) |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1529 | { |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1530 | union kvmppc_one_reg reg; |
| 1531 | int vmx_offset = 0; |
| 1532 | int result = 0; |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1533 | |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1534 | vmx_offset = |
| 1535 | kvmppc_get_vmx_dword_offset(vcpu, vcpu->arch.mmio_vmx_offset); |
| 1536 | |
| 1537 | if (vmx_offset == -1) |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1538 | return -1; |
| 1539 | |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1540 | reg.vval = VCPU_VSX_VR(vcpu, index); |
| 1541 | *val = reg.vsxval[vmx_offset]; |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1542 | |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1543 | return result; |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1544 | } |
| 1545 | |
Cédric Le Goater | 9236f57 | 2021-01-04 15:32:01 +0100 | [diff] [blame] | 1546 | static int kvmppc_get_vmx_word(struct kvm_vcpu *vcpu, int index, u64 *val) |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1547 | { |
| 1548 | union kvmppc_one_reg reg; |
| 1549 | int vmx_offset = 0; |
| 1550 | int result = 0; |
| 1551 | |
| 1552 | vmx_offset = |
| 1553 | kvmppc_get_vmx_word_offset(vcpu, vcpu->arch.mmio_vmx_offset); |
| 1554 | |
| 1555 | if (vmx_offset == -1) |
| 1556 | return -1; |
| 1557 | |
| 1558 | reg.vval = VCPU_VSX_VR(vcpu, index); |
| 1559 | *val = reg.vsx32val[vmx_offset]; |
| 1560 | |
| 1561 | return result; |
| 1562 | } |
| 1563 | |
Cédric Le Goater | 9236f57 | 2021-01-04 15:32:01 +0100 | [diff] [blame] | 1564 | static int kvmppc_get_vmx_hword(struct kvm_vcpu *vcpu, int index, u64 *val) |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1565 | { |
| 1566 | union kvmppc_one_reg reg; |
| 1567 | int vmx_offset = 0; |
| 1568 | int result = 0; |
| 1569 | |
| 1570 | vmx_offset = |
| 1571 | kvmppc_get_vmx_hword_offset(vcpu, vcpu->arch.mmio_vmx_offset); |
| 1572 | |
| 1573 | if (vmx_offset == -1) |
| 1574 | return -1; |
| 1575 | |
| 1576 | reg.vval = VCPU_VSX_VR(vcpu, index); |
| 1577 | *val = reg.vsx16val[vmx_offset]; |
| 1578 | |
| 1579 | return result; |
| 1580 | } |
| 1581 | |
Cédric Le Goater | 9236f57 | 2021-01-04 15:32:01 +0100 | [diff] [blame] | 1582 | static int kvmppc_get_vmx_byte(struct kvm_vcpu *vcpu, int index, u64 *val) |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1583 | { |
| 1584 | union kvmppc_one_reg reg; |
| 1585 | int vmx_offset = 0; |
| 1586 | int result = 0; |
| 1587 | |
| 1588 | vmx_offset = |
| 1589 | kvmppc_get_vmx_byte_offset(vcpu, vcpu->arch.mmio_vmx_offset); |
| 1590 | |
| 1591 | if (vmx_offset == -1) |
| 1592 | return -1; |
| 1593 | |
| 1594 | reg.vval = VCPU_VSX_VR(vcpu, index); |
| 1595 | *val = reg.vsx8val[vmx_offset]; |
| 1596 | |
| 1597 | return result; |
| 1598 | } |
| 1599 | |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1600 | int kvmppc_handle_vmx_store(struct kvm_vcpu *vcpu, |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1601 | unsigned int rs, unsigned int bytes, int is_default_endian) |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1602 | { |
| 1603 | u64 val = 0; |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1604 | unsigned int index = rs & KVM_MMIO_REG_MASK; |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1605 | enum emulation_result emulated = EMULATE_DONE; |
| 1606 | |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1607 | if (vcpu->arch.mmio_vsx_copy_nums > 2) |
| 1608 | return EMULATE_FAIL; |
| 1609 | |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1610 | vcpu->arch.io_gpr = rs; |
| 1611 | |
| 1612 | while (vcpu->arch.mmio_vmx_copy_nums) { |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1613 | switch (vcpu->arch.mmio_copy_type) { |
| 1614 | case KVMPPC_VMX_COPY_DWORD: |
| 1615 | if (kvmppc_get_vmx_dword(vcpu, index, &val) == -1) |
| 1616 | return EMULATE_FAIL; |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1617 | |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1618 | break; |
| 1619 | case KVMPPC_VMX_COPY_WORD: |
| 1620 | if (kvmppc_get_vmx_word(vcpu, index, &val) == -1) |
| 1621 | return EMULATE_FAIL; |
| 1622 | break; |
| 1623 | case KVMPPC_VMX_COPY_HWORD: |
| 1624 | if (kvmppc_get_vmx_hword(vcpu, index, &val) == -1) |
| 1625 | return EMULATE_FAIL; |
| 1626 | break; |
| 1627 | case KVMPPC_VMX_COPY_BYTE: |
| 1628 | if (kvmppc_get_vmx_byte(vcpu, index, &val) == -1) |
| 1629 | return EMULATE_FAIL; |
| 1630 | break; |
| 1631 | default: |
| 1632 | return EMULATE_FAIL; |
| 1633 | } |
| 1634 | |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1635 | emulated = kvmppc_handle_store(vcpu, val, bytes, |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1636 | is_default_endian); |
| 1637 | if (emulated != EMULATE_DONE) |
| 1638 | break; |
| 1639 | |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1640 | vcpu->arch.paddr_accessed += vcpu->run->mmio.len; |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1641 | vcpu->arch.mmio_vmx_copy_nums--; |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1642 | vcpu->arch.mmio_vmx_offset++; |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1643 | } |
| 1644 | |
| 1645 | return emulated; |
| 1646 | } |
| 1647 | |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1648 | static int kvmppc_emulate_mmio_vmx_loadstore(struct kvm_vcpu *vcpu) |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1649 | { |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1650 | struct kvm_run *run = vcpu->run; |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1651 | enum emulation_result emulated = EMULATE_FAIL; |
| 1652 | int r; |
| 1653 | |
| 1654 | vcpu->arch.paddr_accessed += run->mmio.len; |
| 1655 | |
| 1656 | if (!vcpu->mmio_is_write) { |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1657 | emulated = kvmppc_handle_vmx_load(vcpu, |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1658 | vcpu->arch.io_gpr, run->mmio.len, 1); |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1659 | } else { |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1660 | emulated = kvmppc_handle_vmx_store(vcpu, |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1661 | vcpu->arch.io_gpr, run->mmio.len, 1); |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1662 | } |
| 1663 | |
| 1664 | switch (emulated) { |
| 1665 | case EMULATE_DO_MMIO: |
| 1666 | run->exit_reason = KVM_EXIT_MMIO; |
| 1667 | r = RESUME_HOST; |
| 1668 | break; |
| 1669 | case EMULATE_FAIL: |
| 1670 | pr_info("KVM: MMIO emulation failed (VMX repeat)\n"); |
| 1671 | run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 1672 | run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 1673 | r = RESUME_HOST; |
| 1674 | break; |
| 1675 | default: |
| 1676 | r = RESUME_GUEST; |
| 1677 | break; |
| 1678 | } |
| 1679 | return r; |
| 1680 | } |
| 1681 | #endif /* CONFIG_ALTIVEC */ |
| 1682 | |
Mihai Caraman | 8a41ea5 | 2014-08-20 16:36:24 +0300 | [diff] [blame] | 1683 | int kvm_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg) |
| 1684 | { |
| 1685 | int r = 0; |
| 1686 | union kvmppc_one_reg val; |
| 1687 | int size; |
| 1688 | |
| 1689 | size = one_reg_size(reg->id); |
| 1690 | if (size > sizeof(val)) |
| 1691 | return -EINVAL; |
| 1692 | |
| 1693 | r = kvmppc_get_one_reg(vcpu, reg->id, &val); |
| 1694 | if (r == -EINVAL) { |
| 1695 | r = 0; |
| 1696 | switch (reg->id) { |
Mihai Caraman | 3840edc | 2014-08-20 16:36:25 +0300 | [diff] [blame] | 1697 | #ifdef CONFIG_ALTIVEC |
| 1698 | case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31: |
| 1699 | if (!cpu_has_feature(CPU_FTR_ALTIVEC)) { |
| 1700 | r = -ENXIO; |
| 1701 | break; |
| 1702 | } |
Greg Kurz | b4d7f16 | 2016-01-13 18:28:17 +0100 | [diff] [blame] | 1703 | val.vval = vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0]; |
Mihai Caraman | 3840edc | 2014-08-20 16:36:25 +0300 | [diff] [blame] | 1704 | break; |
| 1705 | case KVM_REG_PPC_VSCR: |
| 1706 | if (!cpu_has_feature(CPU_FTR_ALTIVEC)) { |
| 1707 | r = -ENXIO; |
| 1708 | break; |
| 1709 | } |
Greg Kurz | b4d7f16 | 2016-01-13 18:28:17 +0100 | [diff] [blame] | 1710 | val = get_reg_val(reg->id, vcpu->arch.vr.vscr.u[3]); |
Mihai Caraman | 3840edc | 2014-08-20 16:36:25 +0300 | [diff] [blame] | 1711 | break; |
| 1712 | case KVM_REG_PPC_VRSAVE: |
Greg Kurz | b4d7f16 | 2016-01-13 18:28:17 +0100 | [diff] [blame] | 1713 | val = get_reg_val(reg->id, vcpu->arch.vrsave); |
Mihai Caraman | 3840edc | 2014-08-20 16:36:25 +0300 | [diff] [blame] | 1714 | break; |
| 1715 | #endif /* CONFIG_ALTIVEC */ |
Mihai Caraman | 8a41ea5 | 2014-08-20 16:36:24 +0300 | [diff] [blame] | 1716 | default: |
| 1717 | r = -EINVAL; |
| 1718 | break; |
| 1719 | } |
| 1720 | } |
| 1721 | |
| 1722 | if (r) |
| 1723 | return r; |
| 1724 | |
| 1725 | if (copy_to_user((char __user *)(unsigned long)reg->addr, &val, size)) |
| 1726 | r = -EFAULT; |
| 1727 | |
| 1728 | return r; |
| 1729 | } |
| 1730 | |
| 1731 | int kvm_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg) |
| 1732 | { |
| 1733 | int r; |
| 1734 | union kvmppc_one_reg val; |
| 1735 | int size; |
| 1736 | |
| 1737 | size = one_reg_size(reg->id); |
| 1738 | if (size > sizeof(val)) |
| 1739 | return -EINVAL; |
| 1740 | |
| 1741 | if (copy_from_user(&val, (char __user *)(unsigned long)reg->addr, size)) |
| 1742 | return -EFAULT; |
| 1743 | |
| 1744 | r = kvmppc_set_one_reg(vcpu, reg->id, &val); |
| 1745 | if (r == -EINVAL) { |
| 1746 | r = 0; |
| 1747 | switch (reg->id) { |
Mihai Caraman | 3840edc | 2014-08-20 16:36:25 +0300 | [diff] [blame] | 1748 | #ifdef CONFIG_ALTIVEC |
| 1749 | case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31: |
| 1750 | if (!cpu_has_feature(CPU_FTR_ALTIVEC)) { |
| 1751 | r = -ENXIO; |
| 1752 | break; |
| 1753 | } |
Greg Kurz | b4d7f16 | 2016-01-13 18:28:17 +0100 | [diff] [blame] | 1754 | vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0] = val.vval; |
Mihai Caraman | 3840edc | 2014-08-20 16:36:25 +0300 | [diff] [blame] | 1755 | break; |
| 1756 | case KVM_REG_PPC_VSCR: |
| 1757 | if (!cpu_has_feature(CPU_FTR_ALTIVEC)) { |
| 1758 | r = -ENXIO; |
| 1759 | break; |
| 1760 | } |
Greg Kurz | b4d7f16 | 2016-01-13 18:28:17 +0100 | [diff] [blame] | 1761 | vcpu->arch.vr.vscr.u[3] = set_reg_val(reg->id, val); |
Mihai Caraman | 3840edc | 2014-08-20 16:36:25 +0300 | [diff] [blame] | 1762 | break; |
| 1763 | case KVM_REG_PPC_VRSAVE: |
Greg Kurz | b4d7f16 | 2016-01-13 18:28:17 +0100 | [diff] [blame] | 1764 | if (!cpu_has_feature(CPU_FTR_ALTIVEC)) { |
| 1765 | r = -ENXIO; |
| 1766 | break; |
| 1767 | } |
| 1768 | vcpu->arch.vrsave = set_reg_val(reg->id, val); |
Mihai Caraman | 3840edc | 2014-08-20 16:36:25 +0300 | [diff] [blame] | 1769 | break; |
| 1770 | #endif /* CONFIG_ALTIVEC */ |
Mihai Caraman | 8a41ea5 | 2014-08-20 16:36:24 +0300 | [diff] [blame] | 1771 | default: |
| 1772 | r = -EINVAL; |
| 1773 | break; |
| 1774 | } |
| 1775 | } |
| 1776 | |
| 1777 | return r; |
| 1778 | } |
| 1779 | |
Tianjia Zhang | 1b94f6f | 2020-04-16 13:10:57 +0800 | [diff] [blame] | 1780 | int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1781 | { |
Tianjia Zhang | 1b94f6f | 2020-04-16 13:10:57 +0800 | [diff] [blame] | 1782 | struct kvm_run *run = vcpu->run; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1783 | int r; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1784 | |
Christoffer Dall | accb757 | 2017-12-04 21:35:25 +0100 | [diff] [blame] | 1785 | vcpu_load(vcpu); |
| 1786 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1787 | if (vcpu->mmio_needed) { |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1788 | vcpu->mmio_needed = 0; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1789 | if (!vcpu->mmio_is_write) |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1790 | kvmppc_complete_mmio_load(vcpu); |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1791 | #ifdef CONFIG_VSX |
| 1792 | if (vcpu->arch.mmio_vsx_copy_nums > 0) { |
| 1793 | vcpu->arch.mmio_vsx_copy_nums--; |
| 1794 | vcpu->arch.mmio_vsx_offset++; |
| 1795 | } |
| 1796 | |
| 1797 | if (vcpu->arch.mmio_vsx_copy_nums > 0) { |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1798 | r = kvmppc_emulate_mmio_vsx_loadstore(vcpu); |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1799 | if (r == RESUME_HOST) { |
| 1800 | vcpu->mmio_needed = 1; |
Christoffer Dall | accb757 | 2017-12-04 21:35:25 +0100 | [diff] [blame] | 1801 | goto out; |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1802 | } |
| 1803 | } |
| 1804 | #endif |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1805 | #ifdef CONFIG_ALTIVEC |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1806 | if (vcpu->arch.mmio_vmx_copy_nums > 0) { |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1807 | vcpu->arch.mmio_vmx_copy_nums--; |
Simon Guo | acc9eb9 | 2018-05-21 13:24:26 +0800 | [diff] [blame] | 1808 | vcpu->arch.mmio_vmx_offset++; |
| 1809 | } |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1810 | |
| 1811 | if (vcpu->arch.mmio_vmx_copy_nums > 0) { |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1812 | r = kvmppc_emulate_mmio_vmx_loadstore(vcpu); |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1813 | if (r == RESUME_HOST) { |
| 1814 | vcpu->mmio_needed = 1; |
Radim Krčmář | 1ab03c0 | 2018-02-09 21:36:57 +0100 | [diff] [blame] | 1815 | goto out; |
Jose Ricardo Ziviani | 09f9849 | 2018-02-03 18:24:26 -0200 | [diff] [blame] | 1816 | } |
| 1817 | } |
| 1818 | #endif |
Alexander Graf | ad0a048 | 2010-03-24 21:48:30 +0100 | [diff] [blame] | 1819 | } else if (vcpu->arch.osi_needed) { |
| 1820 | u64 *gprs = run->osi.gprs; |
| 1821 | int i; |
| 1822 | |
| 1823 | for (i = 0; i < 32; i++) |
| 1824 | kvmppc_set_gpr(vcpu, i, gprs[i]); |
| 1825 | vcpu->arch.osi_needed = 0; |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 1826 | } else if (vcpu->arch.hcall_needed) { |
| 1827 | int i; |
| 1828 | |
| 1829 | kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret); |
| 1830 | for (i = 0; i < 9; ++i) |
| 1831 | kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]); |
| 1832 | vcpu->arch.hcall_needed = 0; |
Alexander Graf | 1c81063 | 2013-01-04 18:12:48 +0100 | [diff] [blame] | 1833 | #ifdef CONFIG_BOOKE |
| 1834 | } else if (vcpu->arch.epr_needed) { |
| 1835 | kvmppc_set_epr(vcpu, run->epr.epr); |
| 1836 | vcpu->arch.epr_needed = 0; |
| 1837 | #endif |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1838 | } |
| 1839 | |
Jan H. Schönherr | 20b7035 | 2017-11-24 22:39:01 +0100 | [diff] [blame] | 1840 | kvm_sigset_activate(vcpu); |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1841 | |
Paolo Bonzini | 460df4c | 2017-02-08 11:50:15 +0100 | [diff] [blame] | 1842 | if (run->immediate_exit) |
| 1843 | r = -EINTR; |
| 1844 | else |
Tianjia Zhang | 8c99d34 | 2020-04-27 12:35:11 +0800 | [diff] [blame] | 1845 | r = kvmppc_vcpu_run(vcpu); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1846 | |
Jan H. Schönherr | 20b7035 | 2017-11-24 22:39:01 +0100 | [diff] [blame] | 1847 | kvm_sigset_deactivate(vcpu); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1848 | |
Paul Mackerras | c662f77 | 2018-02-13 15:16:01 +1100 | [diff] [blame] | 1849 | #ifdef CONFIG_ALTIVEC |
Christoffer Dall | accb757 | 2017-12-04 21:35:25 +0100 | [diff] [blame] | 1850 | out: |
Paul Mackerras | c662f77 | 2018-02-13 15:16:01 +1100 | [diff] [blame] | 1851 | #endif |
Christoffer Dall | accb757 | 2017-12-04 21:35:25 +0100 | [diff] [blame] | 1852 | vcpu_put(vcpu); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1853 | return r; |
| 1854 | } |
| 1855 | |
| 1856 | int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq) |
| 1857 | { |
Paul Mackerras | 19ccb76 | 2011-07-23 17:42:46 +1000 | [diff] [blame] | 1858 | if (irq->irq == KVM_INTERRUPT_UNSET) { |
Paul Mackerras | 4fe27d2 | 2013-02-14 14:00:25 +0000 | [diff] [blame] | 1859 | kvmppc_core_dequeue_external(vcpu); |
Paul Mackerras | 19ccb76 | 2011-07-23 17:42:46 +1000 | [diff] [blame] | 1860 | return 0; |
| 1861 | } |
Hollis Blanchard | 45c5eb6 | 2008-04-25 17:55:49 -0500 | [diff] [blame] | 1862 | |
Paul Mackerras | 19ccb76 | 2011-07-23 17:42:46 +1000 | [diff] [blame] | 1863 | kvmppc_core_queue_external(vcpu, irq); |
Christoffer Dall | b6d3383 | 2012-03-08 16:44:24 -0500 | [diff] [blame] | 1864 | |
Scott Wood | dfd4d47 | 2011-11-17 12:39:59 +0000 | [diff] [blame] | 1865 | kvm_vcpu_kick(vcpu); |
Hollis Blanchard | 45c5eb6 | 2008-04-25 17:55:49 -0500 | [diff] [blame] | 1866 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1867 | return 0; |
| 1868 | } |
| 1869 | |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 1870 | static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu, |
| 1871 | struct kvm_enable_cap *cap) |
| 1872 | { |
| 1873 | int r; |
| 1874 | |
| 1875 | if (cap->flags) |
| 1876 | return -EINVAL; |
| 1877 | |
| 1878 | switch (cap->cap) { |
Alexander Graf | ad0a048 | 2010-03-24 21:48:30 +0100 | [diff] [blame] | 1879 | case KVM_CAP_PPC_OSI: |
| 1880 | r = 0; |
| 1881 | vcpu->arch.osi_enabled = true; |
| 1882 | break; |
Alexander Graf | 930b412 | 2011-08-08 17:29:42 +0200 | [diff] [blame] | 1883 | case KVM_CAP_PPC_PAPR: |
| 1884 | r = 0; |
| 1885 | vcpu->arch.papr_enabled = true; |
| 1886 | break; |
Alexander Graf | 1c81063 | 2013-01-04 18:12:48 +0100 | [diff] [blame] | 1887 | case KVM_CAP_PPC_EPR: |
| 1888 | r = 0; |
Scott Wood | 5df554ad | 2013-04-12 14:08:46 +0000 | [diff] [blame] | 1889 | if (cap->args[0]) |
| 1890 | vcpu->arch.epr_flags |= KVMPPC_EPR_USER; |
| 1891 | else |
| 1892 | vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER; |
Alexander Graf | 1c81063 | 2013-01-04 18:12:48 +0100 | [diff] [blame] | 1893 | break; |
Bharat Bhushan | f61c94b | 2012-08-08 20:38:19 +0000 | [diff] [blame] | 1894 | #ifdef CONFIG_BOOKE |
| 1895 | case KVM_CAP_PPC_BOOKE_WATCHDOG: |
| 1896 | r = 0; |
| 1897 | vcpu->arch.watchdog_enabled = true; |
| 1898 | break; |
| 1899 | #endif |
Alexander Graf | bf7ca4b | 2012-02-15 23:40:00 +0000 | [diff] [blame] | 1900 | #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC) |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 1901 | case KVM_CAP_SW_TLB: { |
| 1902 | struct kvm_config_tlb cfg; |
| 1903 | void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0]; |
| 1904 | |
| 1905 | r = -EFAULT; |
| 1906 | if (copy_from_user(&cfg, user_ptr, sizeof(cfg))) |
| 1907 | break; |
| 1908 | |
| 1909 | r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg); |
| 1910 | break; |
| 1911 | } |
| 1912 | #endif |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 1913 | #ifdef CONFIG_KVM_MPIC |
| 1914 | case KVM_CAP_IRQ_MPIC: { |
Al Viro | 70abade | 2013-08-30 15:04:22 -0400 | [diff] [blame] | 1915 | struct fd f; |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 1916 | struct kvm_device *dev; |
| 1917 | |
| 1918 | r = -EBADF; |
Al Viro | 70abade | 2013-08-30 15:04:22 -0400 | [diff] [blame] | 1919 | f = fdget(cap->args[0]); |
| 1920 | if (!f.file) |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 1921 | break; |
| 1922 | |
| 1923 | r = -EPERM; |
Al Viro | 70abade | 2013-08-30 15:04:22 -0400 | [diff] [blame] | 1924 | dev = kvm_device_from_filp(f.file); |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 1925 | if (dev) |
| 1926 | r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]); |
| 1927 | |
Al Viro | 70abade | 2013-08-30 15:04:22 -0400 | [diff] [blame] | 1928 | fdput(f); |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 1929 | break; |
| 1930 | } |
| 1931 | #endif |
Paul Mackerras | 5975a2e | 2013-04-27 00:28:37 +0000 | [diff] [blame] | 1932 | #ifdef CONFIG_KVM_XICS |
| 1933 | case KVM_CAP_IRQ_XICS: { |
Al Viro | 70abade | 2013-08-30 15:04:22 -0400 | [diff] [blame] | 1934 | struct fd f; |
Paul Mackerras | 5975a2e | 2013-04-27 00:28:37 +0000 | [diff] [blame] | 1935 | struct kvm_device *dev; |
| 1936 | |
| 1937 | r = -EBADF; |
Al Viro | 70abade | 2013-08-30 15:04:22 -0400 | [diff] [blame] | 1938 | f = fdget(cap->args[0]); |
| 1939 | if (!f.file) |
Paul Mackerras | 5975a2e | 2013-04-27 00:28:37 +0000 | [diff] [blame] | 1940 | break; |
| 1941 | |
| 1942 | r = -EPERM; |
Al Viro | 70abade | 2013-08-30 15:04:22 -0400 | [diff] [blame] | 1943 | dev = kvm_device_from_filp(f.file); |
Benjamin Herrenschmidt | 5af5099 | 2017-04-05 17:54:56 +1000 | [diff] [blame] | 1944 | if (dev) { |
Paul Mackerras | 03f9533 | 2019-02-04 22:07:20 +1100 | [diff] [blame] | 1945 | if (xics_on_xive()) |
Benjamin Herrenschmidt | 5af5099 | 2017-04-05 17:54:56 +1000 | [diff] [blame] | 1946 | r = kvmppc_xive_connect_vcpu(dev, vcpu, cap->args[1]); |
| 1947 | else |
| 1948 | r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]); |
| 1949 | } |
Paul Mackerras | 5975a2e | 2013-04-27 00:28:37 +0000 | [diff] [blame] | 1950 | |
Al Viro | 70abade | 2013-08-30 15:04:22 -0400 | [diff] [blame] | 1951 | fdput(f); |
Paul Mackerras | 5975a2e | 2013-04-27 00:28:37 +0000 | [diff] [blame] | 1952 | break; |
| 1953 | } |
| 1954 | #endif /* CONFIG_KVM_XICS */ |
Cédric Le Goater | eacc56b | 2019-04-18 12:39:28 +0200 | [diff] [blame] | 1955 | #ifdef CONFIG_KVM_XIVE |
| 1956 | case KVM_CAP_PPC_IRQ_XIVE: { |
| 1957 | struct fd f; |
| 1958 | struct kvm_device *dev; |
| 1959 | |
| 1960 | r = -EBADF; |
| 1961 | f = fdget(cap->args[0]); |
| 1962 | if (!f.file) |
| 1963 | break; |
| 1964 | |
| 1965 | r = -ENXIO; |
| 1966 | if (!xive_enabled()) |
| 1967 | break; |
| 1968 | |
| 1969 | r = -EPERM; |
| 1970 | dev = kvm_device_from_filp(f.file); |
| 1971 | if (dev) |
| 1972 | r = kvmppc_xive_native_connect_vcpu(dev, vcpu, |
| 1973 | cap->args[1]); |
| 1974 | |
| 1975 | fdput(f); |
| 1976 | break; |
| 1977 | } |
| 1978 | #endif /* CONFIG_KVM_XIVE */ |
Aravinda Prasad | 134764e | 2017-05-11 16:32:48 +0530 | [diff] [blame] | 1979 | #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE |
| 1980 | case KVM_CAP_PPC_FWNMI: |
| 1981 | r = -EINVAL; |
| 1982 | if (!is_kvmppc_hv_enabled(vcpu->kvm)) |
| 1983 | break; |
| 1984 | r = 0; |
| 1985 | vcpu->kvm->arch.fwnmi_enabled = true; |
| 1986 | break; |
| 1987 | #endif /* CONFIG_KVM_BOOK3S_HV_POSSIBLE */ |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 1988 | default: |
| 1989 | r = -EINVAL; |
| 1990 | break; |
| 1991 | } |
| 1992 | |
Alexander Graf | af8f38b | 2011-08-10 13:57:08 +0200 | [diff] [blame] | 1993 | if (!r) |
| 1994 | r = kvmppc_sanity_check(vcpu); |
| 1995 | |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 1996 | return r; |
| 1997 | } |
| 1998 | |
Paul Mackerras | 34a75b0 | 2016-08-10 11:27:27 +1000 | [diff] [blame] | 1999 | bool kvm_arch_intc_initialized(struct kvm *kvm) |
| 2000 | { |
| 2001 | #ifdef CONFIG_KVM_MPIC |
| 2002 | if (kvm->arch.mpic) |
| 2003 | return true; |
| 2004 | #endif |
| 2005 | #ifdef CONFIG_KVM_XICS |
Benjamin Herrenschmidt | 5af5099 | 2017-04-05 17:54:56 +1000 | [diff] [blame] | 2006 | if (kvm->arch.xics || kvm->arch.xive) |
Paul Mackerras | 34a75b0 | 2016-08-10 11:27:27 +1000 | [diff] [blame] | 2007 | return true; |
| 2008 | #endif |
| 2009 | return false; |
| 2010 | } |
| 2011 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 2012 | int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu, |
| 2013 | struct kvm_mp_state *mp_state) |
| 2014 | { |
| 2015 | return -EINVAL; |
| 2016 | } |
| 2017 | |
| 2018 | int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu, |
| 2019 | struct kvm_mp_state *mp_state) |
| 2020 | { |
| 2021 | return -EINVAL; |
| 2022 | } |
| 2023 | |
Paolo Bonzini | 5cb0944 | 2017-12-12 17:41:34 +0100 | [diff] [blame] | 2024 | long kvm_arch_vcpu_async_ioctl(struct file *filp, |
| 2025 | unsigned int ioctl, unsigned long arg) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 2026 | { |
| 2027 | struct kvm_vcpu *vcpu = filp->private_data; |
| 2028 | void __user *argp = (void __user *)arg; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 2029 | |
Christoffer Dall | 9b062471 | 2017-12-04 21:35:36 +0100 | [diff] [blame] | 2030 | if (ioctl == KVM_INTERRUPT) { |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 2031 | struct kvm_interrupt irq; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 2032 | if (copy_from_user(&irq, argp, sizeof(irq))) |
Christoffer Dall | 9b062471 | 2017-12-04 21:35:36 +0100 | [diff] [blame] | 2033 | return -EFAULT; |
| 2034 | return kvm_vcpu_ioctl_interrupt(vcpu, &irq); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 2035 | } |
Paolo Bonzini | 5cb0944 | 2017-12-12 17:41:34 +0100 | [diff] [blame] | 2036 | return -ENOIOCTLCMD; |
| 2037 | } |
| 2038 | |
| 2039 | long kvm_arch_vcpu_ioctl(struct file *filp, |
| 2040 | unsigned int ioctl, unsigned long arg) |
| 2041 | { |
| 2042 | struct kvm_vcpu *vcpu = filp->private_data; |
| 2043 | void __user *argp = (void __user *)arg; |
| 2044 | long r; |
Avi Kivity | 19483d1 | 2010-05-13 12:30:43 +0300 | [diff] [blame] | 2045 | |
Christoffer Dall | 9b062471 | 2017-12-04 21:35:36 +0100 | [diff] [blame] | 2046 | switch (ioctl) { |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 2047 | case KVM_ENABLE_CAP: |
| 2048 | { |
| 2049 | struct kvm_enable_cap cap; |
| 2050 | r = -EFAULT; |
| 2051 | if (copy_from_user(&cap, argp, sizeof(cap))) |
| 2052 | goto out; |
Nicholas Piggin | bc4188a | 2021-07-16 12:43:10 +1000 | [diff] [blame] | 2053 | vcpu_load(vcpu); |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 2054 | r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap); |
Simon Guo | b3cebfe | 2018-05-23 15:02:09 +0800 | [diff] [blame] | 2055 | vcpu_put(vcpu); |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 2056 | break; |
| 2057 | } |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 2058 | |
Alexander Graf | e24ed81 | 2011-09-14 10:02:41 +0200 | [diff] [blame] | 2059 | case KVM_SET_ONE_REG: |
| 2060 | case KVM_GET_ONE_REG: |
| 2061 | { |
| 2062 | struct kvm_one_reg reg; |
| 2063 | r = -EFAULT; |
| 2064 | if (copy_from_user(®, argp, sizeof(reg))) |
| 2065 | goto out; |
| 2066 | if (ioctl == KVM_SET_ONE_REG) |
| 2067 | r = kvm_vcpu_ioctl_set_one_reg(vcpu, ®); |
| 2068 | else |
| 2069 | r = kvm_vcpu_ioctl_get_one_reg(vcpu, ®); |
| 2070 | break; |
| 2071 | } |
| 2072 | |
Alexander Graf | bf7ca4b | 2012-02-15 23:40:00 +0000 | [diff] [blame] | 2073 | #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC) |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 2074 | case KVM_DIRTY_TLB: { |
| 2075 | struct kvm_dirty_tlb dirty; |
| 2076 | r = -EFAULT; |
| 2077 | if (copy_from_user(&dirty, argp, sizeof(dirty))) |
| 2078 | goto out; |
Nicholas Piggin | bc4188a | 2021-07-16 12:43:10 +1000 | [diff] [blame] | 2079 | vcpu_load(vcpu); |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 2080 | r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty); |
Simon Guo | b3cebfe | 2018-05-23 15:02:09 +0800 | [diff] [blame] | 2081 | vcpu_put(vcpu); |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 2082 | break; |
| 2083 | } |
| 2084 | #endif |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 2085 | default: |
| 2086 | r = -EINVAL; |
| 2087 | } |
| 2088 | |
| 2089 | out: |
| 2090 | return r; |
| 2091 | } |
| 2092 | |
Souptick Joarder | 1499fa8 | 2018-04-19 00:49:58 +0530 | [diff] [blame] | 2093 | vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf) |
Carsten Otte | 5b1c149 | 2012-01-04 10:25:23 +0100 | [diff] [blame] | 2094 | { |
| 2095 | return VM_FAULT_SIGBUS; |
| 2096 | } |
| 2097 | |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 2098 | static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo) |
| 2099 | { |
Stuart Yoder | 784bafa | 2012-07-03 05:48:51 +0000 | [diff] [blame] | 2100 | u32 inst_nop = 0x60000000; |
| 2101 | #ifdef CONFIG_KVM_BOOKE_HV |
| 2102 | u32 inst_sc1 = 0x44000022; |
Alexander Graf | 2743103 | 2014-04-24 13:39:16 +0200 | [diff] [blame] | 2103 | pvinfo->hcall[0] = cpu_to_be32(inst_sc1); |
| 2104 | pvinfo->hcall[1] = cpu_to_be32(inst_nop); |
| 2105 | pvinfo->hcall[2] = cpu_to_be32(inst_nop); |
| 2106 | pvinfo->hcall[3] = cpu_to_be32(inst_nop); |
Stuart Yoder | 784bafa | 2012-07-03 05:48:51 +0000 | [diff] [blame] | 2107 | #else |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 2108 | u32 inst_lis = 0x3c000000; |
| 2109 | u32 inst_ori = 0x60000000; |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 2110 | u32 inst_sc = 0x44000002; |
| 2111 | u32 inst_imm_mask = 0xffff; |
| 2112 | |
| 2113 | /* |
| 2114 | * The hypercall to get into KVM from within guest context is as |
| 2115 | * follows: |
| 2116 | * |
| 2117 | * lis r0, r0, KVM_SC_MAGIC_R0@h |
| 2118 | * ori r0, KVM_SC_MAGIC_R0@l |
| 2119 | * sc |
| 2120 | * nop |
| 2121 | */ |
Alexander Graf | 2743103 | 2014-04-24 13:39:16 +0200 | [diff] [blame] | 2122 | pvinfo->hcall[0] = cpu_to_be32(inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask)); |
| 2123 | pvinfo->hcall[1] = cpu_to_be32(inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask)); |
| 2124 | pvinfo->hcall[2] = cpu_to_be32(inst_sc); |
| 2125 | pvinfo->hcall[3] = cpu_to_be32(inst_nop); |
Stuart Yoder | 784bafa | 2012-07-03 05:48:51 +0000 | [diff] [blame] | 2126 | #endif |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 2127 | |
Liu Yu-B13201 | 9202e07 | 2012-07-03 05:48:52 +0000 | [diff] [blame] | 2128 | pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE; |
| 2129 | |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 2130 | return 0; |
| 2131 | } |
| 2132 | |
Alexander Graf | 5efdb4b | 2013-04-17 00:37:57 +0200 | [diff] [blame] | 2133 | int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event, |
| 2134 | bool line_status) |
| 2135 | { |
| 2136 | if (!irqchip_in_kernel(kvm)) |
| 2137 | return -ENXIO; |
| 2138 | |
| 2139 | irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, |
| 2140 | irq_event->irq, irq_event->level, |
| 2141 | line_status); |
| 2142 | return 0; |
| 2143 | } |
| 2144 | |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 2145 | |
Paolo Bonzini | e5d83c7 | 2017-02-16 10:40:56 +0100 | [diff] [blame] | 2146 | int kvm_vm_ioctl_enable_cap(struct kvm *kvm, |
| 2147 | struct kvm_enable_cap *cap) |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 2148 | { |
| 2149 | int r; |
| 2150 | |
| 2151 | if (cap->flags) |
| 2152 | return -EINVAL; |
| 2153 | |
| 2154 | switch (cap->cap) { |
| 2155 | #ifdef CONFIG_KVM_BOOK3S_64_HANDLER |
| 2156 | case KVM_CAP_PPC_ENABLE_HCALL: { |
| 2157 | unsigned long hcall = cap->args[0]; |
| 2158 | |
| 2159 | r = -EINVAL; |
| 2160 | if (hcall > MAX_HCALL_OPCODE || (hcall & 3) || |
| 2161 | cap->args[1] > 1) |
| 2162 | break; |
Paul Mackerras | ae2113a | 2014-06-02 11:03:00 +1000 | [diff] [blame] | 2163 | if (!kvmppc_book3s_hcall_implemented(kvm, hcall)) |
| 2164 | break; |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 2165 | if (cap->args[1]) |
| 2166 | set_bit(hcall / 4, kvm->arch.enabled_hcalls); |
| 2167 | else |
| 2168 | clear_bit(hcall / 4, kvm->arch.enabled_hcalls); |
| 2169 | r = 0; |
| 2170 | break; |
| 2171 | } |
Paul Mackerras | 3c31352 | 2017-02-06 13:24:41 +1100 | [diff] [blame] | 2172 | case KVM_CAP_PPC_SMT: { |
| 2173 | unsigned long mode = cap->args[0]; |
| 2174 | unsigned long flags = cap->args[1]; |
| 2175 | |
| 2176 | r = -EINVAL; |
| 2177 | if (kvm->arch.kvm_ops->set_smt_mode) |
| 2178 | r = kvm->arch.kvm_ops->set_smt_mode(kvm, mode, flags); |
| 2179 | break; |
| 2180 | } |
Paul Mackerras | aa069a9 | 2018-09-21 20:02:01 +1000 | [diff] [blame] | 2181 | |
| 2182 | case KVM_CAP_PPC_NESTED_HV: |
| 2183 | r = -EINVAL; |
| 2184 | if (!is_kvmppc_hv_enabled(kvm) || |
| 2185 | !kvm->arch.kvm_ops->enable_nested) |
| 2186 | break; |
| 2187 | r = kvm->arch.kvm_ops->enable_nested(kvm); |
| 2188 | break; |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 2189 | #endif |
Paul Mackerras | 9a5788c | 2020-03-19 15:29:55 +1100 | [diff] [blame] | 2190 | #if defined(CONFIG_KVM_BOOK3S_HV_POSSIBLE) |
| 2191 | case KVM_CAP_PPC_SECURE_GUEST: |
| 2192 | r = -EINVAL; |
| 2193 | if (!is_kvmppc_hv_enabled(kvm) || !kvm->arch.kvm_ops->enable_svm) |
| 2194 | break; |
| 2195 | r = kvm->arch.kvm_ops->enable_svm(kvm); |
| 2196 | break; |
Ravi Bangoria | d9a47ed | 2020-12-16 16:12:19 +0530 | [diff] [blame] | 2197 | case KVM_CAP_PPC_DAWR1: |
| 2198 | r = -EINVAL; |
| 2199 | if (!is_kvmppc_hv_enabled(kvm) || !kvm->arch.kvm_ops->enable_dawr1) |
| 2200 | break; |
| 2201 | r = kvm->arch.kvm_ops->enable_dawr1(kvm); |
| 2202 | break; |
Paul Mackerras | 9a5788c | 2020-03-19 15:29:55 +1100 | [diff] [blame] | 2203 | #endif |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 2204 | default: |
| 2205 | r = -EINVAL; |
| 2206 | break; |
| 2207 | } |
| 2208 | |
| 2209 | return r; |
| 2210 | } |
| 2211 | |
Paul Mackerras | 3214d01 | 2018-01-15 16:06:47 +1100 | [diff] [blame] | 2212 | #ifdef CONFIG_PPC_BOOK3S_64 |
| 2213 | /* |
| 2214 | * These functions check whether the underlying hardware is safe |
| 2215 | * against attacks based on observing the effects of speculatively |
| 2216 | * executed instructions, and whether it supplies instructions for |
| 2217 | * use in workarounds. The information comes from firmware, either |
| 2218 | * via the device tree on powernv platforms or from an hcall on |
| 2219 | * pseries platforms. |
| 2220 | */ |
| 2221 | #ifdef CONFIG_PPC_PSERIES |
| 2222 | static int pseries_get_cpu_char(struct kvm_ppc_cpu_char *cp) |
| 2223 | { |
| 2224 | struct h_cpu_char_result c; |
| 2225 | unsigned long rc; |
| 2226 | |
| 2227 | if (!machine_is(pseries)) |
| 2228 | return -ENOTTY; |
| 2229 | |
| 2230 | rc = plpar_get_cpu_characteristics(&c); |
| 2231 | if (rc == H_SUCCESS) { |
| 2232 | cp->character = c.character; |
| 2233 | cp->behaviour = c.behaviour; |
| 2234 | cp->character_mask = KVM_PPC_CPU_CHAR_SPEC_BAR_ORI31 | |
| 2235 | KVM_PPC_CPU_CHAR_BCCTRL_SERIALISED | |
| 2236 | KVM_PPC_CPU_CHAR_L1D_FLUSH_ORI30 | |
| 2237 | KVM_PPC_CPU_CHAR_L1D_FLUSH_TRIG2 | |
| 2238 | KVM_PPC_CPU_CHAR_L1D_THREAD_PRIV | |
| 2239 | KVM_PPC_CPU_CHAR_BR_HINT_HONOURED | |
| 2240 | KVM_PPC_CPU_CHAR_MTTRIG_THR_RECONF | |
Suraj Jitindar Singh | 2b57ecd | 2019-03-01 14:25:16 +1100 | [diff] [blame] | 2241 | KVM_PPC_CPU_CHAR_COUNT_CACHE_DIS | |
| 2242 | KVM_PPC_CPU_CHAR_BCCTR_FLUSH_ASSIST; |
Paul Mackerras | 3214d01 | 2018-01-15 16:06:47 +1100 | [diff] [blame] | 2243 | cp->behaviour_mask = KVM_PPC_CPU_BEHAV_FAVOUR_SECURITY | |
| 2244 | KVM_PPC_CPU_BEHAV_L1D_FLUSH_PR | |
Suraj Jitindar Singh | 2b57ecd | 2019-03-01 14:25:16 +1100 | [diff] [blame] | 2245 | KVM_PPC_CPU_BEHAV_BNDS_CHK_SPEC_BAR | |
| 2246 | KVM_PPC_CPU_BEHAV_FLUSH_COUNT_CACHE; |
Paul Mackerras | 3214d01 | 2018-01-15 16:06:47 +1100 | [diff] [blame] | 2247 | } |
| 2248 | return 0; |
| 2249 | } |
| 2250 | #else |
| 2251 | static int pseries_get_cpu_char(struct kvm_ppc_cpu_char *cp) |
| 2252 | { |
| 2253 | return -ENOTTY; |
| 2254 | } |
| 2255 | #endif |
| 2256 | |
| 2257 | static inline bool have_fw_feat(struct device_node *fw_features, |
| 2258 | const char *state, const char *name) |
| 2259 | { |
| 2260 | struct device_node *np; |
| 2261 | bool r = false; |
| 2262 | |
| 2263 | np = of_get_child_by_name(fw_features, name); |
| 2264 | if (np) { |
| 2265 | r = of_property_read_bool(np, state); |
| 2266 | of_node_put(np); |
| 2267 | } |
| 2268 | return r; |
| 2269 | } |
| 2270 | |
| 2271 | static int kvmppc_get_cpu_char(struct kvm_ppc_cpu_char *cp) |
| 2272 | { |
| 2273 | struct device_node *np, *fw_features; |
| 2274 | int r; |
| 2275 | |
| 2276 | memset(cp, 0, sizeof(*cp)); |
| 2277 | r = pseries_get_cpu_char(cp); |
| 2278 | if (r != -ENOTTY) |
| 2279 | return r; |
| 2280 | |
| 2281 | np = of_find_node_by_name(NULL, "ibm,opal"); |
| 2282 | if (np) { |
| 2283 | fw_features = of_get_child_by_name(np, "fw-features"); |
| 2284 | of_node_put(np); |
| 2285 | if (!fw_features) |
| 2286 | return 0; |
| 2287 | if (have_fw_feat(fw_features, "enabled", |
| 2288 | "inst-spec-barrier-ori31,31,0")) |
| 2289 | cp->character |= KVM_PPC_CPU_CHAR_SPEC_BAR_ORI31; |
| 2290 | if (have_fw_feat(fw_features, "enabled", |
| 2291 | "fw-bcctrl-serialized")) |
| 2292 | cp->character |= KVM_PPC_CPU_CHAR_BCCTRL_SERIALISED; |
| 2293 | if (have_fw_feat(fw_features, "enabled", |
| 2294 | "inst-l1d-flush-ori30,30,0")) |
| 2295 | cp->character |= KVM_PPC_CPU_CHAR_L1D_FLUSH_ORI30; |
| 2296 | if (have_fw_feat(fw_features, "enabled", |
| 2297 | "inst-l1d-flush-trig2")) |
| 2298 | cp->character |= KVM_PPC_CPU_CHAR_L1D_FLUSH_TRIG2; |
| 2299 | if (have_fw_feat(fw_features, "enabled", |
| 2300 | "fw-l1d-thread-split")) |
| 2301 | cp->character |= KVM_PPC_CPU_CHAR_L1D_THREAD_PRIV; |
| 2302 | if (have_fw_feat(fw_features, "enabled", |
| 2303 | "fw-count-cache-disabled")) |
| 2304 | cp->character |= KVM_PPC_CPU_CHAR_COUNT_CACHE_DIS; |
Suraj Jitindar Singh | 2b57ecd | 2019-03-01 14:25:16 +1100 | [diff] [blame] | 2305 | if (have_fw_feat(fw_features, "enabled", |
| 2306 | "fw-count-cache-flush-bcctr2,0,0")) |
| 2307 | cp->character |= KVM_PPC_CPU_CHAR_BCCTR_FLUSH_ASSIST; |
Paul Mackerras | 3214d01 | 2018-01-15 16:06:47 +1100 | [diff] [blame] | 2308 | cp->character_mask = KVM_PPC_CPU_CHAR_SPEC_BAR_ORI31 | |
| 2309 | KVM_PPC_CPU_CHAR_BCCTRL_SERIALISED | |
| 2310 | KVM_PPC_CPU_CHAR_L1D_FLUSH_ORI30 | |
| 2311 | KVM_PPC_CPU_CHAR_L1D_FLUSH_TRIG2 | |
| 2312 | KVM_PPC_CPU_CHAR_L1D_THREAD_PRIV | |
Suraj Jitindar Singh | 2b57ecd | 2019-03-01 14:25:16 +1100 | [diff] [blame] | 2313 | KVM_PPC_CPU_CHAR_COUNT_CACHE_DIS | |
| 2314 | KVM_PPC_CPU_CHAR_BCCTR_FLUSH_ASSIST; |
Paul Mackerras | 3214d01 | 2018-01-15 16:06:47 +1100 | [diff] [blame] | 2315 | |
| 2316 | if (have_fw_feat(fw_features, "enabled", |
| 2317 | "speculation-policy-favor-security")) |
| 2318 | cp->behaviour |= KVM_PPC_CPU_BEHAV_FAVOUR_SECURITY; |
| 2319 | if (!have_fw_feat(fw_features, "disabled", |
| 2320 | "needs-l1d-flush-msr-pr-0-to-1")) |
| 2321 | cp->behaviour |= KVM_PPC_CPU_BEHAV_L1D_FLUSH_PR; |
| 2322 | if (!have_fw_feat(fw_features, "disabled", |
| 2323 | "needs-spec-barrier-for-bound-checks")) |
| 2324 | cp->behaviour |= KVM_PPC_CPU_BEHAV_BNDS_CHK_SPEC_BAR; |
Suraj Jitindar Singh | 2b57ecd | 2019-03-01 14:25:16 +1100 | [diff] [blame] | 2325 | if (have_fw_feat(fw_features, "enabled", |
| 2326 | "needs-count-cache-flush-on-context-switch")) |
| 2327 | cp->behaviour |= KVM_PPC_CPU_BEHAV_FLUSH_COUNT_CACHE; |
Paul Mackerras | 3214d01 | 2018-01-15 16:06:47 +1100 | [diff] [blame] | 2328 | cp->behaviour_mask = KVM_PPC_CPU_BEHAV_FAVOUR_SECURITY | |
| 2329 | KVM_PPC_CPU_BEHAV_L1D_FLUSH_PR | |
Suraj Jitindar Singh | 2b57ecd | 2019-03-01 14:25:16 +1100 | [diff] [blame] | 2330 | KVM_PPC_CPU_BEHAV_BNDS_CHK_SPEC_BAR | |
| 2331 | KVM_PPC_CPU_BEHAV_FLUSH_COUNT_CACHE; |
Paul Mackerras | 3214d01 | 2018-01-15 16:06:47 +1100 | [diff] [blame] | 2332 | |
| 2333 | of_node_put(fw_features); |
| 2334 | } |
| 2335 | |
| 2336 | return 0; |
| 2337 | } |
| 2338 | #endif |
| 2339 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 2340 | long kvm_arch_vm_ioctl(struct file *filp, |
| 2341 | unsigned int ioctl, unsigned long arg) |
| 2342 | { |
Scott Wood | 5df554ad | 2013-04-12 14:08:46 +0000 | [diff] [blame] | 2343 | struct kvm *kvm __maybe_unused = filp->private_data; |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 2344 | void __user *argp = (void __user *)arg; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 2345 | long r; |
| 2346 | |
| 2347 | switch (ioctl) { |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 2348 | case KVM_PPC_GET_PVINFO: { |
| 2349 | struct kvm_ppc_pvinfo pvinfo; |
Vasiliy Kulikov | d8cdddc | 2010-10-30 13:04:24 +0400 | [diff] [blame] | 2350 | memset(&pvinfo, 0, sizeof(pvinfo)); |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 2351 | r = kvm_vm_ioctl_get_pvinfo(&pvinfo); |
| 2352 | if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) { |
| 2353 | r = -EFAULT; |
| 2354 | goto out; |
| 2355 | } |
| 2356 | |
| 2357 | break; |
| 2358 | } |
Paul Mackerras | 76d837a | 2017-05-11 14:31:59 +1000 | [diff] [blame] | 2359 | #ifdef CONFIG_SPAPR_TCE_IOMMU |
Alexey Kardashevskiy | 58ded42 | 2016-03-01 17:54:40 +1100 | [diff] [blame] | 2360 | case KVM_CREATE_SPAPR_TCE_64: { |
| 2361 | struct kvm_create_spapr_tce_64 create_tce_64; |
| 2362 | |
| 2363 | r = -EFAULT; |
| 2364 | if (copy_from_user(&create_tce_64, argp, sizeof(create_tce_64))) |
| 2365 | goto out; |
| 2366 | if (create_tce_64.flags) { |
| 2367 | r = -EINVAL; |
| 2368 | goto out; |
| 2369 | } |
| 2370 | r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64); |
| 2371 | goto out; |
| 2372 | } |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 2373 | case KVM_CREATE_SPAPR_TCE: { |
| 2374 | struct kvm_create_spapr_tce create_tce; |
Alexey Kardashevskiy | 58ded42 | 2016-03-01 17:54:40 +1100 | [diff] [blame] | 2375 | struct kvm_create_spapr_tce_64 create_tce_64; |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 2376 | |
| 2377 | r = -EFAULT; |
| 2378 | if (copy_from_user(&create_tce, argp, sizeof(create_tce))) |
| 2379 | goto out; |
Alexey Kardashevskiy | 58ded42 | 2016-03-01 17:54:40 +1100 | [diff] [blame] | 2380 | |
| 2381 | create_tce_64.liobn = create_tce.liobn; |
| 2382 | create_tce_64.page_shift = IOMMU_PAGE_SHIFT_4K; |
| 2383 | create_tce_64.offset = 0; |
| 2384 | create_tce_64.size = create_tce.window_size >> |
| 2385 | IOMMU_PAGE_SHIFT_4K; |
| 2386 | create_tce_64.flags = 0; |
| 2387 | r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64); |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 2388 | goto out; |
| 2389 | } |
Paul Mackerras | 76d837a | 2017-05-11 14:31:59 +1000 | [diff] [blame] | 2390 | #endif |
| 2391 | #ifdef CONFIG_PPC_BOOK3S_64 |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 2392 | case KVM_PPC_GET_SMMU_INFO: { |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 2393 | struct kvm_ppc_smmu_info info; |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 2394 | struct kvm *kvm = filp->private_data; |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 2395 | |
| 2396 | memset(&info, 0, sizeof(info)); |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 2397 | r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info); |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 2398 | if (r >= 0 && copy_to_user(argp, &info, sizeof(info))) |
| 2399 | r = -EFAULT; |
| 2400 | break; |
| 2401 | } |
Michael Ellerman | 8e591cb | 2013-04-17 20:30:00 +0000 | [diff] [blame] | 2402 | case KVM_PPC_RTAS_DEFINE_TOKEN: { |
| 2403 | struct kvm *kvm = filp->private_data; |
| 2404 | |
| 2405 | r = kvm_vm_ioctl_rtas_define_token(kvm, argp); |
| 2406 | break; |
| 2407 | } |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 2408 | case KVM_PPC_CONFIGURE_V3_MMU: { |
| 2409 | struct kvm *kvm = filp->private_data; |
| 2410 | struct kvm_ppc_mmuv3_cfg cfg; |
| 2411 | |
| 2412 | r = -EINVAL; |
| 2413 | if (!kvm->arch.kvm_ops->configure_mmu) |
| 2414 | goto out; |
| 2415 | r = -EFAULT; |
| 2416 | if (copy_from_user(&cfg, argp, sizeof(cfg))) |
| 2417 | goto out; |
| 2418 | r = kvm->arch.kvm_ops->configure_mmu(kvm, &cfg); |
| 2419 | break; |
| 2420 | } |
| 2421 | case KVM_PPC_GET_RMMU_INFO: { |
| 2422 | struct kvm *kvm = filp->private_data; |
| 2423 | struct kvm_ppc_rmmu_info info; |
| 2424 | |
| 2425 | r = -EINVAL; |
| 2426 | if (!kvm->arch.kvm_ops->get_rmmu_info) |
| 2427 | goto out; |
| 2428 | r = kvm->arch.kvm_ops->get_rmmu_info(kvm, &info); |
| 2429 | if (r >= 0 && copy_to_user(argp, &info, sizeof(info))) |
| 2430 | r = -EFAULT; |
| 2431 | break; |
| 2432 | } |
Paul Mackerras | 3214d01 | 2018-01-15 16:06:47 +1100 | [diff] [blame] | 2433 | case KVM_PPC_GET_CPU_CHAR: { |
| 2434 | struct kvm_ppc_cpu_char cpuchar; |
| 2435 | |
| 2436 | r = kvmppc_get_cpu_char(&cpuchar); |
| 2437 | if (r >= 0 && copy_to_user(argp, &cpuchar, sizeof(cpuchar))) |
| 2438 | r = -EFAULT; |
| 2439 | break; |
| 2440 | } |
Bharata B Rao | 2294568 | 2019-11-25 08:36:30 +0530 | [diff] [blame] | 2441 | case KVM_PPC_SVM_OFF: { |
| 2442 | struct kvm *kvm = filp->private_data; |
| 2443 | |
| 2444 | r = 0; |
| 2445 | if (!kvm->arch.kvm_ops->svm_off) |
| 2446 | goto out; |
| 2447 | |
| 2448 | r = kvm->arch.kvm_ops->svm_off(kvm); |
| 2449 | break; |
| 2450 | } |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 2451 | default: { |
| 2452 | struct kvm *kvm = filp->private_data; |
| 2453 | r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg); |
| 2454 | } |
Aneesh Kumar K.V | 3a167bea | 2013-10-07 22:17:53 +0530 | [diff] [blame] | 2455 | #else /* CONFIG_PPC_BOOK3S_64 */ |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 2456 | default: |
Avi Kivity | 367e131 | 2009-08-26 14:57:07 +0300 | [diff] [blame] | 2457 | r = -ENOTTY; |
Aneesh Kumar K.V | 3a167bea | 2013-10-07 22:17:53 +0530 | [diff] [blame] | 2458 | #endif |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 2459 | } |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 2460 | out: |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 2461 | return r; |
| 2462 | } |
| 2463 | |
Scott Wood | 043cc4d | 2011-12-20 15:34:20 +0000 | [diff] [blame] | 2464 | static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)]; |
| 2465 | static unsigned long nr_lpids; |
| 2466 | |
| 2467 | long kvmppc_alloc_lpid(void) |
| 2468 | { |
| 2469 | long lpid; |
| 2470 | |
| 2471 | do { |
| 2472 | lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS); |
| 2473 | if (lpid >= nr_lpids) { |
| 2474 | pr_err("%s: No LPIDs free\n", __func__); |
| 2475 | return -ENOMEM; |
| 2476 | } |
| 2477 | } while (test_and_set_bit(lpid, lpid_inuse)); |
| 2478 | |
| 2479 | return lpid; |
| 2480 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 2481 | EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid); |
Scott Wood | 043cc4d | 2011-12-20 15:34:20 +0000 | [diff] [blame] | 2482 | |
| 2483 | void kvmppc_claim_lpid(long lpid) |
| 2484 | { |
| 2485 | set_bit(lpid, lpid_inuse); |
| 2486 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 2487 | EXPORT_SYMBOL_GPL(kvmppc_claim_lpid); |
Scott Wood | 043cc4d | 2011-12-20 15:34:20 +0000 | [diff] [blame] | 2488 | |
| 2489 | void kvmppc_free_lpid(long lpid) |
| 2490 | { |
| 2491 | clear_bit(lpid, lpid_inuse); |
| 2492 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 2493 | EXPORT_SYMBOL_GPL(kvmppc_free_lpid); |
Scott Wood | 043cc4d | 2011-12-20 15:34:20 +0000 | [diff] [blame] | 2494 | |
| 2495 | void kvmppc_init_lpid(unsigned long nr_lpids_param) |
| 2496 | { |
| 2497 | nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param); |
| 2498 | memset(lpid_inuse, 0, sizeof(lpid_inuse)); |
| 2499 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 2500 | EXPORT_SYMBOL_GPL(kvmppc_init_lpid); |
Scott Wood | 043cc4d | 2011-12-20 15:34:20 +0000 | [diff] [blame] | 2501 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 2502 | int kvm_arch_init(void *opaque) |
| 2503 | { |
| 2504 | return 0; |
| 2505 | } |
| 2506 | |
Paolo Bonzini | 478d6686 | 2014-08-05 11:29:07 +0200 | [diff] [blame] | 2507 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ppc_instr); |