Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1 | /* |
| 2 | * This program is free software; you can redistribute it and/or modify |
| 3 | * it under the terms of the GNU General Public License, version 2, as |
| 4 | * published by the Free Software Foundation. |
| 5 | * |
| 6 | * This program is distributed in the hope that it will be useful, |
| 7 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 8 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 9 | * GNU General Public License for more details. |
| 10 | * |
| 11 | * You should have received a copy of the GNU General Public License |
| 12 | * along with this program; if not, write to the Free Software |
| 13 | * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
| 14 | * |
| 15 | * Copyright IBM Corp. 2007 |
| 16 | * |
| 17 | * Authors: Hollis Blanchard <hollisb@us.ibm.com> |
| 18 | * Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com> |
| 19 | */ |
| 20 | |
| 21 | #include <linux/errno.h> |
| 22 | #include <linux/err.h> |
| 23 | #include <linux/kvm_host.h> |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 24 | #include <linux/vmalloc.h> |
Alexander Graf | 544c676 | 2009-11-02 12:02:31 +0000 | [diff] [blame] | 25 | #include <linux/hrtimer.h> |
Ingo Molnar | 174cd4b | 2017-02-02 19:15:33 +0100 | [diff] [blame] | 26 | #include <linux/sched/signal.h> |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 27 | #include <linux/fs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 28 | #include <linux/slab.h> |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 29 | #include <linux/file.h> |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 30 | #include <linux/module.h> |
Suresh Warrier | 9576730 | 2016-08-19 15:35:47 +1000 | [diff] [blame] | 31 | #include <linux/irqbypass.h> |
| 32 | #include <linux/kvm_irqfd.h> |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 33 | #include <asm/cputable.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 34 | #include <linux/uaccess.h> |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 35 | #include <asm/kvm_ppc.h> |
Hollis Blanchard | 83aae4a | 2008-07-25 13:54:52 -0500 | [diff] [blame] | 36 | #include <asm/tlbflush.h> |
Paul Mackerras | 371fefd | 2011-06-29 00:23:08 +0000 | [diff] [blame] | 37 | #include <asm/cputhreads.h> |
Alexander Graf | bd2be68 | 2012-08-13 01:04:19 +0200 | [diff] [blame] | 38 | #include <asm/irqflags.h> |
Alexey Kardashevskiy | 58ded42 | 2016-03-01 17:54:40 +1100 | [diff] [blame] | 39 | #include <asm/iommu.h> |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 40 | #include <asm/switch_to.h> |
Benjamin Herrenschmidt | 5af5099 | 2017-04-05 17:54:56 +1000 | [diff] [blame] | 41 | #include <asm/xive.h> |
| 42 | |
Hollis Blanchard | 73e75b4 | 2008-12-02 15:51:57 -0600 | [diff] [blame] | 43 | #include "timing.h" |
Alexander Graf | 5efdb4b | 2013-04-17 00:37:57 +0200 | [diff] [blame] | 44 | #include "irq.h" |
Paul Mackerras | fad7b9b | 2008-12-23 14:57:26 +1100 | [diff] [blame] | 45 | #include "../mm/mmu_decl.h" |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 46 | |
Marcelo Tosatti | 46f43c6 | 2009-06-18 11:47:27 -0300 | [diff] [blame] | 47 | #define CREATE_TRACE_POINTS |
| 48 | #include "trace.h" |
| 49 | |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 50 | struct kvmppc_ops *kvmppc_hv_ops; |
| 51 | EXPORT_SYMBOL_GPL(kvmppc_hv_ops); |
| 52 | struct kvmppc_ops *kvmppc_pr_ops; |
| 53 | EXPORT_SYMBOL_GPL(kvmppc_pr_ops); |
| 54 | |
Aneesh Kumar K.V | 3a167bea | 2013-10-07 22:17:53 +0530 | [diff] [blame] | 55 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 56 | int kvm_arch_vcpu_runnable(struct kvm_vcpu *v) |
| 57 | { |
Liu Yu-B13201 | 9202e07 | 2012-07-03 05:48:52 +0000 | [diff] [blame] | 58 | return !!(v->arch.pending_exceptions) || |
Scott Wood | dfd4d47 | 2011-11-17 12:39:59 +0000 | [diff] [blame] | 59 | v->requests; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 60 | } |
| 61 | |
Christoffer Dall | b6d3383 | 2012-03-08 16:44:24 -0500 | [diff] [blame] | 62 | int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu) |
| 63 | { |
| 64 | return 1; |
| 65 | } |
| 66 | |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 67 | /* |
| 68 | * Common checks before entering the guest world. Call with interrupts |
| 69 | * disabled. |
| 70 | * |
Alexander Graf | 7ee7885 | 2012-08-13 12:44:41 +0200 | [diff] [blame] | 71 | * returns: |
| 72 | * |
| 73 | * == 1 if we're ready to go into guest state |
| 74 | * <= 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] | 75 | */ |
| 76 | int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu) |
| 77 | { |
Scott Wood | 6c85f52 | 2014-01-09 19:18:40 -0600 | [diff] [blame] | 78 | int r; |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 79 | |
Scott Wood | 6c85f52 | 2014-01-09 19:18:40 -0600 | [diff] [blame] | 80 | WARN_ON(irqs_disabled()); |
| 81 | hard_irq_disable(); |
| 82 | |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 83 | while (true) { |
| 84 | if (need_resched()) { |
| 85 | local_irq_enable(); |
| 86 | cond_resched(); |
Scott Wood | 6c85f52 | 2014-01-09 19:18:40 -0600 | [diff] [blame] | 87 | hard_irq_disable(); |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 88 | continue; |
| 89 | } |
| 90 | |
| 91 | if (signal_pending(current)) { |
Alexander Graf | 7ee7885 | 2012-08-13 12:44:41 +0200 | [diff] [blame] | 92 | kvmppc_account_exit(vcpu, SIGNAL_EXITS); |
| 93 | vcpu->run->exit_reason = KVM_EXIT_INTR; |
| 94 | r = -EINTR; |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 95 | break; |
| 96 | } |
| 97 | |
Scott Wood | 5bd1cf1 | 2012-08-22 15:03:50 +0000 | [diff] [blame] | 98 | vcpu->mode = IN_GUEST_MODE; |
| 99 | |
| 100 | /* |
| 101 | * Reading vcpu->requests must happen after setting vcpu->mode, |
| 102 | * so we don't miss a request because the requester sees |
| 103 | * OUTSIDE_GUEST_MODE and assumes we'll be checking requests |
| 104 | * before next entering the guest (and thus doesn't IPI). |
Lan Tianyu | 489153c | 2016-03-13 11:10:30 +0800 | [diff] [blame] | 105 | * This also orders the write to mode from any reads |
| 106 | * to the page tables done while the VCPU is running. |
| 107 | * Please see the comment in kvm_flush_remote_tlbs. |
Scott Wood | 5bd1cf1 | 2012-08-22 15:03:50 +0000 | [diff] [blame] | 108 | */ |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 109 | smp_mb(); |
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 | if (vcpu->requests) { |
| 112 | /* Make sure we process requests preemptable */ |
| 113 | local_irq_enable(); |
| 114 | trace_kvm_check_requests(vcpu); |
Alexander Graf | 7c973a2 | 2012-08-13 12:50:35 +0200 | [diff] [blame] | 115 | r = kvmppc_core_check_requests(vcpu); |
Scott Wood | 6c85f52 | 2014-01-09 19:18:40 -0600 | [diff] [blame] | 116 | hard_irq_disable(); |
Alexander Graf | 7c973a2 | 2012-08-13 12:50:35 +0200 | [diff] [blame] | 117 | if (r > 0) |
| 118 | continue; |
| 119 | break; |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | if (kvmppc_core_prepare_to_enter(vcpu)) { |
| 123 | /* interrupts got enabled in between, so we |
| 124 | are back at square 1 */ |
| 125 | continue; |
| 126 | } |
| 127 | |
Paolo Bonzini | 6edaa53 | 2016-06-15 15:18:26 +0200 | [diff] [blame] | 128 | guest_enter_irqoff(); |
Scott Wood | 6c85f52 | 2014-01-09 19:18:40 -0600 | [diff] [blame] | 129 | return 1; |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 130 | } |
| 131 | |
Scott Wood | 6c85f52 | 2014-01-09 19:18:40 -0600 | [diff] [blame] | 132 | /* return to host */ |
| 133 | local_irq_enable(); |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 134 | return r; |
| 135 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 136 | EXPORT_SYMBOL_GPL(kvmppc_prepare_to_enter); |
Alexander Graf | 03d25c5 | 2012-08-10 12:28:50 +0200 | [diff] [blame] | 137 | |
Alexander Graf | 5deb8e7 | 2014-04-24 13:46:24 +0200 | [diff] [blame] | 138 | #if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE) |
| 139 | static void kvmppc_swab_shared(struct kvm_vcpu *vcpu) |
| 140 | { |
| 141 | struct kvm_vcpu_arch_shared *shared = vcpu->arch.shared; |
| 142 | int i; |
| 143 | |
| 144 | shared->sprg0 = swab64(shared->sprg0); |
| 145 | shared->sprg1 = swab64(shared->sprg1); |
| 146 | shared->sprg2 = swab64(shared->sprg2); |
| 147 | shared->sprg3 = swab64(shared->sprg3); |
| 148 | shared->srr0 = swab64(shared->srr0); |
| 149 | shared->srr1 = swab64(shared->srr1); |
| 150 | shared->dar = swab64(shared->dar); |
| 151 | shared->msr = swab64(shared->msr); |
| 152 | shared->dsisr = swab32(shared->dsisr); |
| 153 | shared->int_pending = swab32(shared->int_pending); |
| 154 | for (i = 0; i < ARRAY_SIZE(shared->sr); i++) |
| 155 | shared->sr[i] = swab32(shared->sr[i]); |
| 156 | } |
| 157 | #endif |
| 158 | |
Alexander Graf | 2a342ed | 2010-07-29 14:47:48 +0200 | [diff] [blame] | 159 | int kvmppc_kvm_pv(struct kvm_vcpu *vcpu) |
| 160 | { |
| 161 | int nr = kvmppc_get_gpr(vcpu, 11); |
| 162 | int r; |
| 163 | unsigned long __maybe_unused param1 = kvmppc_get_gpr(vcpu, 3); |
| 164 | unsigned long __maybe_unused param2 = kvmppc_get_gpr(vcpu, 4); |
| 165 | unsigned long __maybe_unused param3 = kvmppc_get_gpr(vcpu, 5); |
| 166 | unsigned long __maybe_unused param4 = kvmppc_get_gpr(vcpu, 6); |
| 167 | unsigned long r2 = 0; |
| 168 | |
Alexander Graf | 5deb8e7 | 2014-04-24 13:46:24 +0200 | [diff] [blame] | 169 | if (!(kvmppc_get_msr(vcpu) & MSR_SF)) { |
Alexander Graf | 2a342ed | 2010-07-29 14:47:48 +0200 | [diff] [blame] | 170 | /* 32 bit mode */ |
| 171 | param1 &= 0xffffffff; |
| 172 | param2 &= 0xffffffff; |
| 173 | param3 &= 0xffffffff; |
| 174 | param4 &= 0xffffffff; |
| 175 | } |
| 176 | |
| 177 | switch (nr) { |
Stuart Yoder | fdcf8bd | 2012-07-03 05:48:50 +0000 | [diff] [blame] | 178 | case KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE): |
Alexander Graf | 5fc8740 | 2010-07-29 14:47:55 +0200 | [diff] [blame] | 179 | { |
Alexander Graf | 5deb8e7 | 2014-04-24 13:46:24 +0200 | [diff] [blame] | 180 | #if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE) |
| 181 | /* Book3S can be little endian, find it out here */ |
| 182 | int shared_big_endian = true; |
| 183 | if (vcpu->arch.intr_msr & MSR_LE) |
| 184 | shared_big_endian = false; |
| 185 | if (shared_big_endian != vcpu->arch.shared_big_endian) |
| 186 | kvmppc_swab_shared(vcpu); |
| 187 | vcpu->arch.shared_big_endian = shared_big_endian; |
| 188 | #endif |
| 189 | |
Alexander Graf | f3383cf | 2014-05-12 01:08:32 +0200 | [diff] [blame] | 190 | if (!(param2 & MAGIC_PAGE_FLAG_NOT_MAPPED_NX)) { |
| 191 | /* |
| 192 | * Older versions of the Linux magic page code had |
| 193 | * a bug where they would map their trampoline code |
| 194 | * NX. If that's the case, remove !PR NX capability. |
| 195 | */ |
| 196 | vcpu->arch.disable_kernel_nx = true; |
| 197 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
| 198 | } |
| 199 | |
| 200 | vcpu->arch.magic_page_pa = param1 & ~0xfffULL; |
| 201 | vcpu->arch.magic_page_ea = param2 & ~0xfffULL; |
Alexander Graf | 5fc8740 | 2010-07-29 14:47:55 +0200 | [diff] [blame] | 202 | |
Alexander Graf | 89b68c9 | 2014-07-13 16:37:12 +0200 | [diff] [blame] | 203 | #ifdef CONFIG_PPC_64K_PAGES |
| 204 | /* |
| 205 | * Make sure our 4k magic page is in the same window of a 64k |
| 206 | * page within the guest and within the host's page. |
| 207 | */ |
| 208 | if ((vcpu->arch.magic_page_pa & 0xf000) != |
| 209 | ((ulong)vcpu->arch.shared & 0xf000)) { |
| 210 | void *old_shared = vcpu->arch.shared; |
| 211 | ulong shared = (ulong)vcpu->arch.shared; |
| 212 | void *new_shared; |
| 213 | |
| 214 | shared &= PAGE_MASK; |
| 215 | shared |= vcpu->arch.magic_page_pa & 0xf000; |
| 216 | new_shared = (void*)shared; |
| 217 | memcpy(new_shared, old_shared, 0x1000); |
| 218 | vcpu->arch.shared = new_shared; |
| 219 | } |
| 220 | #endif |
| 221 | |
Scott Wood | b590497 | 2011-11-08 18:23:30 -0600 | [diff] [blame] | 222 | r2 = KVM_MAGIC_FEAT_SR | KVM_MAGIC_FEAT_MAS0_TO_SPRG7; |
Alexander Graf | 7508e16 | 2010-08-03 11:32:56 +0200 | [diff] [blame] | 223 | |
Stuart Yoder | fdcf8bd | 2012-07-03 05:48:50 +0000 | [diff] [blame] | 224 | r = EV_SUCCESS; |
Alexander Graf | 5fc8740 | 2010-07-29 14:47:55 +0200 | [diff] [blame] | 225 | break; |
| 226 | } |
Stuart Yoder | fdcf8bd | 2012-07-03 05:48:50 +0000 | [diff] [blame] | 227 | case KVM_HCALL_TOKEN(KVM_HC_FEATURES): |
| 228 | r = EV_SUCCESS; |
Alexander Graf | bf7ca4b | 2012-02-15 23:40:00 +0000 | [diff] [blame] | 229 | #if defined(CONFIG_PPC_BOOK3S) || defined(CONFIG_KVM_E500V2) |
Alexander Graf | 5fc8740 | 2010-07-29 14:47:55 +0200 | [diff] [blame] | 230 | r2 |= (1 << KVM_FEATURE_MAGIC_PAGE); |
| 231 | #endif |
Alexander Graf | 2a342ed | 2010-07-29 14:47:48 +0200 | [diff] [blame] | 232 | |
| 233 | /* Second return value is in r4 */ |
Alexander Graf | 2a342ed | 2010-07-29 14:47:48 +0200 | [diff] [blame] | 234 | break; |
Liu Yu-B13201 | 9202e07 | 2012-07-03 05:48:52 +0000 | [diff] [blame] | 235 | case EV_HCALL_TOKEN(EV_IDLE): |
| 236 | r = EV_SUCCESS; |
| 237 | kvm_vcpu_block(vcpu); |
Radim Krčmář | 72875d8 | 2017-04-26 22:32:19 +0200 | [diff] [blame] | 238 | kvm_clear_request(KVM_REQ_UNHALT, vcpu); |
Liu Yu-B13201 | 9202e07 | 2012-07-03 05:48:52 +0000 | [diff] [blame] | 239 | break; |
Alexander Graf | 2a342ed | 2010-07-29 14:47:48 +0200 | [diff] [blame] | 240 | default: |
Stuart Yoder | fdcf8bd | 2012-07-03 05:48:50 +0000 | [diff] [blame] | 241 | r = EV_UNIMPLEMENTED; |
Alexander Graf | 2a342ed | 2010-07-29 14:47:48 +0200 | [diff] [blame] | 242 | break; |
| 243 | } |
| 244 | |
Alexander Graf | 7508e16 | 2010-08-03 11:32:56 +0200 | [diff] [blame] | 245 | kvmppc_set_gpr(vcpu, 4, r2); |
| 246 | |
Alexander Graf | 2a342ed | 2010-07-29 14:47:48 +0200 | [diff] [blame] | 247 | return r; |
| 248 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 249 | EXPORT_SYMBOL_GPL(kvmppc_kvm_pv); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 250 | |
Alexander Graf | af8f38b | 2011-08-10 13:57:08 +0200 | [diff] [blame] | 251 | int kvmppc_sanity_check(struct kvm_vcpu *vcpu) |
| 252 | { |
| 253 | int r = false; |
| 254 | |
| 255 | /* We have to know what CPU to virtualize */ |
| 256 | if (!vcpu->arch.pvr) |
| 257 | goto out; |
| 258 | |
| 259 | /* PAPR only works with book3s_64 */ |
| 260 | if ((vcpu->arch.cpu_type != KVM_CPU_3S_64) && vcpu->arch.papr_enabled) |
| 261 | goto out; |
| 262 | |
Alexander Graf | af8f38b | 2011-08-10 13:57:08 +0200 | [diff] [blame] | 263 | /* HV KVM can only do PAPR mode for now */ |
Aneesh Kumar K.V | a78b55d | 2013-10-07 22:18:02 +0530 | [diff] [blame] | 264 | if (!vcpu->arch.papr_enabled && is_kvmppc_hv_enabled(vcpu->kvm)) |
Alexander Graf | af8f38b | 2011-08-10 13:57:08 +0200 | [diff] [blame] | 265 | goto out; |
Alexander Graf | af8f38b | 2011-08-10 13:57:08 +0200 | [diff] [blame] | 266 | |
Scott Wood | d30f6e4 | 2011-12-20 15:34:43 +0000 | [diff] [blame] | 267 | #ifdef CONFIG_KVM_BOOKE_HV |
| 268 | if (!cpu_has_feature(CPU_FTR_EMB_HV)) |
| 269 | goto out; |
| 270 | #endif |
| 271 | |
Alexander Graf | af8f38b | 2011-08-10 13:57:08 +0200 | [diff] [blame] | 272 | r = true; |
| 273 | |
| 274 | out: |
| 275 | vcpu->arch.sane = r; |
| 276 | return r ? 0 : -EINVAL; |
| 277 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 278 | EXPORT_SYMBOL_GPL(kvmppc_sanity_check); |
Alexander Graf | af8f38b | 2011-08-10 13:57:08 +0200 | [diff] [blame] | 279 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 280 | int kvmppc_emulate_mmio(struct kvm_run *run, struct kvm_vcpu *vcpu) |
| 281 | { |
| 282 | enum emulation_result er; |
| 283 | int r; |
| 284 | |
Alexander Graf | d69614a | 2014-06-18 14:53:49 +0200 | [diff] [blame] | 285 | er = kvmppc_emulate_loadstore(vcpu); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 286 | switch (er) { |
| 287 | case EMULATE_DONE: |
| 288 | /* Future optimization: only reload non-volatiles if they were |
| 289 | * actually modified. */ |
| 290 | r = RESUME_GUEST_NV; |
| 291 | break; |
Mihai Caraman | 51f0472 | 2014-07-23 19:06:21 +0300 | [diff] [blame] | 292 | case EMULATE_AGAIN: |
| 293 | r = RESUME_GUEST; |
| 294 | break; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 295 | case EMULATE_DO_MMIO: |
| 296 | run->exit_reason = KVM_EXIT_MMIO; |
| 297 | /* We must reload nonvolatiles because "update" load/store |
| 298 | * instructions modify register state. */ |
| 299 | /* Future optimization: only reload non-volatiles if they were |
| 300 | * actually modified. */ |
| 301 | r = RESUME_HOST_NV; |
| 302 | break; |
| 303 | case EMULATE_FAIL: |
Mihai Caraman | 51f0472 | 2014-07-23 19:06:21 +0300 | [diff] [blame] | 304 | { |
| 305 | u32 last_inst; |
| 306 | |
Alexander Graf | 8d0eff6 | 2014-09-10 14:37:29 +0200 | [diff] [blame] | 307 | kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 308 | /* XXX Deliver Program interrupt to guest. */ |
Mihai Caraman | 51f0472 | 2014-07-23 19:06:21 +0300 | [diff] [blame] | 309 | pr_emerg("%s: emulation failed (%08x)\n", __func__, last_inst); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 310 | r = RESUME_HOST; |
| 311 | break; |
Mihai Caraman | 51f0472 | 2014-07-23 19:06:21 +0300 | [diff] [blame] | 312 | } |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 313 | default: |
Alexander Graf | 5a33169 | 2012-12-14 23:46:03 +0100 | [diff] [blame] | 314 | WARN_ON(1); |
| 315 | r = RESUME_GUEST; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | return r; |
| 319 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 320 | EXPORT_SYMBOL_GPL(kvmppc_emulate_mmio); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 321 | |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 322 | int kvmppc_st(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr, |
| 323 | bool data) |
| 324 | { |
Alexander Graf | c12fb43 | 2014-06-20 14:43:36 +0200 | [diff] [blame] | 325 | ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK; |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 326 | struct kvmppc_pte pte; |
| 327 | int r; |
| 328 | |
| 329 | vcpu->stat.st++; |
| 330 | |
| 331 | r = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST, |
| 332 | XLATE_WRITE, &pte); |
| 333 | if (r < 0) |
| 334 | return r; |
| 335 | |
| 336 | *eaddr = pte.raddr; |
| 337 | |
| 338 | if (!pte.may_write) |
| 339 | return -EPERM; |
| 340 | |
Alexander Graf | c12fb43 | 2014-06-20 14:43:36 +0200 | [diff] [blame] | 341 | /* Magic page override */ |
| 342 | if (kvmppc_supports_magic_page(vcpu) && mp_pa && |
| 343 | ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) && |
| 344 | !(kvmppc_get_msr(vcpu) & MSR_PR)) { |
| 345 | void *magic = vcpu->arch.shared; |
| 346 | magic += pte.eaddr & 0xfff; |
| 347 | memcpy(magic, ptr, size); |
| 348 | return EMULATE_DONE; |
| 349 | } |
| 350 | |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 351 | if (kvm_write_guest(vcpu->kvm, pte.raddr, ptr, size)) |
| 352 | return EMULATE_DO_MMIO; |
| 353 | |
| 354 | return EMULATE_DONE; |
| 355 | } |
| 356 | EXPORT_SYMBOL_GPL(kvmppc_st); |
| 357 | |
| 358 | int kvmppc_ld(struct kvm_vcpu *vcpu, ulong *eaddr, int size, void *ptr, |
| 359 | bool data) |
| 360 | { |
Alexander Graf | c12fb43 | 2014-06-20 14:43:36 +0200 | [diff] [blame] | 361 | ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM & PAGE_MASK; |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 362 | struct kvmppc_pte pte; |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 363 | int rc; |
| 364 | |
| 365 | vcpu->stat.ld++; |
| 366 | |
| 367 | rc = kvmppc_xlate(vcpu, *eaddr, data ? XLATE_DATA : XLATE_INST, |
| 368 | XLATE_READ, &pte); |
| 369 | if (rc) |
| 370 | return rc; |
| 371 | |
| 372 | *eaddr = pte.raddr; |
| 373 | |
| 374 | if (!pte.may_read) |
| 375 | return -EPERM; |
| 376 | |
| 377 | if (!data && !pte.may_execute) |
| 378 | return -ENOEXEC; |
| 379 | |
Alexander Graf | c12fb43 | 2014-06-20 14:43:36 +0200 | [diff] [blame] | 380 | /* Magic page override */ |
| 381 | if (kvmppc_supports_magic_page(vcpu) && mp_pa && |
| 382 | ((pte.raddr & KVM_PAM & PAGE_MASK) == mp_pa) && |
| 383 | !(kvmppc_get_msr(vcpu) & MSR_PR)) { |
| 384 | void *magic = vcpu->arch.shared; |
| 385 | magic += pte.eaddr & 0xfff; |
| 386 | memcpy(ptr, magic, size); |
| 387 | return EMULATE_DONE; |
| 388 | } |
| 389 | |
Alexander Graf | c45c551 | 2014-06-20 14:17:30 +0200 | [diff] [blame] | 390 | if (kvm_read_guest(vcpu->kvm, pte.raddr, ptr, size)) |
| 391 | return EMULATE_DO_MMIO; |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 392 | |
| 393 | return EMULATE_DONE; |
Alexander Graf | 35c4a73 | 2014-06-20 13:58:16 +0200 | [diff] [blame] | 394 | } |
| 395 | EXPORT_SYMBOL_GPL(kvmppc_ld); |
| 396 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 397 | int kvm_arch_hardware_enable(void) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 398 | { |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 399 | return 0; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 400 | } |
| 401 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 402 | int kvm_arch_hardware_setup(void) |
| 403 | { |
| 404 | return 0; |
| 405 | } |
| 406 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 407 | void kvm_arch_check_processor_compat(void *rtn) |
| 408 | { |
Hollis Blanchard | 9dd921c | 2008-11-05 09:36:14 -0600 | [diff] [blame] | 409 | *(int *)rtn = kvmppc_core_check_processor_compat(); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 410 | } |
| 411 | |
Carsten Otte | e08b963 | 2012-01-04 10:25:20 +0100 | [diff] [blame] | 412 | int kvm_arch_init_vm(struct kvm *kvm, unsigned long type) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 413 | { |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 414 | struct kvmppc_ops *kvm_ops = NULL; |
| 415 | /* |
| 416 | * if we have both HV and PR enabled, default is HV |
| 417 | */ |
| 418 | if (type == 0) { |
| 419 | if (kvmppc_hv_ops) |
| 420 | kvm_ops = kvmppc_hv_ops; |
| 421 | else |
| 422 | kvm_ops = kvmppc_pr_ops; |
| 423 | if (!kvm_ops) |
| 424 | goto err_out; |
| 425 | } else if (type == KVM_VM_PPC_HV) { |
| 426 | if (!kvmppc_hv_ops) |
| 427 | goto err_out; |
| 428 | kvm_ops = kvmppc_hv_ops; |
| 429 | } else if (type == KVM_VM_PPC_PR) { |
| 430 | if (!kvmppc_pr_ops) |
| 431 | goto err_out; |
| 432 | kvm_ops = kvmppc_pr_ops; |
| 433 | } else |
| 434 | goto err_out; |
Carsten Otte | e08b963 | 2012-01-04 10:25:20 +0100 | [diff] [blame] | 435 | |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 436 | if (kvm_ops->owner && !try_module_get(kvm_ops->owner)) |
| 437 | return -ENOENT; |
| 438 | |
| 439 | kvm->arch.kvm_ops = kvm_ops; |
Paul Mackerras | f9e0554 | 2011-06-29 00:19:22 +0000 | [diff] [blame] | 440 | return kvmppc_core_init_vm(kvm); |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 441 | err_out: |
| 442 | return -EINVAL; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 443 | } |
| 444 | |
Luiz Capitulino | 235539b | 2016-09-07 14:47:23 -0400 | [diff] [blame] | 445 | bool kvm_arch_has_vcpu_debugfs(void) |
| 446 | { |
| 447 | return false; |
| 448 | } |
| 449 | |
| 450 | int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu) |
| 451 | { |
| 452 | return 0; |
| 453 | } |
| 454 | |
Jan Kiszka | d89f5ef | 2010-11-09 17:02:49 +0100 | [diff] [blame] | 455 | void kvm_arch_destroy_vm(struct kvm *kvm) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 456 | { |
| 457 | unsigned int i; |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 458 | struct kvm_vcpu *vcpu; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 459 | |
Suresh E. Warrier | e17769e | 2015-12-21 16:22:51 -0600 | [diff] [blame] | 460 | #ifdef CONFIG_KVM_XICS |
| 461 | /* |
| 462 | * We call kick_all_cpus_sync() to ensure that all |
| 463 | * CPUs have executed any pending IPIs before we |
| 464 | * continue and free VCPUs structures below. |
| 465 | */ |
| 466 | if (is_kvmppc_hv_enabled(kvm)) |
| 467 | kick_all_cpus_sync(); |
| 468 | #endif |
| 469 | |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 470 | kvm_for_each_vcpu(i, vcpu, kvm) |
| 471 | kvm_arch_vcpu_free(vcpu); |
| 472 | |
| 473 | mutex_lock(&kvm->lock); |
| 474 | for (i = 0; i < atomic_read(&kvm->online_vcpus); i++) |
| 475 | kvm->vcpus[i] = NULL; |
| 476 | |
| 477 | atomic_set(&kvm->online_vcpus, 0); |
Paul Mackerras | f9e0554 | 2011-06-29 00:19:22 +0000 | [diff] [blame] | 478 | |
| 479 | kvmppc_core_destroy_vm(kvm); |
| 480 | |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 481 | mutex_unlock(&kvm->lock); |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 482 | |
| 483 | /* drop the module reference */ |
| 484 | module_put(kvm->arch.kvm_ops->owner); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 485 | } |
| 486 | |
Alexander Graf | 784aa3d | 2014-07-14 18:27:35 +0200 | [diff] [blame] | 487 | int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 488 | { |
| 489 | int r; |
Alexander Graf | 7a58777 | 2014-07-14 18:55:19 +0200 | [diff] [blame] | 490 | /* 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] | 491 | int hv_enabled = kvmppc_hv_ops ? 1 : 0; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 492 | |
Alexander Graf | 7a58777 | 2014-07-14 18:55:19 +0200 | [diff] [blame] | 493 | if (kvm) { |
| 494 | /* |
| 495 | * Hooray - we know which VM type we're running on. Depend on |
| 496 | * that rather than the guess above. |
| 497 | */ |
| 498 | hv_enabled = is_kvmppc_hv_enabled(kvm); |
| 499 | } |
| 500 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 501 | switch (ext) { |
Scott Wood | 5ce941e | 2011-04-27 17:24:21 -0500 | [diff] [blame] | 502 | #ifdef CONFIG_BOOKE |
| 503 | case KVM_CAP_PPC_BOOKE_SREGS: |
Bharat Bhushan | f61c94b | 2012-08-08 20:38:19 +0000 | [diff] [blame] | 504 | case KVM_CAP_PPC_BOOKE_WATCHDOG: |
Alexander Graf | 1c81063 | 2013-01-04 18:12:48 +0100 | [diff] [blame] | 505 | case KVM_CAP_PPC_EPR: |
Scott Wood | 5ce941e | 2011-04-27 17:24:21 -0500 | [diff] [blame] | 506 | #else |
Alexander Graf | e15a113 | 2009-11-30 03:02:02 +0000 | [diff] [blame] | 507 | case KVM_CAP_PPC_SEGSTATE: |
Alexander Graf | 1022fc3 | 2011-09-14 21:45:23 +0200 | [diff] [blame] | 508 | case KVM_CAP_PPC_HIOR: |
Alexander Graf | 930b412 | 2011-08-08 17:29:42 +0200 | [diff] [blame] | 509 | case KVM_CAP_PPC_PAPR: |
Scott Wood | 5ce941e | 2011-04-27 17:24:21 -0500 | [diff] [blame] | 510 | #endif |
Alexander Graf | 1897876 | 2010-03-24 21:48:18 +0100 | [diff] [blame] | 511 | case KVM_CAP_PPC_UNSET_IRQ: |
Alexander Graf | 7b4203e | 2010-08-30 13:50:45 +0200 | [diff] [blame] | 512 | case KVM_CAP_PPC_IRQ_LEVEL: |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 513 | case KVM_CAP_ENABLE_CAP: |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 514 | case KVM_CAP_ENABLE_CAP_VM: |
Alexander Graf | e24ed81 | 2011-09-14 10:02:41 +0200 | [diff] [blame] | 515 | case KVM_CAP_ONE_REG: |
Alexander Graf | 0e673fb | 2012-10-09 00:06:20 +0200 | [diff] [blame] | 516 | case KVM_CAP_IOEVENTFD: |
Scott Wood | 5df554ad | 2013-04-12 14:08:46 +0000 | [diff] [blame] | 517 | case KVM_CAP_DEVICE_CTRL: |
Paolo Bonzini | 460df4c | 2017-02-08 11:50:15 +0100 | [diff] [blame] | 518 | case KVM_CAP_IMMEDIATE_EXIT: |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 519 | r = 1; |
| 520 | break; |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 521 | case KVM_CAP_PPC_PAIRED_SINGLES: |
Alexander Graf | ad0a048 | 2010-03-24 21:48:30 +0100 | [diff] [blame] | 522 | case KVM_CAP_PPC_OSI: |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 523 | case KVM_CAP_PPC_GET_PVINFO: |
Alexander Graf | bf7ca4b | 2012-02-15 23:40:00 +0000 | [diff] [blame] | 524 | #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC) |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 525 | case KVM_CAP_SW_TLB: |
| 526 | #endif |
Aneesh Kumar K.V | 699cc87 | 2013-10-07 22:17:56 +0530 | [diff] [blame] | 527 | /* We support this only for PR */ |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 528 | r = !hv_enabled; |
Alexander Graf | e15a113 | 2009-11-30 03:02:02 +0000 | [diff] [blame] | 529 | break; |
Aneesh Kumar K.V | 699cc87 | 2013-10-07 22:17:56 +0530 | [diff] [blame] | 530 | #ifdef CONFIG_KVM_MPIC |
| 531 | case KVM_CAP_IRQ_MPIC: |
| 532 | r = 1; |
| 533 | break; |
| 534 | #endif |
| 535 | |
Benjamin Herrenschmidt | f31e65e | 2012-03-15 21:58:34 +0000 | [diff] [blame] | 536 | #ifdef CONFIG_PPC_BOOK3S_64 |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 537 | case KVM_CAP_SPAPR_TCE: |
Alexey Kardashevskiy | 58ded42 | 2016-03-01 17:54:40 +1100 | [diff] [blame] | 538 | case KVM_CAP_SPAPR_TCE_64: |
Alexey Kardashevskiy | 121f80b | 2017-03-22 15:21:56 +1100 | [diff] [blame] | 539 | /* fallthrough */ |
| 540 | case KVM_CAP_SPAPR_TCE_VFIO: |
Michael Ellerman | 8e591cb | 2013-04-17 20:30:00 +0000 | [diff] [blame] | 541 | case KVM_CAP_PPC_RTAS: |
Alexander Graf | f2e9104 | 2014-05-22 17:40:15 +0200 | [diff] [blame] | 542 | case KVM_CAP_PPC_FIXUP_HCALL: |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 543 | case KVM_CAP_PPC_ENABLE_HCALL: |
Paul Mackerras | 5975a2e | 2013-04-27 00:28:37 +0000 | [diff] [blame] | 544 | #ifdef CONFIG_KVM_XICS |
| 545 | case KVM_CAP_IRQ_XICS: |
| 546 | #endif |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 547 | r = 1; |
| 548 | break; |
David Gibson | a8acaec | 2016-11-23 16:14:07 +1100 | [diff] [blame] | 549 | |
| 550 | case KVM_CAP_PPC_ALLOC_HTAB: |
| 551 | r = hv_enabled; |
| 552 | break; |
Benjamin Herrenschmidt | f31e65e | 2012-03-15 21:58:34 +0000 | [diff] [blame] | 553 | #endif /* CONFIG_PPC_BOOK3S_64 */ |
Aneesh Kumar K.V | 699cc87 | 2013-10-07 22:17:56 +0530 | [diff] [blame] | 554 | #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE |
Paul Mackerras | 371fefd | 2011-06-29 00:23:08 +0000 | [diff] [blame] | 555 | case KVM_CAP_PPC_SMT: |
Paul Mackerras | 45c940b | 2016-11-18 17:43:30 +1100 | [diff] [blame] | 556 | r = 0; |
Paul Mackerras | 5790069 | 2017-05-16 16:41:20 +1000 | [diff] [blame] | 557 | if (kvm) { |
| 558 | if (kvm->arch.emul_smt_mode > 1) |
| 559 | r = kvm->arch.emul_smt_mode; |
| 560 | else |
| 561 | r = kvm->arch.smt_mode; |
| 562 | } else if (hv_enabled) { |
Paul Mackerras | 45c940b | 2016-11-18 17:43:30 +1100 | [diff] [blame] | 563 | if (cpu_has_feature(CPU_FTR_ARCH_300)) |
| 564 | r = 1; |
| 565 | else |
| 566 | r = threads_per_subcore; |
| 567 | } |
Paul Mackerras | 371fefd | 2011-06-29 00:23:08 +0000 | [diff] [blame] | 568 | break; |
Paul Mackerras | aa04b4c | 2011-06-29 00:25:44 +0000 | [diff] [blame] | 569 | case KVM_CAP_PPC_RMA: |
Paul Mackerras | c17b98c | 2014-12-03 13:30:38 +1100 | [diff] [blame] | 570 | r = 0; |
Paul Mackerras | aa04b4c | 2011-06-29 00:25:44 +0000 | [diff] [blame] | 571 | break; |
Michael Ellerman | e928e9c | 2015-03-20 20:39:41 +1100 | [diff] [blame] | 572 | case KVM_CAP_PPC_HWRNG: |
| 573 | r = kvmppc_hwrng_present(); |
| 574 | break; |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 575 | case KVM_CAP_PPC_MMU_RADIX: |
Paul Mackerras | 8cf4ecc | 2017-01-30 21:21:53 +1100 | [diff] [blame] | 576 | r = !!(hv_enabled && radix_enabled()); |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 577 | break; |
| 578 | case KVM_CAP_PPC_MMU_HASH_V3: |
Paul Mackerras | 468808b | 2017-01-30 21:21:42 +1100 | [diff] [blame] | 579 | r = !!(hv_enabled && !radix_enabled() && |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 580 | cpu_has_feature(CPU_FTR_ARCH_300)); |
| 581 | break; |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 582 | #endif |
Alexander Graf | f4800b1 | 2012-08-07 10:24:14 +0200 | [diff] [blame] | 583 | case KVM_CAP_SYNC_MMU: |
Aneesh Kumar K.V | 699cc87 | 2013-10-07 22:17:56 +0530 | [diff] [blame] | 584 | #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE |
Paul Mackerras | c17b98c | 2014-12-03 13:30:38 +1100 | [diff] [blame] | 585 | r = hv_enabled; |
Alexander Graf | f4800b1 | 2012-08-07 10:24:14 +0200 | [diff] [blame] | 586 | #elif defined(KVM_ARCH_WANT_MMU_NOTIFIER) |
| 587 | r = 1; |
| 588 | #else |
| 589 | r = 0; |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 590 | #endif |
Aneesh Kumar K.V | 699cc87 | 2013-10-07 22:17:56 +0530 | [diff] [blame] | 591 | break; |
| 592 | #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 593 | case KVM_CAP_PPC_HTAB_FD: |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 594 | r = hv_enabled; |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 595 | break; |
Alexander Graf | f4800b1 | 2012-08-07 10:24:14 +0200 | [diff] [blame] | 596 | #endif |
Matt Evans | b543403 | 2011-12-07 16:55:57 +0000 | [diff] [blame] | 597 | case KVM_CAP_NR_VCPUS: |
| 598 | /* |
| 599 | * Recommending a number of CPUs is somewhat arbitrary; we |
| 600 | * return the number of present CPUs for -HV (since a host |
| 601 | * will have secondary threads "offline"), and for other KVM |
| 602 | * implementations just count online CPUs. |
| 603 | */ |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 604 | if (hv_enabled) |
Aneesh Kumar K.V | 699cc87 | 2013-10-07 22:17:56 +0530 | [diff] [blame] | 605 | r = num_present_cpus(); |
| 606 | else |
| 607 | r = num_online_cpus(); |
Matt Evans | b543403 | 2011-12-07 16:55:57 +0000 | [diff] [blame] | 608 | break; |
Nikunj A Dadhania | bfec5c2c | 2015-10-16 10:27:53 +0530 | [diff] [blame] | 609 | case KVM_CAP_NR_MEMSLOTS: |
| 610 | r = KVM_USER_MEM_SLOTS; |
| 611 | break; |
Matt Evans | b543403 | 2011-12-07 16:55:57 +0000 | [diff] [blame] | 612 | case KVM_CAP_MAX_VCPUS: |
| 613 | r = KVM_MAX_VCPUS; |
| 614 | break; |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 615 | #ifdef CONFIG_PPC_BOOK3S_64 |
| 616 | case KVM_CAP_PPC_GET_SMMU_INFO: |
| 617 | r = 1; |
| 618 | break; |
Alexey Kardashevskiy | d3695aa | 2016-02-15 12:55:09 +1100 | [diff] [blame] | 619 | case KVM_CAP_SPAPR_MULTITCE: |
| 620 | r = 1; |
| 621 | break; |
David Gibson | 050f233 | 2016-12-20 16:49:07 +1100 | [diff] [blame] | 622 | case KVM_CAP_SPAPR_RESIZE_HPT: |
Paul Mackerras | bcd3bb6 | 2017-02-18 08:30:44 +1100 | [diff] [blame] | 623 | /* Disable this on POWER9 until code handles new HPTE format */ |
| 624 | r = !!hv_enabled && !cpu_has_feature(CPU_FTR_ARCH_300); |
David Gibson | 050f233 | 2016-12-20 16:49:07 +1100 | [diff] [blame] | 625 | break; |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 626 | #endif |
Aravinda Prasad | 134764e | 2017-05-11 16:32:48 +0530 | [diff] [blame] | 627 | #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE |
| 628 | case KVM_CAP_PPC_FWNMI: |
| 629 | r = hv_enabled; |
| 630 | break; |
| 631 | #endif |
Sam Bobroff | 23528bb | 2016-07-20 13:41:36 +1000 | [diff] [blame] | 632 | case KVM_CAP_PPC_HTM: |
| 633 | r = cpu_has_feature(CPU_FTR_TM_COMP) && |
| 634 | is_kvmppc_hv_enabled(kvm); |
| 635 | break; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 636 | default: |
| 637 | r = 0; |
| 638 | break; |
| 639 | } |
| 640 | return r; |
| 641 | |
| 642 | } |
| 643 | |
| 644 | long kvm_arch_dev_ioctl(struct file *filp, |
| 645 | unsigned int ioctl, unsigned long arg) |
| 646 | { |
| 647 | return -EINVAL; |
| 648 | } |
| 649 | |
Aneesh Kumar K.V | 5587027 | 2013-10-07 22:18:00 +0530 | [diff] [blame] | 650 | void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free, |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 651 | struct kvm_memory_slot *dont) |
| 652 | { |
Aneesh Kumar K.V | 5587027 | 2013-10-07 22:18:00 +0530 | [diff] [blame] | 653 | kvmppc_core_free_memslot(kvm, free, dont); |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 654 | } |
| 655 | |
Aneesh Kumar K.V | 5587027 | 2013-10-07 22:18:00 +0530 | [diff] [blame] | 656 | int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot, |
| 657 | unsigned long npages) |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 658 | { |
Aneesh Kumar K.V | 5587027 | 2013-10-07 22:18:00 +0530 | [diff] [blame] | 659 | return kvmppc_core_create_memslot(kvm, slot, npages); |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 660 | } |
| 661 | |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 662 | int kvm_arch_prepare_memory_region(struct kvm *kvm, |
Takuya Yoshikawa | 462fce4 | 2013-02-27 19:41:56 +0900 | [diff] [blame] | 663 | struct kvm_memory_slot *memslot, |
Paolo Bonzini | 09170a4 | 2015-05-18 13:59:39 +0200 | [diff] [blame] | 664 | const struct kvm_userspace_memory_region *mem, |
Takuya Yoshikawa | 7b6195a | 2013-02-27 19:44:34 +0900 | [diff] [blame] | 665 | enum kvm_mr_change change) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 666 | { |
Paul Mackerras | a66b48c | 2012-09-11 13:27:46 +0000 | [diff] [blame] | 667 | return kvmppc_core_prepare_memory_region(kvm, memslot, mem); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 668 | } |
| 669 | |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 670 | void kvm_arch_commit_memory_region(struct kvm *kvm, |
Paolo Bonzini | 09170a4 | 2015-05-18 13:59:39 +0200 | [diff] [blame] | 671 | const struct kvm_userspace_memory_region *mem, |
Takuya Yoshikawa | 8482644 | 2013-02-27 19:45:25 +0900 | [diff] [blame] | 672 | const struct kvm_memory_slot *old, |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 673 | const struct kvm_memory_slot *new, |
Takuya Yoshikawa | 8482644 | 2013-02-27 19:45:25 +0900 | [diff] [blame] | 674 | enum kvm_mr_change change) |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 675 | { |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 676 | kvmppc_core_commit_memory_region(kvm, mem, old, new); |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 677 | } |
| 678 | |
Marcelo Tosatti | 2df72e9 | 2012-08-24 15:54:57 -0300 | [diff] [blame] | 679 | void kvm_arch_flush_shadow_memslot(struct kvm *kvm, |
| 680 | struct kvm_memory_slot *slot) |
Marcelo Tosatti | 34d4cb8 | 2008-07-10 20:49:31 -0300 | [diff] [blame] | 681 | { |
Paul Mackerras | dfe49db | 2012-09-11 13:28:18 +0000 | [diff] [blame] | 682 | kvmppc_core_flush_memslot(kvm, slot); |
Marcelo Tosatti | 34d4cb8 | 2008-07-10 20:49:31 -0300 | [diff] [blame] | 683 | } |
| 684 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 685 | struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id) |
| 686 | { |
Hollis Blanchard | 73e75b4 | 2008-12-02 15:51:57 -0600 | [diff] [blame] | 687 | struct kvm_vcpu *vcpu; |
| 688 | vcpu = kvmppc_core_vcpu_create(kvm, id); |
Matt Evans | 03cdab5 | 2011-12-06 21:19:42 +0000 | [diff] [blame] | 689 | if (!IS_ERR(vcpu)) { |
| 690 | vcpu->arch.wqp = &vcpu->wq; |
Wei Yongjun | 06056bf | 2010-03-09 14:13:43 +0800 | [diff] [blame] | 691 | kvmppc_create_vcpu_debugfs(vcpu, id); |
Matt Evans | 03cdab5 | 2011-12-06 21:19:42 +0000 | [diff] [blame] | 692 | } |
Hollis Blanchard | 73e75b4 | 2008-12-02 15:51:57 -0600 | [diff] [blame] | 693 | return vcpu; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 694 | } |
| 695 | |
Dominik Dingel | 31928aa | 2014-12-04 15:47:07 +0100 | [diff] [blame] | 696 | void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 697 | { |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 698 | } |
| 699 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 700 | void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu) |
| 701 | { |
Alexander Graf | a595405 | 2010-02-22 16:52:14 +0100 | [diff] [blame] | 702 | /* Make sure we're not using the vcpu anymore */ |
| 703 | hrtimer_cancel(&vcpu->arch.dec_timer); |
Alexander Graf | a595405 | 2010-02-22 16:52:14 +0100 | [diff] [blame] | 704 | |
Hollis Blanchard | 73e75b4 | 2008-12-02 15:51:57 -0600 | [diff] [blame] | 705 | kvmppc_remove_vcpu_debugfs(vcpu); |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 706 | |
| 707 | switch (vcpu->arch.irq_type) { |
| 708 | case KVMPPC_IRQ_MPIC: |
| 709 | kvmppc_mpic_disconnect_vcpu(vcpu->arch.mpic, vcpu); |
| 710 | break; |
Benjamin Herrenschmidt | bc5ad3f | 2013-04-17 20:30:26 +0000 | [diff] [blame] | 711 | case KVMPPC_IRQ_XICS: |
Benjamin Herrenschmidt | 5af5099 | 2017-04-05 17:54:56 +1000 | [diff] [blame] | 712 | if (xive_enabled()) |
| 713 | kvmppc_xive_cleanup_vcpu(vcpu); |
| 714 | else |
| 715 | kvmppc_xics_free_icp(vcpu); |
Benjamin Herrenschmidt | bc5ad3f | 2013-04-17 20:30:26 +0000 | [diff] [blame] | 716 | break; |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 717 | } |
| 718 | |
Hollis Blanchard | db93f57 | 2008-11-05 09:36:18 -0600 | [diff] [blame] | 719 | kvmppc_core_vcpu_free(vcpu); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu) |
| 723 | { |
| 724 | kvm_arch_vcpu_free(vcpu); |
| 725 | } |
| 726 | |
| 727 | int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu) |
| 728 | { |
Hollis Blanchard | 9dd921c | 2008-11-05 09:36:14 -0600 | [diff] [blame] | 729 | return kvmppc_core_pending_dec(vcpu); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 730 | } |
| 731 | |
Thomas Huth | 5358a96 | 2015-05-22 09:25:02 +0200 | [diff] [blame] | 732 | static enum hrtimer_restart kvmppc_decrementer_wakeup(struct hrtimer *timer) |
Alexander Graf | 544c676 | 2009-11-02 12:02:31 +0000 | [diff] [blame] | 733 | { |
| 734 | struct kvm_vcpu *vcpu; |
| 735 | |
| 736 | vcpu = container_of(timer, struct kvm_vcpu, arch.dec_timer); |
Mihai Caraman | d02d4d1 | 2014-09-01 17:19:56 +0300 | [diff] [blame] | 737 | kvmppc_decrementer_func(vcpu); |
Alexander Graf | 544c676 | 2009-11-02 12:02:31 +0000 | [diff] [blame] | 738 | |
| 739 | return HRTIMER_NORESTART; |
| 740 | } |
| 741 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 742 | int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu) |
| 743 | { |
Bharat Bhushan | f61c94b | 2012-08-08 20:38:19 +0000 | [diff] [blame] | 744 | int ret; |
| 745 | |
Alexander Graf | 544c676 | 2009-11-02 12:02:31 +0000 | [diff] [blame] | 746 | hrtimer_init(&vcpu->arch.dec_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS); |
Alexander Graf | 544c676 | 2009-11-02 12:02:31 +0000 | [diff] [blame] | 747 | vcpu->arch.dec_timer.function = kvmppc_decrementer_wakeup; |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 748 | vcpu->arch.dec_expires = ~(u64)0; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 749 | |
Bharat Bhushan | 09000ad | 2011-03-25 10:32:13 +0530 | [diff] [blame] | 750 | #ifdef CONFIG_KVM_EXIT_TIMING |
| 751 | mutex_init(&vcpu->arch.exit_timing_lock); |
| 752 | #endif |
Bharat Bhushan | f61c94b | 2012-08-08 20:38:19 +0000 | [diff] [blame] | 753 | ret = kvmppc_subarch_vcpu_init(vcpu); |
| 754 | return ret; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 755 | } |
| 756 | |
| 757 | void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu) |
| 758 | { |
Hollis Blanchard | ecc0981 | 2009-01-03 16:22:59 -0600 | [diff] [blame] | 759 | kvmppc_mmu_destroy(vcpu); |
Bharat Bhushan | f61c94b | 2012-08-08 20:38:19 +0000 | [diff] [blame] | 760 | kvmppc_subarch_vcpu_uninit(vcpu); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu) |
| 764 | { |
Scott Wood | eab1767 | 2011-04-27 17:24:10 -0500 | [diff] [blame] | 765 | #ifdef CONFIG_BOOKE |
| 766 | /* |
| 767 | * vrsave (formerly usprg0) isn't used by Linux, but may |
| 768 | * be used by the guest. |
| 769 | * |
| 770 | * On non-booke this is associated with Altivec and |
| 771 | * is handled by code in book3s.c. |
| 772 | */ |
| 773 | mtspr(SPRN_VRSAVE, vcpu->arch.vrsave); |
| 774 | #endif |
Hollis Blanchard | 9dd921c | 2008-11-05 09:36:14 -0600 | [diff] [blame] | 775 | kvmppc_core_vcpu_load(vcpu, cpu); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 776 | } |
| 777 | |
| 778 | void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu) |
| 779 | { |
Hollis Blanchard | 9dd921c | 2008-11-05 09:36:14 -0600 | [diff] [blame] | 780 | kvmppc_core_vcpu_put(vcpu); |
Scott Wood | eab1767 | 2011-04-27 17:24:10 -0500 | [diff] [blame] | 781 | #ifdef CONFIG_BOOKE |
| 782 | vcpu->arch.vrsave = mfspr(SPRN_VRSAVE); |
| 783 | #endif |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 784 | } |
| 785 | |
Suresh Warrier | 9576730 | 2016-08-19 15:35:47 +1000 | [diff] [blame] | 786 | /* |
| 787 | * irq_bypass_add_producer and irq_bypass_del_producer are only |
| 788 | * useful if the architecture supports PCI passthrough. |
| 789 | * irq_bypass_stop and irq_bypass_start are not needed and so |
| 790 | * kvm_ops are not defined for them. |
| 791 | */ |
| 792 | bool kvm_arch_has_irq_bypass(void) |
| 793 | { |
| 794 | return ((kvmppc_hv_ops && kvmppc_hv_ops->irq_bypass_add_producer) || |
| 795 | (kvmppc_pr_ops && kvmppc_pr_ops->irq_bypass_add_producer)); |
| 796 | } |
| 797 | |
| 798 | int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons, |
| 799 | struct irq_bypass_producer *prod) |
| 800 | { |
| 801 | struct kvm_kernel_irqfd *irqfd = |
| 802 | container_of(cons, struct kvm_kernel_irqfd, consumer); |
| 803 | struct kvm *kvm = irqfd->kvm; |
| 804 | |
| 805 | if (kvm->arch.kvm_ops->irq_bypass_add_producer) |
| 806 | return kvm->arch.kvm_ops->irq_bypass_add_producer(cons, prod); |
| 807 | |
| 808 | return 0; |
| 809 | } |
| 810 | |
| 811 | void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons, |
| 812 | struct irq_bypass_producer *prod) |
| 813 | { |
| 814 | struct kvm_kernel_irqfd *irqfd = |
| 815 | container_of(cons, struct kvm_kernel_irqfd, consumer); |
| 816 | struct kvm *kvm = irqfd->kvm; |
| 817 | |
| 818 | if (kvm->arch.kvm_ops->irq_bypass_del_producer) |
| 819 | kvm->arch.kvm_ops->irq_bypass_del_producer(cons, prod); |
| 820 | } |
| 821 | |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 822 | #ifdef CONFIG_VSX |
| 823 | static inline int kvmppc_get_vsr_dword_offset(int index) |
| 824 | { |
| 825 | int offset; |
| 826 | |
| 827 | if ((index != 0) && (index != 1)) |
| 828 | return -1; |
| 829 | |
| 830 | #ifdef __BIG_ENDIAN |
| 831 | offset = index; |
| 832 | #else |
| 833 | offset = 1 - index; |
| 834 | #endif |
| 835 | |
| 836 | return offset; |
| 837 | } |
| 838 | |
| 839 | static inline int kvmppc_get_vsr_word_offset(int index) |
| 840 | { |
| 841 | int offset; |
| 842 | |
| 843 | if ((index > 3) || (index < 0)) |
| 844 | return -1; |
| 845 | |
| 846 | #ifdef __BIG_ENDIAN |
| 847 | offset = index; |
| 848 | #else |
| 849 | offset = 3 - index; |
| 850 | #endif |
| 851 | return offset; |
| 852 | } |
| 853 | |
| 854 | static inline void kvmppc_set_vsr_dword(struct kvm_vcpu *vcpu, |
| 855 | u64 gpr) |
| 856 | { |
| 857 | union kvmppc_one_reg val; |
| 858 | int offset = kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset); |
| 859 | int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK; |
| 860 | |
| 861 | if (offset == -1) |
| 862 | return; |
| 863 | |
| 864 | if (vcpu->arch.mmio_vsx_tx_sx_enabled) { |
| 865 | val.vval = VCPU_VSX_VR(vcpu, index); |
| 866 | val.vsxval[offset] = gpr; |
| 867 | VCPU_VSX_VR(vcpu, index) = val.vval; |
| 868 | } else { |
| 869 | VCPU_VSX_FPR(vcpu, index, offset) = gpr; |
| 870 | } |
| 871 | } |
| 872 | |
| 873 | static inline void kvmppc_set_vsr_dword_dump(struct kvm_vcpu *vcpu, |
| 874 | u64 gpr) |
| 875 | { |
| 876 | union kvmppc_one_reg val; |
| 877 | int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK; |
| 878 | |
| 879 | if (vcpu->arch.mmio_vsx_tx_sx_enabled) { |
| 880 | val.vval = VCPU_VSX_VR(vcpu, index); |
| 881 | val.vsxval[0] = gpr; |
| 882 | val.vsxval[1] = gpr; |
| 883 | VCPU_VSX_VR(vcpu, index) = val.vval; |
| 884 | } else { |
| 885 | VCPU_VSX_FPR(vcpu, index, 0) = gpr; |
| 886 | VCPU_VSX_FPR(vcpu, index, 1) = gpr; |
| 887 | } |
| 888 | } |
| 889 | |
| 890 | static inline void kvmppc_set_vsr_word(struct kvm_vcpu *vcpu, |
| 891 | u32 gpr32) |
| 892 | { |
| 893 | union kvmppc_one_reg val; |
| 894 | int offset = kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset); |
| 895 | int index = vcpu->arch.io_gpr & KVM_MMIO_REG_MASK; |
| 896 | int dword_offset, word_offset; |
| 897 | |
| 898 | if (offset == -1) |
| 899 | return; |
| 900 | |
| 901 | if (vcpu->arch.mmio_vsx_tx_sx_enabled) { |
| 902 | val.vval = VCPU_VSX_VR(vcpu, index); |
| 903 | val.vsx32val[offset] = gpr32; |
| 904 | VCPU_VSX_VR(vcpu, index) = val.vval; |
| 905 | } else { |
| 906 | dword_offset = offset / 2; |
| 907 | word_offset = offset % 2; |
| 908 | val.vsxval[0] = VCPU_VSX_FPR(vcpu, index, dword_offset); |
| 909 | val.vsx32val[word_offset] = gpr32; |
| 910 | VCPU_VSX_FPR(vcpu, index, dword_offset) = val.vsxval[0]; |
| 911 | } |
| 912 | } |
| 913 | #endif /* CONFIG_VSX */ |
| 914 | |
| 915 | #ifdef CONFIG_PPC_FPU |
| 916 | static inline u64 sp_to_dp(u32 fprs) |
| 917 | { |
| 918 | u64 fprd; |
| 919 | |
| 920 | preempt_disable(); |
| 921 | enable_kernel_fp(); |
| 922 | asm ("lfs%U1%X1 0,%1; stfd%U0%X0 0,%0" : "=m" (fprd) : "m" (fprs) |
| 923 | : "fr0"); |
| 924 | preempt_enable(); |
| 925 | return fprd; |
| 926 | } |
| 927 | |
| 928 | static inline u32 dp_to_sp(u64 fprd) |
| 929 | { |
| 930 | u32 fprs; |
| 931 | |
| 932 | preempt_disable(); |
| 933 | enable_kernel_fp(); |
| 934 | asm ("lfd%U1%X1 0,%1; stfs%U0%X0 0,%0" : "=m" (fprs) : "m" (fprd) |
| 935 | : "fr0"); |
| 936 | preempt_enable(); |
| 937 | return fprs; |
| 938 | } |
| 939 | |
| 940 | #else |
| 941 | #define sp_to_dp(x) (x) |
| 942 | #define dp_to_sp(x) (x) |
| 943 | #endif /* CONFIG_PPC_FPU */ |
| 944 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 945 | static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu, |
| 946 | struct kvm_run *run) |
| 947 | { |
Denis Kirjanov | 69b6183 | 2010-06-11 11:23:26 +0000 | [diff] [blame] | 948 | u64 uninitialized_var(gpr); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 949 | |
Alexander Graf | 8e5b26b | 2010-01-08 02:58:01 +0100 | [diff] [blame] | 950 | if (run->mmio.len > sizeof(gpr)) { |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 951 | printk(KERN_ERR "bad MMIO length: %d\n", run->mmio.len); |
| 952 | return; |
| 953 | } |
| 954 | |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 955 | if (!vcpu->arch.mmio_host_swabbed) { |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 956 | switch (run->mmio.len) { |
Alexander Graf | b104d06 | 2010-02-19 11:00:29 +0100 | [diff] [blame] | 957 | case 8: gpr = *(u64 *)run->mmio.data; break; |
Alexander Graf | 8e5b26b | 2010-01-08 02:58:01 +0100 | [diff] [blame] | 958 | case 4: gpr = *(u32 *)run->mmio.data; break; |
| 959 | case 2: gpr = *(u16 *)run->mmio.data; break; |
| 960 | case 1: gpr = *(u8 *)run->mmio.data; break; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 961 | } |
| 962 | } else { |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 963 | switch (run->mmio.len) { |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 964 | case 8: gpr = swab64(*(u64 *)run->mmio.data); break; |
| 965 | case 4: gpr = swab32(*(u32 *)run->mmio.data); break; |
| 966 | case 2: gpr = swab16(*(u16 *)run->mmio.data); break; |
Alexander Graf | 8e5b26b | 2010-01-08 02:58:01 +0100 | [diff] [blame] | 967 | case 1: gpr = *(u8 *)run->mmio.data; break; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 968 | } |
| 969 | } |
Alexander Graf | 8e5b26b | 2010-01-08 02:58:01 +0100 | [diff] [blame] | 970 | |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 971 | /* conversion between single and double precision */ |
| 972 | if ((vcpu->arch.mmio_sp64_extend) && (run->mmio.len == 4)) |
| 973 | gpr = sp_to_dp(gpr); |
| 974 | |
Alexander Graf | 3587d53 | 2010-02-19 11:00:30 +0100 | [diff] [blame] | 975 | if (vcpu->arch.mmio_sign_extend) { |
| 976 | switch (run->mmio.len) { |
| 977 | #ifdef CONFIG_PPC64 |
| 978 | case 4: |
| 979 | gpr = (s64)(s32)gpr; |
| 980 | break; |
| 981 | #endif |
| 982 | case 2: |
| 983 | gpr = (s64)(s16)gpr; |
| 984 | break; |
| 985 | case 1: |
| 986 | gpr = (s64)(s8)gpr; |
| 987 | break; |
| 988 | } |
| 989 | } |
| 990 | |
Alexander Graf | b3c5d3c | 2012-01-07 02:07:38 +0100 | [diff] [blame] | 991 | switch (vcpu->arch.io_gpr & KVM_MMIO_REG_EXT_MASK) { |
| 992 | case KVM_MMIO_REG_GPR: |
Alexander Graf | b104d06 | 2010-02-19 11:00:29 +0100 | [diff] [blame] | 993 | kvmppc_set_gpr(vcpu, vcpu->arch.io_gpr, gpr); |
| 994 | break; |
Alexander Graf | b3c5d3c | 2012-01-07 02:07:38 +0100 | [diff] [blame] | 995 | case KVM_MMIO_REG_FPR: |
Paul Mackerras | efff191 | 2013-10-15 20:43:02 +1100 | [diff] [blame] | 996 | VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr; |
Alexander Graf | b104d06 | 2010-02-19 11:00:29 +0100 | [diff] [blame] | 997 | break; |
Alexander Graf | 287d561 | 2010-04-01 15:33:21 +0200 | [diff] [blame] | 998 | #ifdef CONFIG_PPC_BOOK3S |
Alexander Graf | b3c5d3c | 2012-01-07 02:07:38 +0100 | [diff] [blame] | 999 | case KVM_MMIO_REG_QPR: |
| 1000 | vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr; |
Alexander Graf | b104d06 | 2010-02-19 11:00:29 +0100 | [diff] [blame] | 1001 | break; |
Alexander Graf | b3c5d3c | 2012-01-07 02:07:38 +0100 | [diff] [blame] | 1002 | case KVM_MMIO_REG_FQPR: |
Paul Mackerras | efff191 | 2013-10-15 20:43:02 +1100 | [diff] [blame] | 1003 | VCPU_FPR(vcpu, vcpu->arch.io_gpr & KVM_MMIO_REG_MASK) = gpr; |
Alexander Graf | b3c5d3c | 2012-01-07 02:07:38 +0100 | [diff] [blame] | 1004 | vcpu->arch.qpr[vcpu->arch.io_gpr & KVM_MMIO_REG_MASK] = gpr; |
Alexander Graf | b104d06 | 2010-02-19 11:00:29 +0100 | [diff] [blame] | 1005 | break; |
Alexander Graf | 287d561 | 2010-04-01 15:33:21 +0200 | [diff] [blame] | 1006 | #endif |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1007 | #ifdef CONFIG_VSX |
| 1008 | case KVM_MMIO_REG_VSX: |
| 1009 | if (vcpu->arch.mmio_vsx_copy_type == KVMPPC_VSX_COPY_DWORD) |
| 1010 | kvmppc_set_vsr_dword(vcpu, gpr); |
| 1011 | else if (vcpu->arch.mmio_vsx_copy_type == KVMPPC_VSX_COPY_WORD) |
| 1012 | kvmppc_set_vsr_word(vcpu, gpr); |
| 1013 | else if (vcpu->arch.mmio_vsx_copy_type == |
| 1014 | KVMPPC_VSX_COPY_DWORD_LOAD_DUMP) |
| 1015 | kvmppc_set_vsr_dword_dump(vcpu, gpr); |
| 1016 | break; |
| 1017 | #endif |
Alexander Graf | b104d06 | 2010-02-19 11:00:29 +0100 | [diff] [blame] | 1018 | default: |
| 1019 | BUG(); |
| 1020 | } |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1021 | } |
| 1022 | |
Paul Mackerras | eb8b056 | 2016-05-05 16:17:10 +1000 | [diff] [blame] | 1023 | static int __kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu, |
| 1024 | unsigned int rt, unsigned int bytes, |
| 1025 | int is_default_endian, int sign_extend) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1026 | { |
Scott Wood | ed840ee | 2013-04-26 14:53:39 +0000 | [diff] [blame] | 1027 | int idx, ret; |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1028 | bool host_swabbed; |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1029 | |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1030 | /* Pity C doesn't have a logical XOR operator */ |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1031 | if (kvmppc_need_byteswap(vcpu)) { |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1032 | host_swabbed = is_default_endian; |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1033 | } else { |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1034 | host_swabbed = !is_default_endian; |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1035 | } |
Scott Wood | ed840ee | 2013-04-26 14:53:39 +0000 | [diff] [blame] | 1036 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1037 | if (bytes > sizeof(run->mmio.data)) { |
| 1038 | printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__, |
| 1039 | run->mmio.len); |
| 1040 | } |
| 1041 | |
| 1042 | run->mmio.phys_addr = vcpu->arch.paddr_accessed; |
| 1043 | run->mmio.len = bytes; |
| 1044 | run->mmio.is_write = 0; |
| 1045 | |
| 1046 | vcpu->arch.io_gpr = rt; |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1047 | vcpu->arch.mmio_host_swabbed = host_swabbed; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1048 | vcpu->mmio_needed = 1; |
| 1049 | vcpu->mmio_is_write = 0; |
Paul Mackerras | eb8b056 | 2016-05-05 16:17:10 +1000 | [diff] [blame] | 1050 | vcpu->arch.mmio_sign_extend = sign_extend; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1051 | |
Scott Wood | ed840ee | 2013-04-26 14:53:39 +0000 | [diff] [blame] | 1052 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
| 1053 | |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 1054 | 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] | 1055 | bytes, &run->mmio.data); |
| 1056 | |
| 1057 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
| 1058 | |
| 1059 | if (!ret) { |
Alexander Graf | 0e673fb | 2012-10-09 00:06:20 +0200 | [diff] [blame] | 1060 | kvmppc_complete_mmio_load(vcpu, run); |
| 1061 | vcpu->mmio_needed = 0; |
| 1062 | return EMULATE_DONE; |
| 1063 | } |
| 1064 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1065 | return EMULATE_DO_MMIO; |
| 1066 | } |
Paul Mackerras | eb8b056 | 2016-05-05 16:17:10 +1000 | [diff] [blame] | 1067 | |
| 1068 | int kvmppc_handle_load(struct kvm_run *run, struct kvm_vcpu *vcpu, |
| 1069 | unsigned int rt, unsigned int bytes, |
| 1070 | int is_default_endian) |
| 1071 | { |
| 1072 | return __kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian, 0); |
| 1073 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 1074 | EXPORT_SYMBOL_GPL(kvmppc_handle_load); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1075 | |
Alexander Graf | 3587d53 | 2010-02-19 11:00:30 +0100 | [diff] [blame] | 1076 | /* Same as above, but sign extends */ |
| 1077 | int kvmppc_handle_loads(struct kvm_run *run, struct kvm_vcpu *vcpu, |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1078 | unsigned int rt, unsigned int bytes, |
| 1079 | int is_default_endian) |
Alexander Graf | 3587d53 | 2010-02-19 11:00:30 +0100 | [diff] [blame] | 1080 | { |
Paul Mackerras | eb8b056 | 2016-05-05 16:17:10 +1000 | [diff] [blame] | 1081 | return __kvmppc_handle_load(run, vcpu, rt, bytes, is_default_endian, 1); |
Alexander Graf | 3587d53 | 2010-02-19 11:00:30 +0100 | [diff] [blame] | 1082 | } |
| 1083 | |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1084 | #ifdef CONFIG_VSX |
| 1085 | int kvmppc_handle_vsx_load(struct kvm_run *run, struct kvm_vcpu *vcpu, |
| 1086 | unsigned int rt, unsigned int bytes, |
| 1087 | int is_default_endian, int mmio_sign_extend) |
| 1088 | { |
| 1089 | enum emulation_result emulated = EMULATE_DONE; |
| 1090 | |
| 1091 | /* Currently, mmio_vsx_copy_nums only allowed to be less than 4 */ |
| 1092 | if ( (vcpu->arch.mmio_vsx_copy_nums > 4) || |
| 1093 | (vcpu->arch.mmio_vsx_copy_nums < 0) ) { |
| 1094 | return EMULATE_FAIL; |
| 1095 | } |
| 1096 | |
| 1097 | while (vcpu->arch.mmio_vsx_copy_nums) { |
| 1098 | emulated = __kvmppc_handle_load(run, vcpu, rt, bytes, |
| 1099 | is_default_endian, mmio_sign_extend); |
| 1100 | |
| 1101 | if (emulated != EMULATE_DONE) |
| 1102 | break; |
| 1103 | |
| 1104 | vcpu->arch.paddr_accessed += run->mmio.len; |
| 1105 | |
| 1106 | vcpu->arch.mmio_vsx_copy_nums--; |
| 1107 | vcpu->arch.mmio_vsx_offset++; |
| 1108 | } |
| 1109 | return emulated; |
| 1110 | } |
| 1111 | #endif /* CONFIG_VSX */ |
| 1112 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1113 | int kvmppc_handle_store(struct kvm_run *run, struct kvm_vcpu *vcpu, |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1114 | u64 val, unsigned int bytes, int is_default_endian) |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1115 | { |
| 1116 | void *data = run->mmio.data; |
Scott Wood | ed840ee | 2013-04-26 14:53:39 +0000 | [diff] [blame] | 1117 | int idx, ret; |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1118 | bool host_swabbed; |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1119 | |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1120 | /* Pity C doesn't have a logical XOR operator */ |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1121 | if (kvmppc_need_byteswap(vcpu)) { |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1122 | host_swabbed = is_default_endian; |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1123 | } else { |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1124 | host_swabbed = !is_default_endian; |
Cédric Le Goater | 7360177 | 2014-01-09 11:51:16 +0100 | [diff] [blame] | 1125 | } |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1126 | |
| 1127 | if (bytes > sizeof(run->mmio.data)) { |
| 1128 | printk(KERN_ERR "%s: bad MMIO length: %d\n", __func__, |
| 1129 | run->mmio.len); |
| 1130 | } |
| 1131 | |
| 1132 | run->mmio.phys_addr = vcpu->arch.paddr_accessed; |
| 1133 | run->mmio.len = bytes; |
| 1134 | run->mmio.is_write = 1; |
| 1135 | vcpu->mmio_needed = 1; |
| 1136 | vcpu->mmio_is_write = 1; |
| 1137 | |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1138 | if ((vcpu->arch.mmio_sp64_extend) && (bytes == 4)) |
| 1139 | val = dp_to_sp(val); |
| 1140 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1141 | /* Store the value at the lowest bytes in 'data'. */ |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1142 | if (!host_swabbed) { |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1143 | switch (bytes) { |
Alexander Graf | b104d06 | 2010-02-19 11:00:29 +0100 | [diff] [blame] | 1144 | case 8: *(u64 *)data = val; break; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1145 | case 4: *(u32 *)data = val; break; |
| 1146 | case 2: *(u16 *)data = val; break; |
| 1147 | case 1: *(u8 *)data = val; break; |
| 1148 | } |
| 1149 | } else { |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1150 | switch (bytes) { |
David Gibson | d078eed | 2015-02-03 16:36:24 +1100 | [diff] [blame] | 1151 | case 8: *(u64 *)data = swab64(val); break; |
| 1152 | case 4: *(u32 *)data = swab32(val); break; |
| 1153 | case 2: *(u16 *)data = swab16(val); break; |
| 1154 | case 1: *(u8 *)data = val; break; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1155 | } |
| 1156 | } |
| 1157 | |
Scott Wood | ed840ee | 2013-04-26 14:53:39 +0000 | [diff] [blame] | 1158 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
| 1159 | |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 1160 | 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] | 1161 | bytes, &run->mmio.data); |
| 1162 | |
| 1163 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
| 1164 | |
| 1165 | if (!ret) { |
Alexander Graf | 0e673fb | 2012-10-09 00:06:20 +0200 | [diff] [blame] | 1166 | vcpu->mmio_needed = 0; |
| 1167 | return EMULATE_DONE; |
| 1168 | } |
| 1169 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1170 | return EMULATE_DO_MMIO; |
| 1171 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 1172 | EXPORT_SYMBOL_GPL(kvmppc_handle_store); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1173 | |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1174 | #ifdef CONFIG_VSX |
| 1175 | static inline int kvmppc_get_vsr_data(struct kvm_vcpu *vcpu, int rs, u64 *val) |
| 1176 | { |
| 1177 | u32 dword_offset, word_offset; |
| 1178 | union kvmppc_one_reg reg; |
| 1179 | int vsx_offset = 0; |
| 1180 | int copy_type = vcpu->arch.mmio_vsx_copy_type; |
| 1181 | int result = 0; |
| 1182 | |
| 1183 | switch (copy_type) { |
| 1184 | case KVMPPC_VSX_COPY_DWORD: |
| 1185 | vsx_offset = |
| 1186 | kvmppc_get_vsr_dword_offset(vcpu->arch.mmio_vsx_offset); |
| 1187 | |
| 1188 | if (vsx_offset == -1) { |
| 1189 | result = -1; |
| 1190 | break; |
| 1191 | } |
| 1192 | |
| 1193 | if (!vcpu->arch.mmio_vsx_tx_sx_enabled) { |
| 1194 | *val = VCPU_VSX_FPR(vcpu, rs, vsx_offset); |
| 1195 | } else { |
| 1196 | reg.vval = VCPU_VSX_VR(vcpu, rs); |
| 1197 | *val = reg.vsxval[vsx_offset]; |
| 1198 | } |
| 1199 | break; |
| 1200 | |
| 1201 | case KVMPPC_VSX_COPY_WORD: |
| 1202 | vsx_offset = |
| 1203 | kvmppc_get_vsr_word_offset(vcpu->arch.mmio_vsx_offset); |
| 1204 | |
| 1205 | if (vsx_offset == -1) { |
| 1206 | result = -1; |
| 1207 | break; |
| 1208 | } |
| 1209 | |
| 1210 | if (!vcpu->arch.mmio_vsx_tx_sx_enabled) { |
| 1211 | dword_offset = vsx_offset / 2; |
| 1212 | word_offset = vsx_offset % 2; |
| 1213 | reg.vsxval[0] = VCPU_VSX_FPR(vcpu, rs, dword_offset); |
| 1214 | *val = reg.vsx32val[word_offset]; |
| 1215 | } else { |
| 1216 | reg.vval = VCPU_VSX_VR(vcpu, rs); |
| 1217 | *val = reg.vsx32val[vsx_offset]; |
| 1218 | } |
| 1219 | break; |
| 1220 | |
| 1221 | default: |
| 1222 | result = -1; |
| 1223 | break; |
| 1224 | } |
| 1225 | |
| 1226 | return result; |
| 1227 | } |
| 1228 | |
| 1229 | int kvmppc_handle_vsx_store(struct kvm_run *run, struct kvm_vcpu *vcpu, |
| 1230 | int rs, unsigned int bytes, int is_default_endian) |
| 1231 | { |
| 1232 | u64 val; |
| 1233 | enum emulation_result emulated = EMULATE_DONE; |
| 1234 | |
| 1235 | vcpu->arch.io_gpr = rs; |
| 1236 | |
| 1237 | /* Currently, mmio_vsx_copy_nums only allowed to be less than 4 */ |
| 1238 | if ( (vcpu->arch.mmio_vsx_copy_nums > 4) || |
| 1239 | (vcpu->arch.mmio_vsx_copy_nums < 0) ) { |
| 1240 | return EMULATE_FAIL; |
| 1241 | } |
| 1242 | |
| 1243 | while (vcpu->arch.mmio_vsx_copy_nums) { |
| 1244 | if (kvmppc_get_vsr_data(vcpu, rs, &val) == -1) |
| 1245 | return EMULATE_FAIL; |
| 1246 | |
| 1247 | emulated = kvmppc_handle_store(run, vcpu, |
| 1248 | val, bytes, is_default_endian); |
| 1249 | |
| 1250 | if (emulated != EMULATE_DONE) |
| 1251 | break; |
| 1252 | |
| 1253 | vcpu->arch.paddr_accessed += run->mmio.len; |
| 1254 | |
| 1255 | vcpu->arch.mmio_vsx_copy_nums--; |
| 1256 | vcpu->arch.mmio_vsx_offset++; |
| 1257 | } |
| 1258 | |
| 1259 | return emulated; |
| 1260 | } |
| 1261 | |
| 1262 | static int kvmppc_emulate_mmio_vsx_loadstore(struct kvm_vcpu *vcpu, |
| 1263 | struct kvm_run *run) |
| 1264 | { |
| 1265 | enum emulation_result emulated = EMULATE_FAIL; |
| 1266 | int r; |
| 1267 | |
| 1268 | vcpu->arch.paddr_accessed += run->mmio.len; |
| 1269 | |
| 1270 | if (!vcpu->mmio_is_write) { |
| 1271 | emulated = kvmppc_handle_vsx_load(run, vcpu, vcpu->arch.io_gpr, |
| 1272 | run->mmio.len, 1, vcpu->arch.mmio_sign_extend); |
| 1273 | } else { |
| 1274 | emulated = kvmppc_handle_vsx_store(run, vcpu, |
| 1275 | vcpu->arch.io_gpr, run->mmio.len, 1); |
| 1276 | } |
| 1277 | |
| 1278 | switch (emulated) { |
| 1279 | case EMULATE_DO_MMIO: |
| 1280 | run->exit_reason = KVM_EXIT_MMIO; |
| 1281 | r = RESUME_HOST; |
| 1282 | break; |
| 1283 | case EMULATE_FAIL: |
| 1284 | pr_info("KVM: MMIO emulation failed (VSX repeat)\n"); |
| 1285 | run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 1286 | run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 1287 | r = RESUME_HOST; |
| 1288 | break; |
| 1289 | default: |
| 1290 | r = RESUME_GUEST; |
| 1291 | break; |
| 1292 | } |
| 1293 | return r; |
| 1294 | } |
| 1295 | #endif /* CONFIG_VSX */ |
| 1296 | |
Mihai Caraman | 8a41ea5 | 2014-08-20 16:36:24 +0300 | [diff] [blame] | 1297 | int kvm_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg) |
| 1298 | { |
| 1299 | int r = 0; |
| 1300 | union kvmppc_one_reg val; |
| 1301 | int size; |
| 1302 | |
| 1303 | size = one_reg_size(reg->id); |
| 1304 | if (size > sizeof(val)) |
| 1305 | return -EINVAL; |
| 1306 | |
| 1307 | r = kvmppc_get_one_reg(vcpu, reg->id, &val); |
| 1308 | if (r == -EINVAL) { |
| 1309 | r = 0; |
| 1310 | switch (reg->id) { |
Mihai Caraman | 3840edc | 2014-08-20 16:36:25 +0300 | [diff] [blame] | 1311 | #ifdef CONFIG_ALTIVEC |
| 1312 | case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31: |
| 1313 | if (!cpu_has_feature(CPU_FTR_ALTIVEC)) { |
| 1314 | r = -ENXIO; |
| 1315 | break; |
| 1316 | } |
Greg Kurz | b4d7f16 | 2016-01-13 18:28:17 +0100 | [diff] [blame] | 1317 | val.vval = vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0]; |
Mihai Caraman | 3840edc | 2014-08-20 16:36:25 +0300 | [diff] [blame] | 1318 | break; |
| 1319 | case KVM_REG_PPC_VSCR: |
| 1320 | if (!cpu_has_feature(CPU_FTR_ALTIVEC)) { |
| 1321 | r = -ENXIO; |
| 1322 | break; |
| 1323 | } |
Greg Kurz | b4d7f16 | 2016-01-13 18:28:17 +0100 | [diff] [blame] | 1324 | val = get_reg_val(reg->id, vcpu->arch.vr.vscr.u[3]); |
Mihai Caraman | 3840edc | 2014-08-20 16:36:25 +0300 | [diff] [blame] | 1325 | break; |
| 1326 | case KVM_REG_PPC_VRSAVE: |
Greg Kurz | b4d7f16 | 2016-01-13 18:28:17 +0100 | [diff] [blame] | 1327 | val = get_reg_val(reg->id, vcpu->arch.vrsave); |
Mihai Caraman | 3840edc | 2014-08-20 16:36:25 +0300 | [diff] [blame] | 1328 | break; |
| 1329 | #endif /* CONFIG_ALTIVEC */ |
Mihai Caraman | 8a41ea5 | 2014-08-20 16:36:24 +0300 | [diff] [blame] | 1330 | default: |
| 1331 | r = -EINVAL; |
| 1332 | break; |
| 1333 | } |
| 1334 | } |
| 1335 | |
| 1336 | if (r) |
| 1337 | return r; |
| 1338 | |
| 1339 | if (copy_to_user((char __user *)(unsigned long)reg->addr, &val, size)) |
| 1340 | r = -EFAULT; |
| 1341 | |
| 1342 | return r; |
| 1343 | } |
| 1344 | |
| 1345 | int kvm_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu, struct kvm_one_reg *reg) |
| 1346 | { |
| 1347 | int r; |
| 1348 | union kvmppc_one_reg val; |
| 1349 | int size; |
| 1350 | |
| 1351 | size = one_reg_size(reg->id); |
| 1352 | if (size > sizeof(val)) |
| 1353 | return -EINVAL; |
| 1354 | |
| 1355 | if (copy_from_user(&val, (char __user *)(unsigned long)reg->addr, size)) |
| 1356 | return -EFAULT; |
| 1357 | |
| 1358 | r = kvmppc_set_one_reg(vcpu, reg->id, &val); |
| 1359 | if (r == -EINVAL) { |
| 1360 | r = 0; |
| 1361 | switch (reg->id) { |
Mihai Caraman | 3840edc | 2014-08-20 16:36:25 +0300 | [diff] [blame] | 1362 | #ifdef CONFIG_ALTIVEC |
| 1363 | case KVM_REG_PPC_VR0 ... KVM_REG_PPC_VR31: |
| 1364 | if (!cpu_has_feature(CPU_FTR_ALTIVEC)) { |
| 1365 | r = -ENXIO; |
| 1366 | break; |
| 1367 | } |
Greg Kurz | b4d7f16 | 2016-01-13 18:28:17 +0100 | [diff] [blame] | 1368 | vcpu->arch.vr.vr[reg->id - KVM_REG_PPC_VR0] = val.vval; |
Mihai Caraman | 3840edc | 2014-08-20 16:36:25 +0300 | [diff] [blame] | 1369 | break; |
| 1370 | case KVM_REG_PPC_VSCR: |
| 1371 | if (!cpu_has_feature(CPU_FTR_ALTIVEC)) { |
| 1372 | r = -ENXIO; |
| 1373 | break; |
| 1374 | } |
Greg Kurz | b4d7f16 | 2016-01-13 18:28:17 +0100 | [diff] [blame] | 1375 | vcpu->arch.vr.vscr.u[3] = set_reg_val(reg->id, val); |
Mihai Caraman | 3840edc | 2014-08-20 16:36:25 +0300 | [diff] [blame] | 1376 | break; |
| 1377 | case KVM_REG_PPC_VRSAVE: |
Greg Kurz | b4d7f16 | 2016-01-13 18:28:17 +0100 | [diff] [blame] | 1378 | if (!cpu_has_feature(CPU_FTR_ALTIVEC)) { |
| 1379 | r = -ENXIO; |
| 1380 | break; |
| 1381 | } |
| 1382 | vcpu->arch.vrsave = set_reg_val(reg->id, val); |
Mihai Caraman | 3840edc | 2014-08-20 16:36:25 +0300 | [diff] [blame] | 1383 | break; |
| 1384 | #endif /* CONFIG_ALTIVEC */ |
Mihai Caraman | 8a41ea5 | 2014-08-20 16:36:24 +0300 | [diff] [blame] | 1385 | default: |
| 1386 | r = -EINVAL; |
| 1387 | break; |
| 1388 | } |
| 1389 | } |
| 1390 | |
| 1391 | return r; |
| 1392 | } |
| 1393 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1394 | int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run) |
| 1395 | { |
| 1396 | int r; |
| 1397 | sigset_t sigsaved; |
| 1398 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1399 | if (vcpu->mmio_needed) { |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1400 | vcpu->mmio_needed = 0; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1401 | if (!vcpu->mmio_is_write) |
| 1402 | kvmppc_complete_mmio_load(vcpu, run); |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1403 | #ifdef CONFIG_VSX |
| 1404 | if (vcpu->arch.mmio_vsx_copy_nums > 0) { |
| 1405 | vcpu->arch.mmio_vsx_copy_nums--; |
| 1406 | vcpu->arch.mmio_vsx_offset++; |
| 1407 | } |
| 1408 | |
| 1409 | if (vcpu->arch.mmio_vsx_copy_nums > 0) { |
| 1410 | r = kvmppc_emulate_mmio_vsx_loadstore(vcpu, run); |
| 1411 | if (r == RESUME_HOST) { |
| 1412 | vcpu->mmio_needed = 1; |
| 1413 | return r; |
| 1414 | } |
| 1415 | } |
| 1416 | #endif |
Alexander Graf | ad0a048 | 2010-03-24 21:48:30 +0100 | [diff] [blame] | 1417 | } else if (vcpu->arch.osi_needed) { |
| 1418 | u64 *gprs = run->osi.gprs; |
| 1419 | int i; |
| 1420 | |
| 1421 | for (i = 0; i < 32; i++) |
| 1422 | kvmppc_set_gpr(vcpu, i, gprs[i]); |
| 1423 | vcpu->arch.osi_needed = 0; |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 1424 | } else if (vcpu->arch.hcall_needed) { |
| 1425 | int i; |
| 1426 | |
| 1427 | kvmppc_set_gpr(vcpu, 3, run->papr_hcall.ret); |
| 1428 | for (i = 0; i < 9; ++i) |
| 1429 | kvmppc_set_gpr(vcpu, 4 + i, run->papr_hcall.args[i]); |
| 1430 | vcpu->arch.hcall_needed = 0; |
Alexander Graf | 1c81063 | 2013-01-04 18:12:48 +0100 | [diff] [blame] | 1431 | #ifdef CONFIG_BOOKE |
| 1432 | } else if (vcpu->arch.epr_needed) { |
| 1433 | kvmppc_set_epr(vcpu, run->epr.epr); |
| 1434 | vcpu->arch.epr_needed = 0; |
| 1435 | #endif |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1436 | } |
| 1437 | |
Bin Lu | 6f63e81 | 2017-02-21 21:12:36 +0800 | [diff] [blame] | 1438 | if (vcpu->sigset_active) |
| 1439 | sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved); |
| 1440 | |
Paolo Bonzini | 460df4c | 2017-02-08 11:50:15 +0100 | [diff] [blame] | 1441 | if (run->immediate_exit) |
| 1442 | r = -EINTR; |
| 1443 | else |
| 1444 | r = kvmppc_vcpu_run(run, vcpu); |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1445 | |
| 1446 | if (vcpu->sigset_active) |
| 1447 | sigprocmask(SIG_SETMASK, &sigsaved, NULL); |
| 1448 | |
| 1449 | return r; |
| 1450 | } |
| 1451 | |
| 1452 | int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, struct kvm_interrupt *irq) |
| 1453 | { |
Paul Mackerras | 19ccb76 | 2011-07-23 17:42:46 +1000 | [diff] [blame] | 1454 | if (irq->irq == KVM_INTERRUPT_UNSET) { |
Paul Mackerras | 4fe27d2 | 2013-02-14 14:00:25 +0000 | [diff] [blame] | 1455 | kvmppc_core_dequeue_external(vcpu); |
Paul Mackerras | 19ccb76 | 2011-07-23 17:42:46 +1000 | [diff] [blame] | 1456 | return 0; |
| 1457 | } |
Hollis Blanchard | 45c5eb6 | 2008-04-25 17:55:49 -0500 | [diff] [blame] | 1458 | |
Paul Mackerras | 19ccb76 | 2011-07-23 17:42:46 +1000 | [diff] [blame] | 1459 | kvmppc_core_queue_external(vcpu, irq); |
Christoffer Dall | b6d3383 | 2012-03-08 16:44:24 -0500 | [diff] [blame] | 1460 | |
Scott Wood | dfd4d47 | 2011-11-17 12:39:59 +0000 | [diff] [blame] | 1461 | kvm_vcpu_kick(vcpu); |
Hollis Blanchard | 45c5eb6 | 2008-04-25 17:55:49 -0500 | [diff] [blame] | 1462 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1463 | return 0; |
| 1464 | } |
| 1465 | |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 1466 | static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu, |
| 1467 | struct kvm_enable_cap *cap) |
| 1468 | { |
| 1469 | int r; |
| 1470 | |
| 1471 | if (cap->flags) |
| 1472 | return -EINVAL; |
| 1473 | |
| 1474 | switch (cap->cap) { |
Alexander Graf | ad0a048 | 2010-03-24 21:48:30 +0100 | [diff] [blame] | 1475 | case KVM_CAP_PPC_OSI: |
| 1476 | r = 0; |
| 1477 | vcpu->arch.osi_enabled = true; |
| 1478 | break; |
Alexander Graf | 930b412 | 2011-08-08 17:29:42 +0200 | [diff] [blame] | 1479 | case KVM_CAP_PPC_PAPR: |
| 1480 | r = 0; |
| 1481 | vcpu->arch.papr_enabled = true; |
| 1482 | break; |
Alexander Graf | 1c81063 | 2013-01-04 18:12:48 +0100 | [diff] [blame] | 1483 | case KVM_CAP_PPC_EPR: |
| 1484 | r = 0; |
Scott Wood | 5df554ad | 2013-04-12 14:08:46 +0000 | [diff] [blame] | 1485 | if (cap->args[0]) |
| 1486 | vcpu->arch.epr_flags |= KVMPPC_EPR_USER; |
| 1487 | else |
| 1488 | vcpu->arch.epr_flags &= ~KVMPPC_EPR_USER; |
Alexander Graf | 1c81063 | 2013-01-04 18:12:48 +0100 | [diff] [blame] | 1489 | break; |
Bharat Bhushan | f61c94b | 2012-08-08 20:38:19 +0000 | [diff] [blame] | 1490 | #ifdef CONFIG_BOOKE |
| 1491 | case KVM_CAP_PPC_BOOKE_WATCHDOG: |
| 1492 | r = 0; |
| 1493 | vcpu->arch.watchdog_enabled = true; |
| 1494 | break; |
| 1495 | #endif |
Alexander Graf | bf7ca4b | 2012-02-15 23:40:00 +0000 | [diff] [blame] | 1496 | #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC) |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 1497 | case KVM_CAP_SW_TLB: { |
| 1498 | struct kvm_config_tlb cfg; |
| 1499 | void __user *user_ptr = (void __user *)(uintptr_t)cap->args[0]; |
| 1500 | |
| 1501 | r = -EFAULT; |
| 1502 | if (copy_from_user(&cfg, user_ptr, sizeof(cfg))) |
| 1503 | break; |
| 1504 | |
| 1505 | r = kvm_vcpu_ioctl_config_tlb(vcpu, &cfg); |
| 1506 | break; |
| 1507 | } |
| 1508 | #endif |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 1509 | #ifdef CONFIG_KVM_MPIC |
| 1510 | case KVM_CAP_IRQ_MPIC: { |
Al Viro | 70abade | 2013-08-30 15:04:22 -0400 | [diff] [blame] | 1511 | struct fd f; |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 1512 | struct kvm_device *dev; |
| 1513 | |
| 1514 | r = -EBADF; |
Al Viro | 70abade | 2013-08-30 15:04:22 -0400 | [diff] [blame] | 1515 | f = fdget(cap->args[0]); |
| 1516 | if (!f.file) |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 1517 | break; |
| 1518 | |
| 1519 | r = -EPERM; |
Al Viro | 70abade | 2013-08-30 15:04:22 -0400 | [diff] [blame] | 1520 | dev = kvm_device_from_filp(f.file); |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 1521 | if (dev) |
| 1522 | r = kvmppc_mpic_connect_vcpu(dev, vcpu, cap->args[1]); |
| 1523 | |
Al Viro | 70abade | 2013-08-30 15:04:22 -0400 | [diff] [blame] | 1524 | fdput(f); |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 1525 | break; |
| 1526 | } |
| 1527 | #endif |
Paul Mackerras | 5975a2e | 2013-04-27 00:28:37 +0000 | [diff] [blame] | 1528 | #ifdef CONFIG_KVM_XICS |
| 1529 | case KVM_CAP_IRQ_XICS: { |
Al Viro | 70abade | 2013-08-30 15:04:22 -0400 | [diff] [blame] | 1530 | struct fd f; |
Paul Mackerras | 5975a2e | 2013-04-27 00:28:37 +0000 | [diff] [blame] | 1531 | struct kvm_device *dev; |
| 1532 | |
| 1533 | r = -EBADF; |
Al Viro | 70abade | 2013-08-30 15:04:22 -0400 | [diff] [blame] | 1534 | f = fdget(cap->args[0]); |
| 1535 | if (!f.file) |
Paul Mackerras | 5975a2e | 2013-04-27 00:28:37 +0000 | [diff] [blame] | 1536 | break; |
| 1537 | |
| 1538 | r = -EPERM; |
Al Viro | 70abade | 2013-08-30 15:04:22 -0400 | [diff] [blame] | 1539 | dev = kvm_device_from_filp(f.file); |
Benjamin Herrenschmidt | 5af5099 | 2017-04-05 17:54:56 +1000 | [diff] [blame] | 1540 | if (dev) { |
| 1541 | if (xive_enabled()) |
| 1542 | r = kvmppc_xive_connect_vcpu(dev, vcpu, cap->args[1]); |
| 1543 | else |
| 1544 | r = kvmppc_xics_connect_vcpu(dev, vcpu, cap->args[1]); |
| 1545 | } |
Paul Mackerras | 5975a2e | 2013-04-27 00:28:37 +0000 | [diff] [blame] | 1546 | |
Al Viro | 70abade | 2013-08-30 15:04:22 -0400 | [diff] [blame] | 1547 | fdput(f); |
Paul Mackerras | 5975a2e | 2013-04-27 00:28:37 +0000 | [diff] [blame] | 1548 | break; |
| 1549 | } |
| 1550 | #endif /* CONFIG_KVM_XICS */ |
Aravinda Prasad | 134764e | 2017-05-11 16:32:48 +0530 | [diff] [blame] | 1551 | #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE |
| 1552 | case KVM_CAP_PPC_FWNMI: |
| 1553 | r = -EINVAL; |
| 1554 | if (!is_kvmppc_hv_enabled(vcpu->kvm)) |
| 1555 | break; |
| 1556 | r = 0; |
| 1557 | vcpu->kvm->arch.fwnmi_enabled = true; |
| 1558 | break; |
| 1559 | #endif /* CONFIG_KVM_BOOK3S_HV_POSSIBLE */ |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 1560 | default: |
| 1561 | r = -EINVAL; |
| 1562 | break; |
| 1563 | } |
| 1564 | |
Alexander Graf | af8f38b | 2011-08-10 13:57:08 +0200 | [diff] [blame] | 1565 | if (!r) |
| 1566 | r = kvmppc_sanity_check(vcpu); |
| 1567 | |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 1568 | return r; |
| 1569 | } |
| 1570 | |
Paul Mackerras | 34a75b0 | 2016-08-10 11:27:27 +1000 | [diff] [blame] | 1571 | bool kvm_arch_intc_initialized(struct kvm *kvm) |
| 1572 | { |
| 1573 | #ifdef CONFIG_KVM_MPIC |
| 1574 | if (kvm->arch.mpic) |
| 1575 | return true; |
| 1576 | #endif |
| 1577 | #ifdef CONFIG_KVM_XICS |
Benjamin Herrenschmidt | 5af5099 | 2017-04-05 17:54:56 +1000 | [diff] [blame] | 1578 | if (kvm->arch.xics || kvm->arch.xive) |
Paul Mackerras | 34a75b0 | 2016-08-10 11:27:27 +1000 | [diff] [blame] | 1579 | return true; |
| 1580 | #endif |
| 1581 | return false; |
| 1582 | } |
| 1583 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1584 | int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu, |
| 1585 | struct kvm_mp_state *mp_state) |
| 1586 | { |
| 1587 | return -EINVAL; |
| 1588 | } |
| 1589 | |
| 1590 | int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu, |
| 1591 | struct kvm_mp_state *mp_state) |
| 1592 | { |
| 1593 | return -EINVAL; |
| 1594 | } |
| 1595 | |
| 1596 | long kvm_arch_vcpu_ioctl(struct file *filp, |
| 1597 | unsigned int ioctl, unsigned long arg) |
| 1598 | { |
| 1599 | struct kvm_vcpu *vcpu = filp->private_data; |
| 1600 | void __user *argp = (void __user *)arg; |
| 1601 | long r; |
| 1602 | |
Avi Kivity | 9373662 | 2010-05-13 12:35:17 +0300 | [diff] [blame] | 1603 | switch (ioctl) { |
| 1604 | case KVM_INTERRUPT: { |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1605 | struct kvm_interrupt irq; |
| 1606 | r = -EFAULT; |
| 1607 | if (copy_from_user(&irq, argp, sizeof(irq))) |
Avi Kivity | 9373662 | 2010-05-13 12:35:17 +0300 | [diff] [blame] | 1608 | goto out; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1609 | r = kvm_vcpu_ioctl_interrupt(vcpu, &irq); |
Avi Kivity | 9373662 | 2010-05-13 12:35:17 +0300 | [diff] [blame] | 1610 | goto out; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1611 | } |
Avi Kivity | 19483d1 | 2010-05-13 12:30:43 +0300 | [diff] [blame] | 1612 | |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 1613 | case KVM_ENABLE_CAP: |
| 1614 | { |
| 1615 | struct kvm_enable_cap cap; |
| 1616 | r = -EFAULT; |
| 1617 | if (copy_from_user(&cap, argp, sizeof(cap))) |
| 1618 | goto out; |
| 1619 | r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap); |
| 1620 | break; |
| 1621 | } |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 1622 | |
Alexander Graf | e24ed81 | 2011-09-14 10:02:41 +0200 | [diff] [blame] | 1623 | case KVM_SET_ONE_REG: |
| 1624 | case KVM_GET_ONE_REG: |
| 1625 | { |
| 1626 | struct kvm_one_reg reg; |
| 1627 | r = -EFAULT; |
| 1628 | if (copy_from_user(®, argp, sizeof(reg))) |
| 1629 | goto out; |
| 1630 | if (ioctl == KVM_SET_ONE_REG) |
| 1631 | r = kvm_vcpu_ioctl_set_one_reg(vcpu, ®); |
| 1632 | else |
| 1633 | r = kvm_vcpu_ioctl_get_one_reg(vcpu, ®); |
| 1634 | break; |
| 1635 | } |
| 1636 | |
Alexander Graf | bf7ca4b | 2012-02-15 23:40:00 +0000 | [diff] [blame] | 1637 | #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC) |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 1638 | case KVM_DIRTY_TLB: { |
| 1639 | struct kvm_dirty_tlb dirty; |
| 1640 | r = -EFAULT; |
| 1641 | if (copy_from_user(&dirty, argp, sizeof(dirty))) |
| 1642 | goto out; |
| 1643 | r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty); |
| 1644 | break; |
| 1645 | } |
| 1646 | #endif |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1647 | default: |
| 1648 | r = -EINVAL; |
| 1649 | } |
| 1650 | |
| 1651 | out: |
| 1652 | return r; |
| 1653 | } |
| 1654 | |
Carsten Otte | 5b1c149 | 2012-01-04 10:25:23 +0100 | [diff] [blame] | 1655 | int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf) |
| 1656 | { |
| 1657 | return VM_FAULT_SIGBUS; |
| 1658 | } |
| 1659 | |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 1660 | static int kvm_vm_ioctl_get_pvinfo(struct kvm_ppc_pvinfo *pvinfo) |
| 1661 | { |
Stuart Yoder | 784bafa | 2012-07-03 05:48:51 +0000 | [diff] [blame] | 1662 | u32 inst_nop = 0x60000000; |
| 1663 | #ifdef CONFIG_KVM_BOOKE_HV |
| 1664 | u32 inst_sc1 = 0x44000022; |
Alexander Graf | 2743103 | 2014-04-24 13:39:16 +0200 | [diff] [blame] | 1665 | pvinfo->hcall[0] = cpu_to_be32(inst_sc1); |
| 1666 | pvinfo->hcall[1] = cpu_to_be32(inst_nop); |
| 1667 | pvinfo->hcall[2] = cpu_to_be32(inst_nop); |
| 1668 | pvinfo->hcall[3] = cpu_to_be32(inst_nop); |
Stuart Yoder | 784bafa | 2012-07-03 05:48:51 +0000 | [diff] [blame] | 1669 | #else |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 1670 | u32 inst_lis = 0x3c000000; |
| 1671 | u32 inst_ori = 0x60000000; |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 1672 | u32 inst_sc = 0x44000002; |
| 1673 | u32 inst_imm_mask = 0xffff; |
| 1674 | |
| 1675 | /* |
| 1676 | * The hypercall to get into KVM from within guest context is as |
| 1677 | * follows: |
| 1678 | * |
| 1679 | * lis r0, r0, KVM_SC_MAGIC_R0@h |
| 1680 | * ori r0, KVM_SC_MAGIC_R0@l |
| 1681 | * sc |
| 1682 | * nop |
| 1683 | */ |
Alexander Graf | 2743103 | 2014-04-24 13:39:16 +0200 | [diff] [blame] | 1684 | pvinfo->hcall[0] = cpu_to_be32(inst_lis | ((KVM_SC_MAGIC_R0 >> 16) & inst_imm_mask)); |
| 1685 | pvinfo->hcall[1] = cpu_to_be32(inst_ori | (KVM_SC_MAGIC_R0 & inst_imm_mask)); |
| 1686 | pvinfo->hcall[2] = cpu_to_be32(inst_sc); |
| 1687 | pvinfo->hcall[3] = cpu_to_be32(inst_nop); |
Stuart Yoder | 784bafa | 2012-07-03 05:48:51 +0000 | [diff] [blame] | 1688 | #endif |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 1689 | |
Liu Yu-B13201 | 9202e07 | 2012-07-03 05:48:52 +0000 | [diff] [blame] | 1690 | pvinfo->flags = KVM_PPC_PVINFO_FLAGS_EV_IDLE; |
| 1691 | |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 1692 | return 0; |
| 1693 | } |
| 1694 | |
Alexander Graf | 5efdb4b | 2013-04-17 00:37:57 +0200 | [diff] [blame] | 1695 | int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event, |
| 1696 | bool line_status) |
| 1697 | { |
| 1698 | if (!irqchip_in_kernel(kvm)) |
| 1699 | return -ENXIO; |
| 1700 | |
| 1701 | irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, |
| 1702 | irq_event->irq, irq_event->level, |
| 1703 | line_status); |
| 1704 | return 0; |
| 1705 | } |
| 1706 | |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 1707 | |
| 1708 | static int kvm_vm_ioctl_enable_cap(struct kvm *kvm, |
| 1709 | struct kvm_enable_cap *cap) |
| 1710 | { |
| 1711 | int r; |
| 1712 | |
| 1713 | if (cap->flags) |
| 1714 | return -EINVAL; |
| 1715 | |
| 1716 | switch (cap->cap) { |
| 1717 | #ifdef CONFIG_KVM_BOOK3S_64_HANDLER |
| 1718 | case KVM_CAP_PPC_ENABLE_HCALL: { |
| 1719 | unsigned long hcall = cap->args[0]; |
| 1720 | |
| 1721 | r = -EINVAL; |
| 1722 | if (hcall > MAX_HCALL_OPCODE || (hcall & 3) || |
| 1723 | cap->args[1] > 1) |
| 1724 | break; |
Paul Mackerras | ae2113a | 2014-06-02 11:03:00 +1000 | [diff] [blame] | 1725 | if (!kvmppc_book3s_hcall_implemented(kvm, hcall)) |
| 1726 | break; |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 1727 | if (cap->args[1]) |
| 1728 | set_bit(hcall / 4, kvm->arch.enabled_hcalls); |
| 1729 | else |
| 1730 | clear_bit(hcall / 4, kvm->arch.enabled_hcalls); |
| 1731 | r = 0; |
| 1732 | break; |
| 1733 | } |
Paul Mackerras | 3c31352 | 2017-02-06 13:24:41 +1100 | [diff] [blame] | 1734 | case KVM_CAP_PPC_SMT: { |
| 1735 | unsigned long mode = cap->args[0]; |
| 1736 | unsigned long flags = cap->args[1]; |
| 1737 | |
| 1738 | r = -EINVAL; |
| 1739 | if (kvm->arch.kvm_ops->set_smt_mode) |
| 1740 | r = kvm->arch.kvm_ops->set_smt_mode(kvm, mode, flags); |
| 1741 | break; |
| 1742 | } |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 1743 | #endif |
| 1744 | default: |
| 1745 | r = -EINVAL; |
| 1746 | break; |
| 1747 | } |
| 1748 | |
| 1749 | return r; |
| 1750 | } |
| 1751 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1752 | long kvm_arch_vm_ioctl(struct file *filp, |
| 1753 | unsigned int ioctl, unsigned long arg) |
| 1754 | { |
Scott Wood | 5df554ad | 2013-04-12 14:08:46 +0000 | [diff] [blame] | 1755 | struct kvm *kvm __maybe_unused = filp->private_data; |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 1756 | void __user *argp = (void __user *)arg; |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1757 | long r; |
| 1758 | |
| 1759 | switch (ioctl) { |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 1760 | case KVM_PPC_GET_PVINFO: { |
| 1761 | struct kvm_ppc_pvinfo pvinfo; |
Vasiliy Kulikov | d8cdddc | 2010-10-30 13:04:24 +0400 | [diff] [blame] | 1762 | memset(&pvinfo, 0, sizeof(pvinfo)); |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 1763 | r = kvm_vm_ioctl_get_pvinfo(&pvinfo); |
| 1764 | if (copy_to_user(argp, &pvinfo, sizeof(pvinfo))) { |
| 1765 | r = -EFAULT; |
| 1766 | goto out; |
| 1767 | } |
| 1768 | |
| 1769 | break; |
| 1770 | } |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 1771 | case KVM_ENABLE_CAP: |
| 1772 | { |
| 1773 | struct kvm_enable_cap cap; |
| 1774 | r = -EFAULT; |
| 1775 | if (copy_from_user(&cap, argp, sizeof(cap))) |
| 1776 | goto out; |
| 1777 | r = kvm_vm_ioctl_enable_cap(kvm, &cap); |
| 1778 | break; |
| 1779 | } |
Paul Mackerras | 76d837a | 2017-05-11 14:31:59 +1000 | [diff] [blame] | 1780 | #ifdef CONFIG_SPAPR_TCE_IOMMU |
Alexey Kardashevskiy | 58ded42 | 2016-03-01 17:54:40 +1100 | [diff] [blame] | 1781 | case KVM_CREATE_SPAPR_TCE_64: { |
| 1782 | struct kvm_create_spapr_tce_64 create_tce_64; |
| 1783 | |
| 1784 | r = -EFAULT; |
| 1785 | if (copy_from_user(&create_tce_64, argp, sizeof(create_tce_64))) |
| 1786 | goto out; |
| 1787 | if (create_tce_64.flags) { |
| 1788 | r = -EINVAL; |
| 1789 | goto out; |
| 1790 | } |
| 1791 | r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64); |
| 1792 | goto out; |
| 1793 | } |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 1794 | case KVM_CREATE_SPAPR_TCE: { |
| 1795 | struct kvm_create_spapr_tce create_tce; |
Alexey Kardashevskiy | 58ded42 | 2016-03-01 17:54:40 +1100 | [diff] [blame] | 1796 | struct kvm_create_spapr_tce_64 create_tce_64; |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 1797 | |
| 1798 | r = -EFAULT; |
| 1799 | if (copy_from_user(&create_tce, argp, sizeof(create_tce))) |
| 1800 | goto out; |
Alexey Kardashevskiy | 58ded42 | 2016-03-01 17:54:40 +1100 | [diff] [blame] | 1801 | |
| 1802 | create_tce_64.liobn = create_tce.liobn; |
| 1803 | create_tce_64.page_shift = IOMMU_PAGE_SHIFT_4K; |
| 1804 | create_tce_64.offset = 0; |
| 1805 | create_tce_64.size = create_tce.window_size >> |
| 1806 | IOMMU_PAGE_SHIFT_4K; |
| 1807 | create_tce_64.flags = 0; |
| 1808 | r = kvm_vm_ioctl_create_spapr_tce(kvm, &create_tce_64); |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 1809 | goto out; |
| 1810 | } |
Paul Mackerras | 76d837a | 2017-05-11 14:31:59 +1000 | [diff] [blame] | 1811 | #endif |
| 1812 | #ifdef CONFIG_PPC_BOOK3S_64 |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 1813 | case KVM_PPC_GET_SMMU_INFO: { |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 1814 | struct kvm_ppc_smmu_info info; |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 1815 | struct kvm *kvm = filp->private_data; |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 1816 | |
| 1817 | memset(&info, 0, sizeof(info)); |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 1818 | r = kvm->arch.kvm_ops->get_smmu_info(kvm, &info); |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 1819 | if (r >= 0 && copy_to_user(argp, &info, sizeof(info))) |
| 1820 | r = -EFAULT; |
| 1821 | break; |
| 1822 | } |
Michael Ellerman | 8e591cb | 2013-04-17 20:30:00 +0000 | [diff] [blame] | 1823 | case KVM_PPC_RTAS_DEFINE_TOKEN: { |
| 1824 | struct kvm *kvm = filp->private_data; |
| 1825 | |
| 1826 | r = kvm_vm_ioctl_rtas_define_token(kvm, argp); |
| 1827 | break; |
| 1828 | } |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 1829 | case KVM_PPC_CONFIGURE_V3_MMU: { |
| 1830 | struct kvm *kvm = filp->private_data; |
| 1831 | struct kvm_ppc_mmuv3_cfg cfg; |
| 1832 | |
| 1833 | r = -EINVAL; |
| 1834 | if (!kvm->arch.kvm_ops->configure_mmu) |
| 1835 | goto out; |
| 1836 | r = -EFAULT; |
| 1837 | if (copy_from_user(&cfg, argp, sizeof(cfg))) |
| 1838 | goto out; |
| 1839 | r = kvm->arch.kvm_ops->configure_mmu(kvm, &cfg); |
| 1840 | break; |
| 1841 | } |
| 1842 | case KVM_PPC_GET_RMMU_INFO: { |
| 1843 | struct kvm *kvm = filp->private_data; |
| 1844 | struct kvm_ppc_rmmu_info info; |
| 1845 | |
| 1846 | r = -EINVAL; |
| 1847 | if (!kvm->arch.kvm_ops->get_rmmu_info) |
| 1848 | goto out; |
| 1849 | r = kvm->arch.kvm_ops->get_rmmu_info(kvm, &info); |
| 1850 | if (r >= 0 && copy_to_user(argp, &info, sizeof(info))) |
| 1851 | r = -EFAULT; |
| 1852 | break; |
| 1853 | } |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 1854 | default: { |
| 1855 | struct kvm *kvm = filp->private_data; |
| 1856 | r = kvm->arch.kvm_ops->arch_vm_ioctl(filp, ioctl, arg); |
| 1857 | } |
Aneesh Kumar K.V | 3a167bea | 2013-10-07 22:17:53 +0530 | [diff] [blame] | 1858 | #else /* CONFIG_PPC_BOOK3S_64 */ |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1859 | default: |
Avi Kivity | 367e131 | 2009-08-26 14:57:07 +0300 | [diff] [blame] | 1860 | r = -ENOTTY; |
Aneesh Kumar K.V | 3a167bea | 2013-10-07 22:17:53 +0530 | [diff] [blame] | 1861 | #endif |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1862 | } |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 1863 | out: |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1864 | return r; |
| 1865 | } |
| 1866 | |
Scott Wood | 043cc4d | 2011-12-20 15:34:20 +0000 | [diff] [blame] | 1867 | static unsigned long lpid_inuse[BITS_TO_LONGS(KVMPPC_NR_LPIDS)]; |
| 1868 | static unsigned long nr_lpids; |
| 1869 | |
| 1870 | long kvmppc_alloc_lpid(void) |
| 1871 | { |
| 1872 | long lpid; |
| 1873 | |
| 1874 | do { |
| 1875 | lpid = find_first_zero_bit(lpid_inuse, KVMPPC_NR_LPIDS); |
| 1876 | if (lpid >= nr_lpids) { |
| 1877 | pr_err("%s: No LPIDs free\n", __func__); |
| 1878 | return -ENOMEM; |
| 1879 | } |
| 1880 | } while (test_and_set_bit(lpid, lpid_inuse)); |
| 1881 | |
| 1882 | return lpid; |
| 1883 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 1884 | EXPORT_SYMBOL_GPL(kvmppc_alloc_lpid); |
Scott Wood | 043cc4d | 2011-12-20 15:34:20 +0000 | [diff] [blame] | 1885 | |
| 1886 | void kvmppc_claim_lpid(long lpid) |
| 1887 | { |
| 1888 | set_bit(lpid, lpid_inuse); |
| 1889 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 1890 | EXPORT_SYMBOL_GPL(kvmppc_claim_lpid); |
Scott Wood | 043cc4d | 2011-12-20 15:34:20 +0000 | [diff] [blame] | 1891 | |
| 1892 | void kvmppc_free_lpid(long lpid) |
| 1893 | { |
| 1894 | clear_bit(lpid, lpid_inuse); |
| 1895 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 1896 | EXPORT_SYMBOL_GPL(kvmppc_free_lpid); |
Scott Wood | 043cc4d | 2011-12-20 15:34:20 +0000 | [diff] [blame] | 1897 | |
| 1898 | void kvmppc_init_lpid(unsigned long nr_lpids_param) |
| 1899 | { |
| 1900 | nr_lpids = min_t(unsigned long, KVMPPC_NR_LPIDS, nr_lpids_param); |
| 1901 | memset(lpid_inuse, 0, sizeof(lpid_inuse)); |
| 1902 | } |
Aneesh Kumar K.V | 2ba9f0d | 2013-10-07 22:17:59 +0530 | [diff] [blame] | 1903 | EXPORT_SYMBOL_GPL(kvmppc_init_lpid); |
Scott Wood | 043cc4d | 2011-12-20 15:34:20 +0000 | [diff] [blame] | 1904 | |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 1905 | int kvm_arch_init(void *opaque) |
| 1906 | { |
| 1907 | return 0; |
| 1908 | } |
| 1909 | |
Paolo Bonzini | 478d6686 | 2014-08-05 11:29:07 +0200 | [diff] [blame] | 1910 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ppc_instr); |