Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 - Virtual Open Systems and Columbia University |
| 3 | * Author: Christoffer Dall <c.dall@virtualopensystems.com> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License, version 2, as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
| 17 | */ |
| 18 | |
Lorenzo Pieralisi | 1fcf7ce | 2013-08-05 15:04:46 +0100 | [diff] [blame] | 19 | #include <linux/cpu_pm.h> |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 20 | #include <linux/errno.h> |
| 21 | #include <linux/err.h> |
| 22 | #include <linux/kvm_host.h> |
| 23 | #include <linux/module.h> |
| 24 | #include <linux/vmalloc.h> |
| 25 | #include <linux/fs.h> |
| 26 | #include <linux/mman.h> |
| 27 | #include <linux/sched.h> |
Christoffer Dall | 86ce8535 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 28 | #include <linux/kvm.h> |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 29 | #include <trace/events/kvm.h> |
Shannon Zhao | b02386e | 2016-02-26 19:29:19 +0800 | [diff] [blame] | 30 | #include <kvm/arm_pmu.h> |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 31 | |
| 32 | #define CREATE_TRACE_POINTS |
| 33 | #include "trace.h" |
| 34 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 35 | #include <asm/uaccess.h> |
| 36 | #include <asm/ptrace.h> |
| 37 | #include <asm/mman.h> |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 38 | #include <asm/tlbflush.h> |
Christoffer Dall | 5b3e5e5 | 2013-01-20 18:28:09 -0500 | [diff] [blame] | 39 | #include <asm/cacheflush.h> |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 40 | #include <asm/virt.h> |
| 41 | #include <asm/kvm_arm.h> |
| 42 | #include <asm/kvm_asm.h> |
| 43 | #include <asm/kvm_mmu.h> |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 44 | #include <asm/kvm_emulate.h> |
Christoffer Dall | 5b3e5e5 | 2013-01-20 18:28:09 -0500 | [diff] [blame] | 45 | #include <asm/kvm_coproc.h> |
Marc Zyngier | aa024c2f | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 46 | #include <asm/kvm_psci.h> |
Marc Zyngier | 910917b | 2015-10-27 12:18:48 +0000 | [diff] [blame] | 47 | #include <asm/sections.h> |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 48 | |
| 49 | #ifdef REQUIRES_VIRT |
| 50 | __asm__(".arch_extension virt"); |
| 51 | #endif |
| 52 | |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 53 | static DEFINE_PER_CPU(unsigned long, kvm_arm_hyp_stack_page); |
Marc Zyngier | 3de50da | 2013-04-08 16:47:19 +0100 | [diff] [blame] | 54 | static kvm_cpu_context_t __percpu *kvm_host_cpu_state; |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 55 | static unsigned long hyp_default_vectors; |
| 56 | |
Marc Zyngier | 1638a12 | 2013-01-21 19:36:11 -0500 | [diff] [blame] | 57 | /* Per-CPU variable containing the currently running vcpu. */ |
| 58 | static DEFINE_PER_CPU(struct kvm_vcpu *, kvm_arm_running_vcpu); |
| 59 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 60 | /* The VMID used in the VTTBR */ |
| 61 | static atomic64_t kvm_vmid_gen = ATOMIC64_INIT(1); |
Vladimir Murzin | 20475f7 | 2015-11-16 11:28:18 +0000 | [diff] [blame] | 62 | static u32 kvm_next_vmid; |
| 63 | static unsigned int kvm_vmid_bits __read_mostly; |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 64 | static DEFINE_SPINLOCK(kvm_vmid_lock); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 65 | |
Pavel Fedin | c7da6fa | 2015-12-18 14:38:43 +0300 | [diff] [blame] | 66 | static bool vgic_present; |
| 67 | |
AKASHI Takahiro | 67f6919 | 2016-04-27 17:47:05 +0100 | [diff] [blame] | 68 | static DEFINE_PER_CPU(unsigned char, kvm_arm_hardware_enabled); |
| 69 | |
Marc Zyngier | 1638a12 | 2013-01-21 19:36:11 -0500 | [diff] [blame] | 70 | static void kvm_arm_set_running_vcpu(struct kvm_vcpu *vcpu) |
| 71 | { |
| 72 | BUG_ON(preemptible()); |
Christoph Lameter | 1436c1a | 2013-10-21 13:17:08 +0100 | [diff] [blame] | 73 | __this_cpu_write(kvm_arm_running_vcpu, vcpu); |
Marc Zyngier | 1638a12 | 2013-01-21 19:36:11 -0500 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | /** |
| 77 | * kvm_arm_get_running_vcpu - get the vcpu running on the current CPU. |
| 78 | * Must be called from non-preemptible context |
| 79 | */ |
| 80 | struct kvm_vcpu *kvm_arm_get_running_vcpu(void) |
| 81 | { |
| 82 | BUG_ON(preemptible()); |
Christoph Lameter | 1436c1a | 2013-10-21 13:17:08 +0100 | [diff] [blame] | 83 | return __this_cpu_read(kvm_arm_running_vcpu); |
Marc Zyngier | 1638a12 | 2013-01-21 19:36:11 -0500 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | /** |
| 87 | * kvm_arm_get_running_vcpus - get the per-CPU array of currently running vcpus. |
| 88 | */ |
Will Deacon | 4000be4 | 2014-08-26 15:13:21 +0100 | [diff] [blame] | 89 | struct kvm_vcpu * __percpu *kvm_get_running_vcpus(void) |
Marc Zyngier | 1638a12 | 2013-01-21 19:36:11 -0500 | [diff] [blame] | 90 | { |
| 91 | return &kvm_arm_running_vcpu; |
| 92 | } |
| 93 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 94 | int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu) |
| 95 | { |
| 96 | return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE; |
| 97 | } |
| 98 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 99 | int kvm_arch_hardware_setup(void) |
| 100 | { |
| 101 | return 0; |
| 102 | } |
| 103 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 104 | void kvm_arch_check_processor_compat(void *rtn) |
| 105 | { |
| 106 | *(int *)rtn = 0; |
| 107 | } |
| 108 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 109 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 110 | /** |
| 111 | * kvm_arch_init_vm - initializes a VM data structure |
| 112 | * @kvm: pointer to the KVM struct |
| 113 | */ |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 114 | int kvm_arch_init_vm(struct kvm *kvm, unsigned long type) |
| 115 | { |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 116 | int ret = 0; |
| 117 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 118 | if (type) |
| 119 | return -EINVAL; |
| 120 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 121 | ret = kvm_alloc_stage2_pgd(kvm); |
| 122 | if (ret) |
| 123 | goto out_fail_alloc; |
| 124 | |
| 125 | ret = create_hyp_mappings(kvm, kvm + 1); |
| 126 | if (ret) |
| 127 | goto out_free_stage2_pgd; |
| 128 | |
Marc Zyngier | 6c3d63c | 2014-06-23 17:37:18 +0100 | [diff] [blame] | 129 | kvm_vgic_early_init(kvm); |
Christoffer Dall | a1a6438 | 2013-11-16 10:51:25 -0800 | [diff] [blame] | 130 | kvm_timer_init(kvm); |
| 131 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 132 | /* Mark the initial VMID generation invalid */ |
| 133 | kvm->arch.vmid_gen = 0; |
| 134 | |
Andre Przywara | 3caa2d8 | 2014-06-02 16:26:01 +0200 | [diff] [blame] | 135 | /* The maximum number of VCPUs is limited by the host's GIC model */ |
Pavel Fedin | c7da6fa | 2015-12-18 14:38:43 +0300 | [diff] [blame] | 136 | kvm->arch.max_vcpus = vgic_present ? |
| 137 | kvm_vgic_get_max_vcpus() : KVM_MAX_VCPUS; |
Andre Przywara | 3caa2d8 | 2014-06-02 16:26:01 +0200 | [diff] [blame] | 138 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 139 | return ret; |
| 140 | out_free_stage2_pgd: |
| 141 | kvm_free_stage2_pgd(kvm); |
| 142 | out_fail_alloc: |
| 143 | return ret; |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf) |
| 147 | { |
| 148 | return VM_FAULT_SIGBUS; |
| 149 | } |
| 150 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 151 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 152 | /** |
| 153 | * kvm_arch_destroy_vm - destroy the VM data structure |
| 154 | * @kvm: pointer to the KVM struct |
| 155 | */ |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 156 | void kvm_arch_destroy_vm(struct kvm *kvm) |
| 157 | { |
| 158 | int i; |
| 159 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 160 | kvm_free_stage2_pgd(kvm); |
| 161 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 162 | for (i = 0; i < KVM_MAX_VCPUS; ++i) { |
| 163 | if (kvm->vcpus[i]) { |
| 164 | kvm_arch_vcpu_free(kvm->vcpus[i]); |
| 165 | kvm->vcpus[i] = NULL; |
| 166 | } |
| 167 | } |
Marc Zyngier | c1bfb57 | 2014-07-08 12:09:01 +0100 | [diff] [blame] | 168 | |
| 169 | kvm_vgic_destroy(kvm); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 170 | } |
| 171 | |
Alexander Graf | 784aa3d | 2014-07-14 18:27:35 +0200 | [diff] [blame] | 172 | int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext) |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 173 | { |
| 174 | int r; |
| 175 | switch (ext) { |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 176 | case KVM_CAP_IRQCHIP: |
Pavel Fedin | c7da6fa | 2015-12-18 14:38:43 +0300 | [diff] [blame] | 177 | r = vgic_present; |
| 178 | break; |
Nikolay Nikolaev | d44758c | 2015-01-24 12:00:02 +0000 | [diff] [blame] | 179 | case KVM_CAP_IOEVENTFD: |
Christoffer Dall | 7330672 | 2013-10-25 17:29:18 +0100 | [diff] [blame] | 180 | case KVM_CAP_DEVICE_CTRL: |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 181 | case KVM_CAP_USER_MEMORY: |
| 182 | case KVM_CAP_SYNC_MMU: |
| 183 | case KVM_CAP_DESTROY_MEMORY_REGION_WORKS: |
| 184 | case KVM_CAP_ONE_REG: |
Marc Zyngier | aa024c2f | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 185 | case KVM_CAP_ARM_PSCI: |
Anup Patel | 4447a20 | 2014-04-29 11:24:25 +0530 | [diff] [blame] | 186 | case KVM_CAP_ARM_PSCI_0_2: |
Christoffer Dall | 9804788 | 2014-08-19 12:18:04 +0200 | [diff] [blame] | 187 | case KVM_CAP_READONLY_MEM: |
Alex Bennée | ecccf0c | 2015-03-13 17:02:52 +0000 | [diff] [blame] | 188 | case KVM_CAP_MP_STATE: |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 189 | r = 1; |
| 190 | break; |
| 191 | case KVM_CAP_COALESCED_MMIO: |
| 192 | r = KVM_COALESCED_MMIO_PAGE_OFFSET; |
| 193 | break; |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 194 | case KVM_CAP_ARM_SET_DEVICE_ADDR: |
| 195 | r = 1; |
Marc Zyngier | ca46e10 | 2013-04-03 10:43:13 +0100 | [diff] [blame] | 196 | break; |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 197 | case KVM_CAP_NR_VCPUS: |
| 198 | r = num_online_cpus(); |
| 199 | break; |
| 200 | case KVM_CAP_MAX_VCPUS: |
| 201 | r = KVM_MAX_VCPUS; |
| 202 | break; |
| 203 | default: |
Marc Zyngier | 17b1e31 | 2013-04-08 16:47:18 +0100 | [diff] [blame] | 204 | r = kvm_arch_dev_ioctl_check_extension(ext); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 205 | break; |
| 206 | } |
| 207 | return r; |
| 208 | } |
| 209 | |
| 210 | long kvm_arch_dev_ioctl(struct file *filp, |
| 211 | unsigned int ioctl, unsigned long arg) |
| 212 | { |
| 213 | return -EINVAL; |
| 214 | } |
| 215 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 216 | |
| 217 | struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id) |
| 218 | { |
| 219 | int err; |
| 220 | struct kvm_vcpu *vcpu; |
| 221 | |
Christoffer Dall | 716139d | 2014-12-09 14:33:45 +0100 | [diff] [blame] | 222 | if (irqchip_in_kernel(kvm) && vgic_initialized(kvm)) { |
| 223 | err = -EBUSY; |
| 224 | goto out; |
| 225 | } |
| 226 | |
Andre Przywara | 3caa2d8 | 2014-06-02 16:26:01 +0200 | [diff] [blame] | 227 | if (id >= kvm->arch.max_vcpus) { |
| 228 | err = -EINVAL; |
| 229 | goto out; |
| 230 | } |
| 231 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 232 | vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL); |
| 233 | if (!vcpu) { |
| 234 | err = -ENOMEM; |
| 235 | goto out; |
| 236 | } |
| 237 | |
| 238 | err = kvm_vcpu_init(vcpu, kvm, id); |
| 239 | if (err) |
| 240 | goto free_vcpu; |
| 241 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 242 | err = create_hyp_mappings(vcpu, vcpu + 1); |
| 243 | if (err) |
| 244 | goto vcpu_uninit; |
| 245 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 246 | return vcpu; |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 247 | vcpu_uninit: |
| 248 | kvm_vcpu_uninit(vcpu); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 249 | free_vcpu: |
| 250 | kmem_cache_free(kvm_vcpu_cache, vcpu); |
| 251 | out: |
| 252 | return ERR_PTR(err); |
| 253 | } |
| 254 | |
Dominik Dingel | 31928aa | 2014-12-04 15:47:07 +0100 | [diff] [blame] | 255 | void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu) |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 256 | { |
Marc Zyngier | 6c3d63c | 2014-06-23 17:37:18 +0100 | [diff] [blame] | 257 | kvm_vgic_vcpu_early_init(vcpu); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu) |
| 261 | { |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 262 | kvm_mmu_free_memory_caches(vcpu); |
Marc Zyngier | 967f842 | 2013-01-23 13:21:59 -0500 | [diff] [blame] | 263 | kvm_timer_vcpu_terminate(vcpu); |
Marc Zyngier | c1bfb57 | 2014-07-08 12:09:01 +0100 | [diff] [blame] | 264 | kvm_vgic_vcpu_destroy(vcpu); |
Shannon Zhao | 5f0a714 | 2015-09-11 15:18:05 +0800 | [diff] [blame] | 265 | kvm_pmu_vcpu_destroy(vcpu); |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 266 | kmem_cache_free(kvm_vcpu_cache, vcpu); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu) |
| 270 | { |
| 271 | kvm_arch_vcpu_free(vcpu); |
| 272 | } |
| 273 | |
| 274 | int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu) |
| 275 | { |
Christoffer Dall | 1a74847 | 2015-03-13 17:02:55 +0000 | [diff] [blame] | 276 | return kvm_timer_should_fire(vcpu); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 277 | } |
| 278 | |
Christoffer Dall | d35268d | 2015-08-25 19:48:21 +0200 | [diff] [blame] | 279 | void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu) |
| 280 | { |
| 281 | kvm_timer_schedule(vcpu); |
| 282 | } |
| 283 | |
| 284 | void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu) |
| 285 | { |
| 286 | kvm_timer_unschedule(vcpu); |
| 287 | } |
| 288 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 289 | int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu) |
| 290 | { |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 291 | /* Force users to call KVM_ARM_VCPU_INIT */ |
| 292 | vcpu->arch.target = -1; |
Christoffer Dall | f7fa034d | 2014-10-16 16:40:53 +0200 | [diff] [blame] | 293 | bitmap_zero(vcpu->arch.features, KVM_VCPU_MAX_FEATURES); |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 294 | |
Marc Zyngier | 967f842 | 2013-01-23 13:21:59 -0500 | [diff] [blame] | 295 | /* Set up the timer */ |
| 296 | kvm_timer_vcpu_init(vcpu); |
| 297 | |
Alex Bennée | 84e690b | 2015-07-07 17:30:00 +0100 | [diff] [blame] | 298 | kvm_arm_reset_debug_ptr(vcpu); |
| 299 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 300 | return 0; |
| 301 | } |
| 302 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 303 | void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu) |
| 304 | { |
Christoffer Dall | 86ce8535 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 305 | vcpu->cpu = cpu; |
Marc Zyngier | 3de50da | 2013-04-08 16:47:19 +0100 | [diff] [blame] | 306 | vcpu->arch.host_cpu_context = this_cpu_ptr(kvm_host_cpu_state); |
Christoffer Dall | 5b3e5e5 | 2013-01-20 18:28:09 -0500 | [diff] [blame] | 307 | |
Marc Zyngier | 1638a12 | 2013-01-21 19:36:11 -0500 | [diff] [blame] | 308 | kvm_arm_set_running_vcpu(vcpu); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu) |
| 312 | { |
Christoffer Dall | e9b152c | 2013-12-11 20:29:11 -0800 | [diff] [blame] | 313 | /* |
| 314 | * The arch-generic KVM code expects the cpu field of a vcpu to be -1 |
| 315 | * if the vcpu is no longer assigned to a cpu. This is used for the |
| 316 | * optimized make_all_cpus_request path. |
| 317 | */ |
| 318 | vcpu->cpu = -1; |
| 319 | |
Marc Zyngier | 1638a12 | 2013-01-21 19:36:11 -0500 | [diff] [blame] | 320 | kvm_arm_set_running_vcpu(NULL); |
Marc Zyngier | 9b4a300 | 2016-01-29 19:04:48 +0000 | [diff] [blame] | 321 | kvm_timer_vcpu_put(vcpu); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 322 | } |
| 323 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 324 | int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu, |
| 325 | struct kvm_mp_state *mp_state) |
| 326 | { |
Eric Auger | 3781528 | 2015-09-25 23:41:14 +0200 | [diff] [blame] | 327 | if (vcpu->arch.power_off) |
Alex Bennée | ecccf0c | 2015-03-13 17:02:52 +0000 | [diff] [blame] | 328 | mp_state->mp_state = KVM_MP_STATE_STOPPED; |
| 329 | else |
| 330 | mp_state->mp_state = KVM_MP_STATE_RUNNABLE; |
| 331 | |
| 332 | return 0; |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 333 | } |
| 334 | |
| 335 | int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu, |
| 336 | struct kvm_mp_state *mp_state) |
| 337 | { |
Alex Bennée | ecccf0c | 2015-03-13 17:02:52 +0000 | [diff] [blame] | 338 | switch (mp_state->mp_state) { |
| 339 | case KVM_MP_STATE_RUNNABLE: |
Eric Auger | 3781528 | 2015-09-25 23:41:14 +0200 | [diff] [blame] | 340 | vcpu->arch.power_off = false; |
Alex Bennée | ecccf0c | 2015-03-13 17:02:52 +0000 | [diff] [blame] | 341 | break; |
| 342 | case KVM_MP_STATE_STOPPED: |
Eric Auger | 3781528 | 2015-09-25 23:41:14 +0200 | [diff] [blame] | 343 | vcpu->arch.power_off = true; |
Alex Bennée | ecccf0c | 2015-03-13 17:02:52 +0000 | [diff] [blame] | 344 | break; |
| 345 | default: |
| 346 | return -EINVAL; |
| 347 | } |
| 348 | |
| 349 | return 0; |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 350 | } |
| 351 | |
Christoffer Dall | 5b3e5e5 | 2013-01-20 18:28:09 -0500 | [diff] [blame] | 352 | /** |
| 353 | * kvm_arch_vcpu_runnable - determine if the vcpu can be scheduled |
| 354 | * @v: The VCPU pointer |
| 355 | * |
| 356 | * If the guest CPU is not waiting for interrupts or an interrupt line is |
| 357 | * asserted, the CPU is by definition runnable. |
| 358 | */ |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 359 | int kvm_arch_vcpu_runnable(struct kvm_vcpu *v) |
| 360 | { |
Eric Auger | 4f5f1dc | 2015-09-25 23:41:15 +0200 | [diff] [blame] | 361 | return ((!!v->arch.irq_lines || kvm_vgic_vcpu_pending_irq(v)) |
Eric Auger | 3b92830 | 2015-09-25 23:41:17 +0200 | [diff] [blame] | 362 | && !v->arch.power_off && !v->arch.pause); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 363 | } |
| 364 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 365 | /* Just ensure a guest exit from a particular CPU */ |
| 366 | static void exit_vm_noop(void *info) |
| 367 | { |
| 368 | } |
| 369 | |
| 370 | void force_vm_exit(const cpumask_t *mask) |
| 371 | { |
Eric Auger | 898f949 | 2016-03-07 23:50:36 +0700 | [diff] [blame] | 372 | preempt_disable(); |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 373 | smp_call_function_many(mask, exit_vm_noop, NULL, true); |
Eric Auger | 898f949 | 2016-03-07 23:50:36 +0700 | [diff] [blame] | 374 | preempt_enable(); |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 375 | } |
| 376 | |
| 377 | /** |
| 378 | * need_new_vmid_gen - check that the VMID is still valid |
| 379 | * @kvm: The VM's VMID to checkt |
| 380 | * |
| 381 | * return true if there is a new generation of VMIDs being used |
| 382 | * |
| 383 | * The hardware supports only 256 values with the value zero reserved for the |
| 384 | * host, so we check if an assigned value belongs to a previous generation, |
| 385 | * which which requires us to assign a new value. If we're the first to use a |
| 386 | * VMID for the new generation, we must flush necessary caches and TLBs on all |
| 387 | * CPUs. |
| 388 | */ |
| 389 | static bool need_new_vmid_gen(struct kvm *kvm) |
| 390 | { |
| 391 | return unlikely(kvm->arch.vmid_gen != atomic64_read(&kvm_vmid_gen)); |
| 392 | } |
| 393 | |
| 394 | /** |
| 395 | * update_vttbr - Update the VTTBR with a valid VMID before the guest runs |
| 396 | * @kvm The guest that we are about to run |
| 397 | * |
| 398 | * Called from kvm_arch_vcpu_ioctl_run before entering the guest to ensure the |
| 399 | * VM has a valid VMID, otherwise assigns a new one and flushes corresponding |
| 400 | * caches and TLBs. |
| 401 | */ |
| 402 | static void update_vttbr(struct kvm *kvm) |
| 403 | { |
| 404 | phys_addr_t pgd_phys; |
| 405 | u64 vmid; |
| 406 | |
| 407 | if (!need_new_vmid_gen(kvm)) |
| 408 | return; |
| 409 | |
| 410 | spin_lock(&kvm_vmid_lock); |
| 411 | |
| 412 | /* |
| 413 | * We need to re-check the vmid_gen here to ensure that if another vcpu |
| 414 | * already allocated a valid vmid for this vm, then this vcpu should |
| 415 | * use the same vmid. |
| 416 | */ |
| 417 | if (!need_new_vmid_gen(kvm)) { |
| 418 | spin_unlock(&kvm_vmid_lock); |
| 419 | return; |
| 420 | } |
| 421 | |
| 422 | /* First user of a new VMID generation? */ |
| 423 | if (unlikely(kvm_next_vmid == 0)) { |
| 424 | atomic64_inc(&kvm_vmid_gen); |
| 425 | kvm_next_vmid = 1; |
| 426 | |
| 427 | /* |
| 428 | * On SMP we know no other CPUs can use this CPU's or each |
| 429 | * other's VMID after force_vm_exit returns since the |
| 430 | * kvm_vmid_lock blocks them from reentry to the guest. |
| 431 | */ |
| 432 | force_vm_exit(cpu_all_mask); |
| 433 | /* |
| 434 | * Now broadcast TLB + ICACHE invalidation over the inner |
| 435 | * shareable domain to make sure all data structures are |
| 436 | * clean. |
| 437 | */ |
| 438 | kvm_call_hyp(__kvm_flush_vm_context); |
| 439 | } |
| 440 | |
| 441 | kvm->arch.vmid_gen = atomic64_read(&kvm_vmid_gen); |
| 442 | kvm->arch.vmid = kvm_next_vmid; |
| 443 | kvm_next_vmid++; |
Vladimir Murzin | 20475f7 | 2015-11-16 11:28:18 +0000 | [diff] [blame] | 444 | kvm_next_vmid &= (1 << kvm_vmid_bits) - 1; |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 445 | |
| 446 | /* update vttbr to be used with the new vmid */ |
Suzuki K Poulose | 9163ee23 | 2016-03-22 17:01:21 +0000 | [diff] [blame] | 447 | pgd_phys = virt_to_phys(kvm->arch.pgd); |
Joel Schopp | dbff124 | 2014-07-09 11:17:04 -0500 | [diff] [blame] | 448 | BUG_ON(pgd_phys & ~VTTBR_BADDR_MASK); |
Vladimir Murzin | 20475f7 | 2015-11-16 11:28:18 +0000 | [diff] [blame] | 449 | vmid = ((u64)(kvm->arch.vmid) << VTTBR_VMID_SHIFT) & VTTBR_VMID_MASK(kvm_vmid_bits); |
Joel Schopp | dbff124 | 2014-07-09 11:17:04 -0500 | [diff] [blame] | 450 | kvm->arch.vttbr = pgd_phys | vmid; |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 451 | |
| 452 | spin_unlock(&kvm_vmid_lock); |
| 453 | } |
| 454 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 455 | static int kvm_vcpu_first_run_init(struct kvm_vcpu *vcpu) |
| 456 | { |
Christoffer Dall | 0597112 | 2014-12-12 21:19:23 +0100 | [diff] [blame] | 457 | struct kvm *kvm = vcpu->kvm; |
Christoffer Dall | 41a5448 | 2016-05-18 16:26:00 +0100 | [diff] [blame] | 458 | int ret = 0; |
Christoffer Dall | e1ba020 | 2013-09-23 14:55:55 -0700 | [diff] [blame] | 459 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 460 | if (likely(vcpu->arch.has_run_once)) |
| 461 | return 0; |
| 462 | |
| 463 | vcpu->arch.has_run_once = true; |
Marc Zyngier | aa024c2f | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 464 | |
| 465 | /* |
Peter Maydell | 6d3cfbe | 2014-12-04 15:02:24 +0000 | [diff] [blame] | 466 | * Map the VGIC hardware resources before running a vcpu the first |
| 467 | * time on this VM. |
Marc Zyngier | 01ac5e3 | 2013-01-21 19:36:16 -0500 | [diff] [blame] | 468 | */ |
Pavel Fedin | c2f5851 | 2015-08-05 11:53:57 +0100 | [diff] [blame] | 469 | if (unlikely(irqchip_in_kernel(kvm) && !vgic_ready(kvm))) { |
Christoffer Dall | 0597112 | 2014-12-12 21:19:23 +0100 | [diff] [blame] | 470 | ret = kvm_vgic_map_resources(kvm); |
Marc Zyngier | 01ac5e3 | 2013-01-21 19:36:16 -0500 | [diff] [blame] | 471 | if (ret) |
| 472 | return ret; |
| 473 | } |
| 474 | |
Christoffer Dall | 0597112 | 2014-12-12 21:19:23 +0100 | [diff] [blame] | 475 | /* |
| 476 | * Enable the arch timers only if we have an in-kernel VGIC |
| 477 | * and it has been properly initialized, since we cannot handle |
| 478 | * interrupts from the virtual timer with a userspace gic. |
| 479 | */ |
| 480 | if (irqchip_in_kernel(kvm) && vgic_initialized(kvm)) |
Christoffer Dall | 41a5448 | 2016-05-18 16:26:00 +0100 | [diff] [blame] | 481 | ret = kvm_timer_enable(vcpu); |
Christoffer Dall | 0597112 | 2014-12-12 21:19:23 +0100 | [diff] [blame] | 482 | |
Christoffer Dall | 41a5448 | 2016-05-18 16:26:00 +0100 | [diff] [blame] | 483 | return ret; |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 484 | } |
| 485 | |
Eric Auger | c1426e4 | 2015-03-04 11:14:34 +0100 | [diff] [blame] | 486 | bool kvm_arch_intc_initialized(struct kvm *kvm) |
| 487 | { |
| 488 | return vgic_initialized(kvm); |
| 489 | } |
| 490 | |
Christoffer Dall | b13216c | 2016-04-27 10:28:00 +0100 | [diff] [blame] | 491 | void kvm_arm_halt_guest(struct kvm *kvm) |
Eric Auger | 3b92830 | 2015-09-25 23:41:17 +0200 | [diff] [blame] | 492 | { |
| 493 | int i; |
| 494 | struct kvm_vcpu *vcpu; |
| 495 | |
| 496 | kvm_for_each_vcpu(i, vcpu, kvm) |
| 497 | vcpu->arch.pause = true; |
Christoffer Dall | b13216c | 2016-04-27 10:28:00 +0100 | [diff] [blame] | 498 | kvm_make_all_cpus_request(kvm, KVM_REQ_VCPU_EXIT); |
Eric Auger | 3b92830 | 2015-09-25 23:41:17 +0200 | [diff] [blame] | 499 | } |
| 500 | |
Christoffer Dall | 35a2d58 | 2016-05-20 15:25:28 +0200 | [diff] [blame] | 501 | void kvm_arm_halt_vcpu(struct kvm_vcpu *vcpu) |
| 502 | { |
| 503 | vcpu->arch.pause = true; |
| 504 | kvm_vcpu_kick(vcpu); |
| 505 | } |
| 506 | |
| 507 | void kvm_arm_resume_vcpu(struct kvm_vcpu *vcpu) |
Christoffer Dall | b13216c | 2016-04-27 10:28:00 +0100 | [diff] [blame] | 508 | { |
| 509 | struct swait_queue_head *wq = kvm_arch_vcpu_wq(vcpu); |
| 510 | |
| 511 | vcpu->arch.pause = false; |
| 512 | swake_up(wq); |
| 513 | } |
| 514 | |
| 515 | void kvm_arm_resume_guest(struct kvm *kvm) |
Eric Auger | 3b92830 | 2015-09-25 23:41:17 +0200 | [diff] [blame] | 516 | { |
| 517 | int i; |
| 518 | struct kvm_vcpu *vcpu; |
| 519 | |
Christoffer Dall | b13216c | 2016-04-27 10:28:00 +0100 | [diff] [blame] | 520 | kvm_for_each_vcpu(i, vcpu, kvm) |
| 521 | kvm_arm_resume_vcpu(vcpu); |
Eric Auger | 3b92830 | 2015-09-25 23:41:17 +0200 | [diff] [blame] | 522 | } |
| 523 | |
Eric Auger | 3781528 | 2015-09-25 23:41:14 +0200 | [diff] [blame] | 524 | static void vcpu_sleep(struct kvm_vcpu *vcpu) |
Marc Zyngier | aa024c2f | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 525 | { |
Marcelo Tosatti | 8577370 | 2016-02-19 09:46:39 +0100 | [diff] [blame] | 526 | struct swait_queue_head *wq = kvm_arch_vcpu_wq(vcpu); |
Marc Zyngier | aa024c2f | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 527 | |
Marcelo Tosatti | 8577370 | 2016-02-19 09:46:39 +0100 | [diff] [blame] | 528 | swait_event_interruptible(*wq, ((!vcpu->arch.power_off) && |
Eric Auger | 3b92830 | 2015-09-25 23:41:17 +0200 | [diff] [blame] | 529 | (!vcpu->arch.pause))); |
Marc Zyngier | aa024c2f | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 530 | } |
| 531 | |
Andre Przywara | e8180dc | 2013-05-09 00:28:06 +0200 | [diff] [blame] | 532 | static int kvm_vcpu_initialized(struct kvm_vcpu *vcpu) |
| 533 | { |
| 534 | return vcpu->arch.target >= 0; |
| 535 | } |
| 536 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 537 | /** |
| 538 | * kvm_arch_vcpu_ioctl_run - the main VCPU run function to execute guest code |
| 539 | * @vcpu: The VCPU pointer |
| 540 | * @run: The kvm_run structure pointer used for userspace state exchange |
| 541 | * |
| 542 | * This function is called through the VCPU_RUN ioctl called from user space. It |
| 543 | * will execute VM code in a loop until the time slice for the process is used |
| 544 | * or some emulation is needed from user space in which case the function will |
| 545 | * return with return value 0 and with the kvm_run structure filled in with the |
| 546 | * required data for the requested emulation. |
| 547 | */ |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 548 | int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run) |
| 549 | { |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 550 | int ret; |
| 551 | sigset_t sigsaved; |
| 552 | |
Andre Przywara | e8180dc | 2013-05-09 00:28:06 +0200 | [diff] [blame] | 553 | if (unlikely(!kvm_vcpu_initialized(vcpu))) |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 554 | return -ENOEXEC; |
| 555 | |
| 556 | ret = kvm_vcpu_first_run_init(vcpu); |
| 557 | if (ret) |
| 558 | return ret; |
| 559 | |
Christoffer Dall | 45e96ea | 2013-01-20 18:43:58 -0500 | [diff] [blame] | 560 | if (run->exit_reason == KVM_EXIT_MMIO) { |
| 561 | ret = kvm_handle_mmio_return(vcpu, vcpu->run); |
| 562 | if (ret) |
| 563 | return ret; |
| 564 | } |
| 565 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 566 | if (vcpu->sigset_active) |
| 567 | sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved); |
| 568 | |
| 569 | ret = 1; |
| 570 | run->exit_reason = KVM_EXIT_UNKNOWN; |
| 571 | while (ret > 0) { |
| 572 | /* |
| 573 | * Check conditions before entering the guest |
| 574 | */ |
| 575 | cond_resched(); |
| 576 | |
| 577 | update_vttbr(vcpu->kvm); |
| 578 | |
Eric Auger | 3b92830 | 2015-09-25 23:41:17 +0200 | [diff] [blame] | 579 | if (vcpu->arch.power_off || vcpu->arch.pause) |
Eric Auger | 3781528 | 2015-09-25 23:41:14 +0200 | [diff] [blame] | 580 | vcpu_sleep(vcpu); |
Marc Zyngier | aa024c2f | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 581 | |
Marc Zyngier | abdf584 | 2015-06-08 15:00:28 +0100 | [diff] [blame] | 582 | /* |
Marc Zyngier | abdf584 | 2015-06-08 15:00:28 +0100 | [diff] [blame] | 583 | * Preparing the interrupts to be injected also |
| 584 | * involves poking the GIC, which must be done in a |
| 585 | * non-preemptible context. |
| 586 | */ |
| 587 | preempt_disable(); |
Shannon Zhao | b02386e | 2016-02-26 19:29:19 +0800 | [diff] [blame] | 588 | kvm_pmu_flush_hwstate(vcpu); |
Christoffer Dall | 7e16aa8 | 2015-11-24 10:31:07 +0100 | [diff] [blame] | 589 | kvm_timer_flush_hwstate(vcpu); |
Marc Zyngier | 9a99d05 | 2015-06-05 09:33:28 +0100 | [diff] [blame] | 590 | kvm_vgic_flush_hwstate(vcpu); |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 591 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 592 | local_irq_disable(); |
| 593 | |
| 594 | /* |
| 595 | * Re-check atomic conditions |
| 596 | */ |
| 597 | if (signal_pending(current)) { |
| 598 | ret = -EINTR; |
| 599 | run->exit_reason = KVM_EXIT_INTR; |
| 600 | } |
| 601 | |
Eric Auger | 101d3da | 2015-09-25 23:41:16 +0200 | [diff] [blame] | 602 | if (ret <= 0 || need_new_vmid_gen(vcpu->kvm) || |
Eric Auger | 3b92830 | 2015-09-25 23:41:17 +0200 | [diff] [blame] | 603 | vcpu->arch.power_off || vcpu->arch.pause) { |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 604 | local_irq_enable(); |
Shannon Zhao | b02386e | 2016-02-26 19:29:19 +0800 | [diff] [blame] | 605 | kvm_pmu_sync_hwstate(vcpu); |
Christoffer Dall | 4b4b451 | 2015-08-30 15:01:27 +0200 | [diff] [blame] | 606 | kvm_timer_sync_hwstate(vcpu); |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 607 | kvm_vgic_sync_hwstate(vcpu); |
Marc Zyngier | abdf584 | 2015-06-08 15:00:28 +0100 | [diff] [blame] | 608 | preempt_enable(); |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 609 | continue; |
| 610 | } |
| 611 | |
Alex Bennée | 56c7f5e | 2015-07-07 17:29:56 +0100 | [diff] [blame] | 612 | kvm_arm_setup_debug(vcpu); |
| 613 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 614 | /************************************************************** |
| 615 | * Enter the guest |
| 616 | */ |
| 617 | trace_kvm_entry(*vcpu_pc(vcpu)); |
Christian Borntraeger | ccf73aaf | 2015-04-30 13:43:31 +0200 | [diff] [blame] | 618 | __kvm_guest_enter(); |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 619 | vcpu->mode = IN_GUEST_MODE; |
| 620 | |
| 621 | ret = kvm_call_hyp(__kvm_vcpu_run, vcpu); |
| 622 | |
| 623 | vcpu->mode = OUTSIDE_GUEST_MODE; |
Amit Tomar | b19e689 | 2015-11-26 10:09:43 +0000 | [diff] [blame] | 624 | vcpu->stat.exits++; |
Christoffer Dall | 1b3d546 | 2015-05-28 19:49:10 +0100 | [diff] [blame] | 625 | /* |
| 626 | * Back from guest |
| 627 | *************************************************************/ |
| 628 | |
Alex Bennée | 56c7f5e | 2015-07-07 17:29:56 +0100 | [diff] [blame] | 629 | kvm_arm_clear_debug(vcpu); |
| 630 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 631 | /* |
| 632 | * We may have taken a host interrupt in HYP mode (ie |
| 633 | * while executing the guest). This interrupt is still |
| 634 | * pending, as we haven't serviced it yet! |
| 635 | * |
| 636 | * We're now back in SVC mode, with interrupts |
| 637 | * disabled. Enabling the interrupts now will have |
| 638 | * the effect of taking the interrupt again, in SVC |
| 639 | * mode this time. |
| 640 | */ |
| 641 | local_irq_enable(); |
| 642 | |
| 643 | /* |
Christoffer Dall | 1b3d546 | 2015-05-28 19:49:10 +0100 | [diff] [blame] | 644 | * We do local_irq_enable() before calling kvm_guest_exit() so |
| 645 | * that if a timer interrupt hits while running the guest we |
| 646 | * account that tick as being spent in the guest. We enable |
| 647 | * preemption after calling kvm_guest_exit() so that if we get |
| 648 | * preempted we make sure ticks after that is not counted as |
| 649 | * guest time. |
| 650 | */ |
| 651 | kvm_guest_exit(); |
Christoffer Dall | b5905dc | 2015-08-30 15:55:22 +0200 | [diff] [blame] | 652 | trace_kvm_exit(ret, kvm_vcpu_trap_get_class(vcpu), *vcpu_pc(vcpu)); |
Christoffer Dall | 1b3d546 | 2015-05-28 19:49:10 +0100 | [diff] [blame] | 653 | |
Christoffer Dall | 4b4b451 | 2015-08-30 15:01:27 +0200 | [diff] [blame] | 654 | /* |
Shannon Zhao | b02386e | 2016-02-26 19:29:19 +0800 | [diff] [blame] | 655 | * We must sync the PMU and timer state before the vgic state so |
| 656 | * that the vgic can properly sample the updated state of the |
Christoffer Dall | 4b4b451 | 2015-08-30 15:01:27 +0200 | [diff] [blame] | 657 | * interrupt line. |
| 658 | */ |
Shannon Zhao | b02386e | 2016-02-26 19:29:19 +0800 | [diff] [blame] | 659 | kvm_pmu_sync_hwstate(vcpu); |
Christoffer Dall | 4b4b451 | 2015-08-30 15:01:27 +0200 | [diff] [blame] | 660 | kvm_timer_sync_hwstate(vcpu); |
| 661 | |
Marc Zyngier | 1a89dd9 | 2013-01-21 19:36:12 -0500 | [diff] [blame] | 662 | kvm_vgic_sync_hwstate(vcpu); |
Marc Zyngier | abdf584 | 2015-06-08 15:00:28 +0100 | [diff] [blame] | 663 | |
| 664 | preempt_enable(); |
| 665 | |
Christoffer Dall | f7ed45b | 2013-01-20 18:47:42 -0500 | [diff] [blame] | 666 | ret = handle_exit(vcpu, run, ret); |
| 667 | } |
| 668 | |
| 669 | if (vcpu->sigset_active) |
| 670 | sigprocmask(SIG_SETMASK, &sigsaved, NULL); |
| 671 | return ret; |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 672 | } |
| 673 | |
Christoffer Dall | 86ce8535 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 674 | static int vcpu_interrupt_line(struct kvm_vcpu *vcpu, int number, bool level) |
| 675 | { |
| 676 | int bit_index; |
| 677 | bool set; |
| 678 | unsigned long *ptr; |
| 679 | |
| 680 | if (number == KVM_ARM_IRQ_CPU_IRQ) |
| 681 | bit_index = __ffs(HCR_VI); |
| 682 | else /* KVM_ARM_IRQ_CPU_FIQ */ |
| 683 | bit_index = __ffs(HCR_VF); |
| 684 | |
| 685 | ptr = (unsigned long *)&vcpu->arch.irq_lines; |
| 686 | if (level) |
| 687 | set = test_and_set_bit(bit_index, ptr); |
| 688 | else |
| 689 | set = test_and_clear_bit(bit_index, ptr); |
| 690 | |
| 691 | /* |
| 692 | * If we didn't change anything, no need to wake up or kick other CPUs |
| 693 | */ |
| 694 | if (set == level) |
| 695 | return 0; |
| 696 | |
| 697 | /* |
| 698 | * The vcpu irq_lines field was updated, wake up sleeping VCPUs and |
| 699 | * trigger a world-switch round on the running physical CPU to set the |
| 700 | * virtual IRQ/FIQ fields in the HCR appropriately. |
| 701 | */ |
| 702 | kvm_vcpu_kick(vcpu); |
| 703 | |
| 704 | return 0; |
| 705 | } |
| 706 | |
Alexander Graf | 79558f1 | 2013-04-16 19:21:41 +0200 | [diff] [blame] | 707 | int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level, |
| 708 | bool line_status) |
Christoffer Dall | 86ce8535 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 709 | { |
| 710 | u32 irq = irq_level->irq; |
| 711 | unsigned int irq_type, vcpu_idx, irq_num; |
| 712 | int nrcpus = atomic_read(&kvm->online_vcpus); |
| 713 | struct kvm_vcpu *vcpu = NULL; |
| 714 | bool level = irq_level->level; |
| 715 | |
| 716 | irq_type = (irq >> KVM_ARM_IRQ_TYPE_SHIFT) & KVM_ARM_IRQ_TYPE_MASK; |
| 717 | vcpu_idx = (irq >> KVM_ARM_IRQ_VCPU_SHIFT) & KVM_ARM_IRQ_VCPU_MASK; |
| 718 | irq_num = (irq >> KVM_ARM_IRQ_NUM_SHIFT) & KVM_ARM_IRQ_NUM_MASK; |
| 719 | |
| 720 | trace_kvm_irq_line(irq_type, vcpu_idx, irq_num, irq_level->level); |
| 721 | |
Marc Zyngier | 5863c2c | 2013-01-21 19:36:15 -0500 | [diff] [blame] | 722 | switch (irq_type) { |
| 723 | case KVM_ARM_IRQ_TYPE_CPU: |
| 724 | if (irqchip_in_kernel(kvm)) |
| 725 | return -ENXIO; |
Christoffer Dall | 86ce8535 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 726 | |
Marc Zyngier | 5863c2c | 2013-01-21 19:36:15 -0500 | [diff] [blame] | 727 | if (vcpu_idx >= nrcpus) |
| 728 | return -EINVAL; |
Christoffer Dall | 86ce8535 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 729 | |
Marc Zyngier | 5863c2c | 2013-01-21 19:36:15 -0500 | [diff] [blame] | 730 | vcpu = kvm_get_vcpu(kvm, vcpu_idx); |
| 731 | if (!vcpu) |
| 732 | return -EINVAL; |
Christoffer Dall | 86ce8535 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 733 | |
Marc Zyngier | 5863c2c | 2013-01-21 19:36:15 -0500 | [diff] [blame] | 734 | if (irq_num > KVM_ARM_IRQ_CPU_FIQ) |
| 735 | return -EINVAL; |
Christoffer Dall | 86ce8535 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 736 | |
Marc Zyngier | 5863c2c | 2013-01-21 19:36:15 -0500 | [diff] [blame] | 737 | return vcpu_interrupt_line(vcpu, irq_num, level); |
| 738 | case KVM_ARM_IRQ_TYPE_PPI: |
| 739 | if (!irqchip_in_kernel(kvm)) |
| 740 | return -ENXIO; |
| 741 | |
| 742 | if (vcpu_idx >= nrcpus) |
| 743 | return -EINVAL; |
| 744 | |
| 745 | vcpu = kvm_get_vcpu(kvm, vcpu_idx); |
| 746 | if (!vcpu) |
| 747 | return -EINVAL; |
| 748 | |
| 749 | if (irq_num < VGIC_NR_SGIS || irq_num >= VGIC_NR_PRIVATE_IRQS) |
| 750 | return -EINVAL; |
| 751 | |
| 752 | return kvm_vgic_inject_irq(kvm, vcpu->vcpu_id, irq_num, level); |
| 753 | case KVM_ARM_IRQ_TYPE_SPI: |
| 754 | if (!irqchip_in_kernel(kvm)) |
| 755 | return -ENXIO; |
| 756 | |
Andre Przywara | fd1d0dd | 2015-04-10 16:17:59 +0100 | [diff] [blame] | 757 | if (irq_num < VGIC_NR_PRIVATE_IRQS) |
Marc Zyngier | 5863c2c | 2013-01-21 19:36:15 -0500 | [diff] [blame] | 758 | return -EINVAL; |
| 759 | |
| 760 | return kvm_vgic_inject_irq(kvm, 0, irq_num, level); |
| 761 | } |
| 762 | |
| 763 | return -EINVAL; |
Christoffer Dall | 86ce8535 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 764 | } |
| 765 | |
Christoffer Dall | f7fa034d | 2014-10-16 16:40:53 +0200 | [diff] [blame] | 766 | static int kvm_vcpu_set_target(struct kvm_vcpu *vcpu, |
| 767 | const struct kvm_vcpu_init *init) |
| 768 | { |
| 769 | unsigned int i; |
| 770 | int phys_target = kvm_target_cpu(); |
| 771 | |
| 772 | if (init->target != phys_target) |
| 773 | return -EINVAL; |
| 774 | |
| 775 | /* |
| 776 | * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must |
| 777 | * use the same target. |
| 778 | */ |
| 779 | if (vcpu->arch.target != -1 && vcpu->arch.target != init->target) |
| 780 | return -EINVAL; |
| 781 | |
| 782 | /* -ENOENT for unknown features, -EINVAL for invalid combinations. */ |
| 783 | for (i = 0; i < sizeof(init->features) * 8; i++) { |
| 784 | bool set = (init->features[i / 32] & (1 << (i % 32))); |
| 785 | |
| 786 | if (set && i >= KVM_VCPU_MAX_FEATURES) |
| 787 | return -ENOENT; |
| 788 | |
| 789 | /* |
| 790 | * Secondary and subsequent calls to KVM_ARM_VCPU_INIT must |
| 791 | * use the same feature set. |
| 792 | */ |
| 793 | if (vcpu->arch.target != -1 && i < KVM_VCPU_MAX_FEATURES && |
| 794 | test_bit(i, vcpu->arch.features) != set) |
| 795 | return -EINVAL; |
| 796 | |
| 797 | if (set) |
| 798 | set_bit(i, vcpu->arch.features); |
| 799 | } |
| 800 | |
| 801 | vcpu->arch.target = phys_target; |
| 802 | |
| 803 | /* Now we know what it is, we can reset it. */ |
| 804 | return kvm_reset_vcpu(vcpu); |
| 805 | } |
| 806 | |
| 807 | |
Christoffer Dall | 478a823 | 2013-11-19 17:43:19 -0800 | [diff] [blame] | 808 | static int kvm_arch_vcpu_ioctl_vcpu_init(struct kvm_vcpu *vcpu, |
| 809 | struct kvm_vcpu_init *init) |
| 810 | { |
| 811 | int ret; |
| 812 | |
| 813 | ret = kvm_vcpu_set_target(vcpu, init); |
| 814 | if (ret) |
| 815 | return ret; |
| 816 | |
Christoffer Dall | 957db10 | 2014-11-27 10:35:03 +0100 | [diff] [blame] | 817 | /* |
| 818 | * Ensure a rebooted VM will fault in RAM pages and detect if the |
| 819 | * guest MMU is turned off and flush the caches as needed. |
| 820 | */ |
| 821 | if (vcpu->arch.has_run_once) |
| 822 | stage2_unmap_vm(vcpu->kvm); |
| 823 | |
Christoffer Dall | b856a59 | 2014-10-16 17:21:16 +0200 | [diff] [blame] | 824 | vcpu_reset_hcr(vcpu); |
| 825 | |
Christoffer Dall | 478a823 | 2013-11-19 17:43:19 -0800 | [diff] [blame] | 826 | /* |
Eric Auger | 3781528 | 2015-09-25 23:41:14 +0200 | [diff] [blame] | 827 | * Handle the "start in power-off" case. |
Christoffer Dall | 478a823 | 2013-11-19 17:43:19 -0800 | [diff] [blame] | 828 | */ |
Christoffer Dall | 03f1d4c | 2014-12-02 15:27:51 +0100 | [diff] [blame] | 829 | if (test_bit(KVM_ARM_VCPU_POWER_OFF, vcpu->arch.features)) |
Eric Auger | 3781528 | 2015-09-25 23:41:14 +0200 | [diff] [blame] | 830 | vcpu->arch.power_off = true; |
Christoffer Dall | 3ad8b3d | 2014-10-16 16:14:43 +0200 | [diff] [blame] | 831 | else |
Eric Auger | 3781528 | 2015-09-25 23:41:14 +0200 | [diff] [blame] | 832 | vcpu->arch.power_off = false; |
Christoffer Dall | 478a823 | 2013-11-19 17:43:19 -0800 | [diff] [blame] | 833 | |
| 834 | return 0; |
| 835 | } |
| 836 | |
Shannon Zhao | f577f6c | 2016-01-11 20:56:17 +0800 | [diff] [blame] | 837 | static int kvm_arm_vcpu_set_attr(struct kvm_vcpu *vcpu, |
| 838 | struct kvm_device_attr *attr) |
| 839 | { |
| 840 | int ret = -ENXIO; |
| 841 | |
| 842 | switch (attr->group) { |
| 843 | default: |
Shannon Zhao | bb0c70b | 2016-01-11 21:35:32 +0800 | [diff] [blame] | 844 | ret = kvm_arm_vcpu_arch_set_attr(vcpu, attr); |
Shannon Zhao | f577f6c | 2016-01-11 20:56:17 +0800 | [diff] [blame] | 845 | break; |
| 846 | } |
| 847 | |
| 848 | return ret; |
| 849 | } |
| 850 | |
| 851 | static int kvm_arm_vcpu_get_attr(struct kvm_vcpu *vcpu, |
| 852 | struct kvm_device_attr *attr) |
| 853 | { |
| 854 | int ret = -ENXIO; |
| 855 | |
| 856 | switch (attr->group) { |
| 857 | default: |
Shannon Zhao | bb0c70b | 2016-01-11 21:35:32 +0800 | [diff] [blame] | 858 | ret = kvm_arm_vcpu_arch_get_attr(vcpu, attr); |
Shannon Zhao | f577f6c | 2016-01-11 20:56:17 +0800 | [diff] [blame] | 859 | break; |
| 860 | } |
| 861 | |
| 862 | return ret; |
| 863 | } |
| 864 | |
| 865 | static int kvm_arm_vcpu_has_attr(struct kvm_vcpu *vcpu, |
| 866 | struct kvm_device_attr *attr) |
| 867 | { |
| 868 | int ret = -ENXIO; |
| 869 | |
| 870 | switch (attr->group) { |
| 871 | default: |
Shannon Zhao | bb0c70b | 2016-01-11 21:35:32 +0800 | [diff] [blame] | 872 | ret = kvm_arm_vcpu_arch_has_attr(vcpu, attr); |
Shannon Zhao | f577f6c | 2016-01-11 20:56:17 +0800 | [diff] [blame] | 873 | break; |
| 874 | } |
| 875 | |
| 876 | return ret; |
| 877 | } |
| 878 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 879 | long kvm_arch_vcpu_ioctl(struct file *filp, |
| 880 | unsigned int ioctl, unsigned long arg) |
| 881 | { |
| 882 | struct kvm_vcpu *vcpu = filp->private_data; |
| 883 | void __user *argp = (void __user *)arg; |
Shannon Zhao | f577f6c | 2016-01-11 20:56:17 +0800 | [diff] [blame] | 884 | struct kvm_device_attr attr; |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 885 | |
| 886 | switch (ioctl) { |
| 887 | case KVM_ARM_VCPU_INIT: { |
| 888 | struct kvm_vcpu_init init; |
| 889 | |
| 890 | if (copy_from_user(&init, argp, sizeof(init))) |
| 891 | return -EFAULT; |
| 892 | |
Christoffer Dall | 478a823 | 2013-11-19 17:43:19 -0800 | [diff] [blame] | 893 | return kvm_arch_vcpu_ioctl_vcpu_init(vcpu, &init); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 894 | } |
| 895 | case KVM_SET_ONE_REG: |
| 896 | case KVM_GET_ONE_REG: { |
| 897 | struct kvm_one_reg reg; |
Andre Przywara | e8180dc | 2013-05-09 00:28:06 +0200 | [diff] [blame] | 898 | |
| 899 | if (unlikely(!kvm_vcpu_initialized(vcpu))) |
| 900 | return -ENOEXEC; |
| 901 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 902 | if (copy_from_user(®, argp, sizeof(reg))) |
| 903 | return -EFAULT; |
| 904 | if (ioctl == KVM_SET_ONE_REG) |
| 905 | return kvm_arm_set_reg(vcpu, ®); |
| 906 | else |
| 907 | return kvm_arm_get_reg(vcpu, ®); |
| 908 | } |
| 909 | case KVM_GET_REG_LIST: { |
| 910 | struct kvm_reg_list __user *user_list = argp; |
| 911 | struct kvm_reg_list reg_list; |
| 912 | unsigned n; |
| 913 | |
Andre Przywara | e8180dc | 2013-05-09 00:28:06 +0200 | [diff] [blame] | 914 | if (unlikely(!kvm_vcpu_initialized(vcpu))) |
| 915 | return -ENOEXEC; |
| 916 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 917 | if (copy_from_user(®_list, user_list, sizeof(reg_list))) |
| 918 | return -EFAULT; |
| 919 | n = reg_list.n; |
| 920 | reg_list.n = kvm_arm_num_regs(vcpu); |
| 921 | if (copy_to_user(user_list, ®_list, sizeof(reg_list))) |
| 922 | return -EFAULT; |
| 923 | if (n < reg_list.n) |
| 924 | return -E2BIG; |
| 925 | return kvm_arm_copy_reg_indices(vcpu, user_list->reg); |
| 926 | } |
Shannon Zhao | f577f6c | 2016-01-11 20:56:17 +0800 | [diff] [blame] | 927 | case KVM_SET_DEVICE_ATTR: { |
| 928 | if (copy_from_user(&attr, argp, sizeof(attr))) |
| 929 | return -EFAULT; |
| 930 | return kvm_arm_vcpu_set_attr(vcpu, &attr); |
| 931 | } |
| 932 | case KVM_GET_DEVICE_ATTR: { |
| 933 | if (copy_from_user(&attr, argp, sizeof(attr))) |
| 934 | return -EFAULT; |
| 935 | return kvm_arm_vcpu_get_attr(vcpu, &attr); |
| 936 | } |
| 937 | case KVM_HAS_DEVICE_ATTR: { |
| 938 | if (copy_from_user(&attr, argp, sizeof(attr))) |
| 939 | return -EFAULT; |
| 940 | return kvm_arm_vcpu_has_attr(vcpu, &attr); |
| 941 | } |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 942 | default: |
| 943 | return -EINVAL; |
| 944 | } |
| 945 | } |
| 946 | |
Mario Smarduch | 53c810c | 2015-01-15 15:58:57 -0800 | [diff] [blame] | 947 | /** |
| 948 | * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot |
| 949 | * @kvm: kvm instance |
| 950 | * @log: slot id and address to which we copy the log |
| 951 | * |
| 952 | * Steps 1-4 below provide general overview of dirty page logging. See |
| 953 | * kvm_get_dirty_log_protect() function description for additional details. |
| 954 | * |
| 955 | * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we |
| 956 | * always flush the TLB (step 4) even if previous step failed and the dirty |
| 957 | * bitmap may be corrupt. Regardless of previous outcome the KVM logging API |
| 958 | * does not preclude user space subsequent dirty log read. Flushing TLB ensures |
| 959 | * writes will be marked dirty for next log read. |
| 960 | * |
| 961 | * 1. Take a snapshot of the bit and clear it if needed. |
| 962 | * 2. Write protect the corresponding page. |
| 963 | * 3. Copy the snapshot to the userspace. |
| 964 | * 4. Flush TLB's if needed. |
| 965 | */ |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 966 | int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log) |
| 967 | { |
Mario Smarduch | 53c810c | 2015-01-15 15:58:57 -0800 | [diff] [blame] | 968 | bool is_dirty = false; |
| 969 | int r; |
| 970 | |
| 971 | mutex_lock(&kvm->slots_lock); |
| 972 | |
| 973 | r = kvm_get_dirty_log_protect(kvm, log, &is_dirty); |
| 974 | |
| 975 | if (is_dirty) |
| 976 | kvm_flush_remote_tlbs(kvm); |
| 977 | |
| 978 | mutex_unlock(&kvm->slots_lock); |
| 979 | return r; |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 980 | } |
| 981 | |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 982 | static int kvm_vm_ioctl_set_device_addr(struct kvm *kvm, |
| 983 | struct kvm_arm_device_addr *dev_addr) |
| 984 | { |
Christoffer Dall | 330690c | 2013-01-21 19:36:13 -0500 | [diff] [blame] | 985 | unsigned long dev_id, type; |
| 986 | |
| 987 | dev_id = (dev_addr->id & KVM_ARM_DEVICE_ID_MASK) >> |
| 988 | KVM_ARM_DEVICE_ID_SHIFT; |
| 989 | type = (dev_addr->id & KVM_ARM_DEVICE_TYPE_MASK) >> |
| 990 | KVM_ARM_DEVICE_TYPE_SHIFT; |
| 991 | |
| 992 | switch (dev_id) { |
| 993 | case KVM_ARM_DEVICE_VGIC_V2: |
Pavel Fedin | c7da6fa | 2015-12-18 14:38:43 +0300 | [diff] [blame] | 994 | if (!vgic_present) |
| 995 | return -ENXIO; |
Christoffer Dall | ce01e4e | 2013-09-23 14:55:56 -0700 | [diff] [blame] | 996 | return kvm_vgic_addr(kvm, type, &dev_addr->addr, true); |
Christoffer Dall | 330690c | 2013-01-21 19:36:13 -0500 | [diff] [blame] | 997 | default: |
| 998 | return -ENODEV; |
| 999 | } |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 1000 | } |
| 1001 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1002 | long kvm_arch_vm_ioctl(struct file *filp, |
| 1003 | unsigned int ioctl, unsigned long arg) |
| 1004 | { |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 1005 | struct kvm *kvm = filp->private_data; |
| 1006 | void __user *argp = (void __user *)arg; |
| 1007 | |
| 1008 | switch (ioctl) { |
Marc Zyngier | 5863c2c | 2013-01-21 19:36:15 -0500 | [diff] [blame] | 1009 | case KVM_CREATE_IRQCHIP: { |
Pavel Fedin | c7da6fa | 2015-12-18 14:38:43 +0300 | [diff] [blame] | 1010 | if (!vgic_present) |
| 1011 | return -ENXIO; |
Paolo Bonzini | 69ff5c6 | 2015-03-05 12:26:06 +0100 | [diff] [blame] | 1012 | return kvm_vgic_create(kvm, KVM_DEV_TYPE_ARM_VGIC_V2); |
Marc Zyngier | 5863c2c | 2013-01-21 19:36:15 -0500 | [diff] [blame] | 1013 | } |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 1014 | case KVM_ARM_SET_DEVICE_ADDR: { |
| 1015 | struct kvm_arm_device_addr dev_addr; |
| 1016 | |
| 1017 | if (copy_from_user(&dev_addr, argp, sizeof(dev_addr))) |
| 1018 | return -EFAULT; |
| 1019 | return kvm_vm_ioctl_set_device_addr(kvm, &dev_addr); |
| 1020 | } |
Anup Patel | 42c4e0c | 2013-09-30 14:20:07 +0530 | [diff] [blame] | 1021 | case KVM_ARM_PREFERRED_TARGET: { |
| 1022 | int err; |
| 1023 | struct kvm_vcpu_init init; |
| 1024 | |
| 1025 | err = kvm_vcpu_preferred_target(&init); |
| 1026 | if (err) |
| 1027 | return err; |
| 1028 | |
| 1029 | if (copy_to_user(argp, &init, sizeof(init))) |
| 1030 | return -EFAULT; |
| 1031 | |
| 1032 | return 0; |
| 1033 | } |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 1034 | default: |
| 1035 | return -EINVAL; |
| 1036 | } |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1037 | } |
| 1038 | |
Marc Zyngier | d157f4a | 2013-04-12 19:12:07 +0100 | [diff] [blame] | 1039 | static void cpu_init_hyp_mode(void *dummy) |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1040 | { |
Marc Zyngier | dac288f | 2013-05-14 12:11:37 +0100 | [diff] [blame] | 1041 | phys_addr_t boot_pgd_ptr; |
| 1042 | phys_addr_t pgd_ptr; |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1043 | unsigned long hyp_stack_ptr; |
| 1044 | unsigned long stack_page; |
| 1045 | unsigned long vector_ptr; |
| 1046 | |
| 1047 | /* Switch from the HYP stub to our own HYP init vector */ |
Marc Zyngier | 5a677ce | 2013-04-12 19:12:06 +0100 | [diff] [blame] | 1048 | __hyp_set_vectors(kvm_get_idmap_vector()); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1049 | |
Marc Zyngier | dac288f | 2013-05-14 12:11:37 +0100 | [diff] [blame] | 1050 | boot_pgd_ptr = kvm_mmu_get_boot_httbr(); |
| 1051 | pgd_ptr = kvm_mmu_get_httbr(); |
Christoph Lameter | 1436c1a | 2013-10-21 13:17:08 +0100 | [diff] [blame] | 1052 | stack_page = __this_cpu_read(kvm_arm_hyp_stack_page); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1053 | hyp_stack_ptr = stack_page + PAGE_SIZE; |
Ard Biesheuvel | a0bf977 | 2016-02-16 13:52:39 +0100 | [diff] [blame] | 1054 | vector_ptr = (unsigned long)kvm_ksym_ref(__kvm_hyp_vector); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1055 | |
Marc Zyngier | 5a677ce | 2013-04-12 19:12:06 +0100 | [diff] [blame] | 1056 | __cpu_init_hyp_mode(boot_pgd_ptr, pgd_ptr, hyp_stack_ptr, vector_ptr); |
Marc Zyngier | 35a2491 | 2016-02-01 17:54:35 +0000 | [diff] [blame] | 1057 | __cpu_init_stage2(); |
Alex Bennée | 56c7f5e | 2015-07-07 17:29:56 +0100 | [diff] [blame] | 1058 | |
| 1059 | kvm_arm_init_debug(); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1060 | } |
| 1061 | |
James Morse | 5f5560b | 2016-03-30 18:33:04 +0100 | [diff] [blame] | 1062 | static void cpu_hyp_reinit(void) |
| 1063 | { |
| 1064 | if (is_kernel_in_hyp_mode()) { |
| 1065 | /* |
AKASHI Takahiro | 67f6919 | 2016-04-27 17:47:05 +0100 | [diff] [blame] | 1066 | * __cpu_init_stage2() is safe to call even if the PM |
James Morse | 5f5560b | 2016-03-30 18:33:04 +0100 | [diff] [blame] | 1067 | * event was cancelled before the CPU was reset. |
| 1068 | */ |
AKASHI Takahiro | 67f6919 | 2016-04-27 17:47:05 +0100 | [diff] [blame] | 1069 | __cpu_init_stage2(); |
James Morse | 5f5560b | 2016-03-30 18:33:04 +0100 | [diff] [blame] | 1070 | } else { |
| 1071 | if (__hyp_get_vectors() == hyp_default_vectors) |
| 1072 | cpu_init_hyp_mode(NULL); |
| 1073 | } |
| 1074 | } |
| 1075 | |
AKASHI Takahiro | 67f6919 | 2016-04-27 17:47:05 +0100 | [diff] [blame] | 1076 | static void cpu_hyp_reset(void) |
Marc Zyngier | d157f4a | 2013-04-12 19:12:07 +0100 | [diff] [blame] | 1077 | { |
AKASHI Takahiro | 67f6919 | 2016-04-27 17:47:05 +0100 | [diff] [blame] | 1078 | phys_addr_t boot_pgd_ptr; |
| 1079 | phys_addr_t phys_idmap_start; |
Marc Zyngier | d157f4a | 2013-04-12 19:12:07 +0100 | [diff] [blame] | 1080 | |
AKASHI Takahiro | 67f6919 | 2016-04-27 17:47:05 +0100 | [diff] [blame] | 1081 | if (!is_kernel_in_hyp_mode()) { |
| 1082 | boot_pgd_ptr = kvm_mmu_get_boot_httbr(); |
| 1083 | phys_idmap_start = kvm_get_idmap_start(); |
| 1084 | |
| 1085 | __cpu_reset_hyp_mode(boot_pgd_ptr, phys_idmap_start); |
| 1086 | } |
Marc Zyngier | d157f4a | 2013-04-12 19:12:07 +0100 | [diff] [blame] | 1087 | } |
| 1088 | |
AKASHI Takahiro | 67f6919 | 2016-04-27 17:47:05 +0100 | [diff] [blame] | 1089 | static void _kvm_arch_hardware_enable(void *discard) |
| 1090 | { |
| 1091 | if (!__this_cpu_read(kvm_arm_hardware_enabled)) { |
| 1092 | cpu_hyp_reinit(); |
| 1093 | __this_cpu_write(kvm_arm_hardware_enabled, 1); |
| 1094 | } |
| 1095 | } |
| 1096 | |
| 1097 | int kvm_arch_hardware_enable(void) |
| 1098 | { |
| 1099 | _kvm_arch_hardware_enable(NULL); |
| 1100 | return 0; |
| 1101 | } |
| 1102 | |
| 1103 | static void _kvm_arch_hardware_disable(void *discard) |
| 1104 | { |
| 1105 | if (__this_cpu_read(kvm_arm_hardware_enabled)) { |
| 1106 | cpu_hyp_reset(); |
| 1107 | __this_cpu_write(kvm_arm_hardware_enabled, 0); |
| 1108 | } |
| 1109 | } |
| 1110 | |
| 1111 | void kvm_arch_hardware_disable(void) |
| 1112 | { |
| 1113 | _kvm_arch_hardware_disable(NULL); |
| 1114 | } |
Marc Zyngier | d157f4a | 2013-04-12 19:12:07 +0100 | [diff] [blame] | 1115 | |
Lorenzo Pieralisi | 1fcf7ce | 2013-08-05 15:04:46 +0100 | [diff] [blame] | 1116 | #ifdef CONFIG_CPU_PM |
| 1117 | static int hyp_init_cpu_pm_notifier(struct notifier_block *self, |
| 1118 | unsigned long cmd, |
| 1119 | void *v) |
| 1120 | { |
AKASHI Takahiro | 67f6919 | 2016-04-27 17:47:05 +0100 | [diff] [blame] | 1121 | /* |
| 1122 | * kvm_arm_hardware_enabled is left with its old value over |
| 1123 | * PM_ENTER->PM_EXIT. It is used to indicate PM_EXIT should |
| 1124 | * re-enable hyp. |
| 1125 | */ |
| 1126 | switch (cmd) { |
| 1127 | case CPU_PM_ENTER: |
| 1128 | if (__this_cpu_read(kvm_arm_hardware_enabled)) |
| 1129 | /* |
| 1130 | * don't update kvm_arm_hardware_enabled here |
| 1131 | * so that the hardware will be re-enabled |
| 1132 | * when we resume. See below. |
| 1133 | */ |
| 1134 | cpu_hyp_reset(); |
Lorenzo Pieralisi | 1fcf7ce | 2013-08-05 15:04:46 +0100 | [diff] [blame] | 1135 | |
AKASHI Takahiro | 67f6919 | 2016-04-27 17:47:05 +0100 | [diff] [blame] | 1136 | return NOTIFY_OK; |
| 1137 | case CPU_PM_EXIT: |
| 1138 | if (__this_cpu_read(kvm_arm_hardware_enabled)) |
| 1139 | /* The hardware was enabled before suspend. */ |
| 1140 | cpu_hyp_reinit(); |
| 1141 | |
| 1142 | return NOTIFY_OK; |
| 1143 | |
| 1144 | default: |
| 1145 | return NOTIFY_DONE; |
| 1146 | } |
Lorenzo Pieralisi | 1fcf7ce | 2013-08-05 15:04:46 +0100 | [diff] [blame] | 1147 | } |
| 1148 | |
| 1149 | static struct notifier_block hyp_init_cpu_pm_nb = { |
| 1150 | .notifier_call = hyp_init_cpu_pm_notifier, |
| 1151 | }; |
| 1152 | |
| 1153 | static void __init hyp_cpu_pm_init(void) |
| 1154 | { |
| 1155 | cpu_pm_register_notifier(&hyp_init_cpu_pm_nb); |
| 1156 | } |
Sudeep Holla | 06a71a2 | 2016-04-04 14:46:51 +0100 | [diff] [blame] | 1157 | static void __init hyp_cpu_pm_exit(void) |
| 1158 | { |
| 1159 | cpu_pm_unregister_notifier(&hyp_init_cpu_pm_nb); |
| 1160 | } |
Lorenzo Pieralisi | 1fcf7ce | 2013-08-05 15:04:46 +0100 | [diff] [blame] | 1161 | #else |
| 1162 | static inline void hyp_cpu_pm_init(void) |
| 1163 | { |
| 1164 | } |
Sudeep Holla | 06a71a2 | 2016-04-04 14:46:51 +0100 | [diff] [blame] | 1165 | static inline void hyp_cpu_pm_exit(void) |
| 1166 | { |
| 1167 | } |
Lorenzo Pieralisi | 1fcf7ce | 2013-08-05 15:04:46 +0100 | [diff] [blame] | 1168 | #endif |
| 1169 | |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1170 | static void teardown_common_resources(void) |
| 1171 | { |
| 1172 | free_percpu(kvm_host_cpu_state); |
| 1173 | } |
| 1174 | |
| 1175 | static int init_common_resources(void) |
| 1176 | { |
| 1177 | kvm_host_cpu_state = alloc_percpu(kvm_cpu_context_t); |
| 1178 | if (!kvm_host_cpu_state) { |
| 1179 | kvm_err("Cannot allocate host CPU state\n"); |
| 1180 | return -ENOMEM; |
| 1181 | } |
| 1182 | |
| 1183 | return 0; |
| 1184 | } |
| 1185 | |
| 1186 | static int init_subsystems(void) |
| 1187 | { |
AKASHI Takahiro | 67f6919 | 2016-04-27 17:47:05 +0100 | [diff] [blame] | 1188 | int err = 0; |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1189 | |
| 1190 | /* |
AKASHI Takahiro | 67f6919 | 2016-04-27 17:47:05 +0100 | [diff] [blame] | 1191 | * Enable hardware so that subsystem initialisation can access EL2. |
James Morse | 5f5560b | 2016-03-30 18:33:04 +0100 | [diff] [blame] | 1192 | */ |
AKASHI Takahiro | 67f6919 | 2016-04-27 17:47:05 +0100 | [diff] [blame] | 1193 | on_each_cpu(_kvm_arch_hardware_enable, NULL, 1); |
James Morse | 5f5560b | 2016-03-30 18:33:04 +0100 | [diff] [blame] | 1194 | |
| 1195 | /* |
| 1196 | * Register CPU lower-power notifier |
| 1197 | */ |
| 1198 | hyp_cpu_pm_init(); |
| 1199 | |
| 1200 | /* |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1201 | * Init HYP view of VGIC |
| 1202 | */ |
| 1203 | err = kvm_vgic_hyp_init(); |
| 1204 | switch (err) { |
| 1205 | case 0: |
| 1206 | vgic_present = true; |
| 1207 | break; |
| 1208 | case -ENODEV: |
| 1209 | case -ENXIO: |
| 1210 | vgic_present = false; |
AKASHI Takahiro | 67f6919 | 2016-04-27 17:47:05 +0100 | [diff] [blame] | 1211 | err = 0; |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1212 | break; |
| 1213 | default: |
AKASHI Takahiro | 67f6919 | 2016-04-27 17:47:05 +0100 | [diff] [blame] | 1214 | goto out; |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1215 | } |
| 1216 | |
| 1217 | /* |
| 1218 | * Init HYP architected timer support |
| 1219 | */ |
| 1220 | err = kvm_timer_hyp_init(); |
| 1221 | if (err) |
AKASHI Takahiro | 67f6919 | 2016-04-27 17:47:05 +0100 | [diff] [blame] | 1222 | goto out; |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1223 | |
| 1224 | kvm_perf_init(); |
| 1225 | kvm_coproc_table_init(); |
| 1226 | |
AKASHI Takahiro | 67f6919 | 2016-04-27 17:47:05 +0100 | [diff] [blame] | 1227 | out: |
| 1228 | on_each_cpu(_kvm_arch_hardware_disable, NULL, 1); |
| 1229 | |
| 1230 | return err; |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1231 | } |
| 1232 | |
| 1233 | static void teardown_hyp_mode(void) |
| 1234 | { |
| 1235 | int cpu; |
| 1236 | |
| 1237 | if (is_kernel_in_hyp_mode()) |
| 1238 | return; |
| 1239 | |
| 1240 | free_hyp_pgds(); |
| 1241 | for_each_possible_cpu(cpu) |
| 1242 | free_page(per_cpu(kvm_arm_hyp_stack_page, cpu)); |
Sudeep Holla | 06a71a2 | 2016-04-04 14:46:51 +0100 | [diff] [blame] | 1243 | hyp_cpu_pm_exit(); |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1244 | } |
| 1245 | |
| 1246 | static int init_vhe_mode(void) |
| 1247 | { |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1248 | /* set size of VMID supported by CPU */ |
| 1249 | kvm_vmid_bits = kvm_get_vmid_bits(); |
| 1250 | kvm_info("%d-bit VMID\n", kvm_vmid_bits); |
| 1251 | |
| 1252 | kvm_info("VHE mode initialized successfully\n"); |
| 1253 | return 0; |
| 1254 | } |
| 1255 | |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1256 | /** |
| 1257 | * Inits Hyp-mode on all online CPUs |
| 1258 | */ |
| 1259 | static int init_hyp_mode(void) |
| 1260 | { |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1261 | int cpu; |
| 1262 | int err = 0; |
| 1263 | |
| 1264 | /* |
| 1265 | * Allocate Hyp PGD and setup Hyp identity mapping |
| 1266 | */ |
| 1267 | err = kvm_mmu_init(); |
| 1268 | if (err) |
| 1269 | goto out_err; |
| 1270 | |
| 1271 | /* |
| 1272 | * It is probably enough to obtain the default on one |
| 1273 | * CPU. It's unlikely to be different on the others. |
| 1274 | */ |
| 1275 | hyp_default_vectors = __hyp_get_vectors(); |
| 1276 | |
| 1277 | /* |
| 1278 | * Allocate stack pages for Hypervisor-mode |
| 1279 | */ |
| 1280 | for_each_possible_cpu(cpu) { |
| 1281 | unsigned long stack_page; |
| 1282 | |
| 1283 | stack_page = __get_free_page(GFP_KERNEL); |
| 1284 | if (!stack_page) { |
| 1285 | err = -ENOMEM; |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1286 | goto out_err; |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1287 | } |
| 1288 | |
| 1289 | per_cpu(kvm_arm_hyp_stack_page, cpu) = stack_page; |
| 1290 | } |
| 1291 | |
| 1292 | /* |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1293 | * Map the Hyp-code called directly from the host |
| 1294 | */ |
Linus Torvalds | 588ab3f | 2016-03-17 20:03:47 -0700 | [diff] [blame] | 1295 | err = create_hyp_mappings(kvm_ksym_ref(__hyp_text_start), |
| 1296 | kvm_ksym_ref(__hyp_text_end)); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1297 | if (err) { |
| 1298 | kvm_err("Cannot map world-switch code\n"); |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1299 | goto out_err; |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1300 | } |
| 1301 | |
Ard Biesheuvel | a0bf977 | 2016-02-16 13:52:39 +0100 | [diff] [blame] | 1302 | err = create_hyp_mappings(kvm_ksym_ref(__start_rodata), |
| 1303 | kvm_ksym_ref(__end_rodata)); |
Marc Zyngier | 910917b | 2015-10-27 12:18:48 +0000 | [diff] [blame] | 1304 | if (err) { |
| 1305 | kvm_err("Cannot map rodata section\n"); |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1306 | goto out_err; |
Marc Zyngier | 910917b | 2015-10-27 12:18:48 +0000 | [diff] [blame] | 1307 | } |
| 1308 | |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1309 | /* |
| 1310 | * Map the Hyp stack pages |
| 1311 | */ |
| 1312 | for_each_possible_cpu(cpu) { |
| 1313 | char *stack_page = (char *)per_cpu(kvm_arm_hyp_stack_page, cpu); |
| 1314 | err = create_hyp_mappings(stack_page, stack_page + PAGE_SIZE); |
| 1315 | |
| 1316 | if (err) { |
| 1317 | kvm_err("Cannot map hyp stack\n"); |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1318 | goto out_err; |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1319 | } |
| 1320 | } |
| 1321 | |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1322 | for_each_possible_cpu(cpu) { |
Marc Zyngier | 3de50da | 2013-04-08 16:47:19 +0100 | [diff] [blame] | 1323 | kvm_cpu_context_t *cpu_ctxt; |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1324 | |
Marc Zyngier | 3de50da | 2013-04-08 16:47:19 +0100 | [diff] [blame] | 1325 | cpu_ctxt = per_cpu_ptr(kvm_host_cpu_state, cpu); |
| 1326 | err = create_hyp_mappings(cpu_ctxt, cpu_ctxt + 1); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1327 | |
| 1328 | if (err) { |
Marc Zyngier | 3de50da | 2013-04-08 16:47:19 +0100 | [diff] [blame] | 1329 | kvm_err("Cannot map host CPU state: %d\n", err); |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1330 | goto out_err; |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1331 | } |
| 1332 | } |
| 1333 | |
Marc Zyngier | d157f4a | 2013-04-12 19:12:07 +0100 | [diff] [blame] | 1334 | #ifndef CONFIG_HOTPLUG_CPU |
| 1335 | free_boot_hyp_pgd(); |
| 1336 | #endif |
| 1337 | |
Vladimir Murzin | 20475f7 | 2015-11-16 11:28:18 +0000 | [diff] [blame] | 1338 | /* set size of VMID supported by CPU */ |
| 1339 | kvm_vmid_bits = kvm_get_vmid_bits(); |
| 1340 | kvm_info("%d-bit VMID\n", kvm_vmid_bits); |
| 1341 | |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1342 | kvm_info("Hyp mode initialized successfully\n"); |
Marc Zyngier | 210552c | 2013-03-05 03:18:00 +0000 | [diff] [blame] | 1343 | |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1344 | return 0; |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1345 | |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1346 | out_err: |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1347 | teardown_hyp_mode(); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1348 | kvm_err("error initializing Hyp mode: %d\n", err); |
| 1349 | return err; |
| 1350 | } |
| 1351 | |
Andre Przywara | d4e071c | 2013-04-17 12:52:01 +0200 | [diff] [blame] | 1352 | static void check_kvm_target_cpu(void *ret) |
| 1353 | { |
| 1354 | *(int *)ret = kvm_target_cpu(); |
| 1355 | } |
| 1356 | |
Andre Przywara | 4429fc6 | 2014-06-02 15:37:13 +0200 | [diff] [blame] | 1357 | struct kvm_vcpu *kvm_mpidr_to_vcpu(struct kvm *kvm, unsigned long mpidr) |
| 1358 | { |
| 1359 | struct kvm_vcpu *vcpu; |
| 1360 | int i; |
| 1361 | |
| 1362 | mpidr &= MPIDR_HWID_BITMASK; |
| 1363 | kvm_for_each_vcpu(i, vcpu, kvm) { |
| 1364 | if (mpidr == kvm_vcpu_get_mpidr_aff(vcpu)) |
| 1365 | return vcpu; |
| 1366 | } |
| 1367 | return NULL; |
| 1368 | } |
| 1369 | |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1370 | /** |
| 1371 | * Initialize Hyp-mode and memory mappings on all CPUs. |
| 1372 | */ |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1373 | int kvm_arch_init(void *opaque) |
| 1374 | { |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1375 | int err; |
Andre Przywara | d4e071c | 2013-04-17 12:52:01 +0200 | [diff] [blame] | 1376 | int ret, cpu; |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1377 | |
| 1378 | if (!is_hyp_mode_available()) { |
| 1379 | kvm_err("HYP mode not available\n"); |
| 1380 | return -ENODEV; |
| 1381 | } |
| 1382 | |
Andre Przywara | d4e071c | 2013-04-17 12:52:01 +0200 | [diff] [blame] | 1383 | for_each_online_cpu(cpu) { |
| 1384 | smp_call_function_single(cpu, check_kvm_target_cpu, &ret, 1); |
| 1385 | if (ret < 0) { |
| 1386 | kvm_err("Error, CPU %d not supported!\n", cpu); |
| 1387 | return -ENODEV; |
| 1388 | } |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1389 | } |
| 1390 | |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1391 | err = init_common_resources(); |
| 1392 | if (err) |
| 1393 | return err; |
Srivatsa S. Bhat | 8146875 | 2014-03-18 15:53:05 +0530 | [diff] [blame] | 1394 | |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1395 | if (is_kernel_in_hyp_mode()) |
| 1396 | err = init_vhe_mode(); |
| 1397 | else |
| 1398 | err = init_hyp_mode(); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1399 | if (err) |
| 1400 | goto out_err; |
| 1401 | |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1402 | err = init_subsystems(); |
| 1403 | if (err) |
| 1404 | goto out_hyp; |
Marc Zyngier | d157f4a | 2013-04-12 19:12:07 +0100 | [diff] [blame] | 1405 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1406 | return 0; |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1407 | |
| 1408 | out_hyp: |
| 1409 | teardown_hyp_mode(); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1410 | out_err: |
Marc Zyngier | 1e947ba | 2015-01-29 11:59:54 +0000 | [diff] [blame] | 1411 | teardown_common_resources(); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1412 | return err; |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1413 | } |
| 1414 | |
| 1415 | /* NOP: Compiling as a module not supported */ |
| 1416 | void kvm_arch_exit(void) |
| 1417 | { |
Marc Zyngier | 210552c | 2013-03-05 03:18:00 +0000 | [diff] [blame] | 1418 | kvm_perf_teardown(); |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1419 | } |
| 1420 | |
| 1421 | static int arm_init(void) |
| 1422 | { |
| 1423 | int rc = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE); |
| 1424 | return rc; |
| 1425 | } |
| 1426 | |
| 1427 | module_init(arm_init); |